vnode.h 15.1 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
S
Shengliang Guan 已提交
14 15 16 17 18
 */

#ifndef _TD_VNODE_H_
#define _TD_VNODE_H_

H
refact  
Hongze Cheng 已提交
19
#include "os.h"
S
Shengliang Guan 已提交
20
#include "tmsgcb.h"
L
Liu Jicong 已提交
21 22
#include "tqueue.h"
#include "trpc.h"
H
refact  
Hongze Cheng 已提交
23

H
Hongze Cheng 已提交
24
#include "sync.h"
H
refact  
Hongze Cheng 已提交
25
#include "tarray.h"
S
Shengliang Guan 已提交
26
#include "tfs.h"
H
refact  
Hongze Cheng 已提交
27
#include "wal.h"
S
Shengliang Guan 已提交
28

Y
yihaoDeng 已提交
29
#include "filter.h"
H
Hongze Cheng 已提交
30 31
#include "tcommon.h"
#include "tfs.h"
dengyihao's avatar
dengyihao 已提交
32
#include "tgrant.h"
H
Hongze Cheng 已提交
33 34 35
#include "tmsg.h"
#include "trow.h"

H
Hongze Cheng 已提交
36
#include "tdb.h"
37
#include "storageapi.h"
H
Hongze Cheng 已提交
38

S
Shengliang Guan 已提交
39 40 41
#ifdef __cplusplus
extern "C" {
#endif
C
Cary Xu 已提交
42

H
Hongze Cheng 已提交
43
// vnode
H
Hongze Cheng 已提交
44 45 46 47 48
typedef struct SVnode       SVnode;
typedef struct STsdbCfg     STsdbCfg;  // todo: remove
typedef struct SVnodeCfg    SVnodeCfg;
typedef struct SVSnapReader SVSnapReader;
typedef struct SVSnapWriter SVSnapWriter;
H
Hongze Cheng 已提交
49

H
Hongze Cheng 已提交
50 51
extern const SVnodeCfg vnodeCfgDefault;

52
int32_t vnodeInit(int32_t nthreads);
H
Hongze Cheng 已提交
53
void    vnodeCleanup();
54 55 56 57 58 59
int32_t vnodeCreate(const char *path, SVnodeCfg *pCfg, int32_t diskPrimary, STfs *pTfs);
int32_t vnodeAlterReplica(const char *path, SAlterVnodeReplicaReq *pReq, int32_t diskPrimary, STfs *pTfs);
int32_t vnodeAlterHashRange(const char *srcPath, const char *dstPath, SAlterVnodeHashRangeReq *pReq,
                            int32_t diskPrimary, STfs *pTfs);
int32_t vnodeRestoreVgroupId(const char *srcPath, const char *dstPath, int32_t srcVgId, int32_t dstVgId,
                             int32_t diskPrimary, STfs *pTfs);
H
refact  
Hongze Cheng 已提交
60
void    vnodeDestroy(const char *path, STfs *pTfs);
61
SVnode *vnodeOpen(const char *path, int32_t diskPrimary, STfs *pTfs, SMsgCb msgCb);
62
void    vnodePreClose(SVnode *pVnode);
63 64
void    vnodePostClose(SVnode *pVnode);
void    vnodeSyncCheckTimeout(SVnode *pVnode);
H
Hongze Cheng 已提交
65
void    vnodeClose(SVnode *pVnode);
S
Shengliang Guan 已提交
66
int32_t vnodeSyncCommit(SVnode *pVnode);
dengyihao's avatar
dengyihao 已提交
67
int32_t vnodeBegin(SVnode *pVnode);
68

69 70 71 72
int32_t   vnodeStart(SVnode *pVnode);
void      vnodeStop(SVnode *pVnode);
int64_t   vnodeGetSyncHandle(SVnode *pVnode);
void      vnodeGetSnapshot(SVnode *pVnode, SSnapshot *pSnapshot);
73
void      vnodeGetInfo(void *pVnode, const char **dbname, int32_t *vgId, int64_t* numOfTables, int64_t* numOfNormalTables);
74
int32_t   vnodeProcessCreateTSma(SVnode *pVnode, void *pCont, uint32_t contLen);
H
Haojun Liao 已提交
75
int32_t   vnodeGetTableList(void* pVnode, int8_t type, SArray* pList);
76 77
int32_t   vnodeGetAllTableList(SVnode *pVnode, uint64_t uid, SArray *list);
int32_t   vnodeIsCatchUp(SVnode *pVnode);
C
cadem 已提交
78
ESyncRole vnodeGetRole(SVnode *pVnode);
dengyihao's avatar
dengyihao 已提交
79

80
int32_t vnodeGetCtbIdList(void *pVnode, int64_t suid, SArray *list);
dengyihao's avatar
dengyihao 已提交
81
int32_t vnodeGetCtbIdListByFilter(SVnode *pVnode, int64_t suid, SArray *list, bool (*filter)(void *arg), void *arg);
82
int32_t vnodeGetStbIdList(SVnode *pVnode, int64_t suid, SArray *list);
K
kailixu 已提交
83
int32_t vnodeGetStbIdListByFilter(SVnode *pVnode, int64_t suid, SArray *list, bool (*filter)(void *arg, void* arg1), void *arg);
84 85
void   *vnodeGetIdx(void *pVnode);
void   *vnodeGetIvtIdx(void *pVnode);
H
Hongze Cheng 已提交
86

87 88 89 90
int32_t vnodeGetCtbNum(SVnode *pVnode, int64_t suid, int64_t *num);
int32_t vnodeGetTimeSeriesNum(SVnode *pVnode, int64_t *num);
int32_t vnodeGetAllCtbNum(SVnode *pVnode, int64_t *num);

C
Cary Xu 已提交
91
void    vnodeResetLoad(SVnode *pVnode, SVnodeLoad *pLoad);
92 93 94 95 96 97 98 99 100 101
int32_t vnodeGetLoad(SVnode *pVnode, SVnodeLoad *pLoad);
int32_t vnodeValidateTableHash(SVnode *pVnode, char *tableFName);

int32_t vnodePreProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg);
int32_t vnodePreprocessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg);

int32_t vnodeProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg, int64_t version, SRpcMsg *pRsp);
int32_t vnodeProcessSyncMsg(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
int32_t vnodeProcessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg);
int32_t vnodeProcessFetchMsg(SVnode *pVnode, SRpcMsg *pMsg, SQueueInfo *pInfo);
102
int32_t vnodeProcessStreamMsg(SVnode *pVnode, SRpcMsg *pMsg, SQueueInfo *pInfo);
103 104
void    vnodeProposeWriteMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);
void    vnodeApplyWriteMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);
105
void    vnodeProposeCommitOnNeed(SVnode *pVnode, bool atExit);
106

H
Hongze Cheng 已提交
107
// meta
H
Haojun Liao 已提交
108
void        _metaReaderInit(SMetaReader *pReader, void *pVnode, int32_t flags, SStoreMeta* pAPI);
109
void        metaReaderReleaseLock(SMetaReader *pReader);
H
Hongze Cheng 已提交
110
void        metaReaderClear(SMetaReader *pReader);
111 112
int32_t     metaReaderGetTableEntryByUid(SMetaReader *pReader, tb_uid_t uid);
int32_t     metaReaderGetTableEntryByUidCache(SMetaReader *pReader, tb_uid_t uid);
H
Haojun Liao 已提交
113 114
int32_t     metaGetTableTags(void *pVnode, uint64_t suid, SArray *uidList);
int32_t     metaGetTableTagsByUids(void* pVnode, int64_t suid, SArray *uidList);
115
int32_t     metaReadNext(SMetaReader *pReader);
116
const void *metaGetTableTagVal(const void *tag, int16_t type, STagVal *tagVal);
L
Liu Jicong 已提交
117
int         metaGetTableNameByUid(void *meta, uint64_t uid, char *tbName);
118

119
int      metaGetTableSzNameByUid(void *meta, uint64_t uid, char *tbName);
H
Haojun Liao 已提交
120
int      metaGetTableUidByName(void *pVnode, char *tbName, uint64_t *uid);
121
int      metaGetTableTypeByName(void *meta, char *tbName, ETableType *tbType);
122
int      metaGetTableTtlByUid(void *meta, uint64_t uid, int64_t *ttlDays);
123
bool     metaIsTableExist(void* pVnode, tb_uid_t uid);
124
int32_t  metaGetCachedTableUidList(void *pVnode, tb_uid_t suid, const uint8_t *key, int32_t keyLen, SArray *pList,
125
                                   bool *acquired);
126
int32_t  metaUidFilterCachePut(void *pVnode, uint64_t suid, const void *pKey, int32_t keyLen, void *pPayload,
127 128
                               int32_t payloadLen, double selectivityRatio);
tb_uid_t metaGetTableEntryUidByName(SMeta *pMeta, const char *name);
129 130
int32_t  metaGetCachedTbGroup(void *pVnode, tb_uid_t suid, const uint8_t *pKey, int32_t keyLen, SArray **pList);
int32_t  metaPutTbGroupToCache(void* pVnode, uint64_t suid, const void *pKey, int32_t keyLen, void *pPayload,
Y
yihaoDeng 已提交
131
                               int32_t payloadLen);
132 133 134
bool     metaTbInFilterCache(void *pVnode, tb_uid_t suid, int8_t type);
int32_t  metaPutTbToFilterCache(void *pVnode, tb_uid_t suid, int8_t type);
int32_t  metaSizeOfTbFilterCache(void *pVnode, int8_t type);
D
dapan1121 已提交
135

136
int32_t  metaGetStbStats(void *pVnode, int64_t uid, int64_t *numOfTables);
H
Hongze Cheng 已提交
137

H
Hongze Cheng 已提交
138
// tsdb
H
Hongze Cheng 已提交
139
typedef struct STsdbReader STsdbReader;
H
Hongze Cheng 已提交
140

H
Hongze Cheng 已提交
141 142
#define TSDB_DEFAULT_STT_FILE  8
#define TSDB_DEFAULT_PAGE_SIZE 4096
H
Hongze Cheng 已提交
143

H
Haojun Liao 已提交
144 145
#define TIMEWINDOW_RANGE_CONTAINED 1
#define TIMEWINDOW_RANGE_EXTERNAL  2
H
Hongze Cheng 已提交
146

147 148 149 150
#define CACHESCAN_RETRIEVE_TYPE_ALL    0x1
#define CACHESCAN_RETRIEVE_TYPE_SINGLE 0x2
#define CACHESCAN_RETRIEVE_LAST_ROW    0x4
#define CACHESCAN_RETRIEVE_LAST        0x8
H
Haojun Liao 已提交
151

152 153
int32_t      tsdbReaderOpen(void *pVnode, SQueryTableDataCond *pCond, void *pTableList, int32_t numOfTables,
                            SSDataBlock *pResBlock, void **ppReader, const char *idstr, bool countOnly,
Y
yihaoDeng 已提交
154
                            SHashObj **pIgnoreTables);
H
Haojun Liao 已提交
155
int32_t      tsdbSetTableList(STsdbReader *pReader, const void *pTableList, int32_t num);
156
void         tsdbReaderSetId(STsdbReader *pReader, const char *idstr);
H
Haojun Liao 已提交
157
void         tsdbReaderClose(STsdbReader *pReader);
D
dapan1121 已提交
158
int32_t      tsdbNextDataBlock(STsdbReader *pReader, bool *hasNext);
G
Ganlin Zhao 已提交
159
int32_t      tsdbRetrieveDatablockSMA(STsdbReader *pReader, SSDataBlock *pDataBlock, bool *allHave, bool *hasNullSMA);
160
void         tsdbReleaseDataBlock(STsdbReader *pReader);
H
Haojun Liao 已提交
161 162 163 164 165 166
SSDataBlock *tsdbRetrieveDataBlock(STsdbReader *pTsdbReadHandle, SArray *pColumnIdList);
int32_t      tsdbReaderReset(STsdbReader *pReader, SQueryTableDataCond *pCond);
int32_t      tsdbGetFileBlocksDistInfo(STsdbReader *pReader, STableBlockDistInfo *pTableBlockInfo);
int64_t      tsdbGetNumOfRowsInMemTable(STsdbReader *pHandle);
void        *tsdbGetIdx(SMeta *pMeta);
void        *tsdbGetIvtIdx(SMeta *pMeta);
167 168
uint64_t     tsdbGetReaderMaxVersion(STsdbReader *pReader);
void         tsdbReaderSetCloseFlag(STsdbReader *pReader);
Y
yihaoDeng 已提交
169
int64_t      tsdbGetLastTimestamp(SVnode *pVnode, void *pTableList, int32_t numOfTables, const char *pIdStr);
170

H
Haojun Liao 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
//======================================================================================================================
int32_t      tsdbReaderOpen2(void *pVnode, SQueryTableDataCond *pCond, void *pTableList, int32_t numOfTables,
                            SSDataBlock *pResBlock, void **ppReader, const char *idstr, bool countOnly,
                            SHashObj **pIgnoreTables);
int32_t      tsdbSetTableList2(STsdbReader *pReader, const void *pTableList, int32_t num);
void         tsdbReaderSetId2(STsdbReader *pReader, const char *idstr);
void         tsdbReaderClose2(STsdbReader *pReader);
int32_t      tsdbNextDataBlock2(STsdbReader *pReader, bool *hasNext);
int32_t      tsdbRetrieveDatablockSMA2(STsdbReader *pReader, SSDataBlock *pDataBlock, bool *allHave, bool *hasNullSMA);
void         tsdbReleaseDataBlock2(STsdbReader *pReader);
SSDataBlock *tsdbRetrieveDataBlock2(STsdbReader *pTsdbReadHandle, SArray *pColumnIdList);
int32_t      tsdbReaderReset2(STsdbReader *pReader, SQueryTableDataCond *pCond);
int32_t      tsdbGetFileBlocksDistInfo2(STsdbReader *pReader, STableBlockDistInfo *pTableBlockInfo);
int64_t      tsdbGetNumOfRowsInMemTable2(STsdbReader *pHandle);
void        *tsdbGetIdx2(SMeta *pMeta);
void        *tsdbGetIvtIdx2(SMeta *pMeta);
uint64_t     tsdbGetReaderMaxVersion2(STsdbReader *pReader);
void         tsdbReaderSetCloseFlag2(STsdbReader *pReader);
int64_t      tsdbGetLastTimestamp2(SVnode *pVnode, void *pTableList, int32_t numOfTables, const char *pIdStr);
//======================================================================================================================

Y
yihaoDeng 已提交
192
int32_t tsdbReuseCacherowsReader(void *pReader, void *pTableIdList, int32_t numOfTables);
H
Haojun Liao 已提交
193
int32_t tsdbCacherowsReaderOpen(void *pVnode, int32_t type, void *pTableIdList, int32_t numOfTables, int32_t numOfCols,
M
Minglei Jin 已提交
194
                                SArray *pCidList, int32_t *pSlotIds, uint64_t suid, void **pReader, const char *idstr);
195 196
int32_t tsdbRetrieveCacheRows(void *pReader, SSDataBlock *pResBlock, const int32_t *slotIds, const int32_t *dstSlotIds,
                              SArray *pTableUids);
dengyihao's avatar
dengyihao 已提交
197
void   *tsdbCacherowsReaderClose(void *pReader);
H
Haojun Liao 已提交
198
int32_t tsdbGetTableSchema(void *pVnode, int64_t uid, STSchema **pSchema, int64_t *suid);
199

200 201 202 203
void    tsdbCacheSetCapacity(SVnode *pVnode, size_t capacity);
size_t  tsdbCacheGetCapacity(SVnode *pVnode);
size_t  tsdbCacheGetUsage(SVnode *pVnode);
int32_t tsdbCacheGetElems(SVnode *pVnode);
H
Hongze Cheng 已提交
204

205
//// tq
206 207 208 209
typedef struct SIdInfo {
  int64_t version;
  int32_t index;
} SIdInfo;
wmmhello's avatar
wmmhello 已提交
210

L
Liu Jicong 已提交
211
typedef struct STqReader {
212
  SPackedData     msg;
213 214 215 216 217 218 219
  SSubmitReq2     submit;
  int32_t         nextBlk;
  int64_t         lastBlkUid;
  SWalReader     *pWalReader;
  SMeta          *pVnodeMeta;
  SHashObj       *tbIdHash;
  SArray         *pColIdList;  // SArray<int16_t>
L
Liu Jicong 已提交
220 221
  int32_t         cachedSchemaVer;
  int64_t         cachedSchemaSuid;
222
  int64_t         cachedSchemaUid;
L
Liu Jicong 已提交
223
  SSchemaWrapper *pSchemaWrapper;
224
  SSDataBlock    *pResBlock;
L
Liu Jicong 已提交
225 226
} STqReader;

227
STqReader *tqReaderOpen(SVnode *pVnode);
228
void       tqReaderClose(STqReader *);
L
Liu Jicong 已提交
229 230

void    tqReaderSetColIdList(STqReader *pReader, SArray *pColIdList);
231
int32_t tqReaderSetTbUidList(STqReader *pReader, const SArray *tbUidList, const char* id);
232
int32_t tqReaderAddTbUidList(STqReader *pReader, const SArray *pTableUidList);
L
Liu Jicong 已提交
233 234
int32_t tqReaderRemoveTbUidList(STqReader *pReader, const SArray *tbUidList);

235 236 237 238
bool tqReaderIsQueriedTable(STqReader* pReader, uint64_t uid);
bool tqCurrentBlockConsumed(const STqReader* pReader);

int32_t tqReaderSeek(STqReader *pReader, int64_t ver, const char *id);
Y
yihaoDeng 已提交
239 240
bool    tqNextBlockInWal(STqReader *pReader, const char *idstr);
bool    tqNextBlockImpl(STqReader *pReader, const char *idstr);
241
SWalReader* tqGetWalReader(STqReader* pReader);
H
Haojun Liao 已提交
242
SSDataBlock* tqGetResultBlock (STqReader* pReader);
L
Liu Jicong 已提交
243

244
int32_t extractMsgFromWal(SWalReader *pReader, void **pItem, int64_t maxVer, const char *id);
245
int32_t tqReaderSetSubmitMsg(STqReader *pReader, void *msgStr, int32_t msgLen, int64_t ver);
246
bool    tqNextDataBlockFilterOut(STqReader *pReader, SHashObj *filterOutUids);
247
int32_t tqRetrieveDataBlock(STqReader *pReader, SSDataBlock** pRes, const char* idstr);
248
int32_t tqRetrieveTaosxBlock(STqReader *pReader, SArray *blocks, SArray *schemas, SSubmitTbData **pSubmitTbDataRet);
H
Hongze Cheng 已提交
249

250
int32_t vnodeEnqueueStreamMsg(SVnode *pVnode, SRpcMsg *pMsg);
L
Liu Jicong 已提交
251

C
Cary Xu 已提交
252 253 254
// sma
int32_t smaGetTSmaDays(SVnodeCfg *pCfg, void *pCont, uint32_t contLen, int32_t *days);

H
Hongze Cheng 已提交
255
// SVSnapReader
H
Hongze Cheng 已提交
256
int32_t vnodeSnapReaderOpen(SVnode *pVnode, int64_t sver, int64_t ever, SVSnapReader **ppReader);
257
void    vnodeSnapReaderClose(SVSnapReader *pReader);
H
Hongze Cheng 已提交
258 259
int32_t vnodeSnapRead(SVSnapReader *pReader, uint8_t **ppData, uint32_t *nData);
// SVSnapWriter
H
Hongze Cheng 已提交
260
int32_t vnodeSnapWriterOpen(SVnode *pVnode, int64_t sver, int64_t ever, SVSnapWriter **ppWriter);
261
int32_t vnodeSnapWriterClose(SVSnapWriter *pWriter, int8_t rollback, SSnapshot *pSnapshot);
H
Hongze Cheng 已提交
262
int32_t vnodeSnapWrite(SVSnapWriter *pWriter, uint8_t *pData, uint32_t nData);
H
Hongze Cheng 已提交
263

264
int32_t        buildSnapContext(SVnode *pVnode, int64_t snapVersion, int64_t suid, int8_t subType, int8_t withMeta,
265
                                SSnapContext **ctxRet);
H
Haojun Liao 已提交
266 267
int32_t        getTableInfoFromSnapshot(SSnapContext *ctx, void **pBuf, int32_t *contLen, int16_t *type, int64_t *uid);
SMetaTableInfo getMetaTableInfoFromSnapshot(SSnapContext *ctx);
268 269
int32_t        setForSnapShot(SSnapContext *ctx, int64_t uid);
int32_t        destroySnapContext(SSnapContext *ctx);
270

H
Hongze Cheng 已提交
271 272
// structs
struct STsdbCfg {
C
Cary Xu 已提交
273 274 275 276 277 278 279 280 281 282
  int8_t  precision;
  int8_t  update;
  int8_t  compression;
  int8_t  slLevel;
  int32_t minRows;
  int32_t maxRows;
  int32_t days;   // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
  int32_t keep0;  // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
  int32_t keep1;  // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
  int32_t keep2;  // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
C
Cary Xu 已提交
283 284 285
  SRetention retentions[TSDB_RETENTION_MAX];
};

286 287 288 289
typedef struct {
  int64_t numOfSTables;
  int64_t numOfCTables;
  int64_t numOfNTables;
290
  int64_t numOfNTimeSeries;
291
  int64_t numOfTimeSeries;
292
  int64_t itvTimeSeries;
293 294 295 296 297
  int64_t pointsWritten;
  int64_t totalStorage;
  int64_t compStorage;
} SVnodeStats;

H
Hongze Cheng 已提交
298
struct SVnodeCfg {
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
  int32_t     vgId;
  char        dbname[TSDB_DB_FNAME_LEN];
  uint64_t    dbId;
  int32_t     cacheLastSize;
  int32_t     szPage;
  int32_t     szCache;
  uint64_t    szBuf;
  bool        isHeap;
  bool        isWeak;
  int8_t      cacheLast;
  int8_t      isTsma;
  int8_t      isRsma;
  int8_t      hashMethod;
  int8_t      standby;
  STsdbCfg    tsdbCfg;
  SWalCfg     walCfg;
  SSyncCfg    syncCfg;
  SVnodeStats vndStats;
  uint32_t    hashBegin;
  uint32_t    hashEnd;
B
Benguang Zhao 已提交
319
  bool        hashChange;
H
Hongze Cheng 已提交
320
  int16_t     sttTrigger;
321 322
  int16_t     hashPrefix;
  int16_t     hashSuffix;
H
Hongze Cheng 已提交
323
  int32_t     tsdbPageSize;
H
Hongze Cheng 已提交
324
};
H
save  
Hongze Cheng 已提交
325

dengyihao's avatar
dengyihao 已提交
326 327
#define TABLE_ROLLUP_ON       ((int8_t)0x1)
#define TABLE_IS_ROLLUP(FLG)  (((FLG) & (TABLE_ROLLUP_ON)) != 0)
C
Cary Xu 已提交
328
#define TABLE_SET_ROLLUP(FLG) ((FLG) |= TABLE_ROLLUP_ON)
H
Hongze Cheng 已提交
329

S
Shengliang Guan 已提交
330 331 332 333
#ifdef __cplusplus
}
#endif

334
#endif /*_TD_VNODE_H_*/