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

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

D
dapan1121 已提交
79
enum {
D
dapan1121 已提交
80 81
  HEARTBEAT_KEY_DBINFO = 1,
  HEARTBEAT_KEY_STBINFO,
D
dapan1121 已提交
82
  HEARTBEAT_KEY_MQ_TMP,
D
dapan1121 已提交
83 84 85
};


S
Shengliang Guan 已提交
86 87
typedef enum _mgmt_table {
  TSDB_MGMT_TABLE_START,
D
dapan1121 已提交
88 89 90 91 92 93
  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 已提交
94 95 96
  TSDB_MGMT_TABLE_QNODE,
  TSDB_MGMT_TABLE_SNODE,
  TSDB_MGMT_TABLE_BNODE,
D
dapan1121 已提交
97
  TSDB_MGMT_TABLE_VGROUP,
S
Shengliang Guan 已提交
98
  TSDB_MGMT_TABLE_STB,
D
dapan1121 已提交
99 100 101 102 103 104 105 106 107
  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 已提交
108
  TSDB_MGMT_TABLE_STREAMTABLES,
D
dapan1121 已提交
109
  TSDB_MGMT_TABLE_TP,
S
Shengliang 已提交
110
  TSDB_MGMT_TABLE_FUNC,
D
dapan1121 已提交
111
  TSDB_MGMT_TABLE_MAX,
S
Shengliang Guan 已提交
112
} EShowType;
D
dapan1121 已提交
113

H
Hongze Cheng 已提交
114 115
#define TSDB_ALTER_TABLE_ADD_TAG_COLUMN 1
#define TSDB_ALTER_TABLE_DROP_TAG_COLUMN 2
S
Shengliang Guan 已提交
116
#define TSDB_ALTER_TABLE_UPDATE_TAG_NAME 3
H
Hongze Cheng 已提交
117
#define TSDB_ALTER_TABLE_UPDATE_TAG_VAL 4
D
dapan1121 已提交
118

H
Hongze Cheng 已提交
119 120
#define TSDB_ALTER_TABLE_ADD_COLUMN 5
#define TSDB_ALTER_TABLE_DROP_COLUMN 6
S
Shengliang Guan 已提交
121 122
#define TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES 7
#define TSDB_ALTER_TABLE_UPDATE_TAG_BYTES 8
D
dapan1121 已提交
123

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

H
Hongze Cheng 已提交
131
#define TSDB_ALTER_USER_PASSWD 0x1
D
dapan1121 已提交
132 133
#define TSDB_ALTER_USER_PRIVILEGES 0x2

H
Hongze Cheng 已提交
134
#define TSDB_KILL_MSG_LEN 30
D
dapan1121 已提交
135

H
Hongze Cheng 已提交
136 137
#define TSDB_VN_READ_ACCCESS ((char)0x1)
#define TSDB_VN_WRITE_ACCCESS ((char)0x2)
D
dapan1121 已提交
138 139
#define TSDB_VN_ALL_ACCCESS (TSDB_VN_READ_ACCCESS | TSDB_VN_WRITE_ACCCESS)

H
Hongze Cheng 已提交
140 141 142 143 144
#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 已提交
145

H
Hongze Cheng 已提交
146 147 148 149
#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)
S
Shengliang Guan 已提交
150 151 152 153 154

#define TD_SUPER_TABLE TSDB_SUPER_TABLE
#define TD_CHILD_TABLE TSDB_CHILD_TABLE
#define TD_NORMAL_TABLE TSDB_NORMAL_TABLE

S
Shengliang Guan 已提交
155
typedef struct {
S
Shengliang Guan 已提交
156
  int32_t vgId;
D
dapan1121 已提交
157 158
  char*   dbFName;
  char*   tbName;
D
dapan1121 已提交
159 160
} SBuildTableMetaInput;

S
Shengliang Guan 已提交
161
typedef struct {
D
dapan1121 已提交
162
  char    db[TSDB_DB_FNAME_LEN];
163
  int32_t vgVersion;
D
dapan1121 已提交
164 165
} SBuildUseDBInput;

D
dapan1121 已提交
166 167 168
#pragma pack(push, 1)

// null-terminated string instead of char array to avoid too many memory consumption in case of more than 1M tableMeta
H
Haojun Liao 已提交
169
typedef struct SEp {
D
dapan1121 已提交
170
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
171
  uint16_t port;
H
Haojun Liao 已提交
172
} SEp;
D
dapan1121 已提交
173

S
Shengliang Guan 已提交
174
typedef struct {
D
dapan1121 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
  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;

L
Liu Jicong 已提交
191 192 193 194 195 196 197 198 199 200 201 202
typedef struct {
  /* data */
} SSubmitReq;

typedef struct {
  /* data */
} SSubmitRsp;

typedef struct {
  /* data */
} SSubmitReqReader;

D
dapan1121 已提交
203
// Submit message for this TSDB
S
Shengliang Guan 已提交
204
typedef struct {
S
Shengliang Guan 已提交
205
  SMsgHead header;
H
Hongze Cheng 已提交
206
  int64_t  version;
S
Shengliang Guan 已提交
207 208 209
  int32_t  length;
  int32_t  numOfBlocks;
  char     blocks[];
D
dapan1121 已提交
210 211
} SSubmitMsg;

H
Hongze Cheng 已提交
212 213 214 215 216 217 218 219 220 221 222 223
typedef struct {
  int32_t totalLen;
  int32_t len;
  SMemRow row;
} SSubmitBlkIter;

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

H
Hongze Cheng 已提交
224 225 226 227
int     tInitSubmitMsgIter(SSubmitMsg* pMsg, SSubmitMsgIter* pIter);
int     tGetSubmitMsgNext(SSubmitMsgIter* pIter, SSubmitBlk** pPBlock);
int     tInitSubmitBlkIter(SSubmitBlk* pBlock, SSubmitBlkIter* pIter);
SMemRow tGetSubmitBlkNext(SSubmitBlkIter* pIter);
H
Hongze Cheng 已提交
228

D
dapan1121 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242
typedef struct {
  int32_t index;  // index of failed block in submit blocks
  int32_t vnode;  // vnode index of failed block
  int32_t sid;    // table index of failed block
  int32_t code;   // errorcode while write data to vnode, such as not created, dropped, no space, invalid table
} SShellSubmitRspBlock;

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

typedef struct SSchema {
S
Shengliang Guan 已提交
246
  int8_t  type;
S
Shengliang Guan 已提交
247
  int32_t colId;
248
  int32_t bytes;
S
Shengliang Guan 已提交
249
  char    name[TSDB_COL_NAME_LEN];
D
dapan1121 已提交
250 251 252
} SSchema;

typedef struct {
S
Shengliang Guan 已提交
253 254 255 256
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  igExists;
  int32_t numOfTags;
  int32_t numOfColumns;
S
Shengliang Guan 已提交
257
  SSchema pSchemas[];
S
Shengliang Guan 已提交
258
} SMCreateStbReq;
D
dapan1121 已提交
259 260 261 262

typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
263
} SMDropStbReq;
S
Shengliang Guan 已提交
264 265 266 267

typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
S
Shengliang Guan 已提交
268 269
  int32_t numOfSchemas;
  SSchema pSchemas[];
S
Shengliang Guan 已提交
270
} SMAltertbReq;
D
dapan1121 已提交
271 272 273

typedef struct {
  int32_t pid;
S
Shengliang Guan 已提交
274 275
  char    app[TSDB_APP_NAME_LEN];
  char    db[TSDB_DB_NAME_LEN];
276
  int64_t startTime;
S
Shengliang Guan 已提交
277
} SConnectReq;
D
dapan1121 已提交
278 279

typedef struct SEpSet {
S
Shengliang Guan 已提交
280 281
  int8_t   inUse;
  int8_t   numOfEps;
H
Haojun Liao 已提交
282
  SEp      eps[TSDB_MAX_REPLICA];
D
dapan1121 已提交
283 284
} SEpSet;

L
Liu Jicong 已提交
285
static FORCE_INLINE int taosEncodeSEpSet(void** buf, const SEpSet* pEp) {
L
Liu Jicong 已提交
286 287 288 289
  int tlen = 0;
  tlen += taosEncodeFixedI8(buf, pEp->inUse);
  tlen += taosEncodeFixedI8(buf, pEp->numOfEps);
  for (int i = 0; i < TSDB_MAX_REPLICA; i++) {
H
Haojun Liao 已提交
290 291
    tlen += taosEncodeFixedU16(buf, pEp->eps[i].port);
    tlen += taosEncodeString(buf, pEp->eps[i].fqdn);
L
Liu Jicong 已提交
292 293
  }
  return tlen;
L
Liu Jicong 已提交
294 295
}

L
Liu Jicong 已提交
296 297 298 299
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++) {
H
Haojun Liao 已提交
300 301
    buf = taosDecodeFixedU16(buf, &pEp->eps[i].port);
    buf = taosDecodeStringTo(buf, pEp->eps[i].fqdn);
L
Liu Jicong 已提交
302
  }
L
Liu Jicong 已提交
303 304
  return buf;
}
305

L
Liu Jicong 已提交
306 307 308 309 310 311 312
typedef struct {
  int32_t acctId;
  int64_t clusterId;
  int32_t connId;
  int8_t  superUser;
  int8_t  align[3];
  SEpSet  epSet;
313
  char    sVersion[128];
L
Liu Jicong 已提交
314
} SConnectRsp;
L
Liu Jicong 已提交
315

L
Liu Jicong 已提交
316 317 318 319 320 321 322 323 324 325
typedef struct {
  char    user[TSDB_USER_LEN];
  char    pass[TSDB_PASSWORD_LEN];
  int32_t maxUsers;
  int32_t maxDbs;
  int32_t maxTimeSeries;
  int32_t maxStreams;
  int32_t accessState;  // Configured only by command
  int64_t maxStorage;   // In unit of GB
} SCreateAcctReq, SAlterAcctReq;
L
Liu Jicong 已提交
326

L
Liu Jicong 已提交
327 328 329
typedef struct {
  char user[TSDB_USER_LEN];
} SDropUserReq, SDropAcctReq;
D
dapan1121 已提交
330 331

typedef struct {
S
Shengliang Guan 已提交
332 333 334 335
  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 已提交
336
} SCreateUserReq, SAlterUserReq;
D
dapan1121 已提交
337 338

typedef struct {
S
Shengliang Guan 已提交
339 340 341
  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
342
  char    name[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
343 344
} SColIndex;

S
Shengliang Guan 已提交
345
typedef struct {
D
dapan1121 已提交
346 347
  int16_t lowerRelOptr;
  int16_t upperRelOptr;
S
Shengliang Guan 已提交
348
  int16_t filterstr;  // denote if current column is char(binary/nchar)
D
dapan1121 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365

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

S
Shengliang Guan 已提交
366
typedef struct {
S
Shengliang Guan 已提交
367 368 369
  int16_t numOfFilters;
  union {
    int64_t            placeholder;
H
Hongze Cheng 已提交
370
    SColumnFilterInfo* filterInfo;
D
dapan1121 已提交
371 372 373 374 375 376
  };
} SColumnFilterList;
/*
 * for client side struct, we only need the column id, type, bytes are not necessary
 * But for data in vnode side, we need all the following information.
 */
S
Shengliang Guan 已提交
377
typedef struct {
S
Shengliang Guan 已提交
378 379 380 381
  int16_t           colId;
  int16_t           type;
  int16_t           bytes;
  SColumnFilterList flist;
D
dapan1121 已提交
382 383
} SColumnInfo;

S
Shengliang Guan 已提交
384
typedef struct {
D
dapan1121 已提交
385 386 387 388 389 390 391 392 393 394
  uint64_t uid;
  TSKEY    key;  // last accessed ts, for subscription
} STableIdInfo;

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

typedef struct {
S
Shengliang Guan 已提交
395 396 397 398
  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 已提交
399 400
} STsBufInfo;

S
Shengliang Guan 已提交
401
typedef struct {
S
Shengliang Guan 已提交
402
  int32_t tz;  // query client timezone
D
dapan1121 已提交
403 404 405 406 407 408 409 410 411
  char    intervalUnit;
  char    slidingUnit;
  char    offsetUnit;
  int64_t interval;
  int64_t sliding;
  int64_t offset;
} SInterval;

typedef struct {
S
Shengliang Guan 已提交
412 413
  SMsgHead head;
  char     version[TSDB_VERSION_LEN];
D
dapan1121 已提交
414

S
Shengliang Guan 已提交
415 416 417 418 419 420 421 422 423 424 425 426 427
  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 已提交
428 429 430 431 432

  STimeWindow window;
  int32_t     numOfTables;
  int16_t     order;
  int16_t     orderColId;
S
Shengliang Guan 已提交
433
  int16_t     numOfCols;  // the number of columns will be load from vnode
D
dapan1121 已提交
434
  SInterval   interval;
S
Shengliang Guan 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
  //  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 已提交
454
  int32_t     numOfOperator;
H
Hongze Cheng 已提交
455 456
  int32_t     tableScanOperator;  // table scan operator. -1 means no scan operator
  int32_t     udfNum;             // number of udf function
D
dapan1121 已提交
457 458 459
  int32_t     udfContentOffset;
  int32_t     udfContentLen;
  SColumnInfo tableCols[];
S
Shengliang Guan 已提交
460
} SQueryTableReq;
D
dapan1121 已提交
461 462

typedef struct {
S
Shengliang Guan 已提交
463
  int32_t code;
D
dapan1121 已提交
464 465 466 467 468
} SQueryTableRsp;

// todo: the show handle should be replaced with id
typedef struct {
  SMsgHead header;
S
Shengliang Guan 已提交
469
  union {
470
    int64_t showId;
S
Shengliang Guan 已提交
471 472 473 474
    int64_t qhandle;
    int64_t qId;
  };  // query handle
  int8_t free;
S
Shengliang Guan 已提交
475
} SRetrieveTableReq;
D
dapan1121 已提交
476

S
Shengliang Guan 已提交
477
typedef struct {
D
dapan1121 已提交
478
  int64_t useconds;
S
Shengliang Guan 已提交
479 480
  int8_t  completed;  // all results are returned to client
  int8_t  precision;
D
dapan1121 已提交
481 482
  int8_t  compressed;
  int32_t compLen;
H
Haojun Liao 已提交
483 484

  int32_t numOfRows;
D
dapan1121 已提交
485 486 487 488
  char    data[];
} SRetrieveTableRsp;

typedef struct {
489
  char    db[TSDB_DB_FNAME_LEN];
490
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
491 492 493 494 495 496
  int32_t cacheBlockSize;  // MB
  int32_t totalBlocks;
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
497 498
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
499 500
  int32_t commitTime;
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
501
  int8_t  walLevel;
S
Shengliang Guan 已提交
502 503 504 505 506 507
  int8_t  precision;  // time resolution
  int8_t  compression;
  int8_t  replications;
  int8_t  quorum;
  int8_t  update;
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
508
  int8_t  ignoreExist;
S
Shengliang Guan 已提交
509
} SCreateDbReq;
S
Shengliang Guan 已提交
510 511

typedef struct {
512
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
513 514 515 516 517 518 519 520
  int32_t totalBlocks;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
  int32_t fsyncPeriod;
  int8_t  walLevel;
  int8_t  quorum;
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
521
} SAlterDbReq;
S
Shengliang Guan 已提交
522 523

typedef struct {
S
Shengliang Guan 已提交
524
  char   db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
525
  int8_t ignoreNotExists;
S
Shengliang Guan 已提交
526
} SDropDbReq;
S
Shengliang Guan 已提交
527 528

typedef struct {
S
Shengliang Guan 已提交
529 530 531 532 533 534
  char     db[TSDB_DB_FNAME_LEN];
  uint64_t uid;
} SDropDbRsp;

typedef struct {
  char    db[TSDB_DB_FNAME_LEN];
535
  int32_t vgVersion;
S
Shengliang Guan 已提交
536
} SUseDbReq;
S
Shengliang Guan 已提交
537 538

typedef struct {
S
Shengliang Guan 已提交
539
  char db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
540
} SSyncDbReq;
S
Shengliang Guan 已提交
541 542

typedef struct {
S
Shengliang Guan 已提交
543
  char db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
544
} SCompactDbReq;
D
dapan1121 已提交
545 546

typedef struct {
S
Shengliang Guan 已提交
547
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang 已提交
548
  int8_t  igExists;
S
Shengliang Guan 已提交
549 550
  int8_t  funcType;
  int8_t  scriptType;
S
Shengliang Guan 已提交
551
  int8_t  outputType;
S
Shengliang Guan 已提交
552
  int32_t outputLen;
S
Shengliang Guan 已提交
553
  int32_t bufSize;
S
Shengliang 已提交
554
  int64_t signature;
S
Shengliang Guan 已提交
555 556 557
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
S
Shengliang Guan 已提交
558
} SCreateFuncReq;
D
dapan1121 已提交
559 560

typedef struct {
S
Shengliang 已提交
561 562
  char   name[TSDB_FUNC_NAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
563
} SDropFuncReq;
S
Shengliang Guan 已提交
564 565 566 567

typedef struct {
  int32_t numOfFuncs;
  char    pFuncNames[];
S
Shengliang Guan 已提交
568
} SRetrieveFuncReq;
D
dapan1121 已提交
569 570 571

typedef struct {
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang 已提交
572
  int8_t  align;
S
Shengliang Guan 已提交
573 574 575 576
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  outputType;
  int32_t outputLen;
D
dapan1121 已提交
577
  int32_t bufSize;
S
Shengliang 已提交
578
  int64_t signature;
S
Shengliang Guan 已提交
579 580 581 582
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
} SFuncInfo;
D
dapan1121 已提交
583 584

typedef struct {
S
Shengliang Guan 已提交
585 586 587
  int32_t numOfFuncs;
  char    pFuncInfos[];
} SRetrieveFuncRsp;
D
dapan1121 已提交
588 589

typedef struct {
S
Shengliang Guan 已提交
590 591 592 593 594 595
  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 已提交
596

S
Shengliang Guan 已提交
597 598 599
typedef struct {
  int32_t vgId;
  int8_t  role;
S
Shengliang Guan 已提交
600
  int8_t  align[3];
S
Shengliang Guan 已提交
601 602 603 604 605 606 607
  int64_t totalStorage;
  int64_t compStorage;
  int64_t pointsWritten;
  int64_t tablesNum;
} SVnodeLoad;

typedef struct {
S
Shengliang Guan 已提交
608 609
  int32_t    num;
  SVnodeLoad data[];
S
Shengliang Guan 已提交
610 611
} SVnodeLoads;

S
Shengliang Guan 已提交
612
typedef struct {
S
Shengliang Guan 已提交
613
  int32_t     sver;
S
Shengliang Guan 已提交
614
  int32_t     dnodeId;
615
  int64_t     clusterId;
616
  int64_t     dver;
S
Shengliang Guan 已提交
617 618
  int64_t     rebootTime;
  int64_t     updateTime;
S
Shengliang Guan 已提交
619 620
  int32_t     numOfCores;
  int32_t     numOfSupportVnodes;
S
Shengliang Guan 已提交
621 622 623
  char        dnodeEp[TSDB_EP_LEN];
  SClusterCfg clusterCfg;
  SVnodeLoads vnodeLoads;
S
Shengliang Guan 已提交
624
} SStatusReq;
D
dapan1121 已提交
625

S
Shengliang Guan 已提交
626 627
typedef struct {
  int32_t reserved;
S
Shengliang Guan 已提交
628
} STransReq;
S
Shengliang Guan 已提交
629

D
dapan1121 已提交
630
typedef struct {
S
Shengliang Guan 已提交
631
  int32_t dnodeId;
632
  int64_t clusterId;
D
dapan1121 已提交
633 634 635
} SDnodeCfg;

typedef struct {
S
Shengliang Guan 已提交
636
  int32_t  id;
S
Shengliang Guan 已提交
637
  int8_t   isMnode;
S
Shengliang Guan 已提交
638
  int8_t   align;
H
Haojun Liao 已提交
639
  SEp      ep;
D
dapan1121 已提交
640 641 642
} SDnodeEp;

typedef struct {
S
Shengliang Guan 已提交
643 644
  int32_t  num;
  SDnodeEp eps[];
D
dapan1121 已提交
645 646 647
} SDnodeEps;

typedef struct {
648
  int64_t   dver;
S
Shengliang Guan 已提交
649 650
  SDnodeCfg dnodeCfg;
  SDnodeEps dnodeEps;
D
dapan1121 已提交
651 652 653
} SStatusRsp;

typedef struct {
S
Shengliang Guan 已提交
654 655 656
  int32_t  id;
  uint16_t port;                 // node sync Port
  char     fqdn[TSDB_FQDN_LEN];  // node FQDN
S
Shengliang Guan 已提交
657 658 659
} SReplica;

typedef struct {
S
Shengliang Guan 已提交
660
  int32_t  vgId;
S
Shengliang Guan 已提交
661
  int32_t  dnodeId;
662
  char     db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
663
  uint64_t dbUid;
664
  int32_t  vgVersion;
S
Shengliang Guan 已提交
665 666 667 668 669 670
  int32_t  cacheBlockSize;
  int32_t  totalBlocks;
  int32_t  daysPerFile;
  int32_t  daysToKeep0;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
Shengliang Guan 已提交
671 672 673
  int32_t  minRows;
  int32_t  maxRows;
  int32_t  commitTime;
S
Shengliang Guan 已提交
674
  int32_t  fsyncPeriod;
S
Shengliang Guan 已提交
675
  int8_t   walLevel;
S
Shengliang Guan 已提交
676 677 678
  int8_t   precision;
  int8_t   compression;
  int8_t   quorum;
S
Shengliang Guan 已提交
679 680
  int8_t   update;
  int8_t   cacheLastRow;
S
Shengliang Guan 已提交
681
  int8_t   replica;
S
Shengliang Guan 已提交
682 683
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
684
} SCreateVnodeReq, SAlterVnodeReq;
D
dapan1121 已提交
685

S
Shengliang Guan 已提交
686
typedef struct {
S
Shengliang Guan 已提交
687 688 689
  int32_t  vgId;
  int32_t  dnodeId;
  uint64_t dbUid;
S
Shengliang Guan 已提交
690 691
  char     db[TSDB_DB_FNAME_LEN];
} SDropVnodeReq, SSyncVnodeReq, SCompactVnodeReq;
S
Shengliang Guan 已提交
692 693 694 695

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

D
dapan1121 已提交
698
typedef struct {
D
dapan1121 已提交
699
  SMsgHead header;
D
dapan1121 已提交
700 701
  char     dbFName[TSDB_DB_FNAME_LEN];
  char     tbName[TSDB_TABLE_NAME_LEN];
S
Shengliang Guan 已提交
702
} STableInfoReq;
D
dapan1121 已提交
703 704

typedef struct {
S
Shengliang Guan 已提交
705
  int8_t  metaClone;  // create local clone of the cached table meta
D
dapan1121 已提交
706 707 708 709
  int32_t numOfVgroups;
  int32_t numOfTables;
  int32_t numOfUdfs;
  char    tableNames[];
S
Shengliang Guan 已提交
710
} SMultiTableInfoReq;
D
dapan1121 已提交
711

H
Haojun Liao 已提交
712
// todo refactor
D
dapan1121 已提交
713 714
typedef struct SVgroupInfo {
  int32_t    vgId;
S
Shengliang Guan 已提交
715 716
  uint32_t   hashBegin;
  uint32_t   hashEnd;
H
Haojun Liao 已提交
717
  SEpSet     epset;
D
dapan1121 已提交
718 719
} SVgroupInfo;

D
dapan1121 已提交
720
typedef struct {
H
Haojun Liao 已提交
721 722
  int32_t     numOfVgroups;
  SVgroupInfo vgroups[];
S
Shengliang Guan 已提交
723
} SVgroupsInfo;
D
dapan1121 已提交
724

S
Shengliang Guan 已提交
725
typedef struct {
D
dapan1121 已提交
726 727 728
  char     tbName[TSDB_TABLE_NAME_LEN];
  char     stbName[TSDB_TABLE_NAME_LEN];
  char     dbFName[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
729
  uint64_t dbId;
S
Shengliang Guan 已提交
730 731 732 733 734 735 736 737
  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 已提交
738
  uint64_t tuid;
S
Shengliang Guan 已提交
739 740
  int32_t  vgId;
  SSchema  pSchema[];
S
Shengliang Guan 已提交
741
} STableMetaRsp;
D
dapan1121 已提交
742

S
Shengliang Guan 已提交
743
typedef struct {
S
Shengliang Guan 已提交
744 745 746 747 748 749 750 751
  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 已提交
752 753 754 755 756
} SMultiTableMeta;

typedef struct {
  int32_t dataLen;
  char    name[TSDB_TABLE_FNAME_LEN];
H
Hongze Cheng 已提交
757
  char*   data;
D
dapan1121 已提交
758 759
} STagData;

D
dapan1121 已提交
760
typedef struct {
761
  char        db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
762
  uint64_t    uid;
763
  int32_t     vgVersion;
S
Shengliang Guan 已提交
764
  int32_t     vgNum;
765
  int8_t      hashMethod;
D
dapan1121 已提交
766
  SVgroupInfo vgroupInfo[];
767
} SUseDbRsp;
D
dapan1121 已提交
768

D
dapan1121 已提交
769 770 771 772 773 774
/*
 * sql: show tables like '%a_%'
 * payload is the query condition, e.g., '%a_%'
 * payloadLen is the length of payload
 */
typedef struct {
S
Shengliang Guan 已提交
775
  int8_t  type;
776
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
777 778
  int16_t payloadLen;
  char    payload[];
S
Shengliang Guan 已提交
779
} SShowReq;
D
dapan1121 已提交
780 781

typedef struct {
782
  char    db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
783 784
  int32_t numOfVgroup;
  int32_t vgid[];
S
Shengliang Guan 已提交
785
} SCompactReq;
D
dapan1121 已提交
786

S
Shengliang Guan 已提交
787
typedef struct {
788
  int64_t       showId;
S
Shengliang Guan 已提交
789
  STableMetaRsp tableMeta;
D
dapan1121 已提交
790 791 792
} SShowRsp;

typedef struct {
S
Shengliang Guan 已提交
793
  char    fqdn[TSDB_FQDN_LEN];  // end point, hostname:port
794
  int32_t port;
S
Shengliang Guan 已提交
795
} SCreateDnodeReq;
S
Shengliang Guan 已提交
796 797 798

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
799
} SDropDnodeReq;
S
Shengliang Guan 已提交
800 801 802

typedef struct {
  int32_t dnodeId;
803
  char    config[TSDB_DNODE_CONFIG_LEN];
S
Shengliang Guan 已提交
804
} SMCfgDnodeReq, SDCfgDnodeReq;
D
dapan1121 已提交
805

S
Shengliang Guan 已提交
806 807
typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
808
} SMCreateMnodeReq, SMDropMnodeReq, SDDropMnodeReq;
S
Shengliang Guan 已提交
809

D
dapan1121 已提交
810
typedef struct {
S
Shengliang Guan 已提交
811 812
  int32_t  dnodeId;
  int8_t   replica;
S
Shengliang Guan 已提交
813
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
814
} SDCreateMnodeReq, SDAlterMnodeReq;
D
dapan1121 已提交
815

S
Shengliang Guan 已提交
816 817
typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
818
} SMCreateQnodeReq, SMDropQnodeReq, SDCreateQnodeReq, SDDropQnodeReq;
S
Shengliang Guan 已提交
819 820 821

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
822
} SMCreateSnodeReq, SMDropSnodeReq, SDCreateSnodeReq, SDDropSnodeReq;
S
Shengliang Guan 已提交
823 824 825

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

D
dapan1121 已提交
828
typedef struct {
S
Shengliang Guan 已提交
829 830 831 832 833 834 835 836 837 838 839
  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 已提交
840 841 842
} SQueryDesc;

typedef struct {
S
Shengliang Guan 已提交
843 844 845 846 847 848
  int32_t connId;
  int32_t pid;
  int32_t numOfQueries;
  int32_t numOfStreams;
  char    app[TSDB_APP_NAME_LEN];
  char    pData[];
S
Shengliang Guan 已提交
849
} SHeartBeatReq;
D
dapan1121 已提交
850 851

typedef struct {
S
Shengliang Guan 已提交
852 853 854 855 856 857
  int32_t connId;
  int32_t queryId;
  int32_t streamId;
  int32_t totalDnodes;
  int32_t onlineDnodes;
  int8_t  killConnection;
S
Shengliang Guan 已提交
858
  int8_t  align[3];
S
Shengliang Guan 已提交
859
  SEpSet  epSet;
D
dapan1121 已提交
860 861
} SHeartBeatRsp;

S
Shengliang Guan 已提交
862 863 864
typedef struct {
  int32_t connId;
  int32_t queryId;
S
Shengliang Guan 已提交
865
} SKillQueryReq;
S
Shengliang Guan 已提交
866 867 868

typedef struct {
  int32_t connId;
S
Shengliang Guan 已提交
869
} SKillConnReq;
D
dapan1121 已提交
870 871 872 873 874

typedef struct {
  char user[TSDB_USER_LEN];
  char spi;
  char encrypt;
875 876
  char secret[TSDB_PASSWORD_LEN];
  char ckey[TSDB_PASSWORD_LEN];
S
Shengliang Guan 已提交
877
} SAuthReq, SAuthRsp;
D
dapan1121 已提交
878 879

typedef struct {
S
Shengliang Guan 已提交
880
  int8_t finished;
S
Shengliang Guan 已提交
881
  int8_t align[7];
S
Shengliang Guan 已提交
882 883
  char   name[TSDB_STEP_NAME_LEN];
  char   desc[TSDB_STEP_DESC_LEN];
S
Shengliang Guan 已提交
884
} SStartupReq;
D
dapan1121 已提交
885

886 887 888 889 890 891 892
/**
 * The layout of the query message payload is as following:
 * +--------------------+---------------------------------+
 * |Sql statement       | Physical plan                   |
 * |(denoted by sqlLen) |(In JSON, denoted by contentLen) |
 * +--------------------+---------------------------------+
 */
L
Liu Jicong 已提交
893
typedef struct SSubQueryMsg {
D
dapan1121 已提交
894
  SMsgHead header;
D
dapan1121 已提交
895
  uint64_t sId;
H
Hongze Cheng 已提交
896 897
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
898
  int8_t   taskType;
899 900
  uint32_t sqlLen;     // the query sql,
  uint32_t phyLen;
H
Hongze Cheng 已提交
901
  char     msg[];
D
dapan1121 已提交
902
} SSubQueryMsg;
D
dapan 已提交
903

904 905 906 907 908 909 910
typedef struct {
  SMsgHead header;
  uint64_t sId;
  uint64_t queryId;
  uint64_t taskId;
} SSinkDataReq;

D
dapan1121 已提交
911 912 913 914 915 916 917
typedef struct {
  SMsgHead header;
  uint64_t sId;
  uint64_t queryId;
  uint64_t taskId;
} SQueryContinueReq;

918

S
Shengliang Guan 已提交
919
typedef struct {
D
dapan1121 已提交
920
  SMsgHead header;
D
dapan1121 已提交
921
  uint64_t sId;
H
Hongze Cheng 已提交
922 923
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
924
} SResReadyReq;
D
dapan 已提交
925

S
Shengliang Guan 已提交
926
typedef struct {
D
dapan1121 已提交
927 928 929
  int32_t code;
} SResReadyRsp;

S
Shengliang Guan 已提交
930
typedef struct {
D
dapan1121 已提交
931
  SMsgHead header;
D
dapan1121 已提交
932
  uint64_t sId;
H
Hongze Cheng 已提交
933 934
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
935
} SResFetchReq;
D
dapan 已提交
936

S
Shengliang Guan 已提交
937
typedef struct {
D
dapan1121 已提交
938
  SMsgHead header;
D
dapan1121 已提交
939
  uint64_t sId;
S
Shengliang Guan 已提交
940
} SSchTasksStatusReq;
D
dapan1121 已提交
941

S
Shengliang Guan 已提交
942
typedef struct {
H
Hongze Cheng 已提交
943 944 945
  uint64_t queryId;
  uint64_t taskId;
  int8_t   status;
D
dapan1121 已提交
946 947
} STaskStatus;

S
Shengliang Guan 已提交
948
typedef struct {
D
dapan1121 已提交
949 950 951 952
  uint32_t    num;
  STaskStatus status[];
} SSchedulerStatusRsp;

S
Shengliang Guan 已提交
953
typedef struct {
D
dapan1121 已提交
954
  SMsgHead header;
D
dapan1121 已提交
955
  uint64_t sId;
H
Hongze Cheng 已提交
956 957
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
958
} STaskCancelReq;
D
dapan1121 已提交
959

S
Shengliang Guan 已提交
960
typedef struct {
D
dapan1121 已提交
961 962 963
  int32_t code;
} STaskCancelRsp;

S
Shengliang Guan 已提交
964
typedef struct {
D
dapan1121 已提交
965
  SMsgHead header;
D
dapan1121 已提交
966
  uint64_t sId;
H
Hongze Cheng 已提交
967 968
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
969
} STaskDropReq;
D
dapan1121 已提交
970

S
Shengliang Guan 已提交
971
typedef struct {
D
dapan1121 已提交
972 973 974
  int32_t code;
} STaskDropRsp;

L
Liu Jicong 已提交
975
typedef struct {
L
Liu Jicong 已提交
976 977
  int8_t igExists;
  char*  name;
978
  char*  sql;
L
Liu Jicong 已提交
979 980
  char*  physicalPlan;
  char*  logicalPlan;
L
Liu Jicong 已提交
981 982 983 984 985
} SCMCreateTopicReq;

static FORCE_INLINE int tSerializeSCMCreateTopicReq(void** buf, const SCMCreateTopicReq* pReq) {
  int tlen = 0;
  tlen += taosEncodeFixedI8(buf, pReq->igExists);
L
Liu Jicong 已提交
986
  tlen += taosEncodeString(buf, pReq->name);
987
  tlen += taosEncodeString(buf, pReq->sql);
L
Liu Jicong 已提交
988 989
  tlen += taosEncodeString(buf, pReq->physicalPlan);
  tlen += taosEncodeString(buf, pReq->logicalPlan);
L
Liu Jicong 已提交
990 991 992 993 994 995
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMCreateTopicReq(void* buf, SCMCreateTopicReq* pReq) {
  buf = taosDecodeFixedI8(buf, &(pReq->igExists));
  buf = taosDecodeString(buf, &(pReq->name));
996
  buf = taosDecodeString(buf, &(pReq->sql));
L
Liu Jicong 已提交
997 998
  buf = taosDecodeString(buf, &(pReq->physicalPlan));
  buf = taosDecodeString(buf, &(pReq->logicalPlan));
L
Liu Jicong 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
  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 已提交
1018
  int32_t topicNum;
L
Liu Jicong 已提交
1019
  int64_t consumerId;
L
Liu Jicong 已提交
1020
  char*   consumerGroup;
L
Liu Jicong 已提交
1021
  SArray* topicNames;  // SArray<char*>
L
Liu Jicong 已提交
1022 1023 1024 1025
} SCMSubscribeReq;

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

L
Liu Jicong 已提交
1030
  for (int i = 0; i < pReq->topicNum; i++) {
L
Liu Jicong 已提交
1031
    tlen += taosEncodeString(buf, (char*)taosArrayGetP(pReq->topicNames, i));
L
Liu Jicong 已提交
1032
  }
L
Liu Jicong 已提交
1033 1034 1035 1036
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeReq(void* buf, SCMSubscribeReq* pReq) {
L
Liu Jicong 已提交
1037
  buf = taosDecodeFixedI32(buf, &pReq->topicNum);
L
Liu Jicong 已提交
1038
  buf = taosDecodeFixedI64(buf, &pReq->consumerId);
L
Liu Jicong 已提交
1039
  buf = taosDecodeString(buf, &pReq->consumerGroup);
L
Liu Jicong 已提交
1040
  pReq->topicNames = taosArrayInit(pReq->topicNum, sizeof(void*));
L
Liu Jicong 已提交
1041
  for (int i = 0; i < pReq->topicNum; i++) {
L
Liu Jicong 已提交
1042 1043 1044
    char* name = NULL;
    buf = taosDecodeString(buf, &name);
    taosArrayPush(pReq->topicNames, &name);
L
Liu Jicong 已提交
1045
  }
L
Liu Jicong 已提交
1046 1047 1048
  return buf;
}

L
Liu Jicong 已提交
1049
typedef struct SMqSubTopic {
L
Liu Jicong 已提交
1050
  int32_t vgId;
L
Liu Jicong 已提交
1051 1052 1053 1054 1055
  int64_t topicId;
  SEpSet  epSet;
} SMqSubTopic;

typedef struct {
L
Liu Jicong 已提交
1056
  int32_t     topicNum;
L
Liu Jicong 已提交
1057
  SMqSubTopic topics[];
L
Liu Jicong 已提交
1058 1059 1060 1061
} SCMSubscribeRsp;

static FORCE_INLINE int tSerializeSCMSubscribeRsp(void** buf, const SCMSubscribeRsp* pRsp) {
  int tlen = 0;
L
Liu Jicong 已提交
1062
  tlen += taosEncodeFixedI32(buf, pRsp->topicNum);
L
Liu Jicong 已提交
1063
  for (int i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1064 1065 1066 1067
    tlen += taosEncodeFixedI32(buf, pRsp->topics[i].vgId);
    tlen += taosEncodeFixedI64(buf, pRsp->topics[i].topicId);
    tlen += taosEncodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1068 1069 1070 1071
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeRsp(void* buf, SCMSubscribeRsp* pRsp) {
L
Liu Jicong 已提交
1072
  buf = taosDecodeFixedI32(buf, &pRsp->topicNum);
L
Liu Jicong 已提交
1073
  for (int i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1074 1075 1076 1077
    buf = taosDecodeFixedI32(buf, &pRsp->topics[i].vgId);
    buf = taosDecodeFixedI64(buf, &pRsp->topics[i].topicId);
    buf = taosDecodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1078 1079 1080 1081 1082 1083 1084 1085
  return buf;
}

typedef struct {
  int64_t topicId;
  int64_t consumerId;
  int64_t consumerGroupId;
  int64_t offset;
L
Liu Jicong 已提交
1086 1087 1088
  char*   sql;
  char*   logicalPlan;
  char*   physicalPlan;
L
Liu Jicong 已提交
1089 1090
} SMVSubscribeReq;

L
Liu Jicong 已提交
1091
static FORCE_INLINE int tSerializeSMVSubscribeReq(void** buf, SMVSubscribeReq* pReq) {
L
Liu Jicong 已提交
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
  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 已提交
1114 1115 1116 1117
typedef struct SMqTmrMsg {
  int32_t reserved;
} SMqTmrMsg;

L
Liu Jicong 已提交
1118
typedef struct {
L
Liu Jicong 已提交
1119
  int64_t status;
L
Liu Jicong 已提交
1120 1121
} SMVSubscribeRsp;

L
Liu Jicong 已提交
1122
typedef struct {
1123
  char    name[TSDB_TOPIC_NAME_LEN];
L
Liu Jicong 已提交
1124
  int8_t  igExists;
L
Liu Jicong 已提交
1125
  int32_t execLen;
L
Liu Jicong 已提交
1126
  void*   executor;
L
Liu Jicong 已提交
1127
  int32_t sqlLen;
L
Liu Jicong 已提交
1128
  char*   sql;
S
Shengliang Guan 已提交
1129
} SCreateTopicReq;
L
Liu Jicong 已提交
1130 1131 1132 1133

typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
1134
} SDropTopicReq;
L
Liu Jicong 已提交
1135 1136 1137 1138 1139

typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
  SSchema schema;
S
Shengliang Guan 已提交
1140
} SAlterTopicReq;
L
Liu Jicong 已提交
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150

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 已提交
1151
} SDCreateTopicReq;
L
Liu Jicong 已提交
1152 1153 1154 1155 1156

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

H
more  
Hongze Cheng 已提交
1159 1160 1161 1162 1163
typedef struct SVCreateTbReq {
  uint64_t ver;  // use a general definition
  char*    name;
  uint32_t ttl;
  uint32_t keep;
S
Shengliang Guan 已提交
1164
  uint8_t  type;
H
more  
Hongze Cheng 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
  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;
  };
S
Shengliang Guan 已提交
1182
} SVCreateTbReq, SVUpdateTbReq;
H
more  
Hongze Cheng 已提交
1183

H
more  
Hongze Cheng 已提交
1184
typedef struct {
S
Shengliang Guan 已提交
1185
} SVCreateTbRsp, SVUpdateTbRsp;
H
more  
Hongze Cheng 已提交
1186

S
Shengliang Guan 已提交
1187 1188 1189 1190
int32_t tSerializeSVCreateTbReq(void** buf, SVCreateTbReq* pReq);
void*   tDeserializeSVCreateTbReq(void* buf, SVCreateTbReq* pReq);
int32_t tSerializeSVCreateTbRsp(void** buf, SVCreateTbRsp* pRsp);
void*   tDeserializeSVCreateTbRsp(void* buf, SVCreateTbRsp* pRsp);
H
more  
Hongze Cheng 已提交
1191

S
Shengliang Guan 已提交
1192
typedef struct {
S
Shengliang Guan 已提交
1193 1194 1195
  uint64_t ver;  // use a general definition
  SArray*  pArray;
} SVCreateTbBatchReq;
H
more  
Hongze Cheng 已提交
1196

S
Shengliang Guan 已提交
1197
typedef struct {
S
Shengliang Guan 已提交
1198
} SVCreateTbBatchRsp;
S
Shengliang Guan 已提交
1199

S
Shengliang Guan 已提交
1200 1201 1202 1203
int32_t tSerializeSVCreateTbBatchReq(void** buf, SVCreateTbBatchReq* pReq);
void*   tDeserializeSVCreateTbBatchReq(void* buf, SVCreateTbBatchReq* pReq);
int32_t tSerializeSVCreateTbBatchReqp(void** buf, SVCreateTbBatchReq* pRsp);
void*   tDeserializeSVCreateTbBatchReq(void* buf, SVCreateTbBatchReq* pRsp);
S
Shengliang Guan 已提交
1204 1205

typedef struct {
S
Shengliang Guan 已提交
1206 1207 1208 1209
  uint64_t ver;
  char*    name;
  uint8_t  type;
  tb_uid_t suid;
S
Shengliang Guan 已提交
1210 1211 1212
} SVDropTbReq;

typedef struct {
S
Shengliang Guan 已提交
1213
  uint64_t ver;
S
Shengliang Guan 已提交
1214 1215
} SVDropTbRsp;

S
Shengliang Guan 已提交
1216 1217 1218 1219 1220
int32_t tSerializeSVDropTbReq(void** buf, SVDropTbReq* pReq);
void*   tDeserializeSVDropTbReq(void* buf, SVDropTbReq* pReq);
int32_t tSerializeSVDropTbRsp(void** buf, SVDropTbRsp* pRsp);
void*   tDeserializeSVDropTbRsp(void* buf, SVDropTbRsp* pRsp);

S
Shengliang Guan 已提交
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
typedef struct {
  SMsgHead head;
  int64_t  uid;
  int32_t  tid;
  int16_t  tversion;
  int16_t  colId;
  int8_t   type;
  int16_t  bytes;
  int32_t  tagValLen;
  int16_t  numOfTags;
  int32_t  schemaLen;
  char     data[];
} SUpdateTagValReq;

typedef struct {
  SMsgHead head;
} SUpdateTagValRsp;

typedef struct {
H
Hongze Cheng 已提交
1240 1241 1242
  SMsgHead head;
} SVShowTablesReq;

S
Shengliang Guan 已提交
1243
typedef struct {
H
Hongze Cheng 已提交
1244
  int64_t       id;
S
Shengliang Guan 已提交
1245
  STableMetaRsp metaInfo;
H
Hongze Cheng 已提交
1246 1247
} SVShowTablesRsp;

S
Shengliang Guan 已提交
1248
typedef struct {
H
Hongze Cheng 已提交
1249
  SMsgHead head;
H
Haojun Liao 已提交
1250
  int32_t  id;
H
Hongze Cheng 已提交
1251 1252
} SVShowTablesFetchReq;

S
Shengliang Guan 已提交
1253
typedef struct {
H
Hongze Cheng 已提交
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
  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;

L
Liu Jicong 已提交
1264 1265 1266 1267 1268 1269
typedef struct SMqCMGetSubEpReq {
  int64_t consumerId;
  int32_t epoch;
  char    cgroup[TSDB_CONSUMER_GROUP_LEN];
} SMqCMGetSubEpReq;

D
dapan1121 已提交
1270 1271
#pragma pack(pop)

L
Liu Jicong 已提交
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 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
static FORCE_INLINE int32_t tEncodeSMsgHead(void** buf, const SMsgHead* pMsg) {
  int32_t tlen = 0;
  tlen += taosEncodeFixedI32(buf, pMsg->contLen);
  tlen += taosEncodeFixedI32(buf, pMsg->vgId);
  return tlen;
}

typedef struct SMqHbRsp {
  int8_t status;    //idle or not
  int8_t vnodeChanged;
  int8_t epChanged; // should use new epset
  int8_t reserved;
  SEpSet epSet;
} SMqHbRsp;

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

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

typedef struct SMqHbOneTopicBatchRsp {
  char topicName[TSDB_TOPIC_FNAME_LEN];
  SArray* rsps;  // SArray<SMqHbRsp>
} SMqHbOneTopicBatchRsp;

static FORCE_INLINE int taosEncodeSMqHbOneTopicBatchRsp(void** buf, const SMqHbOneTopicBatchRsp* pBatchRsp) {
  int tlen = 0;
  tlen += taosEncodeString(buf, pBatchRsp->topicName);
  int32_t sz = taosArrayGetSize(pBatchRsp->rsps);
  tlen += taosEncodeFixedI32(buf, sz);
  for (int32_t i = 0; i < sz; i++) {
    SMqHbRsp* pRsp = (SMqHbRsp*)taosArrayGet(pBatchRsp->rsps, i);
    tlen += taosEncodeSMqHbRsp(buf, pRsp);
  }
  return tlen;
}

static FORCE_INLINE void* taosDecodeSMqHbOneTopicBatchRsp(void* buf, SMqHbOneTopicBatchRsp* pBatchRsp) {
  int32_t sz;
  buf = taosDecodeStringTo(buf, pBatchRsp->topicName);
  buf = taosDecodeFixedI32(buf, &sz);
  pBatchRsp->rsps = taosArrayInit(sz, sizeof(SMqHbRsp));
  for (int32_t i = 0; i < sz; i++) {
    SMqHbRsp rsp;
    buf = taosDecodeSMqHbRsp(buf, &rsp);
    buf = taosArrayPush(pBatchRsp->rsps, &rsp);
  }
  return buf;
}

typedef struct SMqHbBatchRsp {
  int64_t consumerId; 
  SArray* batchRsps; // SArray<SMqHbOneTopicBatchRsp>
} SMqHbBatchRsp;

static FORCE_INLINE int taosEncodeSMqHbBatchRsp(void** buf, const SMqHbBatchRsp* pBatchRsp) {
  int tlen = 0;
  tlen += taosEncodeFixedI64(buf, pBatchRsp->consumerId);
  int32_t sz;
  tlen += taosEncodeFixedI32(buf, sz);
  for (int32_t i = 0; i < sz; i++) {
    SMqHbOneTopicBatchRsp* pRsp = (SMqHbOneTopicBatchRsp*) taosArrayGet(pBatchRsp->batchRsps, i);
    tlen += taosEncodeSMqHbOneTopicBatchRsp(buf, pRsp);
  }
  return tlen;
}

static FORCE_INLINE void* taosDecodeSMqHbBatchRsp(void* buf, SMqHbBatchRsp* pBatchRsp) {
  buf = taosDecodeFixedI64(buf, &pBatchRsp->consumerId);
  int32_t sz;
  buf = taosDecodeFixedI32(buf, &sz);
  pBatchRsp->batchRsps = taosArrayInit(sz, sizeof(SMqHbOneTopicBatchRsp));
  for (int32_t i = 0; i < sz; i++) {
    SMqHbOneTopicBatchRsp  rsp;
    buf = taosDecodeSMqHbOneTopicBatchRsp(buf, &rsp);
    buf = taosArrayPush(pBatchRsp->batchRsps, &rsp);
  }
  return buf;
}

typedef struct {
D
dapan1121 已提交
1365
  int32_t key;
L
Liu Jicong 已提交
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
  int32_t valueLen;
  void*   value;
} SKv;

typedef struct {
  int32_t connId;
  int32_t hbType;
} SClientHbKey;

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

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

typedef struct {
  SClientHbKey connKey;
  int32_t      status;
D
dapan1121 已提交
1388
  SArray*      info;  // Array<Skv>
L
Liu Jicong 已提交
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
} SClientHbRsp;

typedef struct {
  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* tDeserializeSClientHbReq(void* buf, SClientHbReq* pReq);

int   tSerializeSClientHbRsp(void** buf, const SClientHbRsp* pRsp);
void* tDeserializeSClientHbRsp(void* buf, SClientHbRsp* pRsp);

D
dapan1121 已提交
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419

static FORCE_INLINE void tFreeReqKvHash(SHashObj*      info) {
  void *pIter = taosHashIterate(info, NULL);
  while (pIter != NULL) {
    SKv* kv = (SKv*)pIter;

    tfree(kv->value);

    pIter = taosHashIterate(info, pIter);
  }
}


L
Liu Jicong 已提交
1420 1421
static FORCE_INLINE void  tFreeClientHbReq(void *pReq) {
  SClientHbReq* req = (SClientHbReq*)pReq;
D
dapan1121 已提交
1422 1423 1424 1425 1426
  if (req->info) {
    tFreeReqKvHash(req->info);
  
    taosHashCleanup(req->info);
  }
L
Liu Jicong 已提交
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
}

int   tSerializeSClientHbBatchReq(void** buf, const SClientHbBatchReq* pReq);
void* tDeserializeSClientHbBatchReq(void* buf, SClientHbBatchReq* pReq);

static FORCE_INLINE void tFreeClientHbBatchReq(void* pReq, bool deep) {
  SClientHbBatchReq *req = (SClientHbBatchReq*)pReq;
  if (deep) {
    taosArrayDestroyEx(req->reqs, tFreeClientHbReq);
  } else {
    taosArrayDestroy(req->reqs);
  }
  free(pReq);
}

D
dapan1121 已提交
1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
static FORCE_INLINE void tFreeClientKv(void *pKv) {
  SKv *kv = (SKv *)pKv;
  if (kv) {
    tfree(kv->value);
  }
}

static FORCE_INLINE void  tFreeClientHbRsp(void *pRsp) {
  SClientHbRsp* rsp = (SClientHbRsp*)pRsp;
  if (rsp->info) taosArrayDestroyEx(rsp->info, tFreeClientKv);
}


static FORCE_INLINE void tFreeClientHbBatchRsp(void* pRsp) {
  SClientHbBatchRsp *rsp = (SClientHbBatchRsp*)pRsp;
  taosArrayDestroyEx(rsp->rsps, tFreeClientHbRsp);
}


L
Liu Jicong 已提交
1461 1462 1463 1464 1465
int   tSerializeSClientHbBatchRsp(void** buf, const SClientHbBatchRsp* pBatchRsp);
void* tDeserializeSClientHbBatchRsp(void* buf, SClientHbBatchRsp* pBatchRsp);

static FORCE_INLINE int taosEncodeSKv(void** buf, const SKv* pKv) {
  int tlen = 0;
D
dapan1121 已提交
1466
  tlen += taosEncodeFixedI32(buf, pKv->key);
L
Liu Jicong 已提交
1467 1468 1469 1470 1471 1472
  tlen += taosEncodeFixedI32(buf, pKv->valueLen);
  tlen += taosEncodeBinary(buf, pKv->value, pKv->valueLen);
  return tlen;
}

static FORCE_INLINE void* taosDecodeSKv(void* buf, SKv* pKv) {
D
dapan1121 已提交
1473
  buf = taosDecodeFixedI32(buf, &pKv->key);
L
Liu Jicong 已提交
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
  buf = taosDecodeFixedI32(buf, &pKv->valueLen);
  buf = taosDecodeBinary(buf, &pKv->value, pKv->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;
}

typedef struct SMqHbVgInfo {
  int32_t vgId;
} SMqHbVgInfo;

static FORCE_INLINE int taosEncodeSMqVgInfo(void** buf, const SMqHbVgInfo* pVgInfo) {
  int tlen = 0;
  tlen += taosEncodeFixedI32(buf, pVgInfo->vgId);
  return tlen;
}

static FORCE_INLINE void* taosDecodeSMqVgInfo(void* buf, SMqHbVgInfo* pVgInfo) {
  buf = taosDecodeFixedI32(buf, &pVgInfo->vgId);
  return buf;
}

typedef struct SMqHbTopicInfo {
  int32_t epoch;
  int64_t topicUid;
  char    name[TSDB_TOPIC_FNAME_LEN];
  SArray* pVgInfo;
} SMqHbTopicInfo;

static FORCE_INLINE int taosEncodeSMqHbTopicInfoMsg(void** buf, const SMqHbTopicInfo* pTopicInfo) {
  int tlen = 0;
  tlen += taosEncodeFixedI32(buf, pTopicInfo->epoch);
  tlen += taosEncodeFixedI64(buf, pTopicInfo->topicUid);
  tlen += taosEncodeString(buf, pTopicInfo->name);
  int32_t sz = taosArrayGetSize(pTopicInfo->pVgInfo);
  tlen += taosEncodeFixedI32(buf, sz);
  for (int32_t i = 0; i < sz; i++) {
    SMqHbVgInfo* pVgInfo = (SMqHbVgInfo*)taosArrayGet(pTopicInfo->pVgInfo, i);
    tlen += taosEncodeSMqVgInfo(buf, pVgInfo);
  }
  return tlen;
}

static FORCE_INLINE void* taosDecodeSMqHbTopicInfoMsg(void* buf, SMqHbTopicInfo* pTopicInfo) {
  buf = taosDecodeFixedI32(buf, &pTopicInfo->epoch);
  buf = taosDecodeFixedI64(buf, &pTopicInfo->topicUid);
  buf = taosDecodeStringTo(buf, pTopicInfo->name);
  int32_t sz;
  buf = taosDecodeFixedI32(buf, &sz);
  pTopicInfo->pVgInfo = taosArrayInit(sz, sizeof(SMqHbVgInfo));
  for (int32_t i = 0; i < sz; i++) {
    SMqHbVgInfo vgInfo;
    buf = taosDecodeSMqVgInfo(buf, &vgInfo);
    taosArrayPush(pTopicInfo->pVgInfo, &vgInfo);
  }
  return buf;
}

typedef struct SMqHbMsg {
  int32_t  status;   // ask hb endpoint
  int32_t  epoch;
  int64_t  consumerId;
  SArray*  pTopics;  // SArray<SMqHbTopicInfo>
} SMqHbMsg;

static FORCE_INLINE int taosEncodeSMqMsg(void** buf, const SMqHbMsg* pMsg) {
  int tlen = 0;
  tlen += taosEncodeFixedI32(buf, pMsg->status);
  tlen += taosEncodeFixedI32(buf, pMsg->epoch);
  tlen += taosEncodeFixedI64(buf, pMsg->consumerId);
  int32_t sz = taosArrayGetSize(pMsg->pTopics);
  tlen += taosEncodeFixedI32(buf, sz);
  for (int i = 0; i < sz; i++) {
    SMqHbTopicInfo* topicInfo = (SMqHbTopicInfo*)taosArrayGet(pMsg->pTopics, i);
    tlen += taosEncodeSMqHbTopicInfoMsg(buf, topicInfo);
  }
  return tlen;
}

static FORCE_INLINE void* taosDecodeSMqMsg(void* buf, SMqHbMsg* pMsg) {
  buf = taosDecodeFixedI32(buf, &pMsg->status);
  buf = taosDecodeFixedI32(buf, &pMsg->epoch);
  buf = taosDecodeFixedI64(buf, &pMsg->consumerId);
  int32_t sz;
  buf = taosDecodeFixedI32(buf, &sz);
  pMsg->pTopics = taosArrayInit(sz, sizeof(SMqHbTopicInfo));
  for (int i = 0; i < sz; i++) {
    SMqHbTopicInfo topicInfo;
    buf = taosDecodeSMqHbTopicInfoMsg(buf, &topicInfo);
    taosArrayPush(pMsg->pTopics, &topicInfo);
  }
  return buf;
}

typedef struct SMqSetCVgReq {
L
Liu Jicong 已提交
1580
  int64_t  leftForVer;
L
Liu Jicong 已提交
1581 1582 1583 1584 1585 1586 1587 1588
  int32_t  vgId;
  int64_t  oldConsumerId;
  int64_t  newConsumerId;
  char     topicName[TSDB_TOPIC_FNAME_LEN];
  char     cgroup[TSDB_CONSUMER_GROUP_LEN];
  char*    sql;
  char*    logicalPlan;
  char*    physicalPlan;
L
Liu Jicong 已提交
1589
  char*    qmsg;
L
Liu Jicong 已提交
1590 1591
} SMqSetCVgReq;

L
Liu Jicong 已提交
1592
static FORCE_INLINE int32_t tEncodeSSubQueryMsg(void** buf, const SSubQueryMsg* pMsg) {
L
Liu Jicong 已提交
1593 1594 1595 1596
  int32_t tlen = 0;
  tlen += taosEncodeFixedU64(buf, pMsg->sId);
  tlen += taosEncodeFixedU64(buf, pMsg->queryId);
  tlen += taosEncodeFixedU64(buf, pMsg->taskId);
1597 1598
  tlen += taosEncodeFixedU32(buf, pMsg->sqlLen);
  tlen += taosEncodeFixedU32(buf, pMsg->phyLen);
L
Liu Jicong 已提交
1599
  //tlen += taosEncodeBinary(buf, pMsg->msg, pMsg->contentLen);
L
Liu Jicong 已提交
1600 1601 1602 1603
  return tlen;
}

static FORCE_INLINE void* tDecodeSSubQueryMsg(void* buf, SSubQueryMsg* pMsg) {
L
Liu Jicong 已提交
1604 1605 1606
  buf = taosDecodeFixedU64(buf, &pMsg->sId);
  buf = taosDecodeFixedU64(buf, &pMsg->queryId);
  buf = taosDecodeFixedU64(buf, &pMsg->taskId);
1607 1608
  buf = taosDecodeFixedU32(buf, &pMsg->sqlLen);
  buf = taosDecodeFixedU32(buf, &pMsg->phyLen);
L
Liu Jicong 已提交
1609
  //buf = taosDecodeBinaryTo(buf, pMsg->msg, pMsg->contentLen);
L
Liu Jicong 已提交
1610
  return buf;
L
Liu Jicong 已提交
1611 1612
}

L
Liu Jicong 已提交
1613 1614
static FORCE_INLINE int32_t tEncodeSMqSetCVgReq(void** buf, const SMqSetCVgReq* pReq) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
1615
  tlen += taosEncodeFixedI64(buf, pReq->leftForVer);
L
Liu Jicong 已提交
1616
  tlen += taosEncodeFixedI32(buf, pReq->vgId);
L
Liu Jicong 已提交
1617 1618
  tlen += taosEncodeFixedI64(buf, pReq->oldConsumerId);
  tlen += taosEncodeFixedI64(buf, pReq->newConsumerId);
L
Liu Jicong 已提交
1619
  tlen += taosEncodeString(buf, pReq->topicName);
L
Liu Jicong 已提交
1620
  tlen += taosEncodeString(buf, pReq->cgroup);
L
Liu Jicong 已提交
1621 1622 1623
  tlen += taosEncodeString(buf, pReq->sql);
  tlen += taosEncodeString(buf, pReq->logicalPlan);
  tlen += taosEncodeString(buf, pReq->physicalPlan);
L
Liu Jicong 已提交
1624
  tlen += taosEncodeString(buf, pReq->qmsg);
L
Liu Jicong 已提交
1625
  //tlen += tEncodeSSubQueryMsg(buf, &pReq->msg);
L
Liu Jicong 已提交
1626 1627 1628 1629
  return tlen;
}

static FORCE_INLINE void* tDecodeSMqSetCVgReq(void* buf, SMqSetCVgReq* pReq) {
L
Liu Jicong 已提交
1630
  buf = taosDecodeFixedI64(buf, &pReq->leftForVer);
L
Liu Jicong 已提交
1631
  buf = taosDecodeFixedI32(buf, &pReq->vgId);
L
Liu Jicong 已提交
1632 1633
  buf = taosDecodeFixedI64(buf, &pReq->oldConsumerId);
  buf = taosDecodeFixedI64(buf, &pReq->newConsumerId);
L
Liu Jicong 已提交
1634
  buf = taosDecodeStringTo(buf, pReq->topicName);
L
Liu Jicong 已提交
1635
  buf = taosDecodeStringTo(buf, pReq->cgroup);
L
Liu Jicong 已提交
1636 1637 1638
  buf = taosDecodeString(buf, &pReq->sql);
  buf = taosDecodeString(buf, &pReq->logicalPlan);
  buf = taosDecodeString(buf, &pReq->physicalPlan);
L
Liu Jicong 已提交
1639
  buf = taosDecodeString(buf, &pReq->qmsg);
L
Liu Jicong 已提交
1640
  //buf = tDecodeSSubQueryMsg(buf, &pReq->msg);
L
Liu Jicong 已提交
1641 1642 1643
  return buf;
}

L
Liu Jicong 已提交
1644
typedef struct SMqSetCVgRsp {
L
Liu Jicong 已提交
1645 1646 1647 1648 1649
  SMsgHead header;
  int32_t  vgId;
  int64_t  consumerId;
  char     topicName[TSDB_TOPIC_FNAME_LEN];
  char     cGroup[TSDB_CONSUMER_GROUP_LEN];
L
Liu Jicong 已提交
1650 1651
} SMqSetCVgRsp;

L
Liu Jicong 已提交
1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
typedef struct {
  uint32_t nCols;
  SSchema *pSchema;
} SSchemaWrapper;

static FORCE_INLINE int32_t tEncodeSSchema(void** buf, const SSchema* pSchema) {
  int32_t tlen = 0;
  tlen += taosEncodeFixedI8(buf, pSchema->type);
  tlen += taosEncodeFixedI32(buf, pSchema->bytes);
  tlen += taosEncodeFixedI32(buf, pSchema->colId);
  tlen += taosEncodeString(buf, pSchema->name);
  return tlen;
}

static FORCE_INLINE void* tDecodeSSchema(void* buf, SSchema* pSchema) {
  buf = taosDecodeFixedI8(buf, &pSchema->type);
  buf = taosDecodeFixedI32(buf, &pSchema->bytes);
  buf = taosDecodeFixedI32(buf, &pSchema->colId);
  buf = taosDecodeStringTo(buf, pSchema->name);
  return buf;
}

static FORCE_INLINE int32_t tEncodeSSchemaWrapper(void** buf, const SSchemaWrapper* pSW) {
  int32_t tlen = 0;
  tlen += taosEncodeFixedU32(buf, pSW->nCols);
  for (int32_t i = 0; i < pSW->nCols; i ++) {
    tlen += tEncodeSSchema(buf, &pSW->pSchema[i]);
  }
  return tlen;
}

static FORCE_INLINE void* tDecodeSSchemaWrapper(void* buf, SSchemaWrapper* pSW) {
  buf = taosDecodeFixedU32(buf, &pSW->nCols);
  pSW->pSchema = (SSchema*) calloc(pSW->nCols, sizeof(SSchema));
  if (pSW->pSchema == NULL) {
    return NULL;
  }
  for (int32_t i = 0; i < pSW->nCols; i ++) {
    buf = tDecodeSSchema(buf, &pSW->pSchema[i]);
  }
  return buf;
}
L
Liu Jicong 已提交
1694 1695 1696 1697

typedef struct SMqTbData {
  int64_t    uid;
  int32_t    numOfRows;
L
Liu Jicong 已提交
1698
  char*      colData;
L
Liu Jicong 已提交
1699 1700 1701
} SMqTbData;

typedef struct SMqTopicBlk {
L
Liu Jicong 已提交
1702 1703 1704 1705 1706 1707 1708 1709
  char       topicName[TSDB_TOPIC_FNAME_LEN];
  int64_t    committedOffset;
  int64_t    reqOffset;
  int64_t    rspOffset;
  int32_t    skipLogNum;
  int32_t    bodyLen;
  int32_t    numOfTb;
  SMqTbData* tbData;
L
Liu Jicong 已提交
1710 1711 1712
} SMqTopicData;

typedef struct SMqConsumeRsp {
L
Liu Jicong 已提交
1713 1714
  int64_t         consumerId;
  SSchemaWrapper* schemas;
L
Liu Jicong 已提交
1715 1716 1717 1718
  int64_t         committedOffset;
  int64_t         reqOffset;
  int64_t         rspOffset;
  int32_t         skipLogNum;
L
Liu Jicong 已提交
1719 1720
  int32_t         numOfTopics;
  SArray*         pBlockData;   //SArray<SSDataBlock>
L
Liu Jicong 已提交
1721
} SMqConsumeRsp;
L
Liu Jicong 已提交
1722

L
Liu Jicong 已提交
1723 1724
// one req for one vg+topic
typedef struct SMqConsumeReq {
L
Liu Jicong 已提交
1725
  SMsgHead       head;
L
Liu Jicong 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
  //0: commit only, current offset
  //1: consume only, poll next offset
  //2: commit current and consume next offset
  int32_t        reqType;

  int64_t        reqId;
  int64_t        consumerId;
  int64_t        blockingTime;
  char           cgroup[TSDB_CONSUMER_GROUP_LEN];

  int64_t        offset;
  char           topic[TSDB_TOPIC_FNAME_LEN];
} SMqConsumeReq;

L
Liu Jicong 已提交
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
typedef struct SMqSubVgEp {
  int32_t vgId;
  SEpSet  epSet;
} SMqSubVgEp;

typedef struct SMqSubTopicEp {
  char    topic[TSDB_TOPIC_FNAME_LEN];
  SArray* vgs;   // SArray<SMqSubVgEp>
} SMqSubTopicEp;

typedef struct SMqCMGetSubEpRsp {
  int64_t consumerId;
L
Liu Jicong 已提交
1752
  int64_t epoch;
L
Liu Jicong 已提交
1753 1754 1755 1756
  char    cgroup[TSDB_CONSUMER_GROUP_LEN];
  SArray* topics;  // SArray<SMqSubTopicEp>
} SMqCMGetSubEpRsp;

L
Liu Jicong 已提交
1757 1758 1759 1760
static FORCE_INLINE void tDeleteSMqSubTopicEp(SMqSubTopicEp* pSubTopicEp) {
  taosArrayDestroy(pSubTopicEp->vgs);
}

L
Liu Jicong 已提交
1761 1762
static FORCE_INLINE int32_t tEncodeSMqSubVgEp(void** buf, const SMqSubVgEp* pVgEp) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
1763
  tlen += taosEncodeFixedI32(buf, pVgEp->vgId);
L
Liu Jicong 已提交
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
  tlen += taosEncodeSEpSet(buf, &pVgEp->epSet);
  return tlen;
}

static FORCE_INLINE void* tDecodeSMqSubVgEp(void* buf, SMqSubVgEp* pVgEp) {
  buf = taosDecodeFixedI32(buf, &pVgEp->vgId);
  buf = taosDecodeSEpSet(buf, &pVgEp->epSet);
  return buf;
}

L
Liu Jicong 已提交
1774 1775 1776 1777
static FORCE_INLINE void tDeleteSMqCMGetSubEpRsp(SMqCMGetSubEpRsp* pRsp) {
  taosArrayDestroyEx(pRsp->topics, (void (*)(void*)) tDeleteSMqSubTopicEp);
}

L
Liu Jicong 已提交
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
static FORCE_INLINE int32_t tEncodeSMqSubTopicEp(void** buf, const SMqSubTopicEp* pTopicEp) {
  int32_t tlen = 0;
  tlen += taosEncodeString(buf, pTopicEp->topic);
  int32_t sz = taosArrayGetSize(pTopicEp->vgs);
  tlen += taosEncodeFixedI32(buf, sz);
  for (int32_t i = 0; i < sz; i++) {
    SMqSubVgEp* pVgEp = (SMqSubVgEp*)taosArrayGet(pTopicEp->vgs, i);
    tlen += tEncodeSMqSubVgEp(buf, pVgEp);
  }
  return tlen;
}

static FORCE_INLINE void* tDecodeSMqSubTopicEp(void* buf, SMqSubTopicEp* pTopicEp) {
  buf = taosDecodeStringTo(buf, pTopicEp->topic);
  int32_t sz;
  buf = taosDecodeFixedI32(buf, &sz);
  pTopicEp->vgs = taosArrayInit(sz, sizeof(SMqSubVgEp));
  if (pTopicEp->vgs == NULL) {
    return NULL;
  }
  for (int32_t i = 0; i < sz; i++) {
    SMqSubVgEp vgEp;
    buf = tDecodeSMqSubVgEp(buf, &vgEp);
    taosArrayPush(pTopicEp->vgs, &vgEp);
  }
  return buf;
}

static FORCE_INLINE int32_t tEncodeSMqCMGetSubEpRsp(void** buf, const SMqCMGetSubEpRsp* pRsp) {
  int32_t tlen = 0;
  tlen += taosEncodeFixedI64(buf, pRsp->consumerId);
L
Liu Jicong 已提交
1809
  tlen += taosEncodeFixedI64(buf, pRsp->epoch);
L
Liu Jicong 已提交
1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821
  tlen += taosEncodeString(buf, pRsp->cgroup);
  int32_t sz = taosArrayGetSize(pRsp->topics);
  tlen += taosEncodeFixedI32(buf, sz);
  for (int32_t i = 0; i < sz; i++) {
    SMqSubTopicEp* pVgEp = (SMqSubTopicEp*)taosArrayGet(pRsp->topics, i);
    tlen += tEncodeSMqSubTopicEp(buf, pVgEp);
  }
  return tlen;
}

static FORCE_INLINE void* tDecodeSMqCMGetSubEpRsp(void* buf, SMqCMGetSubEpRsp* pRsp) {
  buf = taosDecodeFixedI64(buf, &pRsp->consumerId);
L
Liu Jicong 已提交
1822
  buf = taosDecodeFixedI64(buf, &pRsp->epoch);
L
Liu Jicong 已提交
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
  buf = taosDecodeStringTo(buf, pRsp->cgroup);
  int32_t sz;
  buf = taosDecodeFixedI32(buf, &sz);
  pRsp->topics = taosArrayInit(sz, sizeof(SMqSubTopicEp));
  if (pRsp->topics == NULL) {
    return NULL;
  }
  for (int32_t i = 0; i < sz; i++) {
    SMqSubTopicEp topicEp;
    buf = tDecodeSMqSubTopicEp(buf, &topicEp);
    taosArrayPush(pRsp->topics, &topicEp);
  }
  return buf;
}
L
Liu Jicong 已提交
1837

D
dapan1121 已提交
1838 1839 1840 1841
#ifdef __cplusplus
}
#endif

D
dapan 已提交
1842
#endif /*_TD_COMMON_TAOS_MSG_H_*/