vnode.h 8.3 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"
H
Hongze Cheng 已提交
31 32 33 34
#include "tmallocator.h"
#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
typedef struct SVnode           SVnode;
typedef struct STsdbCfg         STsdbCfg;  // todo: remove
typedef struct SVnodeCfg        SVnodeCfg;
typedef struct SVSnapshotReader SVSnapshotReader;
H
Hongze Cheng 已提交
46

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

49
int32_t vnodeInit(int32_t nthreads);
H
Hongze Cheng 已提交
50
void    vnodeCleanup();
51
int32_t vnodeCreate(const char *path, SVnodeCfg *pCfg, STfs *pTfs);
H
refact  
Hongze Cheng 已提交
52
void    vnodeDestroy(const char *path, STfs *pTfs);
H
Hongze Cheng 已提交
53
SVnode *vnodeOpen(const char *path, STfs *pTfs, SMsgCb msgCb);
H
Hongze Cheng 已提交
54
void    vnodeClose(SVnode *pVnode);
H
Hongze Cheng 已提交
55
int32_t vnodePreprocessReq(SVnode *pVnode, SRpcMsg *pMsg);
56 57 58
int32_t vnodeProcessWriteReq(SVnode *pVnode, SRpcMsg *pMsg, int64_t version, SRpcMsg *pRsp);
int32_t vnodeProcessCMsg(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
int32_t vnodeProcessSyncReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
dengyihao's avatar
dengyihao 已提交
59
int32_t vnodePreprocessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg);
60 61
int32_t vnodeProcessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg);
int32_t vnodeProcessFetchMsg(SVnode *pVnode, SRpcMsg *pMsg, SQueueInfo *pInfo);
H
Hongze Cheng 已提交
62
int32_t vnodeGetLoad(SVnode *pVnode, SVnodeLoad *pLoad);
63
int32_t vnodeValidateTableHash(SVnode *pVnode, char *tableFName);
64 65
int32_t vnodeStart(SVnode *pVnode);
void    vnodeStop(SVnode *pVnode);
H
Hongze Cheng 已提交
66
int64_t vnodeGetSyncHandle(SVnode *pVnode);
H
Hongze Cheng 已提交
67
void    vnodeGetSnapshot(SVnode *pVnode, SSnapshot *pSnapshot);
68
void    vnodeGetInfo(SVnode *pVnode, const char **dbname, int32_t *vgId);
H
Hongze Cheng 已提交
69 70
int32_t vnodeSnapshotReaderOpen(SVnode *pVnode, SVSnapshotReader **ppReader, int64_t sver, int64_t ever);
int32_t vnodeSnapshotReaderClose(SVSnapshotReader *pReader);
H
Hongze Cheng 已提交
71
int32_t vnodeSnapshotRead(SVSnapshotReader *pReader, const void **ppData, uint32_t *nData);
C
Cary Xu 已提交
72
int32_t vnodeProcessCreateTSma(SVnode *pVnode, void *pCont, uint32_t contLen);
H
Hongze Cheng 已提交
73

74 75 76
void vnodeProposeMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);
void vnodeApplyMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);

H
Hongze Cheng 已提交
77
// meta
H
Hongze Cheng 已提交
78 79 80 81
typedef struct SMeta       SMeta;  // todo: remove
typedef struct SMetaReader SMetaReader;
typedef struct SMetaEntry  SMetaEntry;

H
Hongze Cheng 已提交
82 83
void        metaReaderInit(SMetaReader *pReader, SMeta *pMeta, int32_t flags);
void        metaReaderClear(SMetaReader *pReader);
84 85
int32_t     metaGetTableEntryByUid(SMetaReader *pReader, tb_uid_t uid);
int32_t     metaReadNext(SMetaReader *pReader);
wmmhello's avatar
wmmhello 已提交
86
const void *metaGetTableTagVal(SMetaEntry *pEntry, int16_t type, STagVal *tagVal);
H
Hongze Cheng 已提交
87

dengyihao's avatar
dengyihao 已提交
88 89 90 91
typedef struct SMetaFltParam {
  tb_uid_t suid;
  int16_t  cid;
  int16_t  type;
L
Liu Jicong 已提交
92
  char    *val;
dengyihao's avatar
dengyihao 已提交
93 94 95 96 97 98 99
  bool     reverse;
  int (*filterFunc)(void *a, void *b, int16_t type);

} SMetaFltParam;

int32_t metaFilteTableIds(SMeta *pMeta, SMetaFltParam *param, SArray *results);

H
Hongze Cheng 已提交
100
#if 1  // refact APIs below (TODO)
H
Hongze Cheng 已提交
101 102 103
typedef SVCreateTbReq   STbCfg;
typedef SVCreateTSmaReq SSmaCfg;

H
Hongze Cheng 已提交
104 105
typedef struct SMTbCursor SMTbCursor;

H
Hongze Cheng 已提交
106 107
SMTbCursor *metaOpenTbCursor(SMeta *pMeta);
void        metaCloseTbCursor(SMTbCursor *pTbCur);
108
int32_t     metaTbCursorNext(SMTbCursor *pTbCur);
H
Hongze Cheng 已提交
109
#endif
H
Hongze Cheng 已提交
110

H
Hongze Cheng 已提交
111
// tsdb
112
// typedef struct STsdb STsdb;
H
Hongze Cheng 已提交
113
typedef void *tsdbReaderT;
H
Hongze Cheng 已提交
114 115 116 117

#define BLOCK_LOAD_OFFSET_SEQ_ORDER 1
#define BLOCK_LOAD_TABLE_SEQ_ORDER  2
#define BLOCK_LOAD_TABLE_RR_ORDER   3
H
Hongze Cheng 已提交
118

wmmhello's avatar
wmmhello 已提交
119
int32_t      tsdbSetTableList(tsdbReaderT reader, SArray* tableList);
wmmhello's avatar
wmmhello 已提交
120
tsdbReaderT  tsdbReaderOpen(SVnode *pVnode, SQueryTableDataCond *pCond, SArray *tableList, uint64_t qId,
L
Liu Jicong 已提交
121
                            uint64_t taskId);
wmmhello's avatar
wmmhello 已提交
122
tsdbReaderT  tsdbQueryCacheLast(SVnode *pVnode, SQueryTableDataCond *pCond, STableListInfo *groupList, uint64_t qId,
H
Hongze Cheng 已提交
123 124 125
                                void *pMemRef);
int32_t      tsdbGetFileBlocksDistInfo(tsdbReaderT *pReader, STableBlockDistInfo *pTableBlockInfo);
bool         isTsdbCacheLastRow(tsdbReaderT *pReader);
dengyihao's avatar
dengyihao 已提交
126
int32_t      tsdbGetAllTableList(SMeta *pMeta, uint64_t uid, SArray *list);
L
Liu Jicong 已提交
127
int32_t      tsdbGetCtbIdList(SMeta *pMeta, int64_t suid, SArray *list);
L
Liu Jicong 已提交
128 129
void        *tsdbGetIdx(SMeta *pMeta);
void        *tsdbGetIvtIdx(SMeta *pMeta);
H
Hongze Cheng 已提交
130
int64_t      tsdbGetNumOfRowsInMemTable(tsdbReaderT *pHandle);
dengyihao's avatar
dengyihao 已提交
131 132 133

bool    tsdbNextDataBlock(tsdbReaderT pTsdbReadHandle);
void    tsdbRetrieveDataBlockInfo(tsdbReaderT *pTsdbReadHandle, SDataBlockInfo *pBlockInfo);
H
Hongze Cheng 已提交
134 135
int32_t tsdbRetrieveDataBlockStatisInfo(tsdbReaderT *pTsdbReadHandle, SColumnDataAgg ***pBlockStatis, bool *allHave);
SArray *tsdbRetrieveDataBlock(tsdbReaderT *pTsdbReadHandle, SArray *pColumnIdList);
136
void    tsdbResetReadHandle(tsdbReaderT queryHandle, SQueryTableDataCond *pCond, int32_t tWinIdx);
137
void    tsdbCleanupReadHandle(tsdbReaderT queryHandle);
H
Hongze Cheng 已提交
138 139

// tq
H
Hongze Cheng 已提交
140 141 142 143 144 145

typedef struct STqReadHandle STqReadHandle;

STqReadHandle *tqInitSubmitMsgScanner(SMeta *pMeta);

void    tqReadHandleSetColIdList(STqReadHandle *pReadHandle, SArray *pColIdList);
146 147
int32_t tqReadHandleSetTbUidList(STqReadHandle *pHandle, const SArray *tbUidList);
int32_t tqReadHandleAddTbUidList(STqReadHandle *pHandle, const SArray *tbUidList);
H
Hongze Cheng 已提交
148
int32_t tqReadHandleRemoveTbUidList(STqReadHandle *pHandle, const SArray *tbUidList);
149

H
Hongze Cheng 已提交
150 151
int32_t tqReadHandleSetMsg(STqReadHandle *pHandle, SSubmitReq *pMsg, int64_t ver);
bool    tqNextDataBlock(STqReadHandle *pHandle);
152
bool    tqNextDataBlockFilterOut(STqReadHandle *pHandle, SHashObj *filterOutUids);
153 154
int32_t tqRetrieveDataBlock(SSDataBlock* pBlock, STqReadHandle *pHandle, uint64_t *pGroupId, uint64_t *pUid,
                            int32_t *pNumOfRows);
H
Hongze Cheng 已提交
155

C
Cary Xu 已提交
156 157 158
// sma
int32_t smaGetTSmaDays(SVnodeCfg *pCfg, void *pCont, uint32_t contLen, int32_t *days);

H
Hongze Cheng 已提交
159
// need to reposition
H
Hongze Cheng 已提交
160

H
Hongze Cheng 已提交
161 162
// structs
struct STsdbCfg {
C
Cary Xu 已提交
163 164 165 166 167 168 169 170 171 172
  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 已提交
173 174 175
  SRetention retentions[TSDB_RETENTION_MAX];
};

H
Hongze Cheng 已提交
176
struct SVnodeCfg {
H
Hongze Cheng 已提交
177
  int32_t  vgId;
S
Shengliang Guan 已提交
178
  char     dbname[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
179
  uint64_t dbId;
H
Hongze Cheng 已提交
180 181
  int32_t  szPage;
  int32_t  szCache;
H
Hongze Cheng 已提交
182 183
  uint64_t szBuf;
  bool     isHeap;
H
Hongze Cheng 已提交
184
  bool     isWeak;
C
Cary Xu 已提交
185
  int8_t   isTsma;
C
Cary Xu 已提交
186
  int8_t   isRsma;
C
Cary Xu 已提交
187
  int8_t   hashMethod;
188
  int8_t   standby;
H
more  
Hongze Cheng 已提交
189
  STsdbCfg tsdbCfg;
H
Hongze Cheng 已提交
190
  SWalCfg  walCfg;
S
Shengliang Guan 已提交
191
  SSyncCfg syncCfg;
D
dapan1121 已提交
192 193
  uint32_t hashBegin;
  uint32_t hashEnd;
H
Hongze Cheng 已提交
194
};
H
save  
Hongze Cheng 已提交
195

H
Hongze Cheng 已提交
196 197 198
typedef struct {
  TSKEY    lastKey;
  uint64_t uid;
S
slzhou 已提交
199
  uint64_t groupId;
H
Hongze Cheng 已提交
200
} STableKeyInfo;
201

H
Hongze Cheng 已提交
202
struct SMetaEntry {
H
Hongze Cheng 已提交
203 204 205
  int64_t  version;
  int8_t   type;
  tb_uid_t uid;
L
Liu Jicong 已提交
206
  char    *name;
H
Hongze Cheng 已提交
207 208
  union {
    struct {
209
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
210 211 212
      SSchemaWrapper schemaTag;
    } stbEntry;
    struct {
H
Hongze Cheng 已提交
213 214
      int64_t  ctime;
      int32_t  ttlDays;
wmmhello's avatar
wmmhello 已提交
215
      int32_t  commentLen;
wmmhello's avatar
wmmhello 已提交
216
      char    *comment;
H
Hongze Cheng 已提交
217 218
      tb_uid_t suid;
      uint8_t *pTags;
H
Hongze Cheng 已提交
219 220 221 222
    } ctbEntry;
    struct {
      int64_t        ctime;
      int32_t        ttlDays;
wmmhello's avatar
wmmhello 已提交
223
      int32_t        commentLen;
wmmhello's avatar
wmmhello 已提交
224
      char          *comment;
H
Hongze Cheng 已提交
225
      int32_t        ncid;  // next column id
226
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
227
    } ntbEntry;
228
    struct {
C
Cary Xu 已提交
229
      STSma *tsma;
230
    } smaEntry;
H
Hongze Cheng 已提交
231
  };
H
Hongze Cheng 已提交
232 233

  uint8_t *pBuf;
H
Hongze Cheng 已提交
234 235 236 237
};

struct SMetaReader {
  int32_t    flags;
L
Liu Jicong 已提交
238
  SMeta     *pMeta;
H
Hongze Cheng 已提交
239
  SDecoder   coder;
H
Hongze Cheng 已提交
240
  SMetaEntry me;
L
Liu Jicong 已提交
241
  void      *pBuf;
242
  int32_t    szBuf;
H
Hongze Cheng 已提交
243 244
};

H
Hongze Cheng 已提交
245
struct SMTbCursor {
L
Liu Jicong 已提交
246 247 248
  TBC        *pDbc;
  void       *pKey;
  void       *pVal;
249 250
  int32_t     kLen;
  int32_t     vLen;
H
Hongze Cheng 已提交
251 252 253
  SMetaReader mr;
};

S
Shengliang Guan 已提交
254 255 256 257
#ifdef __cplusplus
}
#endif

258
#endif /*_TD_VNODE_H_*/