tmsg.h 32.9 KB
Newer Older
D
dapan1121 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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/>.
 */

#ifndef _TD_COMMON_TAOS_MSG_H_
#define _TD_COMMON_TAOS_MSG_H_

#ifdef __cplusplus
extern "C" {
#endif

H
more  
Hongze Cheng 已提交
23
#include "encode.h"
D
dapan1121 已提交
24 25
#include "taosdef.h"
#include "taoserror.h"
H
more  
Hongze Cheng 已提交
26
#include "tarray.h"
H
more  
Hongze Cheng 已提交
27
#include "tcoding.h"
D
dapan1121 已提交
28
#include "tdataformat.h"
L
Liu Jicong 已提交
29
#include "thash.h"
H
Hongze Cheng 已提交
30
#include "tlist.h"
D
dapan1121 已提交
31

H
Hongze Cheng 已提交
32
/* ------------------------ MESSAGE DEFINITIONS ------------------------ */
H
Hongze Cheng 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
#define TD_MSG_NUMBER_
#undef TD_MSG_DICT_
#undef TD_MSG_INFO_
#undef TD_MSG_SEG_CODE_
#include "tmsgdef.h"

#undef TD_MSG_NUMBER_
#undef TD_MSG_DICT_
#undef TD_MSG_INFO_
#define TD_MSG_SEG_CODE_
#include "tmsgdef.h"

#undef TD_MSG_NUMBER_
#undef TD_MSG_DICT_
#undef TD_MSG_INFO_
#undef TD_MSG_SEG_CODE_
#include "tmsgdef.h"

H
Hongze Cheng 已提交
51
extern char* tMsgInfo[];
H
Hongze Cheng 已提交
52 53 54 55 56
extern int   tMsgDict[];

#define TMSG_SEG_CODE(TYPE) (((TYPE)&0xff00) >> 8)
#define TMSG_SEG_SEQ(TYPE) ((TYPE)&0xff)
#define TMSG_INFO(TYPE) tMsgInfo[tMsgDict[TMSG_SEG_CODE(TYPE)] + TMSG_SEG_SEQ(TYPE)]
57
#define TMSG_INDEX(TYPE) (tMsgDict[TMSG_SEG_CODE(TYPE)] + TMSG_SEG_SEQ(TYPE))
D
dapan1121 已提交
58

H
Hongze Cheng 已提交
59 60
typedef uint16_t tmsg_t;

H
Hongze Cheng 已提交
61
/* ------------------------ OTHER DEFINITIONS ------------------------ */
D
dapan1121 已提交
62 63 64 65 66 67 68 69 70
// IE type
#define TSDB_IE_TYPE_SEC 1
#define TSDB_IE_TYPE_META 2
#define TSDB_IE_TYPE_MGMT_IP 3
#define TSDB_IE_TYPE_DNODE_CFG 4
#define TSDB_IE_TYPE_NEW_VERSION 5
#define TSDB_IE_TYPE_DNODE_EXT 6
#define TSDB_IE_TYPE_DNODE_STATE 7

L
Liu Jicong 已提交
71 72 73 74 75 76 77 78
typedef enum {
  HEARTBEAT_TYPE_MQ    = 0,
  HEARTBEAT_TYPE_QUERY = 1,
  // types can be added here
  //
  HEARTBEAT_TYPE_MAX
} EHbType;

S
Shengliang Guan 已提交
79 80
typedef enum _mgmt_table {
  TSDB_MGMT_TABLE_START,
D
dapan1121 已提交
81 82 83 84 85 86
  TSDB_MGMT_TABLE_ACCT,
  TSDB_MGMT_TABLE_USER,
  TSDB_MGMT_TABLE_DB,
  TSDB_MGMT_TABLE_TABLE,
  TSDB_MGMT_TABLE_DNODE,
  TSDB_MGMT_TABLE_MNODE,
S
Shengliang Guan 已提交
87 88 89
  TSDB_MGMT_TABLE_QNODE,
  TSDB_MGMT_TABLE_SNODE,
  TSDB_MGMT_TABLE_BNODE,
D
dapan1121 已提交
90
  TSDB_MGMT_TABLE_VGROUP,
S
Shengliang Guan 已提交
91
  TSDB_MGMT_TABLE_STB,
D
dapan1121 已提交
92 93 94 95 96 97 98 99 100
  TSDB_MGMT_TABLE_MODULE,
  TSDB_MGMT_TABLE_QUERIES,
  TSDB_MGMT_TABLE_STREAMS,
  TSDB_MGMT_TABLE_VARIABLES,
  TSDB_MGMT_TABLE_CONNS,
  TSDB_MGMT_TABLE_SCORES,
  TSDB_MGMT_TABLE_GRANTS,
  TSDB_MGMT_TABLE_VNODES,
  TSDB_MGMT_TABLE_CLUSTER,
S
Shengliang Guan 已提交
101
  TSDB_MGMT_TABLE_STREAMTABLES,
D
dapan1121 已提交
102 103 104
  TSDB_MGMT_TABLE_TP,
  TSDB_MGMT_TABLE_FUNCTION,
  TSDB_MGMT_TABLE_MAX,
S
Shengliang Guan 已提交
105
} EShowType;
D
dapan1121 已提交
106

H
Hongze Cheng 已提交
107 108
#define TSDB_ALTER_TABLE_ADD_TAG_COLUMN 1
#define TSDB_ALTER_TABLE_DROP_TAG_COLUMN 2
D
dapan1121 已提交
109
#define TSDB_ALTER_TABLE_CHANGE_TAG_COLUMN 3
H
Hongze Cheng 已提交
110
#define TSDB_ALTER_TABLE_UPDATE_TAG_VAL 4
D
dapan1121 已提交
111

H
Hongze Cheng 已提交
112 113 114
#define TSDB_ALTER_TABLE_ADD_COLUMN 5
#define TSDB_ALTER_TABLE_DROP_COLUMN 6
#define TSDB_ALTER_TABLE_CHANGE_COLUMN 7
D
dapan1121 已提交
115 116
#define TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN 8

H
Hongze Cheng 已提交
117 118 119 120 121 122
#define TSDB_FILL_NONE 0
#define TSDB_FILL_NULL 1
#define TSDB_FILL_SET_VALUE 2
#define TSDB_FILL_LINEAR 3
#define TSDB_FILL_PREV 4
#define TSDB_FILL_NEXT 5
D
dapan1121 已提交
123

H
Hongze Cheng 已提交
124
#define TSDB_ALTER_USER_PASSWD 0x1
D
dapan1121 已提交
125 126
#define TSDB_ALTER_USER_PRIVILEGES 0x2

H
Hongze Cheng 已提交
127
#define TSDB_KILL_MSG_LEN 30
D
dapan1121 已提交
128

H
Hongze Cheng 已提交
129 130
#define TSDB_VN_READ_ACCCESS ((char)0x1)
#define TSDB_VN_WRITE_ACCCESS ((char)0x2)
D
dapan1121 已提交
131 132
#define TSDB_VN_ALL_ACCCESS (TSDB_VN_READ_ACCCESS | TSDB_VN_WRITE_ACCCESS)

H
Hongze Cheng 已提交
133 134 135 136 137
#define TSDB_COL_NORMAL 0x0u  // the normal column of the table
#define TSDB_COL_TAG 0x1u     // the tag column type
#define TSDB_COL_UDC 0x2u     // the user specified normal string column, it is a dummy column
#define TSDB_COL_TMP 0x4u     // internal column generated by the previous operators
#define TSDB_COL_NULL 0x8u    // the column filter NULL or not
D
dapan1121 已提交
138

H
Hongze Cheng 已提交
139 140 141 142
#define TSDB_COL_IS_TAG(f) (((f & (~(TSDB_COL_NULL))) & TSDB_COL_TAG) != 0)
#define TSDB_COL_IS_NORMAL_COL(f) ((f & (~(TSDB_COL_NULL))) == TSDB_COL_NORMAL)
#define TSDB_COL_IS_UD_COL(f) ((f & (~(TSDB_COL_NULL))) == TSDB_COL_UDC)
#define TSDB_COL_REQ_NULL(f) (((f)&TSDB_COL_NULL) != 0)
D
dapan1121 已提交
143

S
Shengliang Guan 已提交
144
typedef struct {
L
Liu Jicong 已提交
145 146 147 148
  int32_t keyLen;
  int32_t valueLen;
  void*   key;
  void*   value;
L
Liu Jicong 已提交
149
} SKv;
L
Liu Jicong 已提交
150

S
Shengliang Guan 已提交
151
typedef struct {
L
Liu Jicong 已提交
152 153 154 155
  int32_t connId;
  int32_t hbType;
} SClientHbKey;

S
Shengliang Guan 已提交
156
typedef struct {
L
Liu Jicong 已提交
157
  SClientHbKey connKey;
L
Liu Jicong 已提交
158
  SHashObj*    info;  // hash<Skv.key, Skv>
L
Liu Jicong 已提交
159 160
} SClientHbReq;

S
Shengliang Guan 已提交
161
typedef struct {
L
Liu Jicong 已提交
162 163 164 165
  int64_t reqId;
  SArray* reqs;  // SArray<SClientHbReq>
} SClientHbBatchReq;

S
Shengliang Guan 已提交
166
typedef struct {
L
Liu Jicong 已提交
167 168 169 170 171 172
  SClientHbKey connKey;
  int32_t      status;
  int32_t      bodyLen;
  void*        body;
} SClientHbRsp;

S
Shengliang Guan 已提交
173
typedef struct {
L
Liu Jicong 已提交
174 175 176 177 178 179 180 181 182 183
  int64_t reqId;
  int64_t rspId;
  SArray* rsps;  // SArray<SClientHbRsp>
} SClientHbBatchRsp;

static FORCE_INLINE uint32_t hbKeyHashFunc(const char* key, uint32_t keyLen) {
  return taosIntHash_64(key, keyLen);
}

int   tSerializeSClientHbReq(void** buf, const SClientHbReq* pReq);
L
Liu Jicong 已提交
184 185 186 187
void* tDeserializeSClientHbReq(void* buf, SClientHbReq* pReq);

int   tSerializeSClientHbRsp(void** buf, const SClientHbRsp* pRsp);
void* tDeserializeSClientHbRsp(void* buf, SClientHbRsp* pRsp);
L
Liu Jicong 已提交
188

L
Liu Jicong 已提交
189
static FORCE_INLINE void  tFreeClientHbReq(void *pReq) {
L
Liu Jicong 已提交
190
  SClientHbReq* req = (SClientHbReq*)pReq;
L
Liu Jicong 已提交
191 192 193 194
  taosHashCleanup(req->info);
  free(pReq);
}

L
Liu Jicong 已提交
195
int   tSerializeSClientHbBatchReq(void** buf, const SClientHbBatchReq* pReq);
L
Liu Jicong 已提交
196
void* tDeserializeSClientHbBatchReq(void* buf, SClientHbBatchReq* pReq);
L
Liu Jicong 已提交
197 198 199

static FORCE_INLINE void tFreeClientHbBatchReq(void* pReq) {
  SClientHbBatchReq *req = (SClientHbBatchReq*)pReq;
L
Liu Jicong 已提交
200
  //taosArrayDestroyEx(req->reqs, tFreeClientHbReq);
L
Liu Jicong 已提交
201 202 203
  free(pReq);
}

L
Liu Jicong 已提交
204 205 206
int   tSerializeSClientHbBatchRsp(void** buf, const SClientHbBatchRsp* pBatchRsp);
void* tDeserializeSClientHbBatchRsp(void* buf, SClientHbBatchRsp* pBatchRsp);

L
Liu Jicong 已提交
207
static FORCE_INLINE int taosEncodeSKv(void** buf, const SKv* pKv) {
L
Liu Jicong 已提交
208
  int tlen = 0;
L
Liu Jicong 已提交
209 210 211 212
  tlen += taosEncodeFixedI32(buf, pKv->keyLen);
  tlen += taosEncodeFixedI32(buf, pKv->valueLen);
  tlen += taosEncodeBinary(buf, pKv->key, pKv->keyLen);
  tlen += taosEncodeBinary(buf, pKv->value, pKv->valueLen);
L
Liu Jicong 已提交
213 214 215
  return tlen;
}

L
Liu Jicong 已提交
216 217 218 219 220
static FORCE_INLINE void* taosDecodeSKv(void* buf, SKv* pKv) {
  buf = taosDecodeFixedI32(buf, &pKv->keyLen);
  buf = taosDecodeFixedI32(buf, &pKv->valueLen);
  buf = taosDecodeBinary(buf, &pKv->key, pKv->keyLen);
  buf = taosDecodeBinary(buf, &pKv->value, pKv->valueLen);
L
Liu Jicong 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
  return buf;
}

static FORCE_INLINE int taosEncodeSClientHbKey(void** buf, const SClientHbKey* pKey) {
  int tlen = 0;
  tlen += taosEncodeFixedI32(buf, pKey->connId);
  tlen += taosEncodeFixedI32(buf, pKey->hbType);
  return tlen;
}

static FORCE_INLINE void* taosDecodeSClientHbKey(void* buf, SClientHbKey* pKey) {
  buf = taosDecodeFixedI32(buf, &pKey->connId);
  buf = taosDecodeFixedI32(buf, &pKey->hbType);
  return buf;
}

L
Liu Jicong 已提交
237

S
Shengliang Guan 已提交
238
typedef struct {
S
Shengliang Guan 已提交
239
  int32_t vgId;
D
dapan1121 已提交
240
  char*   dbName;
H
Hongze Cheng 已提交
241
  char*   tableFullName;
D
dapan1121 已提交
242 243
} SBuildTableMetaInput;

S
Shengliang Guan 已提交
244
typedef struct {
D
dapan1121 已提交
245
  char    db[TSDB_TABLE_FNAME_LEN];
246
  int32_t vgVersion;
D
dapan1121 已提交
247 248
} SBuildUseDBInput;

D
dapan1121 已提交
249 250 251 252
#pragma pack(push, 1)

// null-terminated string instead of char array to avoid too many memory consumption in case of more than 1M tableMeta
typedef struct {
D
dapan1121 已提交
253
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
254
  uint16_t port;
D
dapan1121 已提交
255
} SEpAddr;
D
dapan1121 已提交
256

S
Shengliang Guan 已提交
257
typedef struct {
D
dapan1121 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
  int32_t contLen;
  int32_t vgId;
} SMsgHead;

// Submit message for one table
typedef struct SSubmitBlk {
  uint64_t uid;        // table unique id
  int32_t  tid;        // table id
  int32_t  padding;    // TODO just for padding here
  int32_t  sversion;   // data schema version
  int32_t  dataLen;    // data part length, not including the SSubmitBlk head
  int32_t  schemaLen;  // schema length, if length is 0, no schema exists
  int16_t  numOfRows;  // total number of rows in current submit block
  char     data[];
} SSubmitBlk;

// Submit message for this TSDB
S
Shengliang Guan 已提交
275
typedef struct {
S
Shengliang Guan 已提交
276
  SMsgHead header;
H
Hongze Cheng 已提交
277
  int64_t  version;
S
Shengliang Guan 已提交
278 279 280
  int32_t  length;
  int32_t  numOfBlocks;
  char     blocks[];
D
dapan1121 已提交
281 282
} SSubmitMsg;

H
Hongze Cheng 已提交
283 284 285 286 287 288 289 290 291 292 293 294
typedef struct {
  int32_t totalLen;
  int32_t len;
  SMemRow row;
} SSubmitBlkIter;

typedef struct {
  int32_t totalLen;
  int32_t len;
  void*   pMsg;
} SSubmitMsgIter;

H
Hongze Cheng 已提交
295 296 297 298
int     tInitSubmitMsgIter(SSubmitMsg* pMsg, SSubmitMsgIter* pIter);
int     tGetSubmitMsgNext(SSubmitMsgIter* pIter, SSubmitBlk** pPBlock);
int     tInitSubmitBlkIter(SSubmitBlk* pBlock, SSubmitBlkIter* pIter);
SMemRow tGetSubmitBlkNext(SSubmitBlkIter* pIter);
H
Hongze Cheng 已提交
299

D
dapan1121 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313
typedef struct {
  int32_t index;  // index of failed block in submit blocks
  int32_t vnode;  // vnode index of failed block
  int32_t sid;    // table index of failed block
  int32_t code;   // errorcode while write data to vnode, such as not created, dropped, no space, invalid table
} SShellSubmitRspBlock;

typedef struct {
  int32_t              code;          // 0-success, > 0 error code
  int32_t              numOfRows;     // number of records the client is trying to write
  int32_t              affectedRows;  // number of records actually written
  int32_t              failedRows;    // number of failed records (exclude duplicate records)
  int32_t              numOfFailedBlocks;
  SShellSubmitRspBlock failedBlocks[];
S
Shengliang Guan 已提交
314
} SShellSubmitRsp;
D
dapan1121 已提交
315 316

typedef struct SSchema {
S
Shengliang Guan 已提交
317
  int8_t  type;
S
Shengliang Guan 已提交
318
  int32_t colId;
319
  int32_t bytes;
S
Shengliang Guan 已提交
320
  char    name[TSDB_COL_NAME_LEN];
D
dapan1121 已提交
321 322 323
} SSchema;

typedef struct {
S
Shengliang Guan 已提交
324 325 326 327 328
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  igExists;
  int32_t numOfTags;
  int32_t numOfColumns;
  SSchema pSchema[];
S
Shengliang Guan 已提交
329
} SMCreateStbReq;
D
dapan1121 已提交
330 331 332 333

typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
334
} SMDropStbReq;
S
Shengliang Guan 已提交
335 336 337 338 339

typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
  SSchema schema;
S
Shengliang Guan 已提交
340
} SMAlterStbReq;
D
dapan1121 已提交
341 342 343

typedef struct {
  int32_t pid;
S
Shengliang Guan 已提交
344 345
  char    app[TSDB_APP_NAME_LEN];
  char    db[TSDB_DB_NAME_LEN];
346
  int64_t startTime;
S
Shengliang Guan 已提交
347
} SConnectReq;
D
dapan1121 已提交
348 349

typedef struct SEpSet {
S
Shengliang Guan 已提交
350 351 352 353
  int8_t   inUse;
  int8_t   numOfEps;
  uint16_t port[TSDB_MAX_REPLICA];
  char     fqdn[TSDB_MAX_REPLICA][TSDB_FQDN_LEN];
D
dapan1121 已提交
354 355
} SEpSet;

L
Liu Jicong 已提交
356
static FORCE_INLINE int taosEncodeSEpSet(void** buf, const SEpSet* pEp) {
L
Liu Jicong 已提交
357 358 359 360 361 362 363 364
  int tlen = 0;
  tlen += taosEncodeFixedI8(buf, pEp->inUse);
  tlen += taosEncodeFixedI8(buf, pEp->numOfEps);
  for (int i = 0; i < TSDB_MAX_REPLICA; i++) {
    tlen += taosEncodeFixedU16(buf, pEp->port[i]);
    tlen += taosEncodeString(buf, pEp->fqdn[i]);
  }
  return tlen;
L
Liu Jicong 已提交
365 366
}

L
Liu Jicong 已提交
367 368 369 370 371 372 373
static FORCE_INLINE void* taosDecodeSEpSet(void* buf, SEpSet* pEp) {
  buf = taosDecodeFixedI8(buf, &pEp->inUse);
  buf = taosDecodeFixedI8(buf, &pEp->numOfEps);
  for (int i = 0; i < TSDB_MAX_REPLICA; i++) {
    buf = taosDecodeFixedU16(buf, &pEp->port[i]);
    buf = taosDecodeStringTo(buf, pEp->fqdn[i]);
  }
L
Liu Jicong 已提交
374 375 376
  return buf;
}

L
Liu Jicong 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
typedef struct SMqHbRsp {
  int8_t status;    //idle or not
  int8_t vnodeChanged;
  int8_t epChanged; // should use new epset
  int8_t reserved;
  SEpSet epSet;
} SMqHbRsp;

static FORCE_INLINE int taosEncodeSMqHbRsp(void** buf, const SMqHbRsp* pRsp) {
  int tlen = 0;
  tlen += taosEncodeFixedI8(buf, pRsp->status);
  tlen += taosEncodeFixedI8(buf, pRsp->vnodeChanged);
  tlen += taosEncodeFixedI8(buf, pRsp->epChanged);
  tlen += taosEncodeSEpSet(buf, &pRsp->epSet);
  return tlen;
}

static FORCE_INLINE void* taosDecodeSMqHbRsp(void* buf, SMqHbRsp* pRsp) {
  buf = taosDecodeFixedI8(buf, &pRsp->status);
  buf = taosDecodeFixedI8(buf, &pRsp->vnodeChanged);
  buf = taosDecodeFixedI8(buf, &pRsp->epChanged);
  buf = taosDecodeSEpSet(buf, &pRsp->epSet);
  return buf;
}

D
dapan1121 已提交
402
typedef struct {
H
more  
Hongze Cheng 已提交
403 404 405 406
  int32_t acctId;
  int64_t clusterId;
  int32_t connId;
  int8_t  superUser;
S
Shengliang Guan 已提交
407
  int8_t  align[3];
H
more  
Hongze Cheng 已提交
408
  SEpSet  epSet;
D
dapan1121 已提交
409 410 411
} SConnectRsp;

typedef struct {
S
Shengliang Guan 已提交
412
  char    user[TSDB_USER_LEN];
413
  char    pass[TSDB_PASSWORD_LEN];
D
dapan1121 已提交
414 415 416 417
  int32_t maxUsers;
  int32_t maxDbs;
  int32_t maxTimeSeries;
  int32_t maxStreams;
S
Shengliang Guan 已提交
418
  int32_t accessState;  // Configured only by command
S
Shengliang Guan 已提交
419
  int64_t maxStorage;   // In unit of GB
S
Shengliang Guan 已提交
420
} SCreateAcctReq, SAlterAcctReq;
D
dapan1121 已提交
421 422

typedef struct {
S
Shengliang Guan 已提交
423
  char user[TSDB_USER_LEN];
S
Shengliang Guan 已提交
424
} SDropUserReq, SDropAcctReq;
D
dapan1121 已提交
425 426

typedef struct {
S
Shengliang Guan 已提交
427 428 429 430
  int8_t type;
  char   user[TSDB_USER_LEN];
  char   pass[TSDB_PASSWORD_LEN];
  int8_t superUser;  // denote if it is a super user or not
S
Shengliang Guan 已提交
431
} SCreateUserReq, SAlterUserReq;
D
dapan1121 已提交
432 433

typedef struct {
S
Shengliang Guan 已提交
434 435 436
  int16_t colId;     // column id
  int16_t colIndex;  // column index in colList if it is a normal column or index in tagColList if a tag
  int16_t flag;      // denote if it is a tag or a normal column
437
  char    name[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
438 439
} SColIndex;

S
Shengliang Guan 已提交
440
typedef struct {
D
dapan1121 已提交
441 442
  int16_t lowerRelOptr;
  int16_t upperRelOptr;
S
Shengliang Guan 已提交
443
  int16_t filterstr;  // denote if current column is char(binary/nchar)
D
dapan1121 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460

  union {
    struct {
      int64_t lowerBndi;
      int64_t upperBndi;
    };
    struct {
      double lowerBndd;
      double upperBndd;
    };
    struct {
      int64_t pz;
      int64_t len;
    };
  };
} SColumnFilterInfo;

S
Shengliang Guan 已提交
461
typedef struct {
S
Shengliang Guan 已提交
462 463 464
  int16_t numOfFilters;
  union {
    int64_t            placeholder;
H
Hongze Cheng 已提交
465
    SColumnFilterInfo* filterInfo;
D
dapan1121 已提交
466 467 468 469 470 471
  };
} SColumnFilterList;
/*
 * for client side struct, we only need the column id, type, bytes are not necessary
 * But for data in vnode side, we need all the following information.
 */
S
Shengliang Guan 已提交
472
typedef struct {
S
Shengliang Guan 已提交
473 474 475 476
  int16_t           colId;
  int16_t           type;
  int16_t           bytes;
  SColumnFilterList flist;
D
dapan1121 已提交
477 478
} SColumnInfo;

S
Shengliang Guan 已提交
479
typedef struct {
D
dapan1121 已提交
480 481 482 483 484 485 486 487 488 489
  uint64_t uid;
  TSKEY    key;  // last accessed ts, for subscription
} STableIdInfo;

typedef struct STimeWindow {
  TSKEY skey;
  TSKEY ekey;
} STimeWindow;

typedef struct {
S
Shengliang Guan 已提交
490 491 492 493
  int32_t tsOffset;       // offset value in current msg body, NOTE: ts list is compressed
  int32_t tsLen;          // total length of ts comp block
  int32_t tsNumOfBlocks;  // ts comp block numbers
  int32_t tsOrder;        // ts comp block order
D
dapan1121 已提交
494 495
} STsBufInfo;

S
Shengliang Guan 已提交
496
typedef struct {
S
Shengliang Guan 已提交
497
  int32_t tz;  // query client timezone
D
dapan1121 已提交
498 499 500 501 502 503 504 505 506
  char    intervalUnit;
  char    slidingUnit;
  char    offsetUnit;
  int64_t interval;
  int64_t sliding;
  int64_t offset;
} SInterval;

typedef struct {
S
Shengliang Guan 已提交
507 508
  SMsgHead head;
  char     version[TSDB_VERSION_LEN];
D
dapan1121 已提交
509

S
Shengliang Guan 已提交
510 511 512 513 514 515 516 517 518 519 520 521 522
  bool stableQuery;        // super table query or not
  bool topBotQuery;        // TODO used bitwise flag
  bool interpQuery;        // interp query or not
  bool groupbyColumn;      // denote if this is a groupby normal column query
  bool hasTagResults;      // if there are tag values in final result or not
  bool timeWindowInterpo;  // if the time window start/end required interpolation
  bool queryBlockDist;     // if query data block distribution
  bool stabledev;          // super table stddev query
  bool tsCompQuery;        // is tscomp query
  bool simpleAgg;
  bool pointInterpQuery;  // point interpolation query
  bool needReverseScan;   // need reverse scan
  bool stateWindow;       // state window flag
D
dapan1121 已提交
523 524 525 526 527

  STimeWindow window;
  int32_t     numOfTables;
  int16_t     order;
  int16_t     orderColId;
S
Shengliang Guan 已提交
528
  int16_t     numOfCols;  // the number of columns will be load from vnode
D
dapan1121 已提交
529
  SInterval   interval;
S
Shengliang Guan 已提交
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
  //  SSessionWindow sw;            // session window
  int16_t tagCondLen;      // tag length in current query
  int16_t colCondLen;      // column length in current query
  int16_t numOfGroupCols;  // num of group by columns
  int16_t orderByIdx;
  int16_t orderType;    // used in group by xx order by xxx
  int64_t vgroupLimit;  // limit the number of rows for each table, used in order by + limit in stable projection query.
  int16_t prjOrder;     // global order in super table projection query.
  int64_t limit;
  int64_t offset;
  int32_t queryType;    // denote another query process
  int16_t numOfOutput;  // final output columns numbers
  int16_t fillType;     // interpolate type
  int64_t fillVal;      // default value array list
  int32_t secondStageOutput;
  STsBufInfo  tsBuf;          // tsBuf info
  int32_t     numOfTags;      // number of tags columns involved
  int32_t     sqlstrLen;      // sql query string
  int32_t     prevResultLen;  // previous result length
D
dapan1121 已提交
549
  int32_t     numOfOperator;
H
Hongze Cheng 已提交
550 551
  int32_t     tableScanOperator;  // table scan operator. -1 means no scan operator
  int32_t     udfNum;             // number of udf function
D
dapan1121 已提交
552 553 554
  int32_t     udfContentOffset;
  int32_t     udfContentLen;
  SColumnInfo tableCols[];
S
Shengliang Guan 已提交
555
} SQueryTableReq;
D
dapan1121 已提交
556 557

typedef struct {
S
Shengliang Guan 已提交
558
  int32_t code;
D
dapan1121 已提交
559 560 561 562 563
} SQueryTableRsp;

// todo: the show handle should be replaced with id
typedef struct {
  SMsgHead header;
S
Shengliang Guan 已提交
564
  union {
565
    int64_t showId;
S
Shengliang Guan 已提交
566 567 568 569
    int64_t qhandle;
    int64_t qId;
  };  // query handle
  int8_t free;
S
Shengliang Guan 已提交
570
} SRetrieveTableReq;
D
dapan1121 已提交
571

S
Shengliang Guan 已提交
572
typedef struct {
D
dapan1121 已提交
573
  int64_t useconds;
S
Shengliang Guan 已提交
574 575
  int8_t  completed;  // all results are returned to client
  int8_t  precision;
D
dapan1121 已提交
576 577
  int8_t  compressed;
  int32_t compLen;
H
Haojun Liao 已提交
578 579

  int32_t numOfRows;
D
dapan1121 已提交
580 581 582 583
  char    data[];
} SRetrieveTableRsp;

typedef struct {
584
  char    db[TSDB_DB_FNAME_LEN];
585
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
586 587 588 589 590 591
  int32_t cacheBlockSize;  // MB
  int32_t totalBlocks;
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
592 593
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
594 595
  int32_t commitTime;
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
596
  int8_t  walLevel;
S
Shengliang Guan 已提交
597 598 599 600 601 602
  int8_t  precision;  // time resolution
  int8_t  compression;
  int8_t  replications;
  int8_t  quorum;
  int8_t  update;
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
603
  int8_t  ignoreExist;
S
Shengliang Guan 已提交
604
} SCreateDbReq;
S
Shengliang Guan 已提交
605 606

typedef struct {
607
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
608 609 610 611 612 613 614 615
  int32_t totalBlocks;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
  int32_t fsyncPeriod;
  int8_t  walLevel;
  int8_t  quorum;
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
616
} SAlterDbReq;
S
Shengliang Guan 已提交
617 618

typedef struct {
S
Shengliang Guan 已提交
619 620
  char   db[TSDB_TABLE_FNAME_LEN];
  int8_t ignoreNotExists;
S
Shengliang Guan 已提交
621
} SDropDbReq;
S
Shengliang Guan 已提交
622 623 624

typedef struct {
  char    db[TSDB_TABLE_FNAME_LEN];
625
  int32_t vgVersion;
S
Shengliang Guan 已提交
626
} SUseDbReq;
S
Shengliang Guan 已提交
627 628

typedef struct {
S
Shengliang Guan 已提交
629
  char db[TSDB_TABLE_FNAME_LEN];
S
Shengliang Guan 已提交
630
} SSyncDbReq;
S
Shengliang Guan 已提交
631 632

typedef struct {
S
Shengliang Guan 已提交
633
  char db[TSDB_TABLE_FNAME_LEN];
S
Shengliang Guan 已提交
634
} SCompactDbReq;
D
dapan1121 已提交
635 636

typedef struct {
S
Shengliang Guan 已提交
637
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
638 639 640
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
S
Shengliang Guan 已提交
641
  int8_t  outputType;
S
Shengliang Guan 已提交
642
  int32_t outputLen;
S
Shengliang Guan 已提交
643
  int32_t bufSize;
S
Shengliang Guan 已提交
644 645 646 647
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
S
Shengliang Guan 已提交
648
} SCreateFuncReq;
D
dapan1121 已提交
649 650

typedef struct {
S
Shengliang Guan 已提交
651
  char name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
652
} SDropFuncReq;
S
Shengliang Guan 已提交
653 654 655 656

typedef struct {
  int32_t numOfFuncs;
  char    pFuncNames[];
S
Shengliang Guan 已提交
657
} SRetrieveFuncReq;
D
dapan1121 已提交
658 659 660

typedef struct {
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
661 662 663 664 665
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
  int8_t  outputType;
  int32_t outputLen;
D
dapan1121 已提交
666
  int32_t bufSize;
S
Shengliang Guan 已提交
667 668 669 670 671
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
} SFuncInfo;
D
dapan1121 已提交
672 673

typedef struct {
S
Shengliang Guan 已提交
674 675 676
  int32_t numOfFuncs;
  char    pFuncInfos[];
} SRetrieveFuncRsp;
D
dapan1121 已提交
677 678

typedef struct {
S
Shengliang Guan 已提交
679 680 681 682 683 684
  int32_t statusInterval;
  int64_t checkTime;                    // 1970-01-01 00:00:00.000
  char    timezone[TSDB_TIMEZONE_LEN];  // tsTimezone
  char    locale[TSDB_LOCALE_LEN];      // tsLocale
  char    charset[TSDB_LOCALE_LEN];     // tsCharset
} SClusterCfg;
D
dapan1121 已提交
685

S
Shengliang Guan 已提交
686 687 688
typedef struct {
  int32_t vgId;
  int8_t  role;
S
Shengliang Guan 已提交
689
  int8_t  align[3];
S
Shengliang Guan 已提交
690 691 692 693 694 695 696
  int64_t totalStorage;
  int64_t compStorage;
  int64_t pointsWritten;
  int64_t tablesNum;
} SVnodeLoad;

typedef struct {
S
Shengliang Guan 已提交
697 698
  int32_t    num;
  SVnodeLoad data[];
S
Shengliang Guan 已提交
699 700
} SVnodeLoads;

S
Shengliang Guan 已提交
701
typedef struct {
S
Shengliang Guan 已提交
702
  int32_t     sver;
S
Shengliang Guan 已提交
703
  int32_t     dnodeId;
704
  int64_t     clusterId;
705
  int64_t     dver;
S
Shengliang Guan 已提交
706 707
  int64_t     rebootTime;
  int64_t     updateTime;
S
Shengliang Guan 已提交
708 709
  int32_t     numOfCores;
  int32_t     numOfSupportVnodes;
S
Shengliang Guan 已提交
710 711 712
  char        dnodeEp[TSDB_EP_LEN];
  SClusterCfg clusterCfg;
  SVnodeLoads vnodeLoads;
S
Shengliang Guan 已提交
713
} SStatusReq;
D
dapan1121 已提交
714

S
Shengliang Guan 已提交
715 716
typedef struct {
  int32_t reserved;
S
Shengliang Guan 已提交
717
} STransReq;
S
Shengliang Guan 已提交
718

D
dapan1121 已提交
719
typedef struct {
S
Shengliang Guan 已提交
720
  int32_t dnodeId;
721
  int64_t clusterId;
D
dapan1121 已提交
722 723 724
} SDnodeCfg;

typedef struct {
S
Shengliang Guan 已提交
725
  int32_t  id;
S
Shengliang Guan 已提交
726
  int8_t   isMnode;
S
Shengliang Guan 已提交
727
  int8_t   align;
S
Shengliang Guan 已提交
728 729
  uint16_t port;
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
730 731 732
} SDnodeEp;

typedef struct {
S
Shengliang Guan 已提交
733 734
  int32_t  num;
  SDnodeEp eps[];
D
dapan1121 已提交
735 736 737
} SDnodeEps;

typedef struct {
738
  int64_t   dver;
S
Shengliang Guan 已提交
739 740
  SDnodeCfg dnodeCfg;
  SDnodeEps dnodeEps;
D
dapan1121 已提交
741 742 743
} SStatusRsp;

typedef struct {
S
Shengliang Guan 已提交
744 745 746
  int32_t  id;
  uint16_t port;                 // node sync Port
  char     fqdn[TSDB_FQDN_LEN];  // node FQDN
S
Shengliang Guan 已提交
747 748 749
} SReplica;

typedef struct {
S
Shengliang Guan 已提交
750
  int32_t  vgId;
S
Shengliang Guan 已提交
751
  int32_t  dnodeId;
752
  char     db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
753
  uint64_t dbUid;
754
  int32_t  vgVersion;
S
Shengliang Guan 已提交
755 756 757 758 759 760
  int32_t  cacheBlockSize;
  int32_t  totalBlocks;
  int32_t  daysPerFile;
  int32_t  daysToKeep0;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
Shengliang Guan 已提交
761 762 763
  int32_t  minRows;
  int32_t  maxRows;
  int32_t  commitTime;
S
Shengliang Guan 已提交
764
  int32_t  fsyncPeriod;
S
Shengliang Guan 已提交
765
  int8_t   walLevel;
S
Shengliang Guan 已提交
766 767 768
  int8_t   precision;
  int8_t   compression;
  int8_t   quorum;
S
Shengliang Guan 已提交
769 770
  int8_t   update;
  int8_t   cacheLastRow;
S
Shengliang Guan 已提交
771
  int8_t   replica;
S
Shengliang Guan 已提交
772 773
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
774
} SCreateVnodeReq, SAlterVnodeReq;
D
dapan1121 已提交
775

S
Shengliang Guan 已提交
776
typedef struct {
S
Shengliang Guan 已提交
777 778 779
  int32_t  vgId;
  int32_t  dnodeId;
  uint64_t dbUid;
S
Shengliang Guan 已提交
780 781
  char     db[TSDB_DB_FNAME_LEN];
} SDropVnodeReq, SSyncVnodeReq, SCompactVnodeReq;
S
Shengliang Guan 已提交
782 783 784 785

typedef struct {
  int32_t vgId;
  int8_t  accessState;
S
Shengliang Guan 已提交
786
} SAuthVnodeReq;
S
Shengliang Guan 已提交
787

D
dapan1121 已提交
788
typedef struct {
D
dapan1121 已提交
789
  SMsgHead header;
D
dapan1121 已提交
790
  char     dbFname[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
791
  char     tableFname[TSDB_TABLE_FNAME_LEN];
S
Shengliang Guan 已提交
792
} STableInfoReq;
D
dapan1121 已提交
793 794

typedef struct {
S
Shengliang Guan 已提交
795
  int8_t  metaClone;  // create local clone of the cached table meta
D
dapan1121 已提交
796 797 798 799
  int32_t numOfVgroups;
  int32_t numOfTables;
  int32_t numOfUdfs;
  char    tableNames[];
S
Shengliang Guan 已提交
800
} SMultiTableInfoReq;
D
dapan1121 已提交
801

D
dapan1121 已提交
802 803
typedef struct SVgroupInfo {
  int32_t    vgId;
S
Shengliang Guan 已提交
804 805
  uint32_t   hashBegin;
  uint32_t   hashEnd;
806
  int8_t     inUse;
D
dapan1121 已提交
807
  int8_t     numOfEps;
S
Shengliang Guan 已提交
808
  SEpAddr epAddr[TSDB_MAX_REPLICA];
D
dapan1121 已提交
809 810
} SVgroupInfo;

D
dapan1121 已提交
811 812 813
typedef struct {
  int32_t    vgId;
  int8_t     numOfEps;
S
Shengliang Guan 已提交
814
  SEpAddr epAddr[TSDB_MAX_REPLICA];
D
dapan1121 已提交
815 816 817
} SVgroupMsg;

typedef struct {
S
Shengliang Guan 已提交
818
  int32_t    numOfVgroups;
D
dapan1121 已提交
819
  SVgroupMsg vgroups[];
S
Shengliang Guan 已提交
820
} SVgroupsInfo;
D
dapan1121 已提交
821

S
Shengliang Guan 已提交
822
typedef struct {
823
  char     tbFname[TSDB_TABLE_FNAME_LEN];  // table full name
S
Shengliang Guan 已提交
824
  char     stbFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
825
  char     dbFname[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
826 827 828 829 830 831 832 833
  int32_t  numOfTags;
  int32_t  numOfColumns;
  int8_t   precision;
  int8_t   tableType;
  int8_t   update;
  int32_t  sversion;
  int32_t  tversion;
  uint64_t suid;
S
Shengliang Guan 已提交
834
  uint64_t tuid;
S
Shengliang Guan 已提交
835 836
  int32_t  vgId;
  SSchema  pSchema[];
S
Shengliang Guan 已提交
837
} STableMetaRsp;
D
dapan1121 已提交
838

S
Shengliang Guan 已提交
839
typedef struct {
S
Shengliang Guan 已提交
840 841 842 843 844 845 846 847
  int32_t numOfTables;
  int32_t numOfVgroup;
  int32_t numOfUdf;
  int32_t contLen;
  int8_t  compressed;  // denote if compressed or not
  int32_t rawLen;      // size before compress
  uint8_t metaClone;   // make meta clone after retrieve meta from mnode
  char    meta[];
D
dapan1121 已提交
848 849 850 851 852
} SMultiTableMeta;

typedef struct {
  int32_t dataLen;
  char    name[TSDB_TABLE_FNAME_LEN];
H
Hongze Cheng 已提交
853
  char*   data;
D
dapan1121 已提交
854 855
} STagData;

D
dapan1121 已提交
856
typedef struct {
857
  char        db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
858
  int64_t     uid;
859
  int32_t     vgVersion;
S
Shengliang Guan 已提交
860
  int32_t     vgNum;
861
  int8_t      hashMethod;
D
dapan1121 已提交
862
  SVgroupInfo vgroupInfo[];
863
} SUseDbRsp;
D
dapan1121 已提交
864

D
dapan1121 已提交
865 866 867 868 869 870
/*
 * sql: show tables like '%a_%'
 * payload is the query condition, e.g., '%a_%'
 * payloadLen is the length of payload
 */
typedef struct {
S
Shengliang Guan 已提交
871
  int8_t  type;
872
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
873 874
  int16_t payloadLen;
  char    payload[];
S
Shengliang Guan 已提交
875
} SShowReq;
D
dapan1121 已提交
876 877

typedef struct {
878
  char    db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
879 880
  int32_t numOfVgroup;
  int32_t vgid[];
S
Shengliang Guan 已提交
881
} SCompactReq;
D
dapan1121 已提交
882

S
Shengliang Guan 已提交
883
typedef struct {
884
  int64_t       showId;
S
Shengliang Guan 已提交
885
  STableMetaRsp tableMeta;
D
dapan1121 已提交
886 887 888
} SShowRsp;

typedef struct {
S
Shengliang Guan 已提交
889
  char    fqdn[TSDB_FQDN_LEN];  // end point, hostname:port
890
  int32_t port;
S
Shengliang Guan 已提交
891
} SCreateDnodeReq;
S
Shengliang Guan 已提交
892 893 894

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
895
} SDropDnodeReq;
S
Shengliang Guan 已提交
896 897 898

typedef struct {
  int32_t dnodeId;
899
  char    config[TSDB_DNODE_CONFIG_LEN];
S
Shengliang Guan 已提交
900
} SMCfgDnodeReq, SDCfgDnodeReq;
D
dapan1121 已提交
901

S
Shengliang Guan 已提交
902 903
typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
904
} SMCreateMnodeReq, SMDropMnodeReq, SDDropMnodeReq;
S
Shengliang Guan 已提交
905

D
dapan1121 已提交
906
typedef struct {
S
Shengliang Guan 已提交
907 908
  int32_t  dnodeId;
  int8_t   replica;
S
Shengliang Guan 已提交
909
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
910
} SDCreateMnodeReq, SDAlterMnodeReq;
D
dapan1121 已提交
911

S
Shengliang Guan 已提交
912 913
typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
914
} SMCreateQnodeReq, SMDropQnodeReq, SDCreateQnodeReq, SDDropQnodeReq;
S
Shengliang Guan 已提交
915 916 917

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
918
} SMCreateSnodeReq, SMDropSnodeReq, SDCreateSnodeReq, SDDropSnodeReq;
S
Shengliang Guan 已提交
919 920 921

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
922
} SMCreateBnodeReq, SMDropBnodeReq, SDCreateBnodeReq, SDDropBnodeReq;
S
Shengliang Guan 已提交
923

D
dapan1121 已提交
924
typedef struct {
S
Shengliang Guan 已提交
925 926 927 928 929 930 931 932 933 934 935
  char    sql[TSDB_SHOW_SQL_LEN];
  int32_t queryId;
  int64_t useconds;
  int64_t stime;
  int64_t qId;
  int64_t sqlObjId;
  int32_t pid;
  char    fqdn[TSDB_FQDN_LEN];
  int8_t  stableQuery;
  int32_t numOfSub;
  char    subSqlInfo[TSDB_SHOW_SUBQUERY_LEN];  // include subqueries' index, Obj IDs and states(C-complete/I-imcomplete)
D
dapan1121 已提交
936 937 938
} SQueryDesc;

typedef struct {
S
Shengliang Guan 已提交
939 940 941 942 943 944
  int32_t connId;
  int32_t pid;
  int32_t numOfQueries;
  int32_t numOfStreams;
  char    app[TSDB_APP_NAME_LEN];
  char    pData[];
S
Shengliang Guan 已提交
945
} SHeartBeatReq;
D
dapan1121 已提交
946 947

typedef struct {
S
Shengliang Guan 已提交
948 949 950 951 952 953
  int32_t connId;
  int32_t queryId;
  int32_t streamId;
  int32_t totalDnodes;
  int32_t onlineDnodes;
  int8_t  killConnection;
S
Shengliang Guan 已提交
954
  int8_t  align[3];
S
Shengliang Guan 已提交
955
  SEpSet  epSet;
D
dapan1121 已提交
956 957
} SHeartBeatRsp;

S
Shengliang Guan 已提交
958 959 960
typedef struct {
  int32_t connId;
  int32_t queryId;
S
Shengliang Guan 已提交
961
} SKillQueryReq;
S
Shengliang Guan 已提交
962 963 964

typedef struct {
  int32_t connId;
S
Shengliang Guan 已提交
965
} SKillConnReq;
D
dapan1121 已提交
966 967 968 969 970

typedef struct {
  char user[TSDB_USER_LEN];
  char spi;
  char encrypt;
971 972
  char secret[TSDB_PASSWORD_LEN];
  char ckey[TSDB_PASSWORD_LEN];
S
Shengliang Guan 已提交
973
} SAuthReq, SAuthRsp;
D
dapan1121 已提交
974 975

typedef struct {
S
Shengliang Guan 已提交
976
  int8_t finished;
S
Shengliang Guan 已提交
977
  int8_t align[7];
S
Shengliang Guan 已提交
978 979
  char   name[TSDB_STEP_NAME_LEN];
  char   desc[TSDB_STEP_DESC_LEN];
S
Shengliang Guan 已提交
980
} SStartupReq;
D
dapan1121 已提交
981

L
Liu Jicong 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
// mq related
typedef struct {
} SMqConnectReq;

typedef struct {
} SMqConnectRsp;

typedef struct {
} SMqDisconnectReq;

typedef struct {
} SMqDisconnectRsp;

typedef struct {
} SMqAckReq;

typedef struct {
} SMqAckRsp;

typedef struct {
} SMqResetReq;

typedef struct {
} SMqResetRsp;
S
Shengliang Guan 已提交
1006
// mq related end
L
Liu Jicong 已提交
1007

D
dapan1121 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
typedef struct {
  /* data */
} SSubmitReq;

typedef struct {
  /* data */
} SSubmitRsp;

typedef struct {
  /* data */
} SSubmitReqReader;

typedef struct {
D
dapan1121 已提交
1021
  SMsgHead header;
D
dapan1121 已提交
1022
  uint64_t sId;
H
Hongze Cheng 已提交
1023 1024 1025 1026
  uint64_t queryId;
  uint64_t taskId;
  uint32_t contentLen;
  char     msg[];
D
dapan1121 已提交
1027
} SSubQueryMsg;
D
dapan 已提交
1028

1029 1030 1031 1032 1033 1034 1035 1036
typedef struct {
  SMsgHead header;
  uint64_t sId;
  uint64_t queryId;
  uint64_t taskId;
} SSinkDataReq;


S
Shengliang Guan 已提交
1037
typedef struct {
D
dapan1121 已提交
1038
  SMsgHead header;
D
dapan1121 已提交
1039
  uint64_t sId;
H
Hongze Cheng 已提交
1040 1041
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
1042
} SResReadyReq;
D
dapan 已提交
1043

S
Shengliang Guan 已提交
1044
typedef struct {
D
dapan1121 已提交
1045 1046 1047
  int32_t code;
} SResReadyRsp;

S
Shengliang Guan 已提交
1048
typedef struct {
D
dapan1121 已提交
1049
  SMsgHead header;
D
dapan1121 已提交
1050
  uint64_t sId;
H
Hongze Cheng 已提交
1051 1052
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
1053
} SResFetchReq;
D
dapan 已提交
1054

S
Shengliang Guan 已提交
1055
typedef struct {
D
dapan1121 已提交
1056
  SMsgHead header;
D
dapan1121 已提交
1057
  uint64_t sId;
S
Shengliang Guan 已提交
1058
} SSchTasksStatusReq;
D
dapan1121 已提交
1059

S
Shengliang Guan 已提交
1060
typedef struct {
H
Hongze Cheng 已提交
1061 1062 1063
  uint64_t queryId;
  uint64_t taskId;
  int8_t   status;
D
dapan1121 已提交
1064 1065
} STaskStatus;

S
Shengliang Guan 已提交
1066
typedef struct {
D
dapan1121 已提交
1067 1068 1069 1070
  uint32_t    num;
  STaskStatus status[];
} SSchedulerStatusRsp;

S
Shengliang Guan 已提交
1071
typedef struct {
D
dapan1121 已提交
1072
  SMsgHead header;
D
dapan1121 已提交
1073
  uint64_t sId;
H
Hongze Cheng 已提交
1074 1075
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
1076
} STaskCancelReq;
D
dapan1121 已提交
1077

S
Shengliang Guan 已提交
1078
typedef struct {
D
dapan1121 已提交
1079 1080 1081
  int32_t code;
} STaskCancelRsp;

S
Shengliang Guan 已提交
1082
typedef struct {
D
dapan1121 已提交
1083
  SMsgHead header;
D
dapan1121 已提交
1084
  uint64_t sId;
H
Hongze Cheng 已提交
1085 1086
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
1087
} STaskDropReq;
D
dapan1121 已提交
1088

S
Shengliang Guan 已提交
1089
typedef struct {
D
dapan1121 已提交
1090 1091 1092
  int32_t code;
} STaskDropRsp;

L
Liu Jicong 已提交
1093
typedef struct {
L
Liu Jicong 已提交
1094 1095
  int8_t igExists;
  char*  name;
1096
  char*  sql;
L
Liu Jicong 已提交
1097 1098
  char*  physicalPlan;
  char*  logicalPlan;
L
Liu Jicong 已提交
1099 1100 1101 1102 1103
} SCMCreateTopicReq;

static FORCE_INLINE int tSerializeSCMCreateTopicReq(void** buf, const SCMCreateTopicReq* pReq) {
  int tlen = 0;
  tlen += taosEncodeFixedI8(buf, pReq->igExists);
L
Liu Jicong 已提交
1104
  tlen += taosEncodeString(buf, pReq->name);
1105
  tlen += taosEncodeString(buf, pReq->sql);
L
Liu Jicong 已提交
1106 1107
  tlen += taosEncodeString(buf, pReq->physicalPlan);
  tlen += taosEncodeString(buf, pReq->logicalPlan);
L
Liu Jicong 已提交
1108 1109 1110 1111 1112 1113
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMCreateTopicReq(void* buf, SCMCreateTopicReq* pReq) {
  buf = taosDecodeFixedI8(buf, &(pReq->igExists));
  buf = taosDecodeString(buf, &(pReq->name));
1114
  buf = taosDecodeString(buf, &(pReq->sql));
L
Liu Jicong 已提交
1115 1116
  buf = taosDecodeString(buf, &(pReq->physicalPlan));
  buf = taosDecodeString(buf, &(pReq->logicalPlan));
L
Liu Jicong 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
  return buf;
}

typedef struct {
  int64_t topicId;
} SCMCreateTopicRsp;

static FORCE_INLINE int tSerializeSCMCreateTopicRsp(void** buf, const SCMCreateTopicRsp* pRsp) {
  int tlen = 0;
  tlen += taosEncodeFixedI64(buf, pRsp->topicId);
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMCreateTopicRsp(void* buf, SCMCreateTopicRsp* pRsp) {
  buf = taosDecodeFixedI64(buf, &pRsp->topicId);
  return buf;
}

typedef struct {
L
Liu Jicong 已提交
1136
  int32_t topicNum;
L
Liu Jicong 已提交
1137
  int64_t consumerId;
L
Liu Jicong 已提交
1138
  char*   consumerGroup;
L
Liu Jicong 已提交
1139
  SArray* topicNames;  // SArray<char*>
L
Liu Jicong 已提交
1140 1141 1142 1143
} SCMSubscribeReq;

static FORCE_INLINE int tSerializeSCMSubscribeReq(void** buf, const SCMSubscribeReq* pReq) {
  int tlen = 0;
L
Liu Jicong 已提交
1144
  tlen += taosEncodeFixedI32(buf, pReq->topicNum);
L
Liu Jicong 已提交
1145
  tlen += taosEncodeFixedI64(buf, pReq->consumerId);
L
Liu Jicong 已提交
1146
  tlen += taosEncodeString(buf, pReq->consumerGroup);
L
Liu Jicong 已提交
1147

L
Liu Jicong 已提交
1148
  for (int i = 0; i < pReq->topicNum; i++) {
L
Liu Jicong 已提交
1149
    tlen += taosEncodeString(buf, (char*)taosArrayGetP(pReq->topicNames, i));
L
Liu Jicong 已提交
1150
  }
L
Liu Jicong 已提交
1151 1152 1153 1154
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeReq(void* buf, SCMSubscribeReq* pReq) {
L
Liu Jicong 已提交
1155
  buf = taosDecodeFixedI32(buf, &pReq->topicNum);
L
Liu Jicong 已提交
1156
  buf = taosDecodeFixedI64(buf, &pReq->consumerId);
L
Liu Jicong 已提交
1157
  buf = taosDecodeString(buf, &pReq->consumerGroup);
L
Liu Jicong 已提交
1158
  pReq->topicNames = taosArrayInit(pReq->topicNum, sizeof(void*));
L
Liu Jicong 已提交
1159
  for (int i = 0; i < pReq->topicNum; i++) {
L
Liu Jicong 已提交
1160 1161 1162
    char* name = NULL;
    buf = taosDecodeString(buf, &name);
    taosArrayPush(pReq->topicNames, &name);
L
Liu Jicong 已提交
1163
  }
L
Liu Jicong 已提交
1164 1165 1166
  return buf;
}

L
Liu Jicong 已提交
1167
typedef struct SMqSubTopic {
L
Liu Jicong 已提交
1168
  int32_t vgId;
L
Liu Jicong 已提交
1169 1170 1171 1172 1173
  int64_t topicId;
  SEpSet  epSet;
} SMqSubTopic;

typedef struct {
L
Liu Jicong 已提交
1174
  int32_t     topicNum;
L
Liu Jicong 已提交
1175
  SMqSubTopic topics[];
L
Liu Jicong 已提交
1176 1177 1178 1179
} SCMSubscribeRsp;

static FORCE_INLINE int tSerializeSCMSubscribeRsp(void** buf, const SCMSubscribeRsp* pRsp) {
  int tlen = 0;
L
Liu Jicong 已提交
1180
  tlen += taosEncodeFixedI32(buf, pRsp->topicNum);
L
Liu Jicong 已提交
1181
  for (int i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1182 1183 1184 1185
    tlen += taosEncodeFixedI32(buf, pRsp->topics[i].vgId);
    tlen += taosEncodeFixedI64(buf, pRsp->topics[i].topicId);
    tlen += taosEncodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1186 1187 1188 1189
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeRsp(void* buf, SCMSubscribeRsp* pRsp) {
L
Liu Jicong 已提交
1190
  buf = taosDecodeFixedI32(buf, &pRsp->topicNum);
L
Liu Jicong 已提交
1191
  for (int i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1192 1193 1194 1195
    buf = taosDecodeFixedI32(buf, &pRsp->topics[i].vgId);
    buf = taosDecodeFixedI64(buf, &pRsp->topics[i].topicId);
    buf = taosDecodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1196 1197 1198 1199 1200 1201 1202 1203
  return buf;
}

typedef struct {
  int64_t topicId;
  int64_t consumerId;
  int64_t consumerGroupId;
  int64_t offset;
L
Liu Jicong 已提交
1204 1205 1206
  char*   sql;
  char*   logicalPlan;
  char*   physicalPlan;
L
Liu Jicong 已提交
1207 1208
} SMVSubscribeReq;

L
Liu Jicong 已提交
1209
static FORCE_INLINE int tSerializeSMVSubscribeReq(void** buf, SMVSubscribeReq* pReq) {
L
Liu Jicong 已提交
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
  int tlen = 0;
  tlen += taosEncodeFixedI64(buf, pReq->topicId);
  tlen += taosEncodeFixedI64(buf, pReq->consumerId);
  tlen += taosEncodeFixedI64(buf, pReq->consumerGroupId);
  tlen += taosEncodeFixedI64(buf, pReq->offset);
  tlen += taosEncodeString(buf, pReq->sql);
  tlen += taosEncodeString(buf, pReq->logicalPlan);
  tlen += taosEncodeString(buf, pReq->physicalPlan);
  return tlen;
}

static FORCE_INLINE void* tDeserializeSMVSubscribeReq(void* buf, SMVSubscribeReq* pReq) {
  buf = taosDecodeFixedI64(buf, &pReq->topicId);
  buf = taosDecodeFixedI64(buf, &pReq->consumerId);
  buf = taosDecodeFixedI64(buf, &pReq->consumerGroupId);
  buf = taosDecodeFixedI64(buf, &pReq->offset);
  buf = taosDecodeString(buf, &pReq->sql);
  buf = taosDecodeString(buf, &pReq->logicalPlan);
  buf = taosDecodeString(buf, &pReq->physicalPlan);
  return buf;
}

L
Liu Jicong 已提交
1232
typedef struct {
L
Liu Jicong 已提交
1233
  int64_t status;
L
Liu Jicong 已提交
1234 1235
} SMVSubscribeRsp;

L
Liu Jicong 已提交
1236
typedef struct {
1237
  char    name[TSDB_TOPIC_NAME_LEN];
L
Liu Jicong 已提交
1238
  int8_t  igExists;
L
Liu Jicong 已提交
1239
  int32_t execLen;
L
Liu Jicong 已提交
1240
  void*   executor;
L
Liu Jicong 已提交
1241
  int32_t sqlLen;
L
Liu Jicong 已提交
1242
  char*   sql;
S
Shengliang Guan 已提交
1243
} SCreateTopicReq;
L
Liu Jicong 已提交
1244 1245 1246 1247

typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
1248
} SDropTopicReq;
L
Liu Jicong 已提交
1249 1250 1251 1252 1253

typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
  SSchema schema;
S
Shengliang Guan 已提交
1254
} SAlterTopicReq;
L
Liu Jicong 已提交
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  uint64_t tuid;
  int32_t  sverson;
  int32_t  execLen;
  char*    executor;
  int32_t  sqlLen;
  char*    sql;
S
Shengliang Guan 已提交
1265
} SDCreateTopicReq;
L
Liu Jicong 已提交
1266 1267 1268 1269 1270

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  uint64_t tuid;
S
Shengliang Guan 已提交
1271
} SDDropTopicReq;
S
Shengliang Guan 已提交
1272

H
more  
Hongze Cheng 已提交
1273 1274 1275 1276 1277
typedef struct SVCreateTbReq {
  uint64_t ver;  // use a general definition
  char*    name;
  uint32_t ttl;
  uint32_t keep;
H
Hongze Cheng 已提交
1278 1279 1280
#define TD_SUPER_TABLE TSDB_SUPER_TABLE
#define TD_CHILD_TABLE TSDB_CHILD_TABLE
#define TD_NORMAL_TABLE TSDB_NORMAL_TABLE
H
more  
Hongze Cheng 已提交
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
  uint8_t type;
  union {
    struct {
      tb_uid_t suid;
      uint32_t nCols;
      SSchema* pSchema;
      uint32_t nTagCols;
      SSchema* pTagSchema;
    } stbCfg;
    struct {
      tb_uid_t suid;
      SKVRow   pTag;
    } ctbCfg;
    struct {
      uint32_t nCols;
      SSchema* pSchema;
    } ntbCfg;
  };
} SVCreateTbReq;

H
more  
Hongze Cheng 已提交
1301 1302 1303 1304
typedef struct {
  uint64_t ver;  // use a general definition
  SArray*  pArray;
} SVCreateTbBatchReq;
H
more  
Hongze Cheng 已提交
1305

H
Hongze Cheng 已提交
1306
int   tSerializeSVCreateTbReq(void** buf, SVCreateTbReq* pReq);
H
Hongze Cheng 已提交
1307
void* tDeserializeSVCreateTbReq(void* buf, SVCreateTbReq* pReq);
H
Hongze Cheng 已提交
1308 1309
int   tSVCreateTbBatchReqSerialize(void** buf, SVCreateTbBatchReq* pReq);
void* tSVCreateTbBatchReqDeserialize(void* buf, SVCreateTbBatchReq* pReq);
H
more  
Hongze Cheng 已提交
1310

S
Shengliang Guan 已提交
1311 1312
typedef struct {
  SMsgHead head;
H
more  
Hongze Cheng 已提交
1313 1314
} SVCreateTbRsp;

S
Shengliang Guan 已提交
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  int8_t   ignoreNotExists;
} SVAlterTbReq;

typedef struct {
  SMsgHead head;
} SVAlterTbRsp;

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  int8_t   ignoreNotExists;
} SVDropTbReq;

typedef struct {
  SMsgHead head;
} SVDropTbRsp;

typedef struct {
  SMsgHead head;
  int64_t  uid;
  int32_t  tid;
  int16_t  tversion;
  int16_t  colId;
  int8_t   type;
  int16_t  bytes;
  int32_t  tagValLen;
  int16_t  numOfTags;
  int32_t  schemaLen;
  char     data[];
} SUpdateTagValReq;

typedef struct {
  SMsgHead head;
} SUpdateTagValRsp;

typedef struct {
H
Hongze Cheng 已提交
1354 1355 1356
  SMsgHead head;
} SVShowTablesReq;

S
Shengliang Guan 已提交
1357
typedef struct {
H
Hongze Cheng 已提交
1358
  int64_t       id;
S
Shengliang Guan 已提交
1359
  STableMetaRsp metaInfo;
H
Hongze Cheng 已提交
1360 1361
} SVShowTablesRsp;

S
Shengliang Guan 已提交
1362
typedef struct {
H
Hongze Cheng 已提交
1363
  SMsgHead head;
H
Haojun Liao 已提交
1364
  int32_t  id;
H
Hongze Cheng 已提交
1365 1366
} SVShowTablesFetchReq;

S
Shengliang Guan 已提交
1367
typedef struct {
H
Hongze Cheng 已提交
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377
  int64_t useconds;
  int8_t  completed;  // all results are returned to client
  int8_t  precision;
  int8_t  compressed;
  int32_t compLen;

  int32_t numOfRows;
  char    data[];
} SVShowTablesFetchRsp;

D
dapan1121 已提交
1378 1379 1380 1381 1382 1383 1384
#pragma pack(pop)

#ifdef __cplusplus
}
#endif

#endif /*_TD_COMMON_TAOS_MSG_H_*/