tmsg.h 32.8 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 "tcoding.h"
D
dapan1121 已提交
27 28
#include "tdataformat.h"

H
Hongze Cheng 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#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 已提交
47
extern char* tMsgInfo[];
H
Hongze Cheng 已提交
48 49 50 51 52
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)]
53
#define TMSG_INDEX(TYPE) (tMsgDict[TMSG_SEG_CODE(TYPE)] + TMSG_SEG_SEQ(TYPE))
D
dapan1121 已提交
54

H
Hongze Cheng 已提交
55 56
typedef uint16_t tmsg_t;

D
dapan1121 已提交
57 58 59 60 61 62 63 64 65
// 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 已提交
66 67
typedef enum _mgmt_table {
  TSDB_MGMT_TABLE_START,
D
dapan1121 已提交
68 69 70 71 72 73
  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 已提交
74 75 76
  TSDB_MGMT_TABLE_QNODE,
  TSDB_MGMT_TABLE_SNODE,
  TSDB_MGMT_TABLE_BNODE,
D
dapan1121 已提交
77
  TSDB_MGMT_TABLE_VGROUP,
S
Shengliang Guan 已提交
78
  TSDB_MGMT_TABLE_STB,
D
dapan1121 已提交
79 80 81 82 83 84 85 86 87
  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 已提交
88
  TSDB_MGMT_TABLE_STREAMTABLES,
D
dapan1121 已提交
89 90 91
  TSDB_MGMT_TABLE_TP,
  TSDB_MGMT_TABLE_FUNCTION,
  TSDB_MGMT_TABLE_MAX,
S
Shengliang Guan 已提交
92
} EShowType;
D
dapan1121 已提交
93

H
Hongze Cheng 已提交
94 95
#define TSDB_ALTER_TABLE_ADD_TAG_COLUMN 1
#define TSDB_ALTER_TABLE_DROP_TAG_COLUMN 2
D
dapan1121 已提交
96
#define TSDB_ALTER_TABLE_CHANGE_TAG_COLUMN 3
H
Hongze Cheng 已提交
97
#define TSDB_ALTER_TABLE_UPDATE_TAG_VAL 4
D
dapan1121 已提交
98

H
Hongze Cheng 已提交
99 100 101
#define TSDB_ALTER_TABLE_ADD_COLUMN 5
#define TSDB_ALTER_TABLE_DROP_COLUMN 6
#define TSDB_ALTER_TABLE_CHANGE_COLUMN 7
D
dapan1121 已提交
102 103
#define TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN 8

H
Hongze Cheng 已提交
104 105 106 107 108 109
#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 已提交
110

H
Hongze Cheng 已提交
111
#define TSDB_ALTER_USER_PASSWD 0x1
D
dapan1121 已提交
112 113
#define TSDB_ALTER_USER_PRIVILEGES 0x2

H
Hongze Cheng 已提交
114
#define TSDB_KILL_MSG_LEN 30
D
dapan1121 已提交
115

H
Hongze Cheng 已提交
116 117
#define TSDB_VN_READ_ACCCESS ((char)0x1)
#define TSDB_VN_WRITE_ACCCESS ((char)0x2)
D
dapan1121 已提交
118 119
#define TSDB_VN_ALL_ACCCESS (TSDB_VN_READ_ACCCESS | TSDB_VN_WRITE_ACCCESS)

H
Hongze Cheng 已提交
120 121 122 123 124
#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 已提交
125

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

D
dapan1121 已提交
131
typedef struct SBuildTableMetaInput {
S
Shengliang Guan 已提交
132
  int32_t vgId;
H
Hongze Cheng 已提交
133
  char*   tableFullName;
D
dapan1121 已提交
134 135
} SBuildTableMetaInput;

D
dapan1121 已提交
136 137
typedef struct SBuildUseDBInput {
  char    db[TSDB_TABLE_FNAME_LEN];
138
  int32_t vgVersion;
D
dapan1121 已提交
139 140
} SBuildUseDBInput;

D
dapan1121 已提交
141 142 143 144 145 146 147 148 149
#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 已提交
150
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
151
  uint16_t port;
D
dapan1121 已提交
152
} SEpAddr;
D
dapan1121 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176

typedef struct {
  int32_t numOfVnodes;
} SMsgDesc;

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 已提交
177 178 179 180
  SMsgHead header;
  int32_t  length;
  int32_t  numOfBlocks;
  char     blocks[];
D
dapan1121 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
} 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 已提交
200
  int8_t  type;
S
Shengliang Guan 已提交
201
  int32_t colId;
202
  int32_t bytes;
S
Shengliang Guan 已提交
203
  char    name[TSDB_COL_NAME_LEN];
D
dapan1121 已提交
204 205
} SSchema;

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
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 已提交
225
// typedef struct {
226 227 228 229 230 231 232 233 234 235
//  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;

236 237 238
typedef struct {
  char    tableName[TSDB_TABLE_FNAME_LEN];
  int16_t numOfColumns;
239
  int16_t numOfTags;
240 241 242
  int8_t  igExists;
  int8_t  rspMeta;
  char    schema[];
243
} SCreateCTableMsg;
244

D
dapan1121 已提交
245
typedef struct {
S
Shengliang Guan 已提交
246 247 248 249 250
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  igExists;
  int32_t numOfTags;
  int32_t numOfColumns;
  SSchema pSchema[];
251
} SCreateStbMsg, SCreateTableMsg;
D
dapan1121 已提交
252 253 254 255

typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
256 257 258 259 260 261 262
} SDropStbMsg;

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

typedef struct {
S
Shengliang Guan 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  uint64_t suid;
  int32_t  sverson;
  uint32_t ttl;
  uint32_t keep;
  int32_t  numOfTags;
  int32_t  numOfColumns;
  SSchema  pSchema[];
} SCreateStbInternalMsg;

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  uint64_t suid;
} SDropStbInternalMsg;

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 已提交
289 290
} SAlterTableMsg;

S
Shengliang Guan 已提交
291 292 293
typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
294
  int8_t   ignoreNotExists;
S
Shengliang Guan 已提交
295 296
} SDropTableMsg;

D
dapan1121 已提交
297
typedef struct {
S
Shengliang Guan 已提交
298 299 300 301 302 303 304 305 306 307 308
  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 已提交
309 310 311 312
} SUpdateTableTagValMsg;

typedef struct {
  int32_t pid;
S
Shengliang Guan 已提交
313 314
  char    app[TSDB_APP_NAME_LEN];
  char    db[TSDB_DB_NAME_LEN];
315
  int64_t startTime;
D
dapan1121 已提交
316 317 318
} SConnectMsg;

typedef struct SEpSet {
S
Shengliang Guan 已提交
319 320 321 322
  int8_t   inUse;
  int8_t   numOfEps;
  uint16_t port[TSDB_MAX_REPLICA];
  char     fqdn[TSDB_MAX_REPLICA][TSDB_FQDN_LEN];
D
dapan1121 已提交
323 324
} SEpSet;

L
Liu Jicong 已提交
325 326 327 328 329 330 331 332 333 334 335 336
static FORCE_INLINE int taosEncodeSEpSet(void** buf, const SEpSet* pEp) {
  if(buf == NULL) return sizeof(SEpSet);
  memcpy(buf, pEp, sizeof(SEpSet));
  //TODO: endian conversion
  return sizeof(SEpSet);
}

static FORCE_INLINE void* taosDecodeSEpSet(void* buf, SEpSet* pEpSet) {
  memcpy(pEpSet, buf, sizeof(SEpSet));
  return buf;
}

D
dapan1121 已提交
337
typedef struct {
H
more  
Hongze Cheng 已提交
338 339 340 341 342 343
  int32_t acctId;
  int64_t clusterId;
  int32_t connId;
  int8_t  superUser;
  int8_t  reserved[5];
  SEpSet  epSet;
D
dapan1121 已提交
344 345 346
} SConnectRsp;

typedef struct {
S
Shengliang Guan 已提交
347
  char    user[TSDB_USER_LEN];
348
  char    pass[TSDB_PASSWORD_LEN];
D
dapan1121 已提交
349 350 351 352
  int32_t maxUsers;
  int32_t maxDbs;
  int32_t maxTimeSeries;
  int32_t maxStreams;
S
Shengliang Guan 已提交
353
  int32_t accessState;  // Configured only by command
S
Shengliang Guan 已提交
354 355
  int64_t maxStorage;   // In unit of GB
  int32_t reserve[8];
D
dapan1121 已提交
356 357 358
} SCreateAcctMsg, SAlterAcctMsg;

typedef struct {
S
Shengliang Guan 已提交
359 360
  char    user[TSDB_USER_LEN];
  int32_t reserve[8];
D
dapan1121 已提交
361 362 363
} SDropUserMsg, SDropAcctMsg;

typedef struct {
H
Haojun Liao 已提交
364
  int8_t  type;
S
Shengliang Guan 已提交
365 366
  char    user[TSDB_USER_LEN];
  char    pass[TSDB_PASSWORD_LEN];
H
Hongze Cheng 已提交
367
  int8_t  superUser;  // denote if it is a super user or not
S
Shengliang Guan 已提交
368
  int32_t reserve[8];
D
dapan1121 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382
} SCreateUserMsg, SAlterUserMsg;

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 已提交
383
  char     tableFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
384 385 386
} SDropSTableMsg;

typedef struct SColIndex {
S
Shengliang Guan 已提交
387 388 389
  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
390
  char    name[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
391 392 393 394 395
} SColIndex;

typedef struct SColumnFilterInfo {
  int16_t lowerRelOptr;
  int16_t upperRelOptr;
S
Shengliang Guan 已提交
396
  int16_t filterstr;  // denote if current column is char(binary/nchar)
D
dapan1121 已提交
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414

  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 已提交
415 416 417
  int16_t numOfFilters;
  union {
    int64_t            placeholder;
H
Hongze Cheng 已提交
418
    SColumnFilterInfo* filterInfo;
D
dapan1121 已提交
419 420 421 422 423 424 425
  };
} 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 已提交
426 427 428 429
  int16_t           colId;
  int16_t           type;
  int16_t           bytes;
  SColumnFilterList flist;
D
dapan1121 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442
} 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 已提交
443 444 445 446
  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 已提交
447 448 449
} STsBufInfo;

typedef struct SInterval {
S
Shengliang Guan 已提交
450
  int32_t tz;  // query client timezone
D
dapan1121 已提交
451 452 453 454 455 456 457 458 459
  char    intervalUnit;
  char    slidingUnit;
  char    offsetUnit;
  int64_t interval;
  int64_t sliding;
  int64_t offset;
} SInterval;

typedef struct {
S
Shengliang Guan 已提交
460 461
  SMsgHead head;
  char     version[TSDB_VERSION_LEN];
D
dapan1121 已提交
462

S
Shengliang Guan 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475
  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 已提交
476 477 478 479 480

  STimeWindow window;
  int32_t     numOfTables;
  int16_t     order;
  int16_t     orderColId;
S
Shengliang Guan 已提交
481
  int16_t     numOfCols;  // the number of columns will be load from vnode
D
dapan1121 已提交
482
  SInterval   interval;
S
Shengliang Guan 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
  //  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 已提交
502
  int32_t     numOfOperator;
H
Hongze Cheng 已提交
503 504
  int32_t     tableScanOperator;  // table scan operator. -1 means no scan operator
  int32_t     udfNum;             // number of udf function
D
dapan1121 已提交
505 506 507 508 509 510
  int32_t     udfContentOffset;
  int32_t     udfContentLen;
  SColumnInfo tableCols[];
} SQueryTableMsg;

typedef struct {
S
Shengliang Guan 已提交
511
  int32_t code;
D
dapan1121 已提交
512 513 514 515 516
} SQueryTableRsp;

// todo: the show handle should be replaced with id
typedef struct {
  SMsgHead header;
S
Shengliang Guan 已提交
517 518 519 520 521 522
  union {
    int32_t showId;
    int64_t qhandle;
    int64_t qId;
  };  // query handle
  int8_t free;
D
dapan1121 已提交
523 524 525 526
} SRetrieveTableMsg;

typedef struct SRetrieveTableRsp {
  int64_t useconds;
S
Shengliang Guan 已提交
527 528
  int8_t  completed;  // all results are returned to client
  int8_t  precision;
D
dapan1121 已提交
529 530
  int8_t  compressed;
  int32_t compLen;
H
Haojun Liao 已提交
531 532

  int32_t numOfRows;
D
dapan1121 已提交
533 534 535 536
  char    data[];
} SRetrieveTableRsp;

typedef struct {
537
  char    db[TSDB_DB_FNAME_LEN];
538
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
539 540 541 542 543 544
  int32_t cacheBlockSize;  // MB
  int32_t totalBlocks;
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
545 546
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
547 548
  int32_t commitTime;
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
549
  int8_t  walLevel;
S
Shengliang Guan 已提交
550 551 552 553 554 555
  int8_t  precision;  // time resolution
  int8_t  compression;
  int8_t  replications;
  int8_t  quorum;
  int8_t  update;
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
556 557 558 559 560
  int8_t  ignoreExist;
  int32_t reserve[8];
} SCreateDbMsg;

typedef struct {
561
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
  int32_t totalBlocks;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
  int32_t fsyncPeriod;
  int8_t  walLevel;
  int8_t  quorum;
  int8_t  cacheLastRow;
  int32_t reserve[8];
} SAlterDbMsg;

typedef struct {
  char    db[TSDB_TABLE_FNAME_LEN];
  int8_t  ignoreNotExists;
  int32_t reserve[8];
} SDropDbMsg;

typedef struct {
  char    db[TSDB_TABLE_FNAME_LEN];
581
  int32_t vgVersion;
S
Shengliang Guan 已提交
582 583 584 585 586 587 588 589 590 591 592 593
  int32_t reserve[8];
} SUseDbMsg;

typedef struct {
  char    db[TSDB_TABLE_FNAME_LEN];
  int32_t reserve[8];
} SSyncDbMsg;

typedef struct {
  char    db[TSDB_TABLE_FNAME_LEN];
  int32_t reserve[8];
} SCompactDbMsg;
D
dapan1121 已提交
594 595

typedef struct {
S
Shengliang Guan 已提交
596
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
597 598 599
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
S
Shengliang Guan 已提交
600
  int8_t  outputType;
S
Shengliang Guan 已提交
601
  int32_t outputLen;
S
Shengliang Guan 已提交
602
  int32_t bufSize;
S
Shengliang Guan 已提交
603 604 605 606
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
D
dapan1121 已提交
607 608 609
} SCreateFuncMsg;

typedef struct {
S
Shengliang Guan 已提交
610 611 612 613 614 615
  char name[TSDB_FUNC_NAME_LEN];
} SDropFuncMsg;

typedef struct {
  int32_t numOfFuncs;
  char    pFuncNames[];
D
dapan1121 已提交
616 617 618 619
} SRetrieveFuncMsg;

typedef struct {
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
620 621 622 623 624
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
  int8_t  outputType;
  int32_t outputLen;
D
dapan1121 已提交
625
  int32_t bufSize;
S
Shengliang Guan 已提交
626 627 628 629 630
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
} SFuncInfo;
D
dapan1121 已提交
631 632

typedef struct {
S
Shengliang Guan 已提交
633 634 635
  int32_t numOfFuncs;
  char    pFuncInfos[];
} SRetrieveFuncRsp;
D
dapan1121 已提交
636 637

typedef struct {
S
Shengliang Guan 已提交
638 639 640 641 642 643
  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 已提交
644

S
Shengliang Guan 已提交
645 646 647
typedef struct {
  int32_t vgId;
  int8_t  role;
S
Shengliang Guan 已提交
648
  int8_t  reserved[3];
S
Shengliang Guan 已提交
649 650 651 652 653 654 655
  int64_t totalStorage;
  int64_t compStorage;
  int64_t pointsWritten;
  int64_t tablesNum;
} SVnodeLoad;

typedef struct {
S
Shengliang Guan 已提交
656 657
  int32_t    num;
  SVnodeLoad data[];
S
Shengliang Guan 已提交
658 659
} SVnodeLoads;

S
Shengliang Guan 已提交
660
typedef struct {
S
Shengliang Guan 已提交
661
  int32_t     sver;
S
Shengliang Guan 已提交
662
  int32_t     dnodeId;
663
  int64_t     clusterId;
S
Shengliang Guan 已提交
664 665
  int64_t     rebootTime;
  int64_t     updateTime;
S
Shengliang Guan 已提交
666 667
  int16_t     numOfCores;
  int16_t     numOfSupportVnodes;
S
Shengliang Guan 已提交
668 669 670 671
  char        dnodeEp[TSDB_EP_LEN];
  SClusterCfg clusterCfg;
  SVnodeLoads vnodeLoads;
} SStatusMsg;
D
dapan1121 已提交
672

S
Shengliang Guan 已提交
673 674 675 676
typedef struct {
  int32_t reserved;
} STransMsg;

D
dapan1121 已提交
677
typedef struct {
S
Shengliang Guan 已提交
678
  int32_t dnodeId;
679
  int64_t clusterId;
D
dapan1121 已提交
680 681 682
} SDnodeCfg;

typedef struct {
S
Shengliang Guan 已提交
683
  int32_t  id;
S
Shengliang Guan 已提交
684 685
  int8_t   isMnode;
  int8_t   reserved;
S
Shengliang Guan 已提交
686 687
  uint16_t port;
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
688 689 690
} SDnodeEp;

typedef struct {
S
Shengliang Guan 已提交
691 692
  int32_t  num;
  SDnodeEp eps[];
D
dapan1121 已提交
693 694 695
} SDnodeEps;

typedef struct {
S
Shengliang Guan 已提交
696 697
  SDnodeCfg dnodeCfg;
  SDnodeEps dnodeEps;
D
dapan1121 已提交
698 699 700
} SStatusRsp;

typedef struct {
S
Shengliang Guan 已提交
701 702 703
  int32_t  id;
  uint16_t port;                 // node sync Port
  char     fqdn[TSDB_FQDN_LEN];  // node FQDN
S
Shengliang Guan 已提交
704 705 706
} SReplica;

typedef struct {
S
Shengliang Guan 已提交
707
  int32_t  vgId;
S
Shengliang Guan 已提交
708
  int32_t  dnodeId;
709
  char     db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
710
  uint64_t dbUid;
711
  int32_t  vgVersion;
S
Shengliang Guan 已提交
712 713 714 715 716 717
  int32_t  cacheBlockSize;
  int32_t  totalBlocks;
  int32_t  daysPerFile;
  int32_t  daysToKeep0;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
Shengliang Guan 已提交
718 719 720
  int32_t  minRows;
  int32_t  maxRows;
  int32_t  commitTime;
S
Shengliang Guan 已提交
721
  int32_t  fsyncPeriod;
S
Shengliang Guan 已提交
722
  int8_t   walLevel;
S
Shengliang Guan 已提交
723 724 725
  int8_t   precision;
  int8_t   compression;
  int8_t   quorum;
S
Shengliang Guan 已提交
726 727
  int8_t   update;
  int8_t   cacheLastRow;
S
Shengliang Guan 已提交
728
  int8_t   replica;
S
Shengliang Guan 已提交
729 730
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
D
dapan1121 已提交
731 732
} SCreateVnodeMsg, SAlterVnodeMsg;

S
Shengliang Guan 已提交
733
typedef struct {
S
Shengliang Guan 已提交
734 735
  int32_t  vgId;
  int32_t  dnodeId;
736
  char     db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
737
  uint64_t dbUid;
S
Shengliang Guan 已提交
738 739 740 741 742 743 744
} SDropVnodeMsg, SSyncVnodeMsg, SCompactVnodeMsg;

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

D
dapan1121 已提交
745
typedef struct {
S
Shengliang Guan 已提交
746 747
  int32_t vgId;
  char    tableFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
748 749 750
} STableInfoMsg;

typedef struct {
S
Shengliang Guan 已提交
751
  int8_t  metaClone;  // create local clone of the cached table meta
D
dapan1121 已提交
752 753 754 755 756 757
  int32_t numOfVgroups;
  int32_t numOfTables;
  int32_t numOfUdfs;
  char    tableNames[];
} SMultiTableInfoMsg;

D
dapan1121 已提交
758 759
typedef struct SVgroupInfo {
  int32_t    vgId;
S
Shengliang Guan 已提交
760 761
  uint32_t   hashBegin;
  uint32_t   hashEnd;
762
  int8_t     inUse;
D
dapan1121 已提交
763 764 765 766
  int8_t     numOfEps;
  SEpAddrMsg epAddr[TSDB_MAX_REPLICA];
} SVgroupInfo;

D
dapan1121 已提交
767 768 769 770 771 772 773
typedef struct {
  int32_t    vgId;
  int8_t     numOfEps;
  SEpAddrMsg epAddr[TSDB_MAX_REPLICA];
} SVgroupMsg;

typedef struct {
S
Shengliang Guan 已提交
774
  int32_t    numOfVgroups;
D
dapan1121 已提交
775 776 777
  SVgroupMsg vgroups[];
} SVgroupsMsg, SVgroupsInfo;

S
Shengliang Guan 已提交
778
typedef struct {
779
  char     tbFname[TSDB_TABLE_FNAME_LEN];  // table full name
S
Shengliang Guan 已提交
780 781 782 783 784 785 786 787 788
  char     stbFname[TSDB_TABLE_FNAME_LEN];
  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 已提交
789
  uint64_t tuid;
S
Shengliang Guan 已提交
790 791
  int32_t  vgId;
  SSchema  pSchema[];
D
dapan1121 已提交
792 793 794
} STableMetaMsg;

typedef struct SMultiTableMeta {
S
Shengliang Guan 已提交
795 796 797 798 799 800 801 802
  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 已提交
803 804 805 806 807
} SMultiTableMeta;

typedef struct {
  int32_t dataLen;
  char    name[TSDB_TABLE_FNAME_LEN];
H
Hongze Cheng 已提交
808
  char*   data;
D
dapan1121 已提交
809 810
} STagData;

D
dapan1121 已提交
811
typedef struct {
812
  char        db[TSDB_DB_FNAME_LEN];
813
  int32_t     vgVersion;
S
Shengliang Guan 已提交
814
  int32_t     vgNum;
815
  int8_t      hashMethod;
D
dapan1121 已提交
816
  SVgroupInfo vgroupInfo[];
817
} SUseDbRsp;
D
dapan1121 已提交
818

D
dapan1121 已提交
819 820 821 822 823 824
/*
 * sql: show tables like '%a_%'
 * payload is the query condition, e.g., '%a_%'
 * payloadLen is the length of payload
 */
typedef struct {
S
Shengliang Guan 已提交
825
  int8_t  type;
826
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
827 828
  int16_t payloadLen;
  char    payload[];
D
dapan1121 已提交
829 830 831
} SShowMsg;

typedef struct {
832
  char    db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
833 834 835 836 837
  int32_t numOfVgroup;
  int32_t vgid[];
} SCompactMsg;

typedef struct SShowRsp {
S
Shengliang Guan 已提交
838
  int32_t       showId;
D
dapan1121 已提交
839 840 841 842
  STableMetaMsg tableMeta;
} SShowRsp;

typedef struct {
S
Shengliang Guan 已提交
843
  char    fqdn[TSDB_FQDN_LEN];  // end point, hostname:port
844
  int32_t port;
S
Shengliang Guan 已提交
845 846 847 848 849 850 851 852
} SCreateDnodeMsg;

typedef struct {
  int32_t dnodeId;
} SDropDnodeMsg;

typedef struct {
  int32_t dnodeId;
853
  char    config[TSDB_DNODE_CONFIG_LEN];
S
Shengliang Guan 已提交
854
} SCfgDnodeMsg;
D
dapan1121 已提交
855

S
Shengliang Guan 已提交
856 857 858 859
typedef struct {
  int32_t dnodeId;
} SCreateMnodeMsg, SDropMnodeMsg;

D
dapan1121 已提交
860
typedef struct {
S
Shengliang Guan 已提交
861 862
  int32_t  dnodeId;
  int8_t   replica;
S
Shengliang Guan 已提交
863
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
864 865 866 867 868
} SCreateMnodeInMsg, SAlterMnodeInMsg;

typedef struct {
  int32_t dnodeId;
} SDropMnodeInMsg;
D
dapan1121 已提交
869

S
Shengliang Guan 已提交
870 871
typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
872
} SMCreateQnodeMsg, SMDropQnodeMsg, SDCreateQnodeMsg, SDDropQnodeMsg;
S
Shengliang Guan 已提交
873 874 875

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
876
} SMCreateSnodeMsg, SMDropSnodeMsg, SDCreateSnodeMsg, SDDropSnodeMsg;
S
Shengliang Guan 已提交
877 878 879

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
880
} SMCreateBnodeMsg, SMDropBnodeMsg, SDCreateBnodeMsg, SDDropBnodeMsg;
S
Shengliang Guan 已提交
881

D
dapan1121 已提交
882 883 884 885 886 887 888
typedef struct {
  int32_t dnodeId;
  int32_t vgId;
  int32_t tid;
} SConfigTableMsg;

typedef struct {
S
Shengliang Guan 已提交
889 890
  int32_t dnodeId;
  int32_t vgId;
D
dapan1121 已提交
891 892 893
} SConfigVnodeMsg;

typedef struct {
S
Shengliang Guan 已提交
894 895 896 897 898 899 900 901 902 903 904
  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 已提交
905 906 907
} SQueryDesc;

typedef struct {
S
Shengliang Guan 已提交
908 909 910 911 912 913
  int32_t connId;
  int32_t pid;
  int32_t numOfQueries;
  int32_t numOfStreams;
  char    app[TSDB_APP_NAME_LEN];
  char    pData[];
D
dapan1121 已提交
914 915 916
} SHeartBeatMsg;

typedef struct {
S
Shengliang Guan 已提交
917 918 919 920 921 922 923 924
  int32_t connId;
  int32_t queryId;
  int32_t streamId;
  int32_t totalDnodes;
  int32_t onlineDnodes;
  int8_t  killConnection;
  int8_t  reserved[3];
  SEpSet  epSet;
D
dapan1121 已提交
925 926 927
} SHeartBeatRsp;

typedef struct {
S
Shengliang Guan 已提交
928 929 930 931 932 933 934 935 936 937 938 939
  int32_t connId;
  int32_t streamId;
} SKillStreamMsg;

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

typedef struct {
  int32_t connId;
} SKillConnMsg;
D
dapan1121 已提交
940 941 942 943 944

typedef struct {
  char user[TSDB_USER_LEN];
  char spi;
  char encrypt;
945 946
  char secret[TSDB_PASSWORD_LEN];
  char ckey[TSDB_PASSWORD_LEN];
D
dapan1121 已提交
947 948 949
} SAuthMsg, SAuthRsp;

typedef struct {
S
Shengliang Guan 已提交
950 951 952 953
  int8_t finished;
  int8_t reserved1[7];
  char   name[TSDB_STEP_NAME_LEN];
  char   desc[TSDB_STEP_DESC_LEN];
S
Shengliang Guan 已提交
954
} SStartupMsg;
D
dapan1121 已提交
955

L
Liu Jicong 已提交
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
// 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 已提交
980
// mq related end
L
Liu Jicong 已提交
981

D
dapan1121 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
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;

1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
typedef struct {
  /* data */
} SDropStableReq;

typedef struct {
  /* data */
} SDropStableRsp;

typedef struct {
  /* data */
} SUpdateTagValReq;

typedef struct {
  /* data */
} SUpdateTagValRsp;

D
dapan1121 已提交
1034
typedef struct SSubQueryMsg {
D
dapan1121 已提交
1035
  uint64_t sId;
H
Hongze Cheng 已提交
1036 1037 1038 1039
  uint64_t queryId;
  uint64_t taskId;
  uint32_t contentLen;
  char     msg[];
D
dapan1121 已提交
1040
} SSubQueryMsg;
D
dapan 已提交
1041

D
dapan1121 已提交
1042
typedef struct SResReadyMsg {
D
dapan1121 已提交
1043
  uint64_t sId;
H
Hongze Cheng 已提交
1044 1045
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1046
} SResReadyMsg;
D
dapan 已提交
1047

D
dapan1121 已提交
1048 1049 1050 1051
typedef struct SResReadyRsp {
  int32_t code;
} SResReadyRsp;

D
dapan1121 已提交
1052
typedef struct SResFetchMsg {
D
dapan1121 已提交
1053
  uint64_t sId;
H
Hongze Cheng 已提交
1054 1055
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1056
} SResFetchMsg;
D
dapan 已提交
1057

D
dapan1121 已提交
1058
typedef struct SSchTasksStatusMsg {
D
dapan1121 已提交
1059
  uint64_t sId;
D
dapan1121 已提交
1060
} SSchTasksStatusMsg;
D
dapan1121 已提交
1061

D
dapan1121 已提交
1062
typedef struct STaskStatus {
H
Hongze Cheng 已提交
1063 1064 1065
  uint64_t queryId;
  uint64_t taskId;
  int8_t   status;
D
dapan1121 已提交
1066 1067 1068 1069 1070 1071 1072
} STaskStatus;

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

D
dapan1121 已提交
1073
typedef struct STaskCancelMsg {
D
dapan1121 已提交
1074
  uint64_t sId;
H
Hongze Cheng 已提交
1075 1076
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1077 1078
} STaskCancelMsg;

D
dapan1121 已提交
1079 1080 1081 1082
typedef struct STaskCancelRsp {
  int32_t code;
} STaskCancelRsp;

D
dapan1121 已提交
1083
typedef struct STaskDropMsg {
D
dapan1121 已提交
1084
  uint64_t sId;
H
Hongze Cheng 已提交
1085 1086
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1087
} STaskDropMsg;
D
dapan1121 已提交
1088

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

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

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

static FORCE_INLINE void* tDeserializeSCMCreateTopicReq(void* buf, SCMCreateTopicReq* pReq) {
  buf = taosDecodeFixedI8(buf, &(pReq->igExists));
  buf = taosDecodeString(buf, &(pReq->name));
L
Liu Jicong 已提交
1112 1113
  buf = taosDecodeString(buf, &(pReq->physicalPlan));
  buf = taosDecodeString(buf, &(pReq->logicalPlan));
L
Liu Jicong 已提交
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
  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 {
  char* topicName;
  char* consumerGroup;
  int64_t consumerId;
} SCMSubscribeReq;

static FORCE_INLINE int tSerializeSCMSubscribeReq(void** buf, const SCMSubscribeReq* pReq) {
  int tlen = 0;
  tlen += taosEncodeString(buf, pReq->topicName);
  tlen += taosEncodeString(buf, pReq->consumerGroup);
  tlen += taosEncodeFixedI64(buf, pReq->consumerId);
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeReq(void* buf, SCMSubscribeReq* pReq) {
  buf = taosDecodeString(buf, &pReq->topicName);
  buf = taosDecodeString(buf, &pReq->consumerGroup);
  buf = taosDecodeFixedI64(buf, &pReq->consumerId);
L
Liu Jicong 已提交
1150 1151 1152
  return buf;
}

L
Liu Jicong 已提交
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
typedef struct {
  int32_t vgId;
  SEpSet pEpSet;
} SCMSubscribeRsp;

static FORCE_INLINE int tSerializeSCMSubscribeRsp(void** buf, const SCMSubscribeRsp* pRsp) {
  int tlen = 0;
  tlen += taosEncodeFixedI32(buf, pRsp->vgId);
  tlen += taosEncodeSEpSet(buf, &pRsp->pEpSet);
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeRsp(void* buf, SCMSubscribeRsp* pRsp) {
  buf = taosDecodeFixedI32(buf, &pRsp->vgId);
  buf = taosDecodeSEpSet(buf, &pRsp->pEpSet);
  return buf;
}

typedef struct {
  int64_t topicId;
  int64_t consumerId;
  int64_t consumerGroupId;
  int64_t offset;
} SMVSubscribeReq;

typedef struct {
  int64_t newOffset;
} SMVSubscribeRsp;

L
Liu Jicong 已提交
1182 1183 1184
typedef struct {
  char    name[TSDB_TOPIC_FNAME_LEN];
  int8_t  igExists;
L
Liu Jicong 已提交
1185
  int32_t execLen;
L
Liu Jicong 已提交
1186
  void*   executor;
L
Liu Jicong 已提交
1187
  int32_t sqlLen;
L
Liu Jicong 已提交
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
  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;
} SCreateTopicInternalMsg;

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

H
more  
Hongze Cheng 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 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
typedef struct SVCreateTbReq {
  uint64_t ver;  // use a general definition
  char*    name;
  uint32_t ttl;
  uint32_t keep;
#define TD_SUPER_TABLE 0
#define TD_CHILD_TABLE 1
#define TD_NORMAL_TABLE 2
  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;

static FORCE_INLINE int tSerializeSVCreateTbReq(void** buf, const SVCreateTbReq* pReq) {
  int tlen = 0;

  tlen += taosEncodeFixedU64(buf, pReq->ver);
  tlen += taosEncodeString(buf, pReq->name);
  tlen += taosEncodeFixedU32(buf, pReq->ttl);
  tlen += taosEncodeFixedU32(buf, pReq->keep);
  tlen += taosEncodeFixedU8(buf, pReq->type);

  switch (pReq->type) {
    case TD_SUPER_TABLE:
      tlen += taosEncodeFixedU64(buf, pReq->stbCfg.suid);
      tlen += taosEncodeFixedU32(buf, pReq->stbCfg.nCols);
      for (uint32_t i = 0; i < pReq->stbCfg.nCols; i++) {
        tlen += taosEncodeFixedI8(buf, pReq->stbCfg.pSchema[i].type);
        tlen += taosEncodeFixedI32(buf, pReq->stbCfg.pSchema[i].colId);
        tlen += taosEncodeFixedI32(buf, pReq->stbCfg.pSchema[i].bytes);
        tlen += taosEncodeString(buf, pReq->stbCfg.pSchema[i].name);
      }
      tlen += taosEncodeFixedU32(buf, pReq->stbCfg.nTagCols);
      for (uint32_t i = 0; i < pReq->stbCfg.nTagCols; i++) {
        tlen += taosEncodeFixedI8(buf, pReq->stbCfg.pTagSchema[i].type);
        tlen += taosEncodeFixedI32(buf, pReq->stbCfg.pTagSchema[i].colId);
        tlen += taosEncodeFixedI32(buf, pReq->stbCfg.pTagSchema[i].bytes);
        tlen += taosEncodeString(buf, pReq->stbCfg.pTagSchema[i].name);
      }
      break;
    case TD_CHILD_TABLE:
      tlen += taosEncodeFixedU64(buf, pReq->ctbCfg.suid);
      tlen += tdEncodeKVRow(buf, pReq->ctbCfg.pTag);
      break;
    case TD_NORMAL_TABLE:
      tlen += taosEncodeFixedU32(buf, pReq->ntbCfg.nCols);
      for (uint32_t i = 0; i < pReq->ntbCfg.nCols; i++) {
        tlen += taosEncodeFixedI8(buf, pReq->ntbCfg.pSchema[i].type);
        tlen += taosEncodeFixedI32(buf, pReq->ntbCfg.pSchema[i].colId);
        tlen += taosEncodeFixedI32(buf, pReq->ntbCfg.pSchema[i].bytes);
        tlen += taosEncodeString(buf, pReq->ntbCfg.pSchema[i].name);
      }
      break;
    default:
      ASSERT(0);
  }

  return tlen;
}

static FORCE_INLINE void* tDeserializeSVCreateTbReq(void* buf, SVCreateTbReq* pReq) {
  buf = taosDecodeFixedU64(buf, &(pReq->ver));
  buf = taosDecodeString(buf, &(pReq->name));
  buf = taosDecodeFixedU32(buf, &(pReq->ttl));
  buf = taosDecodeFixedU32(buf, &(pReq->keep));
  buf = taosDecodeFixedU8(buf, &(pReq->type));

  switch (pReq->type) {
    case TD_SUPER_TABLE:
      buf = taosDecodeFixedU64(buf, &(pReq->stbCfg.suid));
      buf = taosDecodeFixedU32(buf, &(pReq->stbCfg.nCols));
      pReq->stbCfg.pSchema = (SSchema*)malloc(pReq->stbCfg.nCols * sizeof(SSchema));
      for (uint32_t i = 0; i < pReq->stbCfg.nCols; i++) {
        buf = taosDecodeFixedI8(buf, &(pReq->stbCfg.pSchema[i].type));
        buf = taosDecodeFixedI32(buf, &(pReq->stbCfg.pSchema[i].colId));
        buf = taosDecodeFixedI32(buf, &(pReq->stbCfg.pSchema[i].bytes));
        buf = taosDecodeStringTo(buf, pReq->stbCfg.pSchema[i].name);
      }
      buf = taosDecodeFixedU32(buf, &pReq->stbCfg.nTagCols);
      pReq->stbCfg.pTagSchema = (SSchema*)malloc(pReq->stbCfg.nTagCols * sizeof(SSchema));
      for (uint32_t i = 0; i < pReq->stbCfg.nTagCols; i++) {
        buf = taosDecodeFixedI8(buf, &(pReq->stbCfg.pTagSchema[i].type));
        buf = taosDecodeFixedI32(buf, &pReq->stbCfg.pTagSchema[i].colId);
        buf = taosDecodeFixedI32(buf, &pReq->stbCfg.pTagSchema[i].bytes);
        buf = taosDecodeStringTo(buf, pReq->stbCfg.pTagSchema[i].name);
      }
      break;
    case TD_CHILD_TABLE:
      buf = taosDecodeFixedU64(buf, &pReq->ctbCfg.suid);
      buf = tdDecodeKVRow(buf, &pReq->ctbCfg.pTag);
      break;
    case TD_NORMAL_TABLE:
      buf = taosDecodeFixedU32(buf, &pReq->ntbCfg.nCols);
      pReq->ntbCfg.pSchema = (SSchema*)malloc(pReq->ntbCfg.nCols * sizeof(SSchema));
      for (uint32_t i = 0; i < pReq->ntbCfg.nCols; i++) {
        buf = taosDecodeFixedI8(buf, &pReq->ntbCfg.pSchema[i].type);
        buf = taosDecodeFixedI32(buf, &pReq->ntbCfg.pSchema[i].colId);
        buf = taosDecodeFixedI32(buf, &pReq->ntbCfg.pSchema[i].bytes);
        buf = taosDecodeStringTo(buf, pReq->ntbCfg.pSchema[i].name);
      }
      break;
    default:
      ASSERT(0);
  }

  return buf;
}
typedef struct SVCreateTbRsp {
} SVCreateTbRsp;

H
Hongze Cheng 已提交
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
typedef struct SVShowTablesReq {
  SMsgHead head;
} SVShowTablesReq;

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

typedef struct SVShowTablesFetchReq {
  SMsgHead head;
  int64_t  id;
} 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 已提交
1369 1370 1371 1372 1373 1374 1375
#pragma pack(pop)

#ifdef __cplusplus
}
#endif

#endif /*_TD_COMMON_TAOS_MSG_H_*/