fix
This commit is contained in:
parent
c089d3ba08
commit
08a4a7ab0f
|
@ -30,16 +30,15 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
typedef struct SSnode {
|
||||||
|
SMsgCb msgCb;
|
||||||
|
} SSnode;
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
typedef struct {
|
typedef struct {
|
||||||
SHashObj* pHash; // taskId -> SStreamTask
|
SHashObj* pHash; // taskId -> SStreamTask
|
||||||
} SStreamMeta;
|
} SStreamMeta;
|
||||||
|
|
||||||
typedef struct SSnode {
|
|
||||||
SStreamMeta* pMeta;
|
|
||||||
SMsgCb msgCb;
|
|
||||||
} SSnode;
|
|
||||||
|
|
||||||
SStreamMeta* sndMetaNew();
|
SStreamMeta* sndMetaNew();
|
||||||
void sndMetaDelete(SStreamMeta* pMeta);
|
void sndMetaDelete(SStreamMeta* pMeta);
|
||||||
|
|
||||||
|
|
|
@ -16,33 +16,35 @@
|
||||||
#include "executor.h"
|
#include "executor.h"
|
||||||
#include "sndInt.h"
|
#include "sndInt.h"
|
||||||
#include "tuuid.h"
|
#include "tuuid.h"
|
||||||
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) { return NULL; }
|
/*SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) { return NULL; }*/
|
||||||
void sndClose(SSnode *pSnode) {}
|
/*void sndClose(SSnode *pSnode) {}*/
|
||||||
int32_t sndProcessUMsg(SSnode *pSnode, SRpcMsg *pMsg) { return 0; }
|
int32_t sndProcessUMsg(SSnode *pSnode, SRpcMsg *pMsg) { return 0; }
|
||||||
int32_t sndProcessSMsg(SSnode *pSnode, SRpcMsg *pMsg) { return 0; }
|
int32_t sndProcessSMsg(SSnode *pSnode, SRpcMsg *pMsg) { return 0; }
|
||||||
|
|
||||||
#if 0
|
|
||||||
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) {
|
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) {
|
||||||
SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
|
SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
|
||||||
if (pSnode == NULL) {
|
if (pSnode == NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
pSnode->msgCb = pOption->msgCb;
|
pSnode->msgCb = pOption->msgCb;
|
||||||
|
#if 0
|
||||||
pSnode->pMeta = sndMetaNew();
|
pSnode->pMeta = sndMetaNew();
|
||||||
if (pSnode->pMeta == NULL) {
|
if (pSnode->pMeta == NULL) {
|
||||||
taosMemoryFree(pSnode);
|
taosMemoryFree(pSnode);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return pSnode;
|
return pSnode;
|
||||||
}
|
}
|
||||||
|
|
||||||
void sndClose(SSnode *pSnode) {
|
void sndClose(SSnode *pSnode) {
|
||||||
sndMetaDelete(pSnode->pMeta);
|
/*sndMetaDelete(pSnode->pMeta);*/
|
||||||
taosMemoryFree(pSnode);
|
taosMemoryFree(pSnode);
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t sndGetLoad(SSnode *pSnode, SSnodeLoad *pLoad) { return 0; }
|
int32_t sndGetLoad(SSnode *pSnode, SSnodeLoad *pLoad) { return 0; }
|
||||||
|
|
||||||
|
#if 0
|
||||||
SStreamMeta *sndMetaNew() {
|
SStreamMeta *sndMetaNew() {
|
||||||
SStreamMeta *pMeta = taosMemoryCalloc(1, sizeof(SStreamMeta));
|
SStreamMeta *pMeta = taosMemoryCalloc(1, sizeof(SStreamMeta));
|
||||||
if (pMeta == NULL) {
|
if (pMeta == NULL) {
|
||||||
|
|
Loading…
Reference in New Issue