tmsg.h 33.3 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

S
Shengliang Guan 已提交
71 72
typedef enum _mgmt_table {
  TSDB_MGMT_TABLE_START,
D
dapan1121 已提交
73 74 75 76 77 78
  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 已提交
79 80 81
  TSDB_MGMT_TABLE_QNODE,
  TSDB_MGMT_TABLE_SNODE,
  TSDB_MGMT_TABLE_BNODE,
D
dapan1121 已提交
82
  TSDB_MGMT_TABLE_VGROUP,
S
Shengliang Guan 已提交
83
  TSDB_MGMT_TABLE_STB,
D
dapan1121 已提交
84 85 86 87 88 89 90 91 92
  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 已提交
93
  TSDB_MGMT_TABLE_STREAMTABLES,
D
dapan1121 已提交
94 95 96
  TSDB_MGMT_TABLE_TP,
  TSDB_MGMT_TABLE_FUNCTION,
  TSDB_MGMT_TABLE_MAX,
S
Shengliang Guan 已提交
97
} EShowType;
D
dapan1121 已提交
98

H
Hongze Cheng 已提交
99 100
#define TSDB_ALTER_TABLE_ADD_TAG_COLUMN 1
#define TSDB_ALTER_TABLE_DROP_TAG_COLUMN 2
D
dapan1121 已提交
101
#define TSDB_ALTER_TABLE_CHANGE_TAG_COLUMN 3
H
Hongze Cheng 已提交
102
#define TSDB_ALTER_TABLE_UPDATE_TAG_VAL 4
D
dapan1121 已提交
103

H
Hongze Cheng 已提交
104 105 106
#define TSDB_ALTER_TABLE_ADD_COLUMN 5
#define TSDB_ALTER_TABLE_DROP_COLUMN 6
#define TSDB_ALTER_TABLE_CHANGE_COLUMN 7
D
dapan1121 已提交
107 108
#define TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN 8

H
Hongze Cheng 已提交
109 110 111 112 113 114
#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 已提交
115

H
Hongze Cheng 已提交
116
#define TSDB_ALTER_USER_PASSWD 0x1
D
dapan1121 已提交
117 118
#define TSDB_ALTER_USER_PRIVILEGES 0x2

H
Hongze Cheng 已提交
119
#define TSDB_KILL_MSG_LEN 30
D
dapan1121 已提交
120

H
Hongze Cheng 已提交
121 122
#define TSDB_VN_READ_ACCCESS ((char)0x1)
#define TSDB_VN_WRITE_ACCCESS ((char)0x2)
D
dapan1121 已提交
123 124
#define TSDB_VN_ALL_ACCCESS (TSDB_VN_READ_ACCCESS | TSDB_VN_WRITE_ACCCESS)

H
Hongze Cheng 已提交
125 126 127 128 129
#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 已提交
130

H
Hongze Cheng 已提交
131 132 133 134
#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 已提交
135

L
Liu Jicong 已提交
136 137 138 139 140 141 142
typedef struct SKlv {
  int32_t keyLen;
  int32_t valueLen;
  void*   key;
  void*   value;
} SKlv;

L
Liu Jicong 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
typedef struct SClientHbKey {
  int32_t connId;
  int32_t hbType;
} SClientHbKey;

typedef struct SClientHbReq {
  SClientHbKey connKey;
  SHashObj*    info;  // hash<Slv.key, Sklv>
} SClientHbReq;

typedef struct SClientHbBatchReq {
  int64_t reqId;
  SArray* reqs;  // SArray<SClientHbReq>
} SClientHbBatchReq;

typedef struct SClientHbRsp {
  SClientHbKey connKey;
  int32_t      status;
  int32_t      bodyLen;
  void*        body;
} SClientHbRsp;

typedef struct SClientHbBatchRsp {
  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);
void* tDeserializeClientHbReq(void* buf, SClientHbReq* pReq);
static FORCE_INLINE void  tFreeClientHbReq(void *pReq) {
  SClientHbReq* req = pReq;
  taosHashCleanup(req->info);
  free(pReq);
}

L
Liu Jicong 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
static FORCE_INLINE int taosEncodeSKlv(void** buf, const SKlv* pKlv) {
  int tlen = 0;
  tlen += taosEncodeFixedI32(buf, pKlv->keyLen);
  tlen += taosEncodeFixedI32(buf, pKlv->valueLen);
  tlen += taosEncodeBinary(buf, pKlv->key, pKlv->keyLen);
  tlen += taosEncodeBinary(buf, pKlv->value, pKlv->valueLen);
  return tlen;
}

static FORCE_INLINE void* taosDecodeSKlv(void* buf, SKlv* pKlv) {
  buf = taosDecodeFixedI32(buf, &pKlv->keyLen);
  buf = taosDecodeFixedI32(buf, &pKlv->valueLen);
  buf = taosDecodeBinary(buf, &pKlv->key, pKlv->keyLen);
  buf = taosDecodeBinary(buf, &pKlv->value, pKlv->valueLen);
  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;
}

D
dapan1121 已提交
213
typedef struct SBuildTableMetaInput {
S
Shengliang Guan 已提交
214
  int32_t vgId;
D
dapan1121 已提交
215
  char*   dbName;
H
Hongze Cheng 已提交
216
  char*   tableFullName;
D
dapan1121 已提交
217 218
} SBuildTableMetaInput;

D
dapan1121 已提交
219 220
typedef struct SBuildUseDBInput {
  char    db[TSDB_TABLE_FNAME_LEN];
221
  int32_t vgVersion;
D
dapan1121 已提交
222 223
} SBuildUseDBInput;

D
dapan1121 已提交
224 225 226 227 228 229 230 231 232
#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 {
  char     fqdn[TSDB_FQDN_LEN];
  uint16_t port;
} SEpAddrMsg;

typedef struct {
D
dapan1121 已提交
233
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
234
  uint16_t port;
D
dapan1121 已提交
235
} SEpAddr;
D
dapan1121 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255

typedef struct SMsgHead {
  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
typedef struct SSubmitMsg {
S
Shengliang Guan 已提交
256 257 258 259
  SMsgHead header;
  int32_t  length;
  int32_t  numOfBlocks;
  char     blocks[];
D
dapan1121 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
} SSubmitMsg;

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[];
} SShellSubmitRspMsg;

typedef struct SSchema {
S
Shengliang Guan 已提交
279
  int8_t  type;
S
Shengliang Guan 已提交
280
  int32_t colId;
281
  int32_t bytes;
S
Shengliang Guan 已提交
282
  char    name[TSDB_COL_NAME_LEN];
D
dapan1121 已提交
283 284
} SSchema;

285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
typedef struct {
  int32_t  contLen;
  int32_t  vgId;
  int8_t   tableType;
  int16_t  numOfColumns;
  int16_t  numOfTags;
  int32_t  tid;
  int32_t  sversion;
  int32_t  tversion;
  int32_t  tagDataLen;
  int32_t  sqlDataLen;
  uint64_t uid;
  uint64_t superTableUid;
  uint64_t createdTime;
  char     tableFname[TSDB_TABLE_FNAME_LEN];
  char     stbFname[TSDB_TABLE_FNAME_LEN];
  char     data[];
} SMDCreateTableMsg;

H
Hongze Cheng 已提交
304
// typedef struct {
305 306 307 308 309 310 311 312 313 314
//  int32_t len;  // one create table message
//  char    tableName[TSDB_TABLE_FNAME_LEN];
//  int16_t numOfColumns;
//  int16_t sqlLen;  // the length of SQL, it starts after schema , sql is a null-terminated string
//  int8_t  igExists;
//  int8_t  rspMeta;
//  int8_t  reserved[16];
//  char    schema[];
//} SCreateTableMsg;

315 316 317
typedef struct {
  char    tableName[TSDB_TABLE_FNAME_LEN];
  int16_t numOfColumns;
318
  int16_t numOfTags;
319 320 321
  int8_t  igExists;
  int8_t  rspMeta;
  char    schema[];
322
} SCreateCTableMsg;
323

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

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

typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
  SSchema schema;
} SAlterStbMsg;
D
dapan1121 已提交
342 343

typedef struct {
S
Shengliang Guan 已提交
344 345 346
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  uint64_t suid;
S
Shengliang Guan 已提交
347
} SVDropStbReq;
S
Shengliang Guan 已提交
348 349 350 351 352 353 354 355

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  int8_t   type;      /* operation type   */
  int32_t  numOfCols; /* number of schema */
  int32_t  numOfTags;
  char     data[];
D
dapan1121 已提交
356 357
} SAlterTableMsg;

S
Shengliang Guan 已提交
358 359 360
typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
361
  int8_t   ignoreNotExists;
S
Shengliang Guan 已提交
362 363
} SDropTableMsg;

D
dapan1121 已提交
364
typedef struct {
S
Shengliang Guan 已提交
365 366 367 368 369 370 371 372 373 374 375
  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[];
D
dapan1121 已提交
376 377 378 379
} SUpdateTableTagValMsg;

typedef struct {
  int32_t pid;
S
Shengliang Guan 已提交
380 381
  char    app[TSDB_APP_NAME_LEN];
  char    db[TSDB_DB_NAME_LEN];
382
  int64_t startTime;
D
dapan1121 已提交
383 384 385
} SConnectMsg;

typedef struct SEpSet {
S
Shengliang Guan 已提交
386 387 388 389
  int8_t   inUse;
  int8_t   numOfEps;
  uint16_t port[TSDB_MAX_REPLICA];
  char     fqdn[TSDB_MAX_REPLICA][TSDB_FQDN_LEN];
D
dapan1121 已提交
390 391
} SEpSet;

L
Liu Jicong 已提交
392
static FORCE_INLINE int taosEncodeSEpSet(void** buf, const SEpSet* pEp) {
L
Liu Jicong 已提交
393 394 395 396 397 398 399 400
  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 已提交
401 402
}

L
Liu Jicong 已提交
403 404 405 406 407 408 409
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 已提交
410 411 412
  return buf;
}

D
dapan1121 已提交
413
typedef struct {
H
more  
Hongze Cheng 已提交
414 415 416 417
  int32_t acctId;
  int64_t clusterId;
  int32_t connId;
  int8_t  superUser;
S
Shengliang Guan 已提交
418
  int8_t  align[3];
H
more  
Hongze Cheng 已提交
419
  SEpSet  epSet;
D
dapan1121 已提交
420 421 422
} SConnectRsp;

typedef struct {
S
Shengliang Guan 已提交
423
  char    user[TSDB_USER_LEN];
424
  char    pass[TSDB_PASSWORD_LEN];
D
dapan1121 已提交
425 426 427 428
  int32_t maxUsers;
  int32_t maxDbs;
  int32_t maxTimeSeries;
  int32_t maxStreams;
S
Shengliang Guan 已提交
429
  int32_t accessState;  // Configured only by command
S
Shengliang Guan 已提交
430
  int64_t maxStorage;   // In unit of GB
S
Shengliang Guan 已提交
431
} SCreateAcctReq, SAlterAcctReq;
D
dapan1121 已提交
432 433

typedef struct {
S
Shengliang Guan 已提交
434
  char user[TSDB_USER_LEN];
S
Shengliang Guan 已提交
435
} SDropUserReq, SDropAcctReq;
D
dapan1121 已提交
436 437

typedef struct {
S
Shengliang Guan 已提交
438 439 440 441
  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 已提交
442
} SCreateUserReq, SAlterUserReq;
D
dapan1121 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455

typedef struct {
  int32_t  contLen;
  int32_t  vgId;
  int32_t  tid;
  uint64_t uid;
  char     tableFname[TSDB_TABLE_FNAME_LEN];
} SMDDropTableMsg;

typedef struct {
  int32_t  contLen;
  int32_t  vgId;
  uint64_t uid;
S
Shengliang Guan 已提交
456
  char     tableFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
457 458 459
} SDropSTableMsg;

typedef struct SColIndex {
S
Shengliang Guan 已提交
460 461 462
  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
463
  char    name[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
464 465 466 467 468
} SColIndex;

typedef struct SColumnFilterInfo {
  int16_t lowerRelOptr;
  int16_t upperRelOptr;
S
Shengliang Guan 已提交
469
  int16_t filterstr;  // denote if current column is char(binary/nchar)
D
dapan1121 已提交
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487

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

typedef struct SColumnFilterList {
S
Shengliang Guan 已提交
488 489 490
  int16_t numOfFilters;
  union {
    int64_t            placeholder;
H
Hongze Cheng 已提交
491
    SColumnFilterInfo* filterInfo;
D
dapan1121 已提交
492 493 494 495 496 497 498
  };
} 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.
 */
typedef struct SColumnInfo {
S
Shengliang Guan 已提交
499 500 501 502
  int16_t           colId;
  int16_t           type;
  int16_t           bytes;
  SColumnFilterList flist;
D
dapan1121 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515
} SColumnInfo;

typedef struct STableIdInfo {
  uint64_t uid;
  TSKEY    key;  // last accessed ts, for subscription
} STableIdInfo;

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

typedef struct {
S
Shengliang Guan 已提交
516 517 518 519
  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 已提交
520 521 522
} STsBufInfo;

typedef struct SInterval {
S
Shengliang Guan 已提交
523
  int32_t tz;  // query client timezone
D
dapan1121 已提交
524 525 526 527 528 529 530 531 532
  char    intervalUnit;
  char    slidingUnit;
  char    offsetUnit;
  int64_t interval;
  int64_t sliding;
  int64_t offset;
} SInterval;

typedef struct {
S
Shengliang Guan 已提交
533 534
  SMsgHead head;
  char     version[TSDB_VERSION_LEN];
D
dapan1121 已提交
535

S
Shengliang Guan 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548
  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 已提交
549 550 551 552 553

  STimeWindow window;
  int32_t     numOfTables;
  int16_t     order;
  int16_t     orderColId;
S
Shengliang Guan 已提交
554
  int16_t     numOfCols;  // the number of columns will be load from vnode
D
dapan1121 已提交
555
  SInterval   interval;
S
Shengliang Guan 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
  //  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 已提交
575
  int32_t     numOfOperator;
H
Hongze Cheng 已提交
576 577
  int32_t     tableScanOperator;  // table scan operator. -1 means no scan operator
  int32_t     udfNum;             // number of udf function
D
dapan1121 已提交
578 579 580 581 582 583
  int32_t     udfContentOffset;
  int32_t     udfContentLen;
  SColumnInfo tableCols[];
} SQueryTableMsg;

typedef struct {
S
Shengliang Guan 已提交
584
  int32_t code;
D
dapan1121 已提交
585 586 587 588 589
} SQueryTableRsp;

// todo: the show handle should be replaced with id
typedef struct {
  SMsgHead header;
S
Shengliang Guan 已提交
590
  union {
591
    int64_t showId;
S
Shengliang Guan 已提交
592 593 594 595
    int64_t qhandle;
    int64_t qId;
  };  // query handle
  int8_t free;
S
Shengliang Guan 已提交
596
} SRetrieveTableReq;
D
dapan1121 已提交
597 598 599

typedef struct SRetrieveTableRsp {
  int64_t useconds;
S
Shengliang Guan 已提交
600 601
  int8_t  completed;  // all results are returned to client
  int8_t  precision;
D
dapan1121 已提交
602 603
  int8_t  compressed;
  int32_t compLen;
H
Haojun Liao 已提交
604 605

  int32_t numOfRows;
D
dapan1121 已提交
606 607 608 609
  char    data[];
} SRetrieveTableRsp;

typedef struct {
610
  char    db[TSDB_DB_FNAME_LEN];
611
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
612 613 614 615 616 617
  int32_t cacheBlockSize;  // MB
  int32_t totalBlocks;
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
618 619
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
620 621
  int32_t commitTime;
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
622
  int8_t  walLevel;
S
Shengliang Guan 已提交
623 624 625 626 627 628
  int8_t  precision;  // time resolution
  int8_t  compression;
  int8_t  replications;
  int8_t  quorum;
  int8_t  update;
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
629 630 631 632
  int8_t  ignoreExist;
} SCreateDbMsg;

typedef struct {
633
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
634 635 636 637 638 639 640 641 642 643 644
  int32_t totalBlocks;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
  int32_t fsyncPeriod;
  int8_t  walLevel;
  int8_t  quorum;
  int8_t  cacheLastRow;
} SAlterDbMsg;

typedef struct {
S
Shengliang Guan 已提交
645 646
  char   db[TSDB_TABLE_FNAME_LEN];
  int8_t ignoreNotExists;
S
Shengliang Guan 已提交
647 648 649 650
} SDropDbMsg;

typedef struct {
  char    db[TSDB_TABLE_FNAME_LEN];
651
  int32_t vgVersion;
S
Shengliang Guan 已提交
652 653 654
} SUseDbMsg;

typedef struct {
S
Shengliang Guan 已提交
655
  char db[TSDB_TABLE_FNAME_LEN];
S
Shengliang Guan 已提交
656 657 658
} SSyncDbMsg;

typedef struct {
S
Shengliang Guan 已提交
659
  char db[TSDB_TABLE_FNAME_LEN];
S
Shengliang Guan 已提交
660
} SCompactDbMsg;
D
dapan1121 已提交
661 662

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

typedef struct {
S
Shengliang Guan 已提交
677 678 679 680 681 682
  char name[TSDB_FUNC_NAME_LEN];
} SDropFuncMsg;

typedef struct {
  int32_t numOfFuncs;
  char    pFuncNames[];
D
dapan1121 已提交
683 684 685 686
} SRetrieveFuncMsg;

typedef struct {
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
687 688 689 690 691
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
  int8_t  outputType;
  int32_t outputLen;
D
dapan1121 已提交
692
  int32_t bufSize;
S
Shengliang Guan 已提交
693 694 695 696 697
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
} SFuncInfo;
D
dapan1121 已提交
698 699

typedef struct {
S
Shengliang Guan 已提交
700 701 702
  int32_t numOfFuncs;
  char    pFuncInfos[];
} SRetrieveFuncRsp;
D
dapan1121 已提交
703 704

typedef struct {
S
Shengliang Guan 已提交
705 706 707 708 709 710
  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 已提交
711

S
Shengliang Guan 已提交
712 713 714
typedef struct {
  int32_t vgId;
  int8_t  role;
S
Shengliang Guan 已提交
715
  int8_t  align[3];
S
Shengliang Guan 已提交
716 717 718 719 720 721 722
  int64_t totalStorage;
  int64_t compStorage;
  int64_t pointsWritten;
  int64_t tablesNum;
} SVnodeLoad;

typedef struct {
S
Shengliang Guan 已提交
723 724
  int32_t    num;
  SVnodeLoad data[];
S
Shengliang Guan 已提交
725 726
} SVnodeLoads;

S
Shengliang Guan 已提交
727
typedef struct {
S
Shengliang Guan 已提交
728
  int32_t     sver;
S
Shengliang Guan 已提交
729
  int32_t     dnodeId;
730
  int64_t     clusterId;
S
Shengliang Guan 已提交
731 732
  int64_t     rebootTime;
  int64_t     updateTime;
S
Shengliang Guan 已提交
733 734
  int32_t     numOfCores;
  int32_t     numOfSupportVnodes;
S
Shengliang Guan 已提交
735 736 737 738
  char        dnodeEp[TSDB_EP_LEN];
  SClusterCfg clusterCfg;
  SVnodeLoads vnodeLoads;
} SStatusMsg;
D
dapan1121 已提交
739

S
Shengliang Guan 已提交
740 741 742 743
typedef struct {
  int32_t reserved;
} STransMsg;

D
dapan1121 已提交
744
typedef struct {
S
Shengliang Guan 已提交
745
  int32_t dnodeId;
746
  int64_t clusterId;
D
dapan1121 已提交
747 748 749
} SDnodeCfg;

typedef struct {
S
Shengliang Guan 已提交
750
  int32_t  id;
S
Shengliang Guan 已提交
751
  int8_t   isMnode;
S
Shengliang Guan 已提交
752
  int8_t   align;
S
Shengliang Guan 已提交
753 754
  uint16_t port;
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
755 756 757
} SDnodeEp;

typedef struct {
S
Shengliang Guan 已提交
758 759
  int32_t  num;
  SDnodeEp eps[];
D
dapan1121 已提交
760 761 762
} SDnodeEps;

typedef struct {
S
Shengliang Guan 已提交
763 764
  SDnodeCfg dnodeCfg;
  SDnodeEps dnodeEps;
D
dapan1121 已提交
765 766 767
} SStatusRsp;

typedef struct {
S
Shengliang Guan 已提交
768 769 770
  int32_t  id;
  uint16_t port;                 // node sync Port
  char     fqdn[TSDB_FQDN_LEN];  // node FQDN
S
Shengliang Guan 已提交
771 772 773
} SReplica;

typedef struct {
S
Shengliang Guan 已提交
774
  int32_t  vgId;
S
Shengliang Guan 已提交
775
  int32_t  dnodeId;
776
  char     db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
777
  uint64_t dbUid;
778
  int32_t  vgVersion;
S
Shengliang Guan 已提交
779 780 781 782 783 784
  int32_t  cacheBlockSize;
  int32_t  totalBlocks;
  int32_t  daysPerFile;
  int32_t  daysToKeep0;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
Shengliang Guan 已提交
785 786 787
  int32_t  minRows;
  int32_t  maxRows;
  int32_t  commitTime;
S
Shengliang Guan 已提交
788
  int32_t  fsyncPeriod;
S
Shengliang Guan 已提交
789
  int8_t   walLevel;
S
Shengliang Guan 已提交
790 791 792
  int8_t   precision;
  int8_t   compression;
  int8_t   quorum;
S
Shengliang Guan 已提交
793 794
  int8_t   update;
  int8_t   cacheLastRow;
S
Shengliang Guan 已提交
795
  int8_t   replica;
S
Shengliang Guan 已提交
796 797
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
D
dapan1121 已提交
798 799
} SCreateVnodeMsg, SAlterVnodeMsg;

S
Shengliang Guan 已提交
800
typedef struct {
S
Shengliang Guan 已提交
801 802
  int32_t  vgId;
  int32_t  dnodeId;
803
  char     db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
804
  uint64_t dbUid;
S
Shengliang Guan 已提交
805 806 807 808 809 810 811
} SDropVnodeMsg, SSyncVnodeMsg, SCompactVnodeMsg;

typedef struct {
  int32_t vgId;
  int8_t  accessState;
} SAuthVnodeMsg;

D
dapan1121 已提交
812
typedef struct {
D
dapan1121 已提交
813
  SMsgHead header;
D
dapan1121 已提交
814
  char     dbFname[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
815
  char     tableFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
816 817 818
} STableInfoMsg;

typedef struct {
S
Shengliang Guan 已提交
819
  int8_t  metaClone;  // create local clone of the cached table meta
D
dapan1121 已提交
820 821 822 823 824 825
  int32_t numOfVgroups;
  int32_t numOfTables;
  int32_t numOfUdfs;
  char    tableNames[];
} SMultiTableInfoMsg;

D
dapan1121 已提交
826 827
typedef struct SVgroupInfo {
  int32_t    vgId;
S
Shengliang Guan 已提交
828 829
  uint32_t   hashBegin;
  uint32_t   hashEnd;
830
  int8_t     inUse;
D
dapan1121 已提交
831 832 833 834
  int8_t     numOfEps;
  SEpAddrMsg epAddr[TSDB_MAX_REPLICA];
} SVgroupInfo;

D
dapan1121 已提交
835 836 837 838 839 840 841
typedef struct {
  int32_t    vgId;
  int8_t     numOfEps;
  SEpAddrMsg epAddr[TSDB_MAX_REPLICA];
} SVgroupMsg;

typedef struct {
S
Shengliang Guan 已提交
842
  int32_t    numOfVgroups;
D
dapan1121 已提交
843 844 845
  SVgroupMsg vgroups[];
} SVgroupsMsg, SVgroupsInfo;

S
Shengliang Guan 已提交
846
typedef struct {
847
  char     tbFname[TSDB_TABLE_FNAME_LEN];  // table full name
S
Shengliang Guan 已提交
848
  char     stbFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
849
  char     dbFname[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
850 851 852 853 854 855 856 857
  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 已提交
858
  uint64_t tuid;
S
Shengliang Guan 已提交
859 860
  int32_t  vgId;
  SSchema  pSchema[];
D
dapan1121 已提交
861 862 863
} STableMetaMsg;

typedef struct SMultiTableMeta {
S
Shengliang Guan 已提交
864 865 866 867 868 869 870 871
  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 已提交
872 873 874 875 876
} SMultiTableMeta;

typedef struct {
  int32_t dataLen;
  char    name[TSDB_TABLE_FNAME_LEN];
H
Hongze Cheng 已提交
877
  char*   data;
D
dapan1121 已提交
878 879
} STagData;

D
dapan1121 已提交
880
typedef struct {
881
  char        db[TSDB_DB_FNAME_LEN];
882
  int32_t     vgVersion;
S
Shengliang Guan 已提交
883
  int32_t     vgNum;
884
  int8_t      hashMethod;
D
dapan1121 已提交
885
  SVgroupInfo vgroupInfo[];
886
} SUseDbRsp;
D
dapan1121 已提交
887

D
dapan1121 已提交
888 889 890 891 892 893
/*
 * sql: show tables like '%a_%'
 * payload is the query condition, e.g., '%a_%'
 * payloadLen is the length of payload
 */
typedef struct {
S
Shengliang Guan 已提交
894
  int8_t  type;
895
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
896 897
  int16_t payloadLen;
  char    payload[];
S
Shengliang Guan 已提交
898
} SShowReq;
D
dapan1121 已提交
899 900

typedef struct {
901
  char    db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
902 903 904 905 906
  int32_t numOfVgroup;
  int32_t vgid[];
} SCompactMsg;

typedef struct SShowRsp {
907
  int64_t       showId;
D
dapan1121 已提交
908 909 910 911
  STableMetaMsg tableMeta;
} SShowRsp;

typedef struct {
S
Shengliang Guan 已提交
912
  char    fqdn[TSDB_FQDN_LEN];  // end point, hostname:port
913
  int32_t port;
S
Shengliang Guan 已提交
914 915 916 917 918 919 920 921
} SCreateDnodeMsg;

typedef struct {
  int32_t dnodeId;
} SDropDnodeMsg;

typedef struct {
  int32_t dnodeId;
922
  char    config[TSDB_DNODE_CONFIG_LEN];
S
Shengliang Guan 已提交
923
} SCfgDnodeMsg;
D
dapan1121 已提交
924

S
Shengliang Guan 已提交
925 926
typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
927
} SMCreateMnodeMsg, SMDropMnodeMsg, SDDropMnodeMsg;
S
Shengliang Guan 已提交
928

D
dapan1121 已提交
929
typedef struct {
S
Shengliang Guan 已提交
930 931
  int32_t  dnodeId;
  int8_t   replica;
S
Shengliang Guan 已提交
932
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
933
} SDCreateMnodeMsg, SDAlterMnodeMsg;
D
dapan1121 已提交
934

S
Shengliang Guan 已提交
935 936
typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
937
} SMCreateQnodeReq, SMDropQnodeReq, SDCreateQnodeReq, SDDropQnodeReq;
S
Shengliang Guan 已提交
938 939 940

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
941
} SMCreateSnodeReq, SMDropSnodeReq, SDCreateSnodeReq, SDDropSnodeReq;
S
Shengliang Guan 已提交
942 943 944

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

D
dapan1121 已提交
947 948 949 950 951 952 953
typedef struct {
  int32_t dnodeId;
  int32_t vgId;
  int32_t tid;
} SConfigTableMsg;

typedef struct {
S
Shengliang Guan 已提交
954 955
  int32_t dnodeId;
  int32_t vgId;
D
dapan1121 已提交
956 957 958
} SConfigVnodeMsg;

typedef struct {
S
Shengliang Guan 已提交
959 960 961 962 963 964 965 966 967 968 969
  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 已提交
970 971 972
} SQueryDesc;

typedef struct {
S
Shengliang Guan 已提交
973 974 975 976 977 978
  int32_t connId;
  int32_t pid;
  int32_t numOfQueries;
  int32_t numOfStreams;
  char    app[TSDB_APP_NAME_LEN];
  char    pData[];
D
dapan1121 已提交
979 980 981
} SHeartBeatMsg;

typedef struct {
S
Shengliang Guan 已提交
982 983 984 985 986 987
  int32_t connId;
  int32_t queryId;
  int32_t streamId;
  int32_t totalDnodes;
  int32_t onlineDnodes;
  int8_t  killConnection;
S
Shengliang Guan 已提交
988
  int8_t  align[3];
S
Shengliang Guan 已提交
989
  SEpSet  epSet;
D
dapan1121 已提交
990 991 992
} SHeartBeatRsp;

typedef struct {
S
Shengliang Guan 已提交
993 994 995 996 997 998 999 1000 1001 1002 1003 1004
  int32_t connId;
  int32_t streamId;
} SKillStreamMsg;

typedef struct {
  int32_t connId;
  int32_t queryId;
} SKillQueryMsg;

typedef struct {
  int32_t connId;
} SKillConnMsg;
D
dapan1121 已提交
1005 1006 1007 1008 1009

typedef struct {
  char user[TSDB_USER_LEN];
  char spi;
  char encrypt;
1010 1011
  char secret[TSDB_PASSWORD_LEN];
  char ckey[TSDB_PASSWORD_LEN];
D
dapan1121 已提交
1012 1013 1014
} SAuthMsg, SAuthRsp;

typedef struct {
S
Shengliang Guan 已提交
1015
  int8_t finished;
S
Shengliang Guan 已提交
1016
  int8_t align[7];
S
Shengliang Guan 已提交
1017 1018
  char   name[TSDB_STEP_NAME_LEN];
  char   desc[TSDB_STEP_DESC_LEN];
S
Shengliang Guan 已提交
1019
} SStartupMsg;
D
dapan1121 已提交
1020

L
Liu Jicong 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
// 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 已提交
1045
// mq related end
L
Liu Jicong 已提交
1046

D
dapan1121 已提交
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
typedef struct {
  /* data */
} SSubmitReq;

typedef struct {
  /* data */
} SSubmitRsp;

typedef struct {
  /* data */
} SSubmitReqReader;

typedef struct {
  /* data */
} SCreateTableReq;

typedef struct {
  /* data */
} SCreateTableRsp;

typedef struct {
  /* data */
} SDropTableReq;

typedef struct {
  /* data */
} SDropTableRsp;

typedef struct {
  /* data */
} SAlterTableReq;

typedef struct {
  /* data */
} SAlterTableRsp;

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
typedef struct {
  /* data */
} SDropStableReq;

typedef struct {
  /* data */
} SDropStableRsp;

typedef struct {
  /* data */
} SUpdateTagValReq;

typedef struct {
  /* data */
} SUpdateTagValRsp;

D
dapan1121 已提交
1099
typedef struct SSubQueryMsg {
D
dapan1121 已提交
1100
  SMsgHead header;
D
dapan1121 已提交
1101
  uint64_t sId;
H
Hongze Cheng 已提交
1102 1103 1104 1105
  uint64_t queryId;
  uint64_t taskId;
  uint32_t contentLen;
  char     msg[];
D
dapan1121 已提交
1106
} SSubQueryMsg;
D
dapan 已提交
1107

D
dapan1121 已提交
1108
typedef struct SResReadyMsg {
D
dapan1121 已提交
1109
  SMsgHead header;
D
dapan1121 已提交
1110
  uint64_t sId;
H
Hongze Cheng 已提交
1111 1112
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1113
} SResReadyMsg;
D
dapan 已提交
1114

D
dapan1121 已提交
1115 1116 1117 1118
typedef struct SResReadyRsp {
  int32_t code;
} SResReadyRsp;

D
dapan1121 已提交
1119
typedef struct SResFetchMsg {
D
dapan1121 已提交
1120
  SMsgHead header;
D
dapan1121 已提交
1121
  uint64_t sId;
H
Hongze Cheng 已提交
1122 1123
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1124
} SResFetchMsg;
D
dapan 已提交
1125

D
dapan1121 已提交
1126
typedef struct SSchTasksStatusMsg {
D
dapan1121 已提交
1127
  SMsgHead header;
D
dapan1121 已提交
1128
  uint64_t sId;
D
dapan1121 已提交
1129
} SSchTasksStatusMsg;
D
dapan1121 已提交
1130

D
dapan1121 已提交
1131
typedef struct STaskStatus {
H
Hongze Cheng 已提交
1132 1133 1134
  uint64_t queryId;
  uint64_t taskId;
  int8_t   status;
D
dapan1121 已提交
1135 1136 1137 1138 1139 1140 1141
} STaskStatus;

typedef struct SSchedulerStatusRsp {
  uint32_t    num;
  STaskStatus status[];
} SSchedulerStatusRsp;

D
dapan1121 已提交
1142
typedef struct STaskCancelMsg {
D
dapan1121 已提交
1143
  SMsgHead header;
D
dapan1121 已提交
1144
  uint64_t sId;
H
Hongze Cheng 已提交
1145 1146
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1147 1148
} STaskCancelMsg;

D
dapan1121 已提交
1149 1150 1151 1152
typedef struct STaskCancelRsp {
  int32_t code;
} STaskCancelRsp;

D
dapan1121 已提交
1153
typedef struct STaskDropMsg {
D
dapan1121 已提交
1154
  SMsgHead header;
D
dapan1121 已提交
1155
  uint64_t sId;
H
Hongze Cheng 已提交
1156 1157
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1158
} STaskDropMsg;
D
dapan1121 已提交
1159

D
dapan1121 已提交
1160 1161 1162 1163
typedef struct STaskDropRsp {
  int32_t code;
} STaskDropRsp;

L
Liu Jicong 已提交
1164
typedef struct {
L
Liu Jicong 已提交
1165 1166 1167 1168
  int8_t igExists;
  char*  name;
  char*  physicalPlan;
  char*  logicalPlan;
L
Liu Jicong 已提交
1169 1170 1171 1172 1173
} SCMCreateTopicReq;

static FORCE_INLINE int tSerializeSCMCreateTopicReq(void** buf, const SCMCreateTopicReq* pReq) {
  int tlen = 0;
  tlen += taosEncodeFixedI8(buf, pReq->igExists);
L
Liu Jicong 已提交
1174
  tlen += taosEncodeString(buf, pReq->name);
L
Liu Jicong 已提交
1175 1176
  tlen += taosEncodeString(buf, pReq->physicalPlan);
  tlen += taosEncodeString(buf, pReq->logicalPlan);
L
Liu Jicong 已提交
1177 1178 1179 1180 1181 1182
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMCreateTopicReq(void* buf, SCMCreateTopicReq* pReq) {
  buf = taosDecodeFixedI8(buf, &(pReq->igExists));
  buf = taosDecodeString(buf, &(pReq->name));
L
Liu Jicong 已提交
1183 1184
  buf = taosDecodeString(buf, &(pReq->physicalPlan));
  buf = taosDecodeString(buf, &(pReq->logicalPlan));
L
Liu Jicong 已提交
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
  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 已提交
1204
  int32_t topicNum;
L
Liu Jicong 已提交
1205
  int64_t consumerId;
L
Liu Jicong 已提交
1206
  char*   consumerGroup;
L
Liu Jicong 已提交
1207
  SArray* topicNames;  // SArray<char*>
L
Liu Jicong 已提交
1208 1209 1210 1211
} SCMSubscribeReq;

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

L
Liu Jicong 已提交
1216
  for (int i = 0; i < pReq->topicNum; i++) {
L
Liu Jicong 已提交
1217
    tlen += taosEncodeString(buf, (char*)taosArrayGetP(pReq->topicNames, i));
L
Liu Jicong 已提交
1218
  }
L
Liu Jicong 已提交
1219 1220 1221 1222
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeReq(void* buf, SCMSubscribeReq* pReq) {
L
Liu Jicong 已提交
1223
  buf = taosDecodeFixedI32(buf, &pReq->topicNum);
L
Liu Jicong 已提交
1224
  buf = taosDecodeFixedI64(buf, &pReq->consumerId);
L
Liu Jicong 已提交
1225
  buf = taosDecodeString(buf, &pReq->consumerGroup);
L
Liu Jicong 已提交
1226
  pReq->topicNames = taosArrayInit(pReq->topicNum, sizeof(void*));
L
Liu Jicong 已提交
1227
  for (int i = 0; i < pReq->topicNum; i++) {
L
Liu Jicong 已提交
1228 1229 1230
    char* name = NULL;
    buf = taosDecodeString(buf, &name);
    taosArrayPush(pReq->topicNames, &name);
L
Liu Jicong 已提交
1231
  }
L
Liu Jicong 已提交
1232 1233 1234
  return buf;
}

L
Liu Jicong 已提交
1235
typedef struct SMqSubTopic {
L
Liu Jicong 已提交
1236
  int32_t vgId;
L
Liu Jicong 已提交
1237 1238 1239 1240 1241
  int64_t topicId;
  SEpSet  epSet;
} SMqSubTopic;

typedef struct {
L
Liu Jicong 已提交
1242
  int32_t     topicNum;
L
Liu Jicong 已提交
1243
  SMqSubTopic topics[];
L
Liu Jicong 已提交
1244 1245 1246 1247
} SCMSubscribeRsp;

static FORCE_INLINE int tSerializeSCMSubscribeRsp(void** buf, const SCMSubscribeRsp* pRsp) {
  int tlen = 0;
L
Liu Jicong 已提交
1248
  tlen += taosEncodeFixedI32(buf, pRsp->topicNum);
L
Liu Jicong 已提交
1249
  for (int i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1250 1251 1252 1253
    tlen += taosEncodeFixedI32(buf, pRsp->topics[i].vgId);
    tlen += taosEncodeFixedI64(buf, pRsp->topics[i].topicId);
    tlen += taosEncodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1254 1255 1256 1257
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeRsp(void* buf, SCMSubscribeRsp* pRsp) {
L
Liu Jicong 已提交
1258
  buf = taosDecodeFixedI32(buf, &pRsp->topicNum);
L
Liu Jicong 已提交
1259
  for (int i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1260 1261 1262 1263
    buf = taosDecodeFixedI32(buf, &pRsp->topics[i].vgId);
    buf = taosDecodeFixedI64(buf, &pRsp->topics[i].topicId);
    buf = taosDecodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1264 1265 1266 1267 1268 1269 1270 1271
  return buf;
}

typedef struct {
  int64_t topicId;
  int64_t consumerId;
  int64_t consumerGroupId;
  int64_t offset;
L
Liu Jicong 已提交
1272 1273 1274
  char*   sql;
  char*   logicalPlan;
  char*   physicalPlan;
L
Liu Jicong 已提交
1275 1276
} SMVSubscribeReq;

L
Liu Jicong 已提交
1277
static FORCE_INLINE int tSerializeSMVSubscribeReq(void** buf, SMVSubscribeReq* pReq) {
L
Liu Jicong 已提交
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
  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 已提交
1300
typedef struct {
L
Liu Jicong 已提交
1301
  int64_t status;
L
Liu Jicong 已提交
1302 1303
} SMVSubscribeRsp;

L
Liu Jicong 已提交
1304 1305 1306
typedef struct {
  char    name[TSDB_TOPIC_FNAME_LEN];
  int8_t  igExists;
L
Liu Jicong 已提交
1307
  int32_t execLen;
L
Liu Jicong 已提交
1308
  void*   executor;
L
Liu Jicong 已提交
1309
  int32_t sqlLen;
L
Liu Jicong 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
  char*   sql;
} SCreateTopicMsg;

typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
} SDropTopicMsg;

typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
  SSchema schema;
} SAlterTopicMsg;

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 已提交
1333
} SDCreateTopicMsg;
L
Liu Jicong 已提交
1334 1335 1336 1337 1338

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  uint64_t tuid;
S
Shengliang Guan 已提交
1339
} SDDropTopicMsg;
S
Shengliang Guan 已提交
1340

H
more  
Hongze Cheng 已提交
1341 1342 1343 1344 1345
typedef struct SVCreateTbReq {
  uint64_t ver;  // use a general definition
  char*    name;
  uint32_t ttl;
  uint32_t keep;
H
Hongze Cheng 已提交
1346 1347 1348
#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 已提交
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
  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 已提交
1369 1370 1371 1372
typedef struct {
  uint64_t ver;  // use a general definition
  SArray*  pArray;
} SVCreateTbBatchReq;
H
more  
Hongze Cheng 已提交
1373

H
Hongze Cheng 已提交
1374
int   tSerializeSVCreateTbReq(void** buf, SVCreateTbReq* pReq);
H
Hongze Cheng 已提交
1375
void* tDeserializeSVCreateTbReq(void* buf, SVCreateTbReq* pReq);
H
Hongze Cheng 已提交
1376 1377
int   tSVCreateTbBatchReqSerialize(void** buf, SVCreateTbBatchReq* pReq);
void* tSVCreateTbBatchReqDeserialize(void* buf, SVCreateTbBatchReq* pReq);
H
more  
Hongze Cheng 已提交
1378 1379 1380 1381

typedef struct SVCreateTbRsp {
} SVCreateTbRsp;

H
Hongze Cheng 已提交
1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392
typedef struct SVShowTablesReq {
  SMsgHead head;
} SVShowTablesReq;

typedef struct SVShowTablesRsp {
  int64_t       id;
  STableMetaMsg metaInfo;
} SVShowTablesRsp;

typedef struct SVShowTablesFetchReq {
  SMsgHead head;
H
Haojun Liao 已提交
1393
  int32_t  id;
H
Hongze Cheng 已提交
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
} SVShowTablesFetchReq;

typedef struct SVShowTablesFetchRsp {
  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 已提交
1407 1408 1409 1410 1411 1412 1413
#pragma pack(pop)

#ifdef __cplusplus
}
#endif

#endif /*_TD_COMMON_TAOS_MSG_H_*/