mndDef.h 8.0 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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 已提交
16 17
#ifndef _TD_MND_DEF_H_
#define _TD_MND_DEF_H_
S
Shengliang Guan 已提交
18

19
#include "os.h"
S
Shengliang Guan 已提交
20 21 22

#include "cJSON.h"
#include "sync.h"
H
Hongze Cheng 已提交
23
#include "tmsg.h"
S
Shengliang Guan 已提交
24
#include "thash.h"
S
Shengliang Guan 已提交
25 26 27
#include "tlog.h"
#include "trpc.h"
#include "ttimer.h"
S
Shengliang Guan 已提交
28

S
Shengliang Guan 已提交
29
#include "mnode.h"
S
Shengliang Guan 已提交
30

S
Shengliang Guan 已提交
31 32 33
#ifdef __cplusplus
extern "C" {
#endif
S
Shengliang Guan 已提交
34

S
Shengliang Guan 已提交
35 36 37 38 39 40 41 42 43 44 45
extern int32_t mDebugFlag;

// mnode log function
#define mFatal(...) { if (mDebugFlag & DEBUG_FATAL) { taosPrintLog("MND FATAL ", 255, __VA_ARGS__); }}
#define mError(...) { if (mDebugFlag & DEBUG_ERROR) { taosPrintLog("MND ERROR ", 255, __VA_ARGS__); }}
#define mWarn(...)  { if (mDebugFlag & DEBUG_WARN)  { taosPrintLog("MND WARN ", 255, __VA_ARGS__); }}
#define mInfo(...)  { if (mDebugFlag & DEBUG_INFO)  { taosPrintLog("MND ", 255, __VA_ARGS__); }}
#define mDebug(...) { if (mDebugFlag & DEBUG_DEBUG) { taosPrintLog("MND ", mDebugFlag, __VA_ARGS__); }}
#define mTrace(...) { if (mDebugFlag & DEBUG_TRACE) { taosPrintLog("MND ", mDebugFlag, __VA_ARGS__); }}

typedef enum {
46 47 48 49 50 51 52 53
  MND_AUTH_ACCT_START = 0,
  MND_AUTH_ACCT_USER,
  MND_AUTH_ACCT_DNODE,
  MND_AUTH_ACCT_MNODE,
  MND_AUTH_ACCT_DB,
  MND_AUTH_ACCT_TABLE,
  MND_AUTH_ACCT_MAX
} EAuthAcct;
S
Shengliang Guan 已提交
54 55

typedef enum {
56 57 58 59 60 61
  MND_AUTH_OP_START = 0,
  MND_AUTH_OP_CREATE_USER,
  MND_AUTH_OP_ALTER_USER,
  MND_AUTH_OP_DROP_USER,
  MND_AUTH_MAX
} EAuthOp;
S
Shengliang Guan 已提交
62

S
Shengliang Guan 已提交
63
typedef enum {
64
  TRN_STAGE_PREPARE = 0,
S
Shengliang Guan 已提交
65 66 67 68 69 70 71 72
  TRN_STAGE_REDO_LOG = 1,
  TRN_STAGE_REDO_ACTION = 2,
  TRN_STAGE_UNDO_LOG = 3,
  TRN_STAGE_UNDO_ACTION = 4,
  TRN_STAGE_COMMIT_LOG = 5,
  TRN_STAGE_COMMIT = 6,
  TRN_STAGE_ROLLBACK = 7,
  TRN_STAGE_FINISHED = 8
S
Shengliang Guan 已提交
73 74
} ETrnStage;

75
typedef enum { TRN_POLICY_ROLLBACK = 0, TRN_POLICY_RETRY = 1 } ETrnPolicy;
S
Shengliang Guan 已提交
76

S
Shengliang Guan 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90
typedef enum {
  DND_REASON_ONLINE = 0,
  DND_REASON_STATUS_MSG_TIMEOUT,
  DND_REASON_STATUS_NOT_RECEIVED,
  DND_REASON_VERSION_NOT_MATCH,
  DND_REASON_DNODE_ID_NOT_MATCH,
  DND_REASON_CLUSTER_ID_NOT_MATCH,
  DND_REASON_STATUS_INTERVAL_NOT_MATCH,
  DND_REASON_TIME_ZONE_NOT_MATCH,
  DND_REASON_LOCALE_NOT_MATCH,
  DND_REASON_CHARSET_NOT_MATCH,
  DND_REASON_OTHERS
} EDndReason;

S
Shengliang Guan 已提交
91
typedef struct {
S
Shengliang Guan 已提交
92 93 94
  int32_t    id;
  ETrnStage  stage;
  ETrnPolicy policy;
S
Shengliang Guan 已提交
95 96
  int32_t    code;
  int32_t    failedTimes;
S
Shengliang Guan 已提交
97
  void      *rpcHandle;
S
Shengliang Guan 已提交
98
  void      *rpcAHandle;
S
Shengliang Guan 已提交
99 100 101 102 103 104
  SArray    *redoLogs;
  SArray    *undoLogs;
  SArray    *commitLogs;
  SArray    *redoActions;
  SArray    *undoActions;
} STrans;
S
Shengliang Guan 已提交
105

S
Shengliang Guan 已提交
106
typedef struct {
107
  int64_t id;
S
Shengliang Guan 已提交
108
  char    name[TSDB_CLUSTER_ID_LEN];
S
Shengliang Guan 已提交
109 110 111 112
  int64_t createdTime;
  int64_t updateTime;
} SClusterObj;

S
Shengliang Guan 已提交
113
typedef struct {
S
Shengliang Guan 已提交
114 115 116 117
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
  int64_t    rebootTime;
118
  int64_t    lastAccessTime;
S
Shengliang Guan 已提交
119
  int32_t    accessTimes;
S
Shengliang Guan 已提交
120
  int32_t    numOfVnodes;
S
Shengliang Guan 已提交
121 122
  int32_t    numOfSupportVnodes;
  int32_t    numOfCores;
S
Shengliang Guan 已提交
123 124 125 126
  EDndReason offlineReason;
  uint16_t   port;
  char       fqdn[TSDB_FQDN_LEN];
  char       ep[TSDB_EP_LEN];
S
Shengliang Guan 已提交
127 128
} SDnodeObj;

S
Shengliang Guan 已提交
129
typedef struct {
S
Shengliang Guan 已提交
130
  int32_t    id;
S
Shengliang Guan 已提交
131 132
  int64_t    createdTime;
  int64_t    updateTime;
S
Shengliang Guan 已提交
133
  ESyncState role;
S
Shengliang Guan 已提交
134 135
  int32_t    roleTerm;
  int64_t    roleTime;
136
  SDnodeObj *pDnode;
S
Shengliang Guan 已提交
137 138
} SMnodeObj;

S
Shengliang Guan 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
typedef struct {
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
  SDnodeObj *pDnode;
} SQnodeObj;

typedef struct {
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
  SDnodeObj *pDnode;
} SSnodeObj;

typedef struct {
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
  SDnodeObj *pDnode;
} SBnodeObj;

S
Shengliang Guan 已提交
160 161 162
typedef struct {
  int32_t maxUsers;
  int32_t maxDbs;
S
Shengliang Guan 已提交
163 164
  int32_t maxStbs;
  int32_t maxTbs;
S
Shengliang Guan 已提交
165 166
  int32_t maxTimeSeries;
  int32_t maxStreams;
S
Shengliang Guan 已提交
167 168 169 170
  int32_t maxFuncs;
  int32_t maxConsumers;
  int32_t maxConns;
  int32_t maxTopics;
S
Shengliang Guan 已提交
171 172
  int64_t maxStorage;   // In unit of GB
  int32_t accessState;  // Configured only by command
S
Shengliang Guan 已提交
173 174 175 176 177 178 179
} SAcctCfg;

typedef struct {
  int32_t numOfUsers;
  int32_t numOfDbs;
  int32_t numOfTimeSeries;
  int32_t numOfStreams;
S
Shengliang Guan 已提交
180 181
  int64_t totalStorage;  // Total storage wrtten from this account
  int64_t compStorage;   // Compressed storage on disk
S
Shengliang Guan 已提交
182 183
} SAcctInfo;

S
Shengliang Guan 已提交
184
typedef struct {
S
Shengliang Guan 已提交
185 186 187 188
  char      acct[TSDB_USER_LEN];
  int64_t   createdTime;
  int64_t   updateTime;
  int32_t   acctId;
S
Shengliang Guan 已提交
189
  int32_t   status;
S
Shengliang Guan 已提交
190 191 192 193
  SAcctCfg  cfg;
  SAcctInfo info;
} SAcctObj;

S
Shengliang Guan 已提交
194
typedef struct {
S
Shengliang Guan 已提交
195
  char      user[TSDB_USER_LEN];
196
  char      pass[TSDB_PASSWORD_LEN];
S
Shengliang Guan 已提交
197 198 199
  char      acct[TSDB_USER_LEN];
  int64_t   createdTime;
  int64_t   updateTime;
200
  int8_t    superUser;
S
Shengliang Guan 已提交
201
  int32_t   acctId;
S
Shengliang Guan 已提交
202
  SHashObj *prohibitDbHash;
S
Shengliang Guan 已提交
203 204 205
} SUserObj;

typedef struct {
206
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
207 208 209 210 211 212
  int32_t cacheBlockSize;
  int32_t totalBlocks;
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
213 214
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
215 216
  int32_t commitTime;
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
217
  int8_t  walLevel;
S
Shengliang Guan 已提交
218 219 220 221 222 223 224 225
  int8_t  precision;
  int8_t  compression;
  int8_t  replications;
  int8_t  quorum;
  int8_t  update;
  int8_t  cacheLastRow;
} SDbCfg;

S
Shengliang Guan 已提交
226
typedef struct {
227
  char    name[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
228 229 230 231
  char    acct[TSDB_USER_LEN];
  int64_t createdTime;
  int64_t updateTime;
  int64_t uid;
S
Shengliang Guan 已提交
232 233
  int32_t cfgVersion;
  int32_t vgVersion;
S
Shengliang Guan 已提交
234
  int8_t  hashMethod;  // default is 1
S
Shengliang Guan 已提交
235
  SDbCfg  cfg;
S
Shengliang Guan 已提交
236 237 238 239
} SDbObj;

typedef struct {
  int32_t    dnodeId;
S
Shengliang Guan 已提交
240
  ESyncState role;
S
Shengliang Guan 已提交
241 242
} SVnodeGid;

S
Shengliang Guan 已提交
243
typedef struct {
S
Shengliang Guan 已提交
244
  int32_t   vgId;
S
Shengliang Guan 已提交
245 246
  int64_t   createdTime;
  int64_t   updateTime;
S
Shengliang Guan 已提交
247
  int32_t   version;
S
Shengliang Guan 已提交
248 249
  uint32_t  hashBegin;
  uint32_t  hashEnd;
250
  char      dbName[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
251
  int64_t   dbUid;
S
Shengliang Guan 已提交
252
  int32_t   numOfTables;
S
Shengliang Guan 已提交
253
  int32_t   numOfTimeSeries;
S
Shengliang Guan 已提交
254 255 256
  int64_t   totalStorage;
  int64_t   compStorage;
  int64_t   pointsWritten;
S
Shengliang Guan 已提交
257 258 259
  int8_t    compact;
  int8_t    replica;
  SVnodeGid vnodeGid[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
260 261
} SVgObj;

S
Shengliang Guan 已提交
262
typedef struct {
S
Shengliang Guan 已提交
263
  char     name[TSDB_TABLE_FNAME_LEN];
264
  char     db[TSDB_DB_FNAME_LEN];
265 266
  int64_t  createdTime;
  int64_t  updateTime;
S
Shengliang Guan 已提交
267
  uint64_t uid;
S
Shengliang Guan 已提交
268
  uint64_t dbUid;
S
Shengliang Guan 已提交
269
  int32_t  version;
S
Shengliang Guan 已提交
270 271
  int32_t  numOfColumns;
  int32_t  numOfTags;
S
Shengliang Guan 已提交
272
  SRWLatch lock;
S
Shengliang Guan 已提交
273 274
  SSchema *pSchema;
} SStbObj;
S
Shengliang Guan 已提交
275

S
Shengliang Guan 已提交
276
typedef struct {
S
Shengliang Guan 已提交
277 278
  char    name[TSDB_FUNC_NAME_LEN];
  int64_t createdTime;
S
Shengliang Guan 已提交
279 280 281 282 283 284 285 286 287 288 289 290
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
  int8_t  outputType;
  int32_t outputLen;
  int32_t bufSize;
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char   *pComment;
  char   *pCode;
  char    pData[];
S
Shengliang Guan 已提交
291 292
} SFuncObj;

S
Shengliang Guan 已提交
293
typedef struct {
294
  int64_t id;
S
Shengliang Guan 已提交
295 296 297 298 299 300 301 302 303
  int8_t  type;
  int8_t  replica;
  int16_t numOfColumns;
  int32_t rowSize;
  int32_t numOfRows;
  int32_t numOfReads;
  int32_t payloadLen;
  void   *pIter;
  SMnode *pMnode;
304
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
305 306 307
  int16_t offset[TSDB_MAX_COLUMNS];
  int32_t bytes[TSDB_MAX_COLUMNS];
  char    payload[];
S
Shengliang Guan 已提交
308 309
} SShowObj;

L
Liu Jicong 已提交
310 311
typedef struct {
  char name[TSDB_TOPIC_FNAME_LEN];
312
  char db[TSDB_DB_FNAME_LEN];
L
Liu Jicong 已提交
313 314 315 316 317 318 319 320 321 322
  int64_t createTime;
  int64_t updateTime;
  uint64_t uid;
  uint64_t dbUid;
  int32_t version;
  SRWLatch lock;
  int32_t  execLen;
  void*    executor;
  int32_t  sqlLen;
  char*    sql;
L
Liu Jicong 已提交
323 324
  char*    logicalPlan;
  char*    physicalPlan;
L
Liu Jicong 已提交
325 326
} STopicObj;

L
Liu Jicong 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
typedef struct {
  char name[TSDB_TOPIC_FNAME_LEN];
  char db[TSDB_DB_FNAME_LEN];
  int64_t createTime;
  int64_t updateTime;
  uint64_t uid;
  //uint64_t dbUid;
  int32_t version;
  SRWLatch lock;

} SConsumerObj;

typedef struct {
  char name[TSDB_TOPIC_FNAME_LEN];
  char db[TSDB_DB_FNAME_LEN];
  int64_t createTime;
  int64_t updateTime;
  uint64_t uid;
  //uint64_t dbUid;
  int32_t version;
  SRWLatch lock;

} SCGroupObj;

S
Shengliang Guan 已提交
351
typedef struct SMnodeMsg {
S
Shengliang Guan 已提交
352
  char    user[TSDB_USER_LEN];
353
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
354
  int32_t acctId;
355
  SMnode *pMnode;
S
Shengliang Guan 已提交
356 357 358 359
  int64_t createdTime;
  SRpcMsg rpcMsg;
  int32_t contLen;
  void   *pCont;
S
Shengliang Guan 已提交
360
} SMnodeMsg;
S
Shengliang Guan 已提交
361

S
Shengliang Guan 已提交
362 363 364
#ifdef __cplusplus
}
#endif
S
Shengliang Guan 已提交
365

S
Shengliang Guan 已提交
366
#endif /*_TD_MND_DEF_H_*/