vnode.h 14.5 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

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

H
Hongze Cheng 已提交
35
#include "tdb.h"
H
Hongze Cheng 已提交
36

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

H
Hongze Cheng 已提交
41
// vnode
H
Hongze Cheng 已提交
42 43 44 45 46
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 已提交
47

H
Hongze Cheng 已提交
48 49
extern const SVnodeCfg vnodeCfgDefault;

50
int32_t vnodeInit(int32_t nthreads);
H
Hongze Cheng 已提交
51
void    vnodeCleanup();
52
int32_t vnodeCreate(const char *path, SVnodeCfg *pCfg, STfs *pTfs);
53 54
int32_t vnodeAlterReplica(const char *path, SAlterVnodeReplicaReq *pReq, STfs *pTfs);
int32_t vnodeAlterHashRange(const char *srcPath, const char *dstPath, SAlterVnodeHashRangeReq *pReq, STfs *pTfs);
H
refact  
Hongze Cheng 已提交
55
void    vnodeDestroy(const char *path, STfs *pTfs);
H
Hongze Cheng 已提交
56
SVnode *vnodeOpen(const char *path, STfs *pTfs, SMsgCb msgCb);
57
void    vnodePreClose(SVnode *pVnode);
58 59
void    vnodePostClose(SVnode *pVnode);
void    vnodeSyncCheckTimeout(SVnode *pVnode);
H
Hongze Cheng 已提交
60
void    vnodeClose(SVnode *pVnode);
61

62 63
int32_t vnodeStart(SVnode *pVnode);
void    vnodeStop(SVnode *pVnode);
H
Hongze Cheng 已提交
64
int64_t vnodeGetSyncHandle(SVnode *pVnode);
H
Hongze Cheng 已提交
65
void    vnodeGetSnapshot(SVnode *pVnode, SSnapshot *pSnapshot);
66
void    vnodeGetInfo(SVnode *pVnode, const char **dbname, int32_t *vgId);
C
Cary Xu 已提交
67
int32_t vnodeProcessCreateTSma(SVnode *pVnode, void *pCont, uint32_t contLen);
H
Hongze Cheng 已提交
68
int32_t vnodeGetAllTableList(SVnode *pVnode, uint64_t uid, SArray *list);
dengyihao's avatar
dengyihao 已提交
69

H
Hongze Cheng 已提交
70
int32_t vnodeGetCtbIdList(SVnode *pVnode, int64_t suid, SArray *list);
dengyihao's avatar
dengyihao 已提交
71
int32_t vnodeGetCtbIdListByFilter(SVnode *pVnode, int64_t suid, SArray *list, bool (*filter)(void *arg), void *arg);
72
int32_t vnodeGetStbIdList(SVnode *pVnode, int64_t suid, SArray *list);
L
Liu Jicong 已提交
73 74
void   *vnodeGetIdx(SVnode *pVnode);
void   *vnodeGetIvtIdx(SVnode *pVnode);
H
Hongze Cheng 已提交
75

76 77 78 79
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 已提交
80
void    vnodeResetLoad(SVnode *pVnode, SVnodeLoad *pLoad);
81 82 83 84 85 86 87 88 89 90 91 92
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);
void    vnodeProposeWriteMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);
void    vnodeApplyWriteMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);
B
Benguang Zhao 已提交
93
void    vnodeProposeCommitOnNeed(SVnode *pVnode);
94

H
Hongze Cheng 已提交
95
// meta
H
Hongze Cheng 已提交
96 97 98 99
typedef struct SMeta       SMeta;  // todo: remove
typedef struct SMetaReader SMetaReader;
typedef struct SMetaEntry  SMetaEntry;

100 101
#define META_READER_NOLOCK 0x1

H
Hongze Cheng 已提交
102
void        metaReaderInit(SMetaReader *pReader, SMeta *pMeta, int32_t flags);
103
void        metaReaderReleaseLock(SMetaReader *pReader);
H
Hongze Cheng 已提交
104
void        metaReaderClear(SMetaReader *pReader);
105
int32_t     metaGetTableEntryByUid(SMetaReader *pReader, tb_uid_t uid);
H
Haojun Liao 已提交
106
int32_t     metaGetTableEntryByUidCache(SMetaReader *pReader, tb_uid_t uid);
107
int         metaGetTableEntryByName(SMetaReader *pReader, const char *name);
108
int32_t     metaGetTableTags(SMeta *pMeta, uint64_t suid, SArray *uidList, SHashObj *tags);
dengyihao's avatar
dengyihao 已提交
109
int32_t     metaGetTableTagsByUids(SMeta *pMeta, int64_t suid, SArray *uidList, SHashObj *tags);
110
int32_t     metaReadNext(SMetaReader *pReader);
111
const void *metaGetTableTagVal(void *tag, int16_t type, STagVal *tagVal);
L
Liu Jicong 已提交
112
int         metaGetTableNameByUid(void *meta, uint64_t uid, char *tbName);
113

114 115 116 117 118 119 120 121 122 123 124 125
int      metaGetTableSzNameByUid(void *meta, uint64_t uid, char *tbName);
int      metaGetTableUidByName(void *meta, char *tbName, uint64_t *uid);
int      metaGetTableTypeByName(void *meta, char *tbName, ETableType *tbType);
bool     metaIsTableExist(SMeta *pMeta, tb_uid_t uid);
int32_t  metaGetCachedTableUidList(SMeta *pMeta, tb_uid_t suid, const uint8_t *key, int32_t keyLen, SArray *pList,
                                   bool *acquired);
int32_t  metaUidFilterCachePut(SMeta *pMeta, uint64_t suid, const void *pKey, int32_t keyLen, void *pPayload,
                               int32_t payloadLen, double selectivityRatio);
int32_t  metaUidCacheClear(SMeta *pMeta, uint64_t suid);
tb_uid_t metaGetTableEntryUidByName(SMeta *pMeta, const char *name);
int64_t  metaGetTbNum(SMeta *pMeta);
int64_t  metaGetNtbNum(SMeta *pMeta);
S
shenglian zhou 已提交
126 127 128 129
typedef struct {
  int64_t uid;
  int64_t ctbNum;
} SMetaStbStats;
130
int32_t metaGetStbStats(SMeta *pMeta, int64_t uid, SMetaStbStats *pInfo);
S
shenglian zhou 已提交
131

dengyihao's avatar
dengyihao 已提交
132 133 134 135
typedef struct SMetaFltParam {
  tb_uid_t suid;
  int16_t  cid;
  int16_t  type;
dengyihao's avatar
dengyihao 已提交
136
  void    *val;
dengyihao's avatar
dengyihao 已提交
137 138 139 140 141
  bool     reverse;
  int (*filterFunc)(void *a, void *b, int16_t type);

} SMetaFltParam;

dengyihao's avatar
dengyihao 已提交
142
// TODO, refactor later
dengyihao's avatar
dengyihao 已提交
143
int32_t metaFilterTableIds(SMeta *pMeta, SMetaFltParam *param, SArray *results);
dengyihao's avatar
dengyihao 已提交
144 145 146
int32_t metaFilterCreateTime(SMeta *pMeta, SMetaFltParam *parm, SArray *pUids);
int32_t metaFilterTableName(SMeta *pMeta, SMetaFltParam *param, SArray *pUids);
int32_t metaFilterTtl(SMeta *pMeta, SMetaFltParam *param, SArray *pUids);
dengyihao's avatar
dengyihao 已提交
147

H
Hongze Cheng 已提交
148
#if 1  // refact APIs below (TODO)
H
Hongze Cheng 已提交
149 150 151
typedef SVCreateTbReq   STbCfg;
typedef SVCreateTSmaReq SSmaCfg;

H
Hongze Cheng 已提交
152 153
typedef struct SMTbCursor SMTbCursor;

H
Hongze Cheng 已提交
154 155
SMTbCursor *metaOpenTbCursor(SMeta *pMeta);
void        metaCloseTbCursor(SMTbCursor *pTbCur);
wmmhello's avatar
wmmhello 已提交
156
int32_t     metaTbCursorNext(SMTbCursor *pTbCur, ETableType jumpTableType);
157 158
int32_t     metaTbCursorPrev(SMTbCursor *pTbCur);

H
Hongze Cheng 已提交
159
#endif
H
Hongze Cheng 已提交
160

H
Hongze Cheng 已提交
161
// tsdb
162
// typedef struct STsdb STsdb;
H
Hongze Cheng 已提交
163
typedef struct STsdbReader STsdbReader;
H
Hongze Cheng 已提交
164

H
Hongze Cheng 已提交
165 166
#define TSDB_DEFAULT_STT_FILE  8
#define TSDB_DEFAULT_PAGE_SIZE 4096
H
Hongze Cheng 已提交
167

H
Haojun Liao 已提交
168 169
#define TIMEWINDOW_RANGE_CONTAINED 1
#define TIMEWINDOW_RANGE_EXTERNAL  2
H
Hongze Cheng 已提交
170

171 172 173 174
#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 已提交
175

H
Haojun Liao 已提交
176 177
int32_t tsdbSetTableList(STsdbReader *pReader, const void *pTableList, int32_t num);
int32_t tsdbReaderOpen(SVnode *pVnode, SQueryTableDataCond *pCond, void *pTableList, int32_t numOfTables,
H
Haojun Liao 已提交
178
                       SSDataBlock *pResBlock, STsdbReader **ppReader, const char *idstr);
179

H
Haojun Liao 已提交
180 181 182
void         tsdbReaderClose(STsdbReader *pReader);
bool         tsdbNextDataBlock(STsdbReader *pReader);
void         tsdbRetrieveDataBlockInfo(const STsdbReader *pReader, int32_t *rows, uint64_t *uid, STimeWindow *pWindow);
183
int32_t      tsdbRetrieveDatablockSMA(STsdbReader *pReader, SSDataBlock *pDataBlock, bool *allHave);
184
void         tsdbReleaseDataBlock(STsdbReader *pReader);
H
Haojun Liao 已提交
185 186 187 188 189 190 191
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);
uint64_t     getReaderMaxVersion(STsdbReader *pReader);
192

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

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

// tq
204
typedef struct SMetaTableInfo {
205 206 207
  int64_t         suid;
  int64_t         uid;
  SSchemaWrapper *schema;
wmmhello's avatar
wmmhello 已提交
208
  char            tbName[TSDB_TABLE_NAME_LEN];
209
} SMetaTableInfo;
210

211 212 213 214
typedef struct SIdInfo {
  int64_t version;
  int32_t index;
} SIdInfo;
wmmhello's avatar
wmmhello 已提交
215

216 217 218 219 220 221 222 223
typedef struct SSnapContext {
  SMeta    *pMeta;
  int64_t   snapVersion;
  TBC      *pCur;
  int64_t   suid;
  int8_t    subType;
  SHashObj *idVersion;
  SHashObj *suidInfo;
wmmhello's avatar
wmmhello 已提交
224 225
  SArray   *idList;
  int32_t   index;
wmmhello's avatar
wmmhello 已提交
226
  bool      withMeta;
227 228
  bool      queryMetaOrData;  // true-get meta, false-get data
} SSnapContext;
H
Hongze Cheng 已提交
229

L
Liu Jicong 已提交
230
typedef struct STqReader {
L
Liu Jicong 已提交
231 232 233 234
  // const SSubmitReq *pMsg;
  //   SSubmitBlk       *pBlock;
  //   SSubmitMsgIter    msgIter;
  //   SSubmitBlkIter    blkIter;
L
Liu Jicong 已提交
235

L
Liu Jicong 已提交
236 237
  int64_t     ver;
  SPackedData msg2;
L
Liu Jicong 已提交
238 239 240 241

  int8_t      setMsg;
  SSubmitReq2 submit;
  int32_t     nextBlk;
L
Liu Jicong 已提交
242 243

  int64_t lastBlkUid;
H
Hongze Cheng 已提交
244

L
Liu Jicong 已提交
245
  SWalReader *pWalReader;
H
Hongze Cheng 已提交
246

L
Liu Jicong 已提交
247 248 249
  SMeta    *pVnodeMeta;
  SHashObj *tbIdHash;
  SArray   *pColIdList;  // SArray<int16_t>
250

L
Liu Jicong 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264
  int32_t         cachedSchemaVer;
  int64_t         cachedSchemaSuid;
  SSchemaWrapper *pSchemaWrapper;
  STSchema       *pSchema;
} STqReader;

STqReader *tqOpenReader(SVnode *pVnode);
void       tqCloseReader(STqReader *);

void    tqReaderSetColIdList(STqReader *pReader, SArray *pColIdList);
int32_t tqReaderSetTbUidList(STqReader *pReader, const SArray *tbUidList);
int32_t tqReaderAddTbUidList(STqReader *pReader, const SArray *tbUidList);
int32_t tqReaderRemoveTbUidList(STqReader *pReader, const SArray *tbUidList);

L
Liu Jicong 已提交
265 266 267
int32_t tqSeekVer(STqReader *pReader, int64_t ver);
int32_t tqNextBlock(STqReader *pReader, SFetchRet *ret);

L
Liu Jicong 已提交
268 269 270 271 272 273 274 275
int32_t tqReaderSetSubmitReq2(STqReader *pReader, void *msgStr, int32_t msgLen, int64_t ver);
// int32_t tqReaderSetDataMsg(STqReader *pReader, const SSubmitReq *pMsg, int64_t ver);
bool    tqNextDataBlock2(STqReader *pReader);
bool    tqNextDataBlockFilterOut2(STqReader *pReader, SHashObj *filterOutUids);
int32_t tqRetrieveDataBlock2(SSDataBlock *pBlock, STqReader *pReader);
int32_t tqRetrieveTaosxBlock2(STqReader *pReader, SArray *blocks, SArray *schemas);
// int32_t tqRetrieveDataBlock(SSDataBlock *pBlock, STqReader *pReader);
// int32_t tqRetrieveTaosxBlock(STqReader *pReader, SArray *blocks, SArray *schemas);
H
Hongze Cheng 已提交
276

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

C
Cary Xu 已提交
279 280 281
// sma
int32_t smaGetTSmaDays(SVnodeCfg *pCfg, void *pCont, uint32_t contLen, int32_t *days);

H
Hongze Cheng 已提交
282
// SVSnapReader
H
Hongze Cheng 已提交
283
int32_t vnodeSnapReaderOpen(SVnode *pVnode, int64_t sver, int64_t ever, SVSnapReader **ppReader);
284
void    vnodeSnapReaderClose(SVSnapReader *pReader);
H
Hongze Cheng 已提交
285 286
int32_t vnodeSnapRead(SVSnapReader *pReader, uint8_t **ppData, uint32_t *nData);
// SVSnapWriter
H
Hongze Cheng 已提交
287
int32_t vnodeSnapWriterOpen(SVnode *pVnode, int64_t sver, int64_t ever, SVSnapWriter **ppWriter);
288
int32_t vnodeSnapWriterClose(SVSnapWriter *pWriter, int8_t rollback, SSnapshot *pSnapshot);
H
Hongze Cheng 已提交
289
int32_t vnodeSnapWrite(SVSnapWriter *pWriter, uint8_t *pData, uint32_t nData);
H
Hongze Cheng 已提交
290

291 292 293 294 295 296
int32_t        buildSnapContext(SMeta *pMeta, int64_t snapVersion, int64_t suid, int8_t subType, bool withMeta,
                                SSnapContext **ctxRet);
int32_t        getMetafromSnapShot(SSnapContext *ctx, void **pBuf, int32_t *contLen, int16_t *type, int64_t *uid);
SMetaTableInfo getUidfromSnapShot(SSnapContext *ctx);
int32_t        setForSnapShot(SSnapContext *ctx, int64_t uid);
int32_t        destroySnapContext(SSnapContext *ctx);
297

H
Hongze Cheng 已提交
298 299
// structs
struct STsdbCfg {
C
Cary Xu 已提交
300 301 302 303 304 305 306 307 308 309
  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 已提交
310 311 312
  SRetention retentions[TSDB_RETENTION_MAX];
};

313 314 315 316
typedef struct {
  int64_t numOfSTables;
  int64_t numOfCTables;
  int64_t numOfNTables;
317
  int64_t numOfNTimeSeries;
318
  int64_t numOfTimeSeries;
319
  int64_t itvTimeSeries;
320 321 322 323 324
  int64_t pointsWritten;
  int64_t totalStorage;
  int64_t compStorage;
} SVnodeStats;

H
Hongze Cheng 已提交
325
struct SVnodeCfg {
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
  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;
H
Hongze Cheng 已提交
346
  int16_t     sttTrigger;
347 348
  int16_t     hashPrefix;
  int16_t     hashSuffix;
H
Hongze Cheng 已提交
349
  int32_t     tsdbPageSize;
H
Hongze Cheng 已提交
350
};
H
save  
Hongze Cheng 已提交
351

H
Hongze Cheng 已提交
352 353
typedef struct {
  uint64_t uid;
S
slzhou 已提交
354
  uint64_t groupId;
H
Hongze Cheng 已提交
355
} STableKeyInfo;
356

dengyihao's avatar
dengyihao 已提交
357 358
#define TABLE_ROLLUP_ON       ((int8_t)0x1)
#define TABLE_IS_ROLLUP(FLG)  (((FLG) & (TABLE_ROLLUP_ON)) != 0)
C
Cary Xu 已提交
359
#define TABLE_SET_ROLLUP(FLG) ((FLG) |= TABLE_ROLLUP_ON)
H
Hongze Cheng 已提交
360
struct SMetaEntry {
H
Hongze Cheng 已提交
361 362
  int64_t  version;
  int8_t   type;
C
Cary Xu 已提交
363
  int8_t   flags;  // TODO: need refactor?
H
Hongze Cheng 已提交
364
  tb_uid_t uid;
L
Liu Jicong 已提交
365
  char    *name;
H
Hongze Cheng 已提交
366 367
  union {
    struct {
368
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
369
      SSchemaWrapper schemaTag;
C
Cary Xu 已提交
370
      SRSmaParam     rsmaParam;
H
Hongze Cheng 已提交
371 372
    } stbEntry;
    struct {
H
Hongze Cheng 已提交
373 374
      int64_t  ctime;
      int32_t  ttlDays;
wmmhello's avatar
wmmhello 已提交
375
      int32_t  commentLen;
L
Liu Jicong 已提交
376
      char    *comment;
H
Hongze Cheng 已提交
377 378
      tb_uid_t suid;
      uint8_t *pTags;
H
Hongze Cheng 已提交
379 380 381 382
    } ctbEntry;
    struct {
      int64_t        ctime;
      int32_t        ttlDays;
wmmhello's avatar
wmmhello 已提交
383
      int32_t        commentLen;
L
Liu Jicong 已提交
384
      char          *comment;
H
Hongze Cheng 已提交
385
      int32_t        ncid;  // next column id
386
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
387
    } ntbEntry;
388
    struct {
C
Cary Xu 已提交
389
      STSma *tsma;
390
    } smaEntry;
H
Hongze Cheng 已提交
391
  };
H
Hongze Cheng 已提交
392 393

  uint8_t *pBuf;
H
Hongze Cheng 已提交
394 395 396 397
};

struct SMetaReader {
  int32_t    flags;
L
Liu Jicong 已提交
398
  SMeta     *pMeta;
H
Hongze Cheng 已提交
399
  SDecoder   coder;
H
Hongze Cheng 已提交
400
  SMetaEntry me;
L
Liu Jicong 已提交
401
  void      *pBuf;
402
  int32_t    szBuf;
H
Hongze Cheng 已提交
403 404
};

H
Hongze Cheng 已提交
405
struct SMTbCursor {
L
Liu Jicong 已提交
406 407 408
  TBC        *pDbc;
  void       *pKey;
  void       *pVal;
409 410
  int32_t     kLen;
  int32_t     vLen;
H
Hongze Cheng 已提交
411 412 413
  SMetaReader mr;
};

S
Shengliang Guan 已提交
414 415 416 417
#ifdef __cplusplus
}
#endif

418
#endif /*_TD_VNODE_H_*/