tmsg.h 73.2 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
/*
 * 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_

#include "taosdef.h"
#include "taoserror.h"
H
more  
Hongze Cheng 已提交
21
#include "tarray.h"
H
more  
Hongze Cheng 已提交
22
#include "tcoding.h"
S
Shengliang Guan 已提交
23
#include "tencode.h"
L
Liu Jicong 已提交
24
#include "thash.h"
H
Hongze Cheng 已提交
25
#include "tlist.h"
D
dapan1121 已提交
26
#include "tname.h"
L
Liu Jicong 已提交
27
#include "trow.h"
L
Liu Jicong 已提交
28
#include "tuuid.h"
D
dapan1121 已提交
29

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

H
Hongze Cheng 已提交
34
/* ------------------------ MESSAGE DEFINITIONS ------------------------ */
H
Hongze Cheng 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#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"

S
Shengliang Guan 已提交
53 54
extern char*   tMsgInfo[];
extern int32_t tMsgDict[];
H
Hongze Cheng 已提交
55 56

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

H
Hongze Cheng 已提交
61 62
typedef uint16_t tmsg_t;

H
Hongze Cheng 已提交
63
/* ------------------------ OTHER DEFINITIONS ------------------------ */
D
dapan1121 已提交
64
// IE type
L
Liu Jicong 已提交
65 66 67 68
#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
D
dapan1121 已提交
69
#define TSDB_IE_TYPE_NEW_VERSION 5
L
Liu Jicong 已提交
70
#define TSDB_IE_TYPE_DNODE_EXT   6
D
dapan1121 已提交
71 72
#define TSDB_IE_TYPE_DNODE_STATE 7

73
enum { CONN_TYPE__QUERY = 1, CONN_TYPE__TMQ, CONN_TYPE__MAX };
L
Liu Jicong 已提交
74

D
dapan1121 已提交
75
enum {
D
dapan 已提交
76 77
  HEARTBEAT_KEY_USER_AUTHINFO = 1,
  HEARTBEAT_KEY_DBINFO,
D
dapan1121 已提交
78
  HEARTBEAT_KEY_STBINFO,
D
dapan1121 已提交
79
  HEARTBEAT_KEY_MQ_TMP,
D
dapan1121 已提交
80 81
};

S
Shengliang Guan 已提交
82 83
typedef enum _mgmt_table {
  TSDB_MGMT_TABLE_START,
D
dapan1121 已提交
84 85
  TSDB_MGMT_TABLE_DNODE,
  TSDB_MGMT_TABLE_MNODE,
86
  TSDB_MGMT_TABLE_MODULE,
S
Shengliang Guan 已提交
87 88 89
  TSDB_MGMT_TABLE_QNODE,
  TSDB_MGMT_TABLE_SNODE,
  TSDB_MGMT_TABLE_BNODE,
90 91 92 93
  TSDB_MGMT_TABLE_CLUSTER,
  TSDB_MGMT_TABLE_DB,
  TSDB_MGMT_TABLE_FUNC,
  TSDB_MGMT_TABLE_INDEX,
S
Shengliang Guan 已提交
94
  TSDB_MGMT_TABLE_STB,
D
dapan1121 已提交
95
  TSDB_MGMT_TABLE_STREAMS,
96 97
  TSDB_MGMT_TABLE_TABLE,
  TSDB_MGMT_TABLE_USER,
D
dapan1121 已提交
98
  TSDB_MGMT_TABLE_GRANTS,
99 100 101
  TSDB_MGMT_TABLE_VGROUP,
  TSDB_MGMT_TABLE_TOPICS,
  TSDB_MGMT_TABLE_CONSUMERS,
L
Liu Jicong 已提交
102
  TSDB_MGMT_TABLE_SUBSCRIPTIONS,
103 104 105 106 107
  TSDB_MGMT_TABLE_TRANS,
  TSDB_MGMT_TABLE_SMAS,
  TSDB_MGMT_TABLE_CONFIGS,
  TSDB_MGMT_TABLE_CONNS,
  TSDB_MGMT_TABLE_QUERIES,
D
dapan1121 已提交
108 109
  TSDB_MGMT_TABLE_VNODES,
  TSDB_MGMT_TABLE_MAX,
S
Shengliang Guan 已提交
110
} EShowType;
D
dapan1121 已提交
111

112 113 114 115
#define TSDB_ALTER_TABLE_ADD_TAG             1
#define TSDB_ALTER_TABLE_DROP_TAG            2
#define TSDB_ALTER_TABLE_UPDATE_TAG_NAME     3
#define TSDB_ALTER_TABLE_UPDATE_TAG_VAL      4
L
Liu Jicong 已提交
116 117
#define TSDB_ALTER_TABLE_ADD_COLUMN          5
#define TSDB_ALTER_TABLE_DROP_COLUMN         6
S
Shengliang Guan 已提交
118
#define TSDB_ALTER_TABLE_UPDATE_COLUMN_BYTES 7
L
Liu Jicong 已提交
119
#define TSDB_ALTER_TABLE_UPDATE_TAG_BYTES    8
120 121
#define TSDB_ALTER_TABLE_UPDATE_OPTIONS      9
#define TSDB_ALTER_TABLE_UPDATE_COLUMN_NAME  10
D
dapan1121 已提交
122

L
Liu Jicong 已提交
123 124
#define TSDB_FILL_NONE      0
#define TSDB_FILL_NULL      1
H
Hongze Cheng 已提交
125
#define TSDB_FILL_SET_VALUE 2
L
Liu Jicong 已提交
126 127 128 129 130 131 132 133
#define TSDB_FILL_LINEAR    3
#define TSDB_FILL_PREV      4
#define TSDB_FILL_NEXT      5

#define TSDB_ALTER_USER_PASSWD          0x1
#define TSDB_ALTER_USER_SUPERUSER       0x2
#define TSDB_ALTER_USER_ADD_READ_DB     0x3
#define TSDB_ALTER_USER_REMOVE_READ_DB  0x4
S
Shengliang Guan 已提交
134 135 136 137
#define TSDB_ALTER_USER_ADD_WRITE_DB    0x5
#define TSDB_ALTER_USER_REMOVE_WRITE_DB 0x6
#define TSDB_ALTER_USER_ADD_ALL_DB      0x7
#define TSDB_ALTER_USER_REMOVE_ALL_DB   0x8
S
Shengliang Guan 已提交
138

D
dapan1121 已提交
139 140
#define TSDB_ALTER_USER_PRIVILEGES 0x2

H
Hongze Cheng 已提交
141
#define TSDB_KILL_MSG_LEN 30
D
dapan1121 已提交
142

D
dapan1121 已提交
143 144
#define TSDB_TABLE_NUM_UNIT 100000

L
Liu Jicong 已提交
145
#define TSDB_VN_READ_ACCCESS  ((char)0x1)
H
Hongze Cheng 已提交
146
#define TSDB_VN_WRITE_ACCCESS ((char)0x2)
L
Liu Jicong 已提交
147
#define TSDB_VN_ALL_ACCCESS   (TSDB_VN_READ_ACCCESS | TSDB_VN_WRITE_ACCCESS)
D
dapan1121 已提交
148

H
Hongze Cheng 已提交
149
#define TSDB_COL_NORMAL 0x0u  // the normal column of the table
L
Liu Jicong 已提交
150 151 152 153
#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 已提交
154

L
Liu Jicong 已提交
155
#define TSDB_COL_IS_TAG(f)        (((f & (~(TSDB_COL_NULL))) & TSDB_COL_TAG) != 0)
H
Hongze Cheng 已提交
156
#define TSDB_COL_IS_NORMAL_COL(f) ((f & (~(TSDB_COL_NULL))) == TSDB_COL_NORMAL)
L
Liu Jicong 已提交
157 158
#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 已提交
159

L
Liu Jicong 已提交
160 161
#define TD_SUPER_TABLE  TSDB_SUPER_TABLE
#define TD_CHILD_TABLE  TSDB_CHILD_TABLE
S
Shengliang Guan 已提交
162 163
#define TD_NORMAL_TABLE TSDB_NORMAL_TABLE

S
Shengliang Guan 已提交
164
typedef struct {
S
Shengliang Guan 已提交
165
  int32_t vgId;
D
dapan1121 已提交
166 167
  char*   dbFName;
  char*   tbName;
D
dapan1121 已提交
168 169
} SBuildTableMetaInput;

S
Shengliang Guan 已提交
170
typedef struct {
D
dapan1121 已提交
171
  char    db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
172
  int64_t dbId;
173
  int32_t vgVersion;
L
Liu Jicong 已提交
174
  int32_t numOfTable;  // unit is TSDB_TABLE_NUM_UNIT
D
dapan1121 已提交
175 176
} SBuildUseDBInput;

S
Shengliang Guan 已提交
177 178 179 180
typedef struct SField {
  char    name[TSDB_COL_NAME_LEN];
  uint8_t type;
  int32_t bytes;
181
  int8_t  flags;
S
Shengliang Guan 已提交
182 183
} SField;

S
Shengliang Guan 已提交
184
typedef struct SRetention {
C
Cary Xu 已提交
185 186
  int64_t freq;
  int64_t keep;
S
sma  
Shengliang Guan 已提交
187 188
  int8_t  freqUnit;
  int8_t  keepUnit;
S
Shengliang Guan 已提交
189 190
} SRetention;

C
Cary Xu 已提交
191 192
#define RETENTION_VALID(r) (((r)->freq > 0) && ((r)->keep > 0))

D
dapan1121 已提交
193 194 195
#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 已提交
196
typedef struct SEp {
D
dapan1121 已提交
197
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
198
  uint16_t port;
H
Haojun Liao 已提交
199
} SEp;
D
dapan1121 已提交
200

S
Shengliang Guan 已提交
201
typedef struct {
D
dapan1121 已提交
202
  int32_t contLen;
L
Liu Jicong 已提交
203
  int32_t vgId;
D
dapan1121 已提交
204 205 206 207
} SMsgHead;

// Submit message for one table
typedef struct SSubmitBlk {
208
  int64_t uid;        // table unique id
L
Liu Jicong 已提交
209
  int64_t suid;       // stable id
210 211 212 213
  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
C
Cary Xu 已提交
214
  int16_t padding;    // TODO just for padding here
215
  char    data[];
D
dapan1121 已提交
216 217 218
} SSubmitBlk;

// Submit message for this TSDB
S
Shengliang Guan 已提交
219
typedef struct {
S
Shengliang Guan 已提交
220
  SMsgHead header;
H
Hongze Cheng 已提交
221
  int64_t  version;
S
Shengliang Guan 已提交
222 223 224
  int32_t  length;
  int32_t  numOfBlocks;
  char     blocks[];
S
Shengliang Guan 已提交
225
} SSubmitReq;
D
dapan1121 已提交
226

H
Hongze Cheng 已提交
227 228 229
typedef struct {
  int32_t totalLen;
  int32_t len;
230
  STSRow* row;
H
Hongze Cheng 已提交
231 232 233
} SSubmitBlkIter;

typedef struct {
C
Cary Xu 已提交
234 235 236
  int32_t totalLen;
  int32_t len;
  // head of SSubmitBlk
C
Cary Xu 已提交
237 238 239 240 241 242
  int64_t uid;        // table unique id
  int64_t suid;       // stable id
  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
C
Cary Xu 已提交
243
  // head of SSubmitBlk
C
Cary Xu 已提交
244
  const void* pMsg;
H
Hongze Cheng 已提交
245
} SSubmitMsgIter;
C
Cary Xu 已提交
246

C
Cary Xu 已提交
247
int32_t tInitSubmitMsgIter(const SSubmitReq* pMsg, SSubmitMsgIter* pIter);
S
Shengliang Guan 已提交
248
int32_t tGetSubmitMsgNext(SSubmitMsgIter* pIter, SSubmitBlk** pPBlock);
C
Cary Xu 已提交
249
int32_t tInitSubmitBlkIter(SSubmitMsgIter* pMsgIter, SSubmitBlk* pBlock, SSubmitBlkIter* pIter);
C
Cary Xu 已提交
250
STSRow* tGetSubmitBlkNext(SSubmitBlkIter* pIter);
L
Liu Jicong 已提交
251 252
// for debug
int32_t tPrintFixedSchemaSubmitReq(const SSubmitReq* pReq, STSchema* pSchema);
H
Hongze Cheng 已提交
253

D
dapan1121 已提交
254
typedef struct {
H
Hongze Cheng 已提交
255
  int32_t code;
H
Hongze Cheng 已提交
256 257
  int8_t  hashMeta;
  int64_t uid;
D
dapan 已提交
258
  char*   tblFName;
H
Hongze Cheng 已提交
259 260 261
  int32_t numOfRows;
  int32_t affectedRows;
} SSubmitBlkRsp;
D
dapan1121 已提交
262 263

typedef struct {
H
Hongze Cheng 已提交
264 265 266 267 268 269 270
  int32_t numOfRows;
  int32_t affectedRows;
  int32_t nBlocks;
  union {
    SArray*        pArray;
    SSubmitBlkRsp* pBlocks;
  };
S
Shengliang Guan 已提交
271
} SSubmitRsp;
D
dapan1121 已提交
272

H
Hongze Cheng 已提交
273 274
int32_t tEncodeSSubmitRsp(SEncoder* pEncoder, const SSubmitRsp* pRsp);
int32_t tDecodeSSubmitRsp(SDecoder* pDecoder, SSubmitRsp* pRsp);
H
Hongze Cheng 已提交
275
void    tFreeSSubmitRsp(SSubmitRsp* pRsp);
H
Hongze Cheng 已提交
276

H
Hongze Cheng 已提交
277 278 279
#define COL_SMA_ON  ((int8_t)0x1)
#define COL_IDX_ON  ((int8_t)0x2)
#define COL_VAL_SET ((int8_t)0x4)
280

D
dapan1121 已提交
281
typedef struct SSchema {
282
  int8_t   type;
H
Hongze Cheng 已提交
283
  int8_t   flags;
284 285 286
  col_id_t colId;
  int32_t  bytes;
  char     name[TSDB_COL_NAME_LEN];
D
dapan1121 已提交
287 288
} SSchema;

H
Hongze Cheng 已提交
289
#define IS_BSMA_ON(s) (((s)->flags & 0x01) == COL_SMA_ON)
C
Cary Xu 已提交
290

dengyihao's avatar
dengyihao 已提交
291
#define SSCHMEA_TYPE(s)  ((s)->type)
C
Cary Xu 已提交
292
#define SSCHMEA_FLAGS(s) ((s)->flags)
C
Cary Xu 已提交
293 294
#define SSCHMEA_COLID(s) ((s)->colId)
#define SSCHMEA_BYTES(s) ((s)->bytes)
dengyihao's avatar
dengyihao 已提交
295
#define SSCHMEA_NAME(s)  ((s)->name)
C
Cary Xu 已提交
296

H
Hongze Cheng 已提交
297 298 299 300 301 302
typedef struct {
  int32_t  nCols;
  int32_t  sver;
  SSchema* pSchema;
} SSchemaWrapper;

L
Liu Jicong 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
static FORCE_INLINE SSchemaWrapper* tCloneSSchemaWrapper(const SSchemaWrapper* pSchemaWrapper) {
  SSchemaWrapper* pSW = (SSchemaWrapper*)taosMemoryMalloc(sizeof(SSchemaWrapper));
  if (pSW == NULL) return pSW;
  pSW->nCols = pSchemaWrapper->nCols;
  pSW->sver = pSchemaWrapper->sver;
  pSW->pSchema = (SSchema*)taosMemoryCalloc(pSW->nCols, sizeof(SSchema));
  if (pSW->pSchema == NULL) {
    taosMemoryFree(pSW);
    return NULL;
  }
  memcpy(pSW->pSchema, pSchemaWrapper->pSchema, pSW->nCols * sizeof(SSchema));
  return pSW;
}

static FORCE_INLINE void tDeleteSSchemaWrapper(SSchemaWrapper* pSchemaWrapper) {
  taosMemoryFree(pSchemaWrapper->pSchema);
  taosMemoryFree(pSchemaWrapper);
}

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

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

static FORCE_INLINE int32_t tEncodeSSchema(SEncoder* pEncoder, const SSchema* pSchema) {
  if (tEncodeI8(pEncoder, pSchema->type) < 0) return -1;
  if (tEncodeI8(pEncoder, pSchema->flags) < 0) return -1;
  if (tEncodeI32v(pEncoder, pSchema->bytes) < 0) return -1;
  if (tEncodeI16v(pEncoder, pSchema->colId) < 0) return -1;
  if (tEncodeCStr(pEncoder, pSchema->name) < 0) return -1;
  return 0;
}

static FORCE_INLINE int32_t tDecodeSSchema(SDecoder* pDecoder, SSchema* pSchema) {
  if (tDecodeI8(pDecoder, &pSchema->type) < 0) return -1;
  if (tDecodeI8(pDecoder, &pSchema->flags) < 0) return -1;
  if (tDecodeI32v(pDecoder, &pSchema->bytes) < 0) return -1;
  if (tDecodeI16v(pDecoder, &pSchema->colId) < 0) return -1;
  if (tDecodeCStrTo(pDecoder, pSchema->name) < 0) return -1;
  return 0;
}

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

static FORCE_INLINE void* taosDecodeSSchemaWrapper(const void* buf, SSchemaWrapper* pSW) {
  buf = taosDecodeVariantI32(buf, &pSW->nCols);
  buf = taosDecodeVariantI32(buf, &pSW->sver);
  pSW->pSchema = (SSchema*)taosMemoryCalloc(pSW->nCols, sizeof(SSchema));
  if (pSW->pSchema == NULL) {
    return NULL;
  }

  for (int32_t i = 0; i < pSW->nCols; i++) {
    buf = taosDecodeSSchema(buf, &pSW->pSchema[i]);
  }
  return (void*)buf;
}

static FORCE_INLINE int32_t tEncodeSSchemaWrapper(SEncoder* pEncoder, const SSchemaWrapper* pSW) {
  if (tEncodeI32v(pEncoder, pSW->nCols) < 0) return -1;
  if (tEncodeI32v(pEncoder, pSW->sver) < 0) return -1;
  for (int32_t i = 0; i < pSW->nCols; i++) {
    if (tEncodeSSchema(pEncoder, &pSW->pSchema[i]) < 0) return -1;
  }

  return 0;
}

static FORCE_INLINE int32_t tDecodeSSchemaWrapper(SDecoder* pDecoder, SSchemaWrapper* pSW) {
  if (tDecodeI32v(pDecoder, &pSW->nCols) < 0) return -1;
  if (tDecodeI32v(pDecoder, &pSW->sver) < 0) return -1;

  pSW->pSchema = (SSchema*)taosMemoryCalloc(pSW->nCols, sizeof(SSchema));
  if (pSW->pSchema == NULL) return -1;
  for (int32_t i = 0; i < pSW->nCols; i++) {
    if (tDecodeSSchema(pDecoder, &pSW->pSchema[i]) < 0) return -1;
  }

  return 0;
}

C
Cary Xu 已提交
406 407
STSchema* tdGetSTSChemaFromSSChema(SSchema** pSchema, int32_t nCols);

D
dapan1121 已提交
408
typedef struct {
S
Shengliang Guan 已提交
409 410
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  igExists;
S
sma  
Shengliang Guan 已提交
411 412
  float   xFilesFactor;
  int32_t delay;
S
sma  
Shengliang Guan 已提交
413
  int32_t ttl;
S
Shengliang Guan 已提交
414
  int32_t numOfColumns;
S
Shengliang Guan 已提交
415
  int32_t numOfTags;
S
sma  
Shengliang Guan 已提交
416
  int32_t commentLen;
417 418
  int32_t ast1Len;
  int32_t ast2Len;
S
sma  
Shengliang Guan 已提交
419 420
  SArray* pColumns;  // array of SField
  SArray* pTags;     // array of SField
S
sma  
Shengliang Guan 已提交
421
  char*   comment;
422 423
  char*   pAst1;
  char*   pAst2;
S
Shengliang Guan 已提交
424
} SMCreateStbReq;
D
dapan1121 已提交
425

S
Shengliang Guan 已提交
426 427
int32_t tSerializeSMCreateStbReq(void* buf, int32_t bufLen, SMCreateStbReq* pReq);
int32_t tDeserializeSMCreateStbReq(void* buf, int32_t bufLen, SMCreateStbReq* pReq);
S
Shengliang Guan 已提交
428
void    tFreeSMCreateStbReq(SMCreateStbReq* pReq);
S
Shengliang Guan 已提交
429

D
dapan1121 已提交
430 431 432
typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
433
} SMDropStbReq;
S
Shengliang Guan 已提交
434

S
Shengliang Guan 已提交
435 436
int32_t tSerializeSMDropStbReq(void* buf, int32_t bufLen, SMDropStbReq* pReq);
int32_t tDeserializeSMDropStbReq(void* buf, int32_t bufLen, SMDropStbReq* pReq);
S
Shengliang Guan 已提交
437

S
Shengliang Guan 已提交
438 439 440
typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
S
Shengliang Guan 已提交
441 442
  int32_t numOfFields;
  SArray* pFields;
X
Xiaoyu Wang 已提交
443 444 445
  int32_t ttl;
  int32_t commentLen;
  char*   comment;
S
Shengliang Guan 已提交
446
} SMAlterStbReq;
D
dapan1121 已提交
447

S
Shengliang Guan 已提交
448 449 450
int32_t tSerializeSMAlterStbReq(void* buf, int32_t bufLen, SMAlterStbReq* pReq);
int32_t tDeserializeSMAlterStbReq(void* buf, int32_t bufLen, SMAlterStbReq* pReq);
void    tFreeSMAltertbReq(SMAlterStbReq* pReq);
D
dapan1121 已提交
451 452

typedef struct SEpSet {
453 454 455
  int8_t inUse;
  int8_t numOfEps;
  SEp    eps[TSDB_MAX_REPLICA];
D
dapan1121 已提交
456 457
} SEpSet;

H
Hongze Cheng 已提交
458 459
int32_t tEncodeSEpSet(SEncoder* pEncoder, const SEpSet* pEp);
int32_t tDecodeSEpSet(SDecoder* pDecoder, SEpSet* pEp);
S
Shengliang Guan 已提交
460
int32_t taosEncodeSEpSet(void** buf, const SEpSet* pEp);
461
void*   taosDecodeSEpSet(const void* buf, SEpSet* pEp);
L
Liu Jicong 已提交
462

dengyihao's avatar
dengyihao 已提交
463 464 465 466 467 468 469
typedef struct {
  SEpSet epSet;
} SMEpSet;

int32_t tSerializeSMEpSet(void* buf, int32_t bufLen, SMEpSet* pReq);
int32_t tDeserializeSMEpSet(void* buf, int32_t buflen, SMEpSet* pReq);

D
dapan1121 已提交
470
typedef struct {
L
Liu Jicong 已提交
471
  int8_t  connType;
D
dapan1121 已提交
472
  int32_t pid;
S
Shengliang Guan 已提交
473 474
  char    app[TSDB_APP_NAME_LEN];
  char    db[TSDB_DB_NAME_LEN];
dengyihao's avatar
dengyihao 已提交
475 476
  char    user[TSDB_USER_LEN];
  char    passwd[TSDB_PASSWORD_LEN];
477
  int64_t startTime;
S
Shengliang Guan 已提交
478
} SConnectReq;
L
Liu Jicong 已提交
479

S
Shengliang Guan 已提交
480 481
int32_t tSerializeSConnectReq(void* buf, int32_t bufLen, SConnectReq* pReq);
int32_t tDeserializeSConnectReq(void* buf, int32_t bufLen, SConnectReq* pReq);
482

L
Liu Jicong 已提交
483
typedef struct {
484 485
  int32_t  acctId;
  int64_t  clusterId;
D
dapan1121 已提交
486
  uint32_t connId;
D
dapan 已提交
487
  int32_t  dnodeNum;
488 489 490 491
  int8_t   superUser;
  int8_t   connType;
  SEpSet   epSet;
  char     sVersion[128];
L
Liu Jicong 已提交
492
} SConnectRsp;
L
Liu Jicong 已提交
493

S
Shengliang Guan 已提交
494 495 496
int32_t tSerializeSConnectRsp(void* buf, int32_t bufLen, SConnectRsp* pRsp);
int32_t tDeserializeSConnectRsp(void* buf, int32_t bufLen, SConnectRsp* pRsp);

L
Liu Jicong 已提交
497 498 499 500 501 502 503 504
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
505
  int64_t maxStorage;
L
Liu Jicong 已提交
506
} SCreateAcctReq, SAlterAcctReq;
L
Liu Jicong 已提交
507

S
Shengliang Guan 已提交
508 509
int32_t tSerializeSCreateAcctReq(void* buf, int32_t bufLen, SCreateAcctReq* pReq);
int32_t tDeserializeSCreateAcctReq(void* buf, int32_t bufLen, SCreateAcctReq* pReq);
S
Shengliang Guan 已提交
510

L
Liu Jicong 已提交
511 512 513
typedef struct {
  char user[TSDB_USER_LEN];
} SDropUserReq, SDropAcctReq;
D
dapan1121 已提交
514

S
Shengliang Guan 已提交
515 516
int32_t tSerializeSDropUserReq(void* buf, int32_t bufLen, SDropUserReq* pReq);
int32_t tDeserializeSDropUserReq(void* buf, int32_t bufLen, SDropUserReq* pReq);
S
Shengliang Guan 已提交
517

D
dapan1121 已提交
518
typedef struct {
S
Shengliang Guan 已提交
519 520
  int8_t createType;
  int8_t superUser;  // denote if it is a super user or not
S
Shengliang Guan 已提交
521
  char   user[TSDB_USER_LEN];
S
Shengliang Guan 已提交
522
  char   pass[TSDB_USET_PASSWORD_LEN];
S
Shengliang Guan 已提交
523 524
} SCreateUserReq;

S
Shengliang Guan 已提交
525 526
int32_t tSerializeSCreateUserReq(void* buf, int32_t bufLen, SCreateUserReq* pReq);
int32_t tDeserializeSCreateUserReq(void* buf, int32_t bufLen, SCreateUserReq* pReq);
S
Shengliang Guan 已提交
527 528 529

typedef struct {
  int8_t alterType;
S
Shengliang Guan 已提交
530
  int8_t superUser;
S
Shengliang Guan 已提交
531
  char   user[TSDB_USER_LEN];
S
Shengliang Guan 已提交
532
  char   pass[TSDB_USET_PASSWORD_LEN];
S
Shengliang Guan 已提交
533 534 535
  char   dbname[TSDB_DB_FNAME_LEN];
} SAlterUserReq;

S
Shengliang Guan 已提交
536 537
int32_t tSerializeSAlterUserReq(void* buf, int32_t bufLen, SAlterUserReq* pReq);
int32_t tDeserializeSAlterUserReq(void* buf, int32_t bufLen, SAlterUserReq* pReq);
D
dapan1121 已提交
538

S
Shengliang Guan 已提交
539 540 541 542
typedef struct {
  char user[TSDB_USER_LEN];
} SGetUserAuthReq;

S
Shengliang Guan 已提交
543 544
int32_t tSerializeSGetUserAuthReq(void* buf, int32_t bufLen, SGetUserAuthReq* pReq);
int32_t tDeserializeSGetUserAuthReq(void* buf, int32_t bufLen, SGetUserAuthReq* pReq);
S
Shengliang Guan 已提交
545 546 547

typedef struct {
  char      user[TSDB_USER_LEN];
D
dapan 已提交
548
  int32_t   version;
S
Shengliang Guan 已提交
549
  int8_t    superAuth;
D
dapan 已提交
550
  SHashObj* createdDbs;
S
Shengliang Guan 已提交
551 552 553 554
  SHashObj* readDbs;
  SHashObj* writeDbs;
} SGetUserAuthRsp;

S
Shengliang Guan 已提交
555 556
int32_t tSerializeSGetUserAuthRsp(void* buf, int32_t bufLen, SGetUserAuthRsp* pRsp);
int32_t tDeserializeSGetUserAuthRsp(void* buf, int32_t bufLen, SGetUserAuthRsp* pRsp);
S
Shengliang Guan 已提交
557
void    tFreeSGetUserAuthRsp(SGetUserAuthRsp* pRsp);
S
Shengliang Guan 已提交
558

D
dapan1121 已提交
559
typedef struct {
S
Shengliang Guan 已提交
560 561 562
  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
563
  char    name[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
564 565
} SColIndex;

S
Shengliang Guan 已提交
566
typedef struct {
D
dapan1121 已提交
567 568
  int16_t lowerRelOptr;
  int16_t upperRelOptr;
S
Shengliang Guan 已提交
569
  int16_t filterstr;  // denote if current column is char(binary/nchar)
D
dapan1121 已提交
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586

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

S
Shengliang Guan 已提交
587
typedef struct {
S
Shengliang Guan 已提交
588 589 590
  int16_t numOfFilters;
  union {
    int64_t            placeholder;
H
Hongze Cheng 已提交
591
    SColumnFilterInfo* filterInfo;
D
dapan1121 已提交
592 593 594
  };
} SColumnFilterList;
/*
L
Liu Jicong 已提交
595
 * for client side struct, only column id, type, bytes are necessary
D
dapan1121 已提交
596 597
 * But for data in vnode side, we need all the following information.
 */
S
Shengliang Guan 已提交
598
typedef struct {
H
Haojun Liao 已提交
599
  union {
600 601
    col_id_t colId;
    int16_t  slotId;
H
Haojun Liao 已提交
602 603
  };

L
Liu Jicong 已提交
604 605 606 607
  int16_t type;
  int32_t bytes;
  uint8_t precision;
  uint8_t scale;
D
dapan1121 已提交
608 609
} SColumnInfo;

S
Shengliang Guan 已提交
610
typedef struct {
L
Liu Jicong 已提交
611 612
  int64_t uid;
  TSKEY   key;  // last accessed ts, for subscription
D
dapan1121 已提交
613 614 615 616 617 618 619 620
} STableIdInfo;

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

typedef struct {
S
Shengliang Guan 已提交
621 622 623 624
  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 已提交
625 626
} STsBufInfo;

S
Shengliang Guan 已提交
627
typedef struct {
S
Shengliang Guan 已提交
628
  int32_t tz;  // query client timezone
D
dapan1121 已提交
629 630
  char    intervalUnit;
  char    slidingUnit;
L
Liu Jicong 已提交
631
  char
L
Liu Jicong 已提交
632
      offsetUnit;  // TODO Remove it, the offset is the number of precision tickle, and it must be a immutable duration.
H
Haojun Liao 已提交
633
  int8_t  precision;
D
dapan1121 已提交
634 635 636 637 638 639
  int64_t interval;
  int64_t sliding;
  int64_t offset;
} SInterval;

typedef struct {
S
Shengliang Guan 已提交
640
  int32_t code;
D
dapan1121 已提交
641 642
} SQueryTableRsp;

L
Liu Jicong 已提交
643
int32_t tSerializeSQueryTableRsp(void* buf, int32_t bufLen, SQueryTableRsp* pRsp);
D
dapan1121 已提交
644

L
Liu Jicong 已提交
645
int32_t tDeserializeSQueryTableRsp(void* buf, int32_t bufLen, SQueryTableRsp* pRsp);
D
dapan1121 已提交
646

D
dapan1121 已提交
647
typedef struct {
648
  char    db[TSDB_DB_FNAME_LEN];
649
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
650 651 652 653
  int32_t numOfStables;  // single_stable
  int32_t buffer;        // MB
  int32_t pageSize;
  int32_t pages;
S
Shengliang Guan 已提交
654 655 656 657
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
658 659
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
660
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
661
  int8_t  walLevel;
S
Shengliang Guan 已提交
662 663 664
  int8_t  precision;  // time resolution
  int8_t  compression;
  int8_t  replications;
S
Shengliang Guan 已提交
665
  int8_t  strict;
S
Shengliang Guan 已提交
666
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
667
  int8_t  ignoreExist;
S
Shengliang Guan 已提交
668 669
  int32_t numOfRetensions;
  SArray* pRetensions;  // SRetention
S
Shengliang Guan 已提交
670
} SCreateDbReq;
S
Shengliang Guan 已提交
671

S
Shengliang Guan 已提交
672 673
int32_t tSerializeSCreateDbReq(void* buf, int32_t bufLen, SCreateDbReq* pReq);
int32_t tDeserializeSCreateDbReq(void* buf, int32_t bufLen, SCreateDbReq* pReq);
S
Shengliang Guan 已提交
674
void    tFreeSCreateDbReq(SCreateDbReq* pReq);
S
Shengliang Guan 已提交
675

S
Shengliang Guan 已提交
676
typedef struct {
677
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
678 679 680
  int32_t buffer;
  int32_t pageSize;
  int32_t pages;
S
Shengliang Guan 已提交
681
  int32_t daysPerFile;
S
Shengliang Guan 已提交
682 683 684 685 686
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
  int32_t fsyncPeriod;
  int8_t  walLevel;
S
Shengliang Guan 已提交
687
  int8_t  strict;
S
Shengliang Guan 已提交
688
  int8_t  cacheLastRow;
X
Xiaoyu Wang 已提交
689
  int8_t  replications;
S
Shengliang Guan 已提交
690
} SAlterDbReq;
S
Shengliang Guan 已提交
691

S
Shengliang Guan 已提交
692 693 694
int32_t tSerializeSAlterDbReq(void* buf, int32_t bufLen, SAlterDbReq* pReq);
int32_t tDeserializeSAlterDbReq(void* buf, int32_t bufLen, SAlterDbReq* pReq);

S
Shengliang Guan 已提交
695
typedef struct {
S
Shengliang Guan 已提交
696
  char   db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
697
  int8_t ignoreNotExists;
S
Shengliang Guan 已提交
698
} SDropDbReq;
S
Shengliang Guan 已提交
699

S
Shengliang Guan 已提交
700 701 702
int32_t tSerializeSDropDbReq(void* buf, int32_t bufLen, SDropDbReq* pReq);
int32_t tDeserializeSDropDbReq(void* buf, int32_t bufLen, SDropDbReq* pReq);

S
Shengliang Guan 已提交
703
typedef struct {
L
Liu Jicong 已提交
704 705
  char    db[TSDB_DB_FNAME_LEN];
  int64_t uid;
S
Shengliang Guan 已提交
706 707
} SDropDbRsp;

S
Shengliang Guan 已提交
708 709 710
int32_t tSerializeSDropDbRsp(void* buf, int32_t bufLen, SDropDbRsp* pRsp);
int32_t tDeserializeSDropDbRsp(void* buf, int32_t bufLen, SDropDbRsp* pRsp);

S
Shengliang Guan 已提交
711 712
typedef struct {
  char    db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
713
  int64_t dbId;
714
  int32_t vgVersion;
L
Liu Jicong 已提交
715
  int32_t numOfTable;  // unit is TSDB_TABLE_NUM_UNIT
S
Shengliang Guan 已提交
716
} SUseDbReq;
S
Shengliang Guan 已提交
717

S
Shengliang Guan 已提交
718 719
int32_t tSerializeSUseDbReq(void* buf, int32_t bufLen, SUseDbReq* pReq);
int32_t tDeserializeSUseDbReq(void* buf, int32_t bufLen, SUseDbReq* pReq);
S
Shengliang Guan 已提交
720 721

typedef struct {
L
Liu Jicong 已提交
722 723 724 725 726 727
  char    db[TSDB_DB_FNAME_LEN];
  int64_t uid;
  int32_t vgVersion;
  int32_t vgNum;
  int8_t  hashMethod;
  SArray* pVgroupInfos;  // Array of SVgroupInfo
S
Shengliang Guan 已提交
728 729
} SUseDbRsp;

L
Liu Jicong 已提交
730
int32_t tSerializeSUseDbRsp(void* buf, int32_t bufLen, const SUseDbRsp* pRsp);
S
Shengliang Guan 已提交
731
int32_t tDeserializeSUseDbRsp(void* buf, int32_t bufLen, SUseDbRsp* pRsp);
H
Hongze Cheng 已提交
732 733
int32_t tSerializeSUseDbRspImp(SEncoder* pEncoder, const SUseDbRsp* pRsp);
int32_t tDeserializeSUseDbRspImp(SDecoder* pDecoder, SUseDbRsp* pRsp);
S
Shengliang Guan 已提交
734 735
void    tFreeSUsedbRsp(SUseDbRsp* pRsp);

D
dapan1121 已提交
736
typedef struct {
dengyihao's avatar
dengyihao 已提交
737
  char db[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
738 739 740 741 742 743 744
} SDbCfgReq;

int32_t tSerializeSDbCfgReq(void* buf, int32_t bufLen, SDbCfgReq* pReq);
int32_t tDeserializeSDbCfgReq(void* buf, int32_t bufLen, SDbCfgReq* pReq);

typedef struct {
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
745 746 747 748
  int32_t numOfStables;
  int32_t buffer;
  int32_t pageSize;
  int32_t pages;
D
dapan1121 已提交
749 750 751 752 753 754 755 756 757 758 759
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
  int32_t minRows;
  int32_t maxRows;
  int32_t fsyncPeriod;
  int8_t  walLevel;
  int8_t  precision;
  int8_t  compression;
  int8_t  replications;
S
Shengliang Guan 已提交
760
  int8_t  strict;
D
dapan1121 已提交
761
  int8_t  cacheLastRow;
762 763
  int32_t numOfRetensions;
  SArray* pRetensions;
D
dapan1121 已提交
764 765 766 767 768
} SDbCfgRsp;

int32_t tSerializeSDbCfgRsp(void* buf, int32_t bufLen, const SDbCfgRsp* pRsp);
int32_t tDeserializeSDbCfgRsp(void* buf, int32_t bufLen, SDbCfgRsp* pRsp);

D
dapan1121 已提交
769 770 771 772 773 774 775 776
typedef struct {
  int32_t rowNum;
} SQnodeListReq;

int32_t tSerializeSQnodeListReq(void* buf, int32_t bufLen, SQnodeListReq* pReq);
int32_t tDeserializeSQnodeListReq(void* buf, int32_t bufLen, SQnodeListReq* pReq);

typedef struct {
D
dapan1121 已提交
777
  SArray* addrsList;  // SArray<SQueryNodeAddr>
D
dapan1121 已提交
778 779 780 781 782 783
} SQnodeListRsp;

int32_t tSerializeSQnodeListRsp(void* buf, int32_t bufLen, SQnodeListRsp* pRsp);
int32_t tDeserializeSQnodeListRsp(void* buf, int32_t bufLen, SQnodeListRsp* pRsp);
void    tFreeSQnodeListRsp(SQnodeListRsp* pRsp);

D
dapan1121 已提交
784 785 786 787 788
typedef struct SQueryNodeAddr {
  int32_t nodeId;  // vgId or qnodeId
  SEpSet  epSet;
} SQueryNodeAddr;

S
Shengliang Guan 已提交
789 790 791 792 793 794 795
typedef struct {
  SArray* pArray;  // Array of SUseDbRsp
} SUseDbBatchRsp;

int32_t tSerializeSUseDbBatchRsp(void* buf, int32_t bufLen, SUseDbBatchRsp* pRsp);
int32_t tDeserializeSUseDbBatchRsp(void* buf, int32_t bufLen, SUseDbBatchRsp* pRsp);
void    tFreeSUseDbBatchRsp(SUseDbBatchRsp* pRsp);
S
Shengliang Guan 已提交
796

D
dapan 已提交
797 798 799 800 801 802 803 804
typedef struct {
  SArray* pArray;  // Array of SGetUserAuthRsp
} SUserAuthBatchRsp;

int32_t tSerializeSUserAuthBatchRsp(void* buf, int32_t bufLen, SUserAuthBatchRsp* pRsp);
int32_t tDeserializeSUserAuthBatchRsp(void* buf, int32_t bufLen, SUserAuthBatchRsp* pRsp);
void    tFreeSUserAuthBatchRsp(SUserAuthBatchRsp* pRsp);

S
Shengliang Guan 已提交
805
typedef struct {
S
Shengliang Guan 已提交
806
  char db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
807
} SCompactDbReq;
S
Shengliang Guan 已提交
808

S
Shengliang Guan 已提交
809 810
int32_t tSerializeSCompactDbReq(void* buf, int32_t bufLen, SCompactDbReq* pReq);
int32_t tDeserializeSCompactDbReq(void* buf, int32_t bufLen, SCompactDbReq* pReq);
D
dapan1121 已提交
811 812

typedef struct {
S
Shengliang Guan 已提交
813
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang 已提交
814
  int8_t  igExists;
S
Shengliang Guan 已提交
815 816
  int8_t  funcType;
  int8_t  scriptType;
S
Shengliang Guan 已提交
817
  int8_t  outputType;
S
Shengliang Guan 已提交
818
  int32_t outputLen;
S
Shengliang Guan 已提交
819
  int32_t bufSize;
820
  int32_t codeLen;
S
Shengliang 已提交
821
  int64_t signature;
822 823
  char*   pComment;
  char*   pCode;
S
Shengliang Guan 已提交
824
} SCreateFuncReq;
D
dapan1121 已提交
825

S
Shengliang Guan 已提交
826 827
int32_t tSerializeSCreateFuncReq(void* buf, int32_t bufLen, SCreateFuncReq* pReq);
int32_t tDeserializeSCreateFuncReq(void* buf, int32_t bufLen, SCreateFuncReq* pReq);
828
void    tFreeSCreateFuncReq(SCreateFuncReq* pReq);
S
Shengliang Guan 已提交
829

D
dapan1121 已提交
830
typedef struct {
S
Shengliang 已提交
831 832
  char   name[TSDB_FUNC_NAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
833
} SDropFuncReq;
S
Shengliang Guan 已提交
834

S
Shengliang Guan 已提交
835 836 837
int32_t tSerializeSDropFuncReq(void* buf, int32_t bufLen, SDropFuncReq* pReq);
int32_t tDeserializeSDropFuncReq(void* buf, int32_t bufLen, SDropFuncReq* pReq);

S
Shengliang Guan 已提交
838 839
typedef struct {
  int32_t numOfFuncs;
D
dapan1121 已提交
840
  bool    ignoreCodeComment;
S
Shengliang Guan 已提交
841
  SArray* pFuncNames;
S
Shengliang Guan 已提交
842
} SRetrieveFuncReq;
D
dapan1121 已提交
843

S
Shengliang Guan 已提交
844 845
int32_t tSerializeSRetrieveFuncReq(void* buf, int32_t bufLen, SRetrieveFuncReq* pReq);
int32_t tDeserializeSRetrieveFuncReq(void* buf, int32_t bufLen, SRetrieveFuncReq* pReq);
846
void    tFreeSRetrieveFuncReq(SRetrieveFuncReq* pReq);
S
Shengliang Guan 已提交
847

D
dapan1121 已提交
848 849
typedef struct {
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
850 851 852 853
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  outputType;
  int32_t outputLen;
D
dapan1121 已提交
854
  int32_t bufSize;
S
Shengliang 已提交
855
  int64_t signature;
S
Shengliang Guan 已提交
856 857
  int32_t commentSize;
  int32_t codeSize;
858 859
  char*   pComment;
  char*   pCode;
S
Shengliang Guan 已提交
860
} SFuncInfo;
D
dapan1121 已提交
861 862

typedef struct {
S
Shengliang Guan 已提交
863
  int32_t numOfFuncs;
S
Shengliang Guan 已提交
864
  SArray* pFuncInfos;
S
Shengliang Guan 已提交
865
} SRetrieveFuncRsp;
D
dapan1121 已提交
866

S
Shengliang Guan 已提交
867 868
int32_t tSerializeSRetrieveFuncRsp(void* buf, int32_t bufLen, SRetrieveFuncRsp* pRsp);
int32_t tDeserializeSRetrieveFuncRsp(void* buf, int32_t bufLen, SRetrieveFuncRsp* pRsp);
L
Liu Jicong 已提交
869
void    tFreeSFuncInfo(SFuncInfo* pInfo);
870
void    tFreeSRetrieveFuncRsp(SRetrieveFuncRsp* pRsp);
S
Shengliang Guan 已提交
871

D
dapan1121 已提交
872
typedef struct {
S
Shengliang Guan 已提交
873
  int32_t statusInterval;
S
Shengliang Guan 已提交
874
  int64_t checkTime;                  // 1970-01-01 00:00:00.000
S
Shengliang Guan 已提交
875 876 877
  char    timezone[TD_TIMEZONE_LEN];  // tsTimezone
  char    locale[TD_LOCALE_LEN];      // tsLocale
  char    charset[TD_LOCALE_LEN];     // tsCharset
S
Shengliang Guan 已提交
878
} SClusterCfg;
D
dapan1121 已提交
879

880 881 882 883 884 885 886 887 888 889 890 891
typedef struct {
  int32_t openVnodes;
  int32_t totalVnodes;
  int32_t masterNum;
  int64_t numOfSelectReqs;
  int64_t numOfInsertReqs;
  int64_t numOfInsertSuccessReqs;
  int64_t numOfBatchInsertReqs;
  int64_t numOfBatchInsertSuccessReqs;
  int64_t errors;
} SVnodesStat;

S
Shengliang Guan 已提交
892 893
typedef struct {
  int32_t vgId;
S
Shengliang Guan 已提交
894
  int32_t syncState;
S
Shengliang Guan 已提交
895 896
  int64_t numOfTables;
  int64_t numOfTimeSeries;
S
Shengliang Guan 已提交
897 898 899
  int64_t totalStorage;
  int64_t compStorage;
  int64_t pointsWritten;
S
Shengliang Guan 已提交
900 901 902 903 904
  int64_t numOfSelectReqs;
  int64_t numOfInsertReqs;
  int64_t numOfInsertSuccessReqs;
  int64_t numOfBatchInsertReqs;
  int64_t numOfBatchInsertSuccessReqs;
S
Shengliang Guan 已提交
905 906
} SVnodeLoad;

S
Shengliang Guan 已提交
907 908 909 910
typedef struct {
  int32_t syncState;
} SMnodeLoad;

S
Shengliang Guan 已提交
911
typedef struct {
S
Shengliang Guan 已提交
912 913
  int32_t     sver;      // software version
  int64_t     dnodeVer;  // dnode table version in sdb
S
Shengliang Guan 已提交
914
  int32_t     dnodeId;
915
  int64_t     clusterId;
S
Shengliang Guan 已提交
916 917
  int64_t     rebootTime;
  int64_t     updateTime;
S
Shengliang Guan 已提交
918 919
  int32_t     numOfCores;
  int32_t     numOfSupportVnodes;
S
Shengliang Guan 已提交
920 921
  char        dnodeEp[TSDB_EP_LEN];
  SClusterCfg clusterCfg;
S
Shengliang Guan 已提交
922
  SArray*     pVloads;  // array of SVnodeLoad
S
Shengliang Guan 已提交
923
} SStatusReq;
D
dapan1121 已提交
924

S
Shengliang Guan 已提交
925 926
int32_t tSerializeSStatusReq(void* buf, int32_t bufLen, SStatusReq* pReq);
int32_t tDeserializeSStatusReq(void* buf, int32_t bufLen, SStatusReq* pReq);
S
Shengliang Guan 已提交
927
void    tFreeSStatusReq(SStatusReq* pReq);
S
Shengliang Guan 已提交
928

D
dapan1121 已提交
929
typedef struct {
S
Shengliang Guan 已提交
930
  int32_t dnodeId;
931
  int64_t clusterId;
D
dapan1121 已提交
932 933 934
} SDnodeCfg;

typedef struct {
935 936 937
  int32_t id;
  int8_t  isMnode;
  SEp     ep;
D
dapan1121 已提交
938 939 940
} SDnodeEp;

typedef struct {
S
Shengliang Guan 已提交
941
  int64_t   dnodeVer;
S
Shengliang Guan 已提交
942
  SDnodeCfg dnodeCfg;
S
Shengliang Guan 已提交
943
  SArray*   pDnodeEps;  // Array of SDnodeEp
D
dapan1121 已提交
944 945
} SStatusRsp;

S
Shengliang Guan 已提交
946 947
int32_t tSerializeSStatusRsp(void* buf, int32_t bufLen, SStatusRsp* pRsp);
int32_t tDeserializeSStatusRsp(void* buf, int32_t bufLen, SStatusRsp* pRsp);
S
shm  
Shengliang Guan 已提交
948
void    tFreeSStatusRsp(SStatusRsp* pRsp);
S
Shengliang Guan 已提交
949 950

typedef struct {
S
Shengliang Guan 已提交
951 952 953 954 955
  int32_t reserved;
} SMTimerReq;

int32_t tSerializeSMTimerMsg(void* buf, int32_t bufLen, SMTimerReq* pReq);
int32_t tDeserializeSMTimerMsg(void* buf, int32_t bufLen, SMTimerReq* pReq);
S
Shengliang Guan 已提交
956

D
dapan1121 已提交
957
typedef struct {
S
Shengliang Guan 已提交
958 959 960
  int32_t  id;
  uint16_t port;                 // node sync Port
  char     fqdn[TSDB_FQDN_LEN];  // node FQDN
S
Shengliang Guan 已提交
961 962 963
} SReplica;

typedef struct {
S
Shengliang Guan 已提交
964
  int32_t  vgId;
S
Shengliang Guan 已提交
965
  int32_t  dnodeId;
966
  char     db[TSDB_DB_FNAME_LEN];
L
Liu Jicong 已提交
967
  int64_t  dbUid;
968
  int32_t  vgVersion;
L
Liu Jicong 已提交
969
  int32_t  numOfStables;
S
Shengliang Guan 已提交
970 971 972
  int32_t  buffer;
  int32_t  pageSize;
  int32_t  pages;
S
Shengliang Guan 已提交
973 974 975 976
  int32_t  daysPerFile;
  int32_t  daysToKeep0;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
Shengliang Guan 已提交
977 978
  int32_t  minRows;
  int32_t  maxRows;
S
Shengliang Guan 已提交
979
  int32_t  fsyncPeriod;
D
dapan1121 已提交
980 981
  uint32_t hashBegin;
  uint32_t hashEnd;
L
Liu Jicong 已提交
982
  int8_t   hashMethod;
S
Shengliang Guan 已提交
983
  int8_t   walLevel;
S
Shengliang Guan 已提交
984 985
  int8_t   precision;
  int8_t   compression;
S
Shengliang Guan 已提交
986
  int8_t   strict;
S
Shengliang Guan 已提交
987
  int8_t   cacheLastRow;
S
Shengliang Guan 已提交
988
  int8_t   replica;
S
Shengliang Guan 已提交
989 990
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
S
sma  
Shengliang Guan 已提交
991 992
  int32_t  numOfRetensions;
  SArray*  pRetensions;  // SRetention
S
Shengliang Guan 已提交
993
} SCreateVnodeReq;
D
dapan1121 已提交
994

S
Shengliang Guan 已提交
995 996
int32_t tSerializeSCreateVnodeReq(void* buf, int32_t bufLen, SCreateVnodeReq* pReq);
int32_t tDeserializeSCreateVnodeReq(void* buf, int32_t bufLen, SCreateVnodeReq* pReq);
S
sma  
Shengliang Guan 已提交
997
int32_t tFreeSCreateVnodeReq(SCreateVnodeReq* pReq);
S
Shengliang Guan 已提交
998

S
Shengliang Guan 已提交
999
typedef struct {
L
Liu Jicong 已提交
1000 1001 1002 1003
  int32_t vgId;
  int32_t dnodeId;
  int64_t dbUid;
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
1004
} SDropVnodeReq;
S
Shengliang Guan 已提交
1005

S
Shengliang Guan 已提交
1006 1007
int32_t tSerializeSDropVnodeReq(void* buf, int32_t bufLen, SDropVnodeReq* pReq);
int32_t tDeserializeSDropVnodeReq(void* buf, int32_t bufLen, SDropVnodeReq* pReq);
S
Shengliang Guan 已提交
1008

S
Shengliang Guan 已提交
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
typedef struct {
  int64_t dbUid;
  char    db[TSDB_DB_FNAME_LEN];
} SCompactVnodeReq;

int32_t tSerializeSCompactVnodeReq(void* buf, int32_t bufLen, SCompactVnodeReq* pReq);
int32_t tDeserializeSCompactVnodeReq(void* buf, int32_t bufLen, SCompactVnodeReq* pReq);

typedef struct {
  int32_t  vgVersion;
S
Shengliang Guan 已提交
1019 1020 1021
  int32_t  buffer;
  int32_t  pageSize;
  int32_t  pages;
S
Shengliang Guan 已提交
1022
  int32_t  daysPerFile;
S
Shengliang Guan 已提交
1023 1024 1025
  int32_t  daysToKeep0;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
Shengliang Guan 已提交
1026
  int32_t  fsyncPeriod;
S
Shengliang Guan 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
  int8_t   walLevel;
  int8_t   strict;
  int8_t   cacheLastRow;
  int8_t   replica;
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
} SAlterVnodeReq;

int32_t tSerializeSAlterVnodeReq(void* buf, int32_t bufLen, SAlterVnodeReq* pReq);
int32_t tDeserializeSAlterVnodeReq(void* buf, int32_t bufLen, SAlterVnodeReq* pReq);

D
dapan1121 已提交
1038
typedef struct {
D
dapan1121 已提交
1039
  SMsgHead header;
D
dapan1121 已提交
1040 1041
  char     dbFName[TSDB_DB_FNAME_LEN];
  char     tbName[TSDB_TABLE_NAME_LEN];
S
Shengliang Guan 已提交
1042
} STableInfoReq;
D
dapan1121 已提交
1043

S
Shengliang Guan 已提交
1044 1045 1046
int32_t tSerializeSTableInfoReq(void* buf, int32_t bufLen, STableInfoReq* pReq);
int32_t tDeserializeSTableInfoReq(void* buf, int32_t bufLen, STableInfoReq* pReq);

D
dapan1121 已提交
1047
typedef struct {
S
Shengliang Guan 已提交
1048
  int8_t  metaClone;  // create local clone of the cached table meta
D
dapan1121 已提交
1049 1050 1051 1052
  int32_t numOfVgroups;
  int32_t numOfTables;
  int32_t numOfUdfs;
  char    tableNames[];
S
Shengliang Guan 已提交
1053
} SMultiTableInfoReq;
D
dapan1121 已提交
1054

H
Haojun Liao 已提交
1055
// todo refactor
D
dapan1121 已提交
1056
typedef struct SVgroupInfo {
1057 1058 1059
  int32_t  vgId;
  uint32_t hashBegin;
  uint32_t hashEnd;
L
Liu Jicong 已提交
1060
  SEpSet   epSet;
L
Liu Jicong 已提交
1061 1062 1063 1064
  union {
    int32_t numOfTable;  // unit is TSDB_TABLE_NUM_UNIT
    int32_t taskId;      // used in stream
  };
D
dapan1121 已提交
1065 1066
} SVgroupInfo;

D
dapan1121 已提交
1067
typedef struct {
H
Haojun Liao 已提交
1068 1069
  int32_t     numOfVgroups;
  SVgroupInfo vgroups[];
S
Shengliang Guan 已提交
1070
} SVgroupsInfo;
D
dapan1121 已提交
1071

S
Shengliang Guan 已提交
1072
typedef struct {
D
dapan1121 已提交
1073 1074 1075
  char     tbName[TSDB_TABLE_NAME_LEN];
  char     stbName[TSDB_TABLE_NAME_LEN];
  char     dbFName[TSDB_DB_FNAME_LEN];
L
Liu Jicong 已提交
1076
  int64_t  dbId;
S
Shengliang Guan 已提交
1077 1078 1079 1080 1081 1082
  int32_t  numOfTags;
  int32_t  numOfColumns;
  int8_t   precision;
  int8_t   tableType;
  int32_t  sversion;
  int32_t  tversion;
L
Liu Jicong 已提交
1083 1084
  uint64_t suid;
  uint64_t tuid;
S
Shengliang Guan 已提交
1085
  int32_t  vgId;
S
Shengliang Guan 已提交
1086
  SSchema* pSchemas;
S
Shengliang Guan 已提交
1087
} STableMetaRsp;
D
dapan1121 已提交
1088

S
Shengliang Guan 已提交
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
int32_t tSerializeSTableMetaRsp(void* buf, int32_t bufLen, STableMetaRsp* pRsp);
int32_t tDeserializeSTableMetaRsp(void* buf, int32_t bufLen, STableMetaRsp* pRsp);
void    tFreeSTableMetaRsp(STableMetaRsp* pRsp);

typedef struct {
  SArray* pArray;  // Array of STableMetaRsp
} STableMetaBatchRsp;

int32_t tSerializeSTableMetaBatchRsp(void* buf, int32_t bufLen, STableMetaBatchRsp* pRsp);
int32_t tDeserializeSTableMetaBatchRsp(void* buf, int32_t bufLen, STableMetaBatchRsp* pRsp);
void    tFreeSTableMetaBatchRsp(STableMetaBatchRsp* pRsp);

S
Shengliang Guan 已提交
1101
typedef struct {
S
Shengliang Guan 已提交
1102 1103 1104 1105 1106 1107 1108 1109
  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 已提交
1110 1111 1112 1113 1114
} SMultiTableMeta;

typedef struct {
  int32_t dataLen;
  char    name[TSDB_TABLE_FNAME_LEN];
H
Hongze Cheng 已提交
1115
  char*   data;
D
dapan1121 已提交
1116 1117 1118 1119 1120 1121 1122 1123
} STagData;

/*
 * sql: show tables like '%a_%'
 * payload is the query condition, e.g., '%a_%'
 * payloadLen is the length of payload
 */
typedef struct {
L
Liu Jicong 已提交
1124
  int32_t type;
1125
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
1126 1127
  int32_t payloadLen;
  char*   payload;
S
Shengliang Guan 已提交
1128
} SShowReq;
D
dapan1121 已提交
1129

S
Shengliang Guan 已提交
1130 1131 1132 1133
int32_t tSerializeSShowReq(void* buf, int32_t bufLen, SShowReq* pReq);
int32_t tDeserializeSShowReq(void* buf, int32_t bufLen, SShowReq* pReq);
void    tFreeSShowReq(SShowReq* pReq);

S
Shengliang Guan 已提交
1134
typedef struct {
1135
  int64_t       showId;
S
Shengliang Guan 已提交
1136
  STableMetaRsp tableMeta;
S
Shengliang Guan 已提交
1137
} SShowRsp, SVShowTablesRsp;
D
dapan1121 已提交
1138

S
Shengliang Guan 已提交
1139 1140 1141
int32_t tSerializeSShowRsp(void* buf, int32_t bufLen, SShowRsp* pRsp);
int32_t tDeserializeSShowRsp(void* buf, int32_t bufLen, SShowRsp* pRsp);
void    tFreeSShowRsp(SShowRsp* pRsp);
D
dapan1121 已提交
1142

1143
typedef struct {
1144
  char    db[TSDB_DB_FNAME_LEN];
H
Haojun Liao 已提交
1145
  char    tb[TSDB_TABLE_NAME_LEN];
1146 1147 1148
  int64_t showId;
} SRetrieveTableReq;

1149 1150 1151 1152 1153 1154
typedef struct SSysTableSchema {
  int8_t   type;
  col_id_t colId;
  int32_t  bytes;
} SSysTableSchema;

1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
int32_t tSerializeSRetrieveTableReq(void* buf, int32_t bufLen, SRetrieveTableReq* pReq);
int32_t tDeserializeSRetrieveTableReq(void* buf, int32_t bufLen, SRetrieveTableReq* pReq);

typedef struct {
  int64_t useconds;
  int8_t  completed;  // all results are returned to client
  int8_t  precision;
  int8_t  compressed;
  int32_t compLen;
  int32_t numOfRows;
1165
  int32_t numOfCols;
1166 1167 1168
  char    data[];
} SRetrieveTableRsp;

H
Haojun Liao 已提交
1169
typedef struct {
L
Liu Jicong 已提交
1170 1171 1172 1173 1174 1175 1176 1177
  int64_t handle;
  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[];
H
Haojun Liao 已提交
1178 1179
} SRetrieveMetaTableRsp;

D
dapan1121 已提交
1180 1181 1182 1183
typedef struct SExplainExecInfo {
  uint64_t startupCost;
  uint64_t totalCost;
  uint64_t numOfRows;
dengyihao's avatar
dengyihao 已提交
1184
  void*    verboseInfo;
D
dapan1121 已提交
1185 1186
} SExplainExecInfo;

D
dapan1121 已提交
1187
typedef struct {
D
dapan1121 已提交
1188
  int32_t           numOfPlans;
dengyihao's avatar
dengyihao 已提交
1189
  SExplainExecInfo* subplanInfo;
D
dapan1121 已提交
1190 1191
} SExplainRsp;

D
dapan1121 已提交
1192 1193
int32_t tSerializeSExplainRsp(void* buf, int32_t bufLen, SExplainRsp* pRsp);
int32_t tDeserializeSExplainRsp(void* buf, int32_t bufLen, SExplainRsp* pRsp);
D
dapan1121 已提交
1194

D
dapan1121 已提交
1195
typedef struct {
S
Shengliang Guan 已提交
1196
  char    fqdn[TSDB_FQDN_LEN];  // end point, hostname:port
1197
  int32_t port;
S
Shengliang Guan 已提交
1198
} SCreateDnodeReq;
S
Shengliang Guan 已提交
1199

S
Shengliang Guan 已提交
1200 1201 1202
int32_t tSerializeSCreateDnodeReq(void* buf, int32_t bufLen, SCreateDnodeReq* pReq);
int32_t tDeserializeSCreateDnodeReq(void* buf, int32_t bufLen, SCreateDnodeReq* pReq);

S
Shengliang Guan 已提交
1203 1204
typedef struct {
  int32_t dnodeId;
1205 1206
  char    fqdn[TSDB_FQDN_LEN];
  int32_t port;
S
Shengliang Guan 已提交
1207
} SDropDnodeReq;
S
Shengliang Guan 已提交
1208

S
Shengliang Guan 已提交
1209 1210 1211
int32_t tSerializeSDropDnodeReq(void* buf, int32_t bufLen, SDropDnodeReq* pReq);
int32_t tDeserializeSDropDnodeReq(void* buf, int32_t bufLen, SDropDnodeReq* pReq);

S
Shengliang Guan 已提交
1212 1213
typedef struct {
  int32_t dnodeId;
1214
  char    config[TSDB_DNODE_CONFIG_LEN];
S
Shengliang Guan 已提交
1215
  char    value[TSDB_DNODE_VALUE_LEN];
S
Shengliang Guan 已提交
1216
} SMCfgDnodeReq, SDCfgDnodeReq;
D
dapan1121 已提交
1217

S
Shengliang Guan 已提交
1218 1219 1220
int32_t tSerializeSMCfgDnodeReq(void* buf, int32_t bufLen, SMCfgDnodeReq* pReq);
int32_t tDeserializeSMCfgDnodeReq(void* buf, int32_t bufLen, SMCfgDnodeReq* pReq);

S
Shengliang Guan 已提交
1221 1222
typedef struct {
  int32_t dnodeId;
dengyihao's avatar
dengyihao 已提交
1223 1224 1225
} SMCreateMnodeReq, SMDropMnodeReq, SDDropMnodeReq, SMCreateQnodeReq, SMDropQnodeReq, SDCreateQnodeReq, SDDropQnodeReq,
    SMCreateSnodeReq, SMDropSnodeReq, SDCreateSnodeReq, SDDropSnodeReq, SMCreateBnodeReq, SMDropBnodeReq,
    SDCreateBnodeReq, SDDropBnodeReq;
S
Shengliang Guan 已提交
1226

1227 1228
int32_t tSerializeSCreateDropMQSBNodeReq(void* buf, int32_t bufLen, SMCreateQnodeReq* pReq);
int32_t tDeserializeSCreateDropMQSBNodeReq(void* buf, int32_t bufLen, SMCreateQnodeReq* pReq);
S
Shengliang Guan 已提交
1229

D
dapan1121 已提交
1230
typedef struct {
S
Shengliang Guan 已提交
1231 1232
  int32_t  dnodeId;
  int8_t   replica;
S
Shengliang Guan 已提交
1233
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
1234
} SDCreateMnodeReq, SDAlterMnodeReq;
D
dapan1121 已提交
1235

S
Shengliang Guan 已提交
1236 1237 1238
int32_t tSerializeSDCreateMnodeReq(void* buf, int32_t bufLen, SDCreateMnodeReq* pReq);
int32_t tDeserializeSDCreateMnodeReq(void* buf, int32_t bufLen, SDCreateMnodeReq* pReq);

S
Shengliang Guan 已提交
1239 1240 1241
typedef struct {
  int32_t connId;
  int32_t queryId;
S
Shengliang Guan 已提交
1242
} SKillQueryReq;
S
Shengliang Guan 已提交
1243

S
Shengliang Guan 已提交
1244 1245 1246
int32_t tSerializeSKillQueryReq(void* buf, int32_t bufLen, SKillQueryReq* pReq);
int32_t tDeserializeSKillQueryReq(void* buf, int32_t bufLen, SKillQueryReq* pReq);

S
Shengliang Guan 已提交
1247 1248
typedef struct {
  int32_t connId;
S
Shengliang Guan 已提交
1249
} SKillConnReq;
D
dapan1121 已提交
1250

S
Shengliang Guan 已提交
1251 1252 1253
int32_t tSerializeSKillConnReq(void* buf, int32_t bufLen, SKillConnReq* pReq);
int32_t tDeserializeSKillConnReq(void* buf, int32_t bufLen, SKillConnReq* pReq);

S
Shengliang Guan 已提交
1254 1255 1256 1257 1258 1259 1260
typedef struct {
  int32_t transId;
} SKillTransReq;

int32_t tSerializeSKillTransReq(void* buf, int32_t bufLen, SKillTransReq* pReq);
int32_t tDeserializeSKillTransReq(void* buf, int32_t bufLen, SKillTransReq* pReq);

D
dapan1121 已提交
1261 1262 1263 1264
typedef struct {
  char user[TSDB_USER_LEN];
  char spi;
  char encrypt;
1265 1266
  char secret[TSDB_PASSWORD_LEN];
  char ckey[TSDB_PASSWORD_LEN];
S
Shengliang Guan 已提交
1267
} SAuthReq, SAuthRsp;
D
dapan1121 已提交
1268

S
Shengliang Guan 已提交
1269 1270 1271
int32_t tSerializeSAuthReq(void* buf, int32_t bufLen, SAuthReq* pReq);
int32_t tDeserializeSAuthReq(void* buf, int32_t bufLen, SAuthReq* pReq);

D
dapan1121 已提交
1272
typedef struct {
S
Shengliang Guan 已提交
1273
  int32_t statusCode;
S
Shengliang Guan 已提交
1274
  char    details[1024];
S
Shengliang Guan 已提交
1275 1276 1277 1278
} SServerStatusRsp;

int32_t tSerializeSServerStatusRsp(void* buf, int32_t bufLen, SServerStatusRsp* pRsp);
int32_t tDeserializeSServerStatusRsp(void* buf, int32_t bufLen, SServerStatusRsp* pRsp);
D
dapan1121 已提交
1279

1280 1281 1282 1283 1284 1285 1286
/**
 * 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 已提交
1287
typedef struct SSubQueryMsg {
D
dapan1121 已提交
1288
  SMsgHead header;
D
dapan1121 已提交
1289
  uint64_t sId;
H
Hongze Cheng 已提交
1290 1291
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1292
  int64_t  refId;
D
dapan1121 已提交
1293
  int8_t   taskType;
D
dapan1121 已提交
1294
  int8_t   explain;
1295
  uint32_t sqlLen;  // the query sql,
1296
  uint32_t phyLen;
H
Hongze Cheng 已提交
1297
  char     msg[];
D
dapan1121 已提交
1298
} SSubQueryMsg;
D
dapan 已提交
1299

1300 1301 1302 1303 1304 1305 1306
typedef struct {
  SMsgHead header;
  uint64_t sId;
  uint64_t queryId;
  uint64_t taskId;
} SSinkDataReq;

D
dapan1121 已提交
1307 1308 1309 1310 1311 1312 1313
typedef struct {
  SMsgHead header;
  uint64_t sId;
  uint64_t queryId;
  uint64_t taskId;
} SQueryContinueReq;

S
Shengliang Guan 已提交
1314
typedef struct {
D
dapan1121 已提交
1315
  SMsgHead header;
D
dapan1121 已提交
1316
  uint64_t sId;
H
Hongze Cheng 已提交
1317 1318
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
1319
} SResReadyReq;
D
dapan 已提交
1320

S
Shengliang Guan 已提交
1321
typedef struct {
D
dapan1121 已提交
1322 1323 1324
  int32_t code;
} SResReadyRsp;

S
Shengliang Guan 已提交
1325
typedef struct {
D
dapan1121 已提交
1326
  SMsgHead header;
D
dapan1121 已提交
1327
  uint64_t sId;
H
Hongze Cheng 已提交
1328 1329
  uint64_t queryId;
  uint64_t taskId;
S
Shengliang Guan 已提交
1330
} SResFetchReq;
D
dapan 已提交
1331

S
Shengliang Guan 已提交
1332
typedef struct {
D
dapan1121 已提交
1333
  SMsgHead header;
D
dapan1121 已提交
1334
  uint64_t sId;
S
Shengliang Guan 已提交
1335
} SSchTasksStatusReq;
D
dapan1121 已提交
1336

S
Shengliang Guan 已提交
1337
typedef struct {
H
Hongze Cheng 已提交
1338 1339
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1340
  int64_t  refId;
H
Hongze Cheng 已提交
1341
  int8_t   status;
D
dapan1121 已提交
1342 1343
} STaskStatus;

S
Shengliang Guan 已提交
1344
typedef struct {
L
Liu Jicong 已提交
1345 1346
  int64_t refId;
  SArray* taskStatus;  // SArray<STaskStatus>
D
dapan1121 已提交
1347 1348
} SSchedulerStatusRsp;

D
dapan1121 已提交
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
typedef struct {
  uint64_t queryId;
  uint64_t taskId;
  int8_t   action;
} STaskAction;

typedef struct SQueryNodeEpId {
  int32_t nodeId;  // vgId or qnodeId
  SEp     ep;
} SQueryNodeEpId;

typedef struct {
  SMsgHead       header;
  uint64_t       sId;
  SQueryNodeEpId epId;
L
Liu Jicong 已提交
1364
  SArray*        taskAction;  // SArray<STaskAction>
D
dapan1121 已提交
1365 1366
} SSchedulerHbReq;

L
Liu Jicong 已提交
1367 1368 1369
int32_t tSerializeSSchedulerHbReq(void* buf, int32_t bufLen, SSchedulerHbReq* pReq);
int32_t tDeserializeSSchedulerHbReq(void* buf, int32_t bufLen, SSchedulerHbReq* pReq);
void    tFreeSSchedulerHbReq(SSchedulerHbReq* pReq);
D
dapan1121 已提交
1370 1371 1372

typedef struct {
  SQueryNodeEpId epId;
L
Liu Jicong 已提交
1373
  SArray*        taskStatus;  // SArray<STaskStatus>
D
dapan1121 已提交
1374 1375
} SSchedulerHbRsp;

L
Liu Jicong 已提交
1376 1377 1378
int32_t tSerializeSSchedulerHbRsp(void* buf, int32_t bufLen, SSchedulerHbRsp* pRsp);
int32_t tDeserializeSSchedulerHbRsp(void* buf, int32_t bufLen, SSchedulerHbRsp* pRsp);
void    tFreeSSchedulerHbRsp(SSchedulerHbRsp* pRsp);
D
dapan1121 已提交
1379

S
Shengliang Guan 已提交
1380
typedef struct {
D
dapan1121 已提交
1381
  SMsgHead header;
D
dapan1121 已提交
1382
  uint64_t sId;
H
Hongze Cheng 已提交
1383 1384
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1385
  int64_t  refId;
S
Shengliang Guan 已提交
1386
} STaskCancelReq;
D
dapan1121 已提交
1387

S
Shengliang Guan 已提交
1388
typedef struct {
D
dapan1121 已提交
1389 1390 1391
  int32_t code;
} STaskCancelRsp;

S
Shengliang Guan 已提交
1392
typedef struct {
D
dapan1121 已提交
1393
  SMsgHead header;
D
dapan1121 已提交
1394
  uint64_t sId;
H
Hongze Cheng 已提交
1395 1396
  uint64_t queryId;
  uint64_t taskId;
D
dapan1121 已提交
1397
  int64_t  refId;
S
Shengliang Guan 已提交
1398
} STaskDropReq;
D
dapan1121 已提交
1399

S
Shengliang Guan 已提交
1400
typedef struct {
D
dapan1121 已提交
1401 1402 1403
  int32_t code;
} STaskDropRsp;

X
Xiaoyu Wang 已提交
1404 1405 1406
#define STREAM_TRIGGER_AT_ONCE      1
#define STREAM_TRIGGER_WINDOW_CLOSE 2

L
Liu Jicong 已提交
1407
typedef struct {
L
Liu Jicong 已提交
1408 1409 1410
  char    name[TSDB_TABLE_FNAME_LEN];
  char    sourceDB[TSDB_DB_FNAME_LEN];
  char    targetStbFullName[TSDB_TABLE_FNAME_LEN];
1411 1412 1413 1414
  int8_t  igExists;
  char*   sql;
  char*   ast;
  int8_t  triggerType;
X
Xiaoyu Wang 已提交
1415
  int64_t watermark;
L
Liu Jicong 已提交
1416
} SCMCreateStreamReq;
L
Liu Jicong 已提交
1417

L
Liu Jicong 已提交
1418 1419 1420 1421 1422 1423 1424 1425
typedef struct {
  int64_t streamId;
} SCMCreateStreamRsp;

int32_t tSerializeSCMCreateStreamReq(void* buf, int32_t bufLen, const SCMCreateStreamReq* pReq);
int32_t tDeserializeSCMCreateStreamReq(void* buf, int32_t bufLen, SCMCreateStreamReq* pReq);
void    tFreeSCMCreateStreamReq(SCMCreateStreamReq* pReq);

L
Liu Jicong 已提交
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
typedef struct {
  char    name[TSDB_TOPIC_FNAME_LEN];
  int64_t streamId;
  char*   sql;
  char*   executorMsg;
} SMVCreateStreamReq, SMSCreateStreamReq;

typedef struct {
  int64_t streamId;
} SMVCreateStreamRsp, SMSCreateStreamRsp;

L
Liu Jicong 已提交
1437
typedef struct {
L
Liu Jicong 已提交
1438 1439 1440 1441 1442 1443 1444 1445
  char   name[TSDB_TOPIC_FNAME_LEN];  // accout.topic
  int8_t igExists;
  int8_t withTbName;
  int8_t withSchema;
  int8_t withTag;
  char*  sql;
  char*  ast;
  char   subscribeDbName[TSDB_DB_NAME_LEN];
L
Liu Jicong 已提交
1446 1447 1448 1449 1450
} SCMCreateTopicReq;

int32_t tSerializeSCMCreateTopicReq(void* buf, int32_t bufLen, const SCMCreateTopicReq* pReq);
int32_t tDeserializeSCMCreateTopicReq(void* buf, int32_t bufLen, SCMCreateTopicReq* pReq);
void    tFreeSCMCreateTopicReq(SCMCreateTopicReq* pReq);
L
Liu Jicong 已提交
1451 1452 1453

typedef struct {
  int64_t topicId;
L
Liu Jicong 已提交
1454
} SCMCreateTopicRsp;
L
Liu Jicong 已提交
1455

L
Liu Jicong 已提交
1456 1457
int32_t tSerializeSCMCreateTopicRsp(void* buf, int32_t bufLen, const SCMCreateTopicRsp* pRsp);
int32_t tDeserializeSCMCreateTopicRsp(void* buf, int32_t bufLen, SCMCreateTopicRsp* pRsp);
L
Liu Jicong 已提交
1458

1459 1460
typedef struct {
  int64_t consumerId;
L
Liu Jicong 已提交
1461
} SMqConsumerLostMsg, SMqConsumerRecoverMsg;
1462

L
Liu Jicong 已提交
1463 1464
typedef struct {
  int64_t consumerId;
1465
  char    cgroup[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
1466
  SArray* topicNames;  // SArray<char**>
L
Liu Jicong 已提交
1467 1468
} SCMSubscribeReq;

S
Shengliang Guan 已提交
1469 1470
static FORCE_INLINE int32_t tSerializeSCMSubscribeReq(void** buf, const SCMSubscribeReq* pReq) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
1471
  tlen += taosEncodeFixedI64(buf, pReq->consumerId);
1472
  tlen += taosEncodeString(buf, pReq->cgroup);
L
Liu Jicong 已提交
1473

L
Liu Jicong 已提交
1474 1475 1476 1477
  int32_t topicNum = taosArrayGetSize(pReq->topicNames);
  tlen += taosEncodeFixedI32(buf, topicNum);

  for (int32_t i = 0; i < topicNum; i++) {
L
Liu Jicong 已提交
1478
    tlen += taosEncodeString(buf, (char*)taosArrayGetP(pReq->topicNames, i));
L
Liu Jicong 已提交
1479
  }
L
Liu Jicong 已提交
1480 1481 1482 1483 1484
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeReq(void* buf, SCMSubscribeReq* pReq) {
  buf = taosDecodeFixedI64(buf, &pReq->consumerId);
1485
  buf = taosDecodeStringTo(buf, pReq->cgroup);
L
Liu Jicong 已提交
1486 1487 1488 1489 1490 1491

  int32_t topicNum;
  buf = taosDecodeFixedI32(buf, &topicNum);

  pReq->topicNames = taosArrayInit(topicNum, sizeof(void*));
  for (int32_t i = 0; i < topicNum; i++) {
L
Liu Jicong 已提交
1492
    char* name;
L
Liu Jicong 已提交
1493 1494
    buf = taosDecodeString(buf, &name);
    taosArrayPush(pReq->topicNames, &name);
L
Liu Jicong 已提交
1495
  }
L
Liu Jicong 已提交
1496 1497 1498
  return buf;
}

L
Liu Jicong 已提交
1499
typedef struct SMqSubTopic {
L
Liu Jicong 已提交
1500
  int32_t vgId;
L
Liu Jicong 已提交
1501 1502 1503 1504 1505
  int64_t topicId;
  SEpSet  epSet;
} SMqSubTopic;

typedef struct {
L
Liu Jicong 已提交
1506
  int32_t     topicNum;
L
Liu Jicong 已提交
1507
  SMqSubTopic topics[];
L
Liu Jicong 已提交
1508 1509
} SCMSubscribeRsp;

S
Shengliang Guan 已提交
1510 1511
static FORCE_INLINE int32_t tSerializeSCMSubscribeRsp(void** buf, const SCMSubscribeRsp* pRsp) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
1512
  tlen += taosEncodeFixedI32(buf, pRsp->topicNum);
S
Shengliang Guan 已提交
1513
  for (int32_t i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1514 1515 1516 1517
    tlen += taosEncodeFixedI32(buf, pRsp->topics[i].vgId);
    tlen += taosEncodeFixedI64(buf, pRsp->topics[i].topicId);
    tlen += taosEncodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1518 1519 1520 1521
  return tlen;
}

static FORCE_INLINE void* tDeserializeSCMSubscribeRsp(void* buf, SCMSubscribeRsp* pRsp) {
L
Liu Jicong 已提交
1522
  buf = taosDecodeFixedI32(buf, &pRsp->topicNum);
S
Shengliang Guan 已提交
1523
  for (int32_t i = 0; i < pRsp->topicNum; i++) {
L
Liu Jicong 已提交
1524 1525 1526 1527
    buf = taosDecodeFixedI32(buf, &pRsp->topics[i].vgId);
    buf = taosDecodeFixedI64(buf, &pRsp->topics[i].topicId);
    buf = taosDecodeSEpSet(buf, &pRsp->topics[i].epSet);
  }
L
Liu Jicong 已提交
1528 1529 1530 1531 1532 1533 1534 1535
  return buf;
}

typedef struct {
  int64_t topicId;
  int64_t consumerId;
  int64_t consumerGroupId;
  int64_t offset;
L
Liu Jicong 已提交
1536 1537 1538
  char*   sql;
  char*   logicalPlan;
  char*   physicalPlan;
L
Liu Jicong 已提交
1539 1540
} SMVSubscribeReq;

S
Shengliang Guan 已提交
1541 1542
static FORCE_INLINE int32_t tSerializeSMVSubscribeReq(void** buf, SMVSubscribeReq* pReq) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563
  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 已提交
1564
typedef struct {
1565 1566 1567 1568
  char    key[TSDB_SUBSCRIBE_KEY_LEN];
  SArray* lostConsumers;     // SArray<int64_t>
  SArray* removedConsumers;  // SArray<int64_t>
  SArray* newConsumers;      // SArray<int64_t>
L
Liu Jicong 已提交
1569
} SMqRebInfo;
L
Liu Jicong 已提交
1570

L
Liu Jicong 已提交
1571 1572 1573
static FORCE_INLINE SMqRebInfo* tNewSMqRebSubscribe(const char* key) {
  SMqRebInfo* pRebInfo = (SMqRebInfo*)taosMemoryCalloc(1, sizeof(SMqRebInfo));
  if (pRebInfo == NULL) {
L
Liu Jicong 已提交
1574
    return NULL;
L
Liu Jicong 已提交
1575
  }
L
Liu Jicong 已提交
1576 1577 1578
  strcpy(pRebInfo->key, key);
  pRebInfo->lostConsumers = taosArrayInit(0, sizeof(int64_t));
  if (pRebInfo->lostConsumers == NULL) {
L
Liu Jicong 已提交
1579 1580
    goto _err;
  }
L
Liu Jicong 已提交
1581 1582
  pRebInfo->removedConsumers = taosArrayInit(0, sizeof(int64_t));
  if (pRebInfo->removedConsumers == NULL) {
L
Liu Jicong 已提交
1583 1584
    goto _err;
  }
L
Liu Jicong 已提交
1585 1586
  pRebInfo->newConsumers = taosArrayInit(0, sizeof(int64_t));
  if (pRebInfo->newConsumers == NULL) {
L
Liu Jicong 已提交
1587 1588
    goto _err;
  }
L
Liu Jicong 已提交
1589
  return pRebInfo;
L
Liu Jicong 已提交
1590
_err:
L
Liu Jicong 已提交
1591 1592 1593 1594
  taosArrayDestroy(pRebInfo->lostConsumers);
  taosArrayDestroy(pRebInfo->removedConsumers);
  taosArrayDestroy(pRebInfo->newConsumers);
  taosMemoryFreeClear(pRebInfo);
L
Liu Jicong 已提交
1595 1596 1597
  return NULL;
}

L
Liu Jicong 已提交
1598
// this message is sent from mnode to mnode(read thread to write thread), so there is no need for serialization or
1599
// deserialization
L
Liu Jicong 已提交
1600
typedef struct {
1601
  SHashObj* rebSubHash;  // SHashObj<key, SMqRebSubscribe>
L
Liu Jicong 已提交
1602 1603
} SMqDoRebalanceMsg;

L
Liu Jicong 已提交
1604
typedef struct {
L
Liu Jicong 已提交
1605
  int64_t status;
L
Liu Jicong 已提交
1606 1607
} SMVSubscribeRsp;

L
Liu Jicong 已提交
1608
typedef struct {
1609
  char   name[TSDB_TOPIC_FNAME_LEN];
L
Liu Jicong 已提交
1610
  int8_t igNotExists;
S
Shengliang Guan 已提交
1611 1612
} SMDropTopicReq;

S
Shengliang Guan 已提交
1613
int32_t tSerializeSMDropTopicReq(void* buf, int32_t bufLen, SMDropTopicReq* pReq);
S
Shengliang Guan 已提交
1614
int32_t tDeserializeSMDropTopicReq(void* buf, int32_t bufLen, SMDropTopicReq* pReq);
L
Liu Jicong 已提交
1615 1616 1617 1618 1619

typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  alterType;
  SSchema schema;
S
Shengliang Guan 已提交
1620
} SAlterTopicReq;
L
Liu Jicong 已提交
1621 1622 1623 1624

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
L
Liu Jicong 已提交
1625
  int64_t  tuid;
L
Liu Jicong 已提交
1626 1627 1628 1629 1630
  int32_t  sverson;
  int32_t  execLen;
  char*    executor;
  int32_t  sqlLen;
  char*    sql;
S
Shengliang Guan 已提交
1631
} SDCreateTopicReq;
L
Liu Jicong 已提交
1632 1633 1634 1635

typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
L
Liu Jicong 已提交
1636
  int64_t  tuid;
S
Shengliang Guan 已提交
1637
} SDDropTopicReq;
S
Shengliang Guan 已提交
1638

C
Cary Xu 已提交
1639
typedef struct {
1640 1641 1642 1643 1644 1645
  float   xFilesFactor;
  int32_t delay;
  int32_t qmsg1Len;
  int32_t qmsg2Len;
  char*   qmsg1;  // pAst1:qmsg1:SRetention1 => trigger aggr task1
  char*   qmsg2;  // pAst2:qmsg2:SRetention2 => trigger aggr task2
C
Cary Xu 已提交
1646 1647
} SRSmaParam;

H
Hongze Cheng 已提交
1648 1649
int32_t tEncodeSRSmaParam(SEncoder* pCoder, const SRSmaParam* pRSmaParam);
int32_t tDecodeSRSmaParam(SDecoder* pCoder, SRSmaParam* pRSmaParam);
H
Hongze Cheng 已提交
1650

H
Hongze Cheng 已提交
1651
// TDMT_VND_CREATE_STB ==============
H
Hongze Cheng 已提交
1652
typedef struct SVCreateStbReq {
H
Hongze Cheng 已提交
1653 1654 1655 1656 1657 1658
  const char*    name;
  tb_uid_t       suid;
  int8_t         rollup;
  SSchemaWrapper schema;
  SSchemaWrapper schemaTag;
  SRSmaParam     pRSmaParam;
H
Hongze Cheng 已提交
1659 1660
} SVCreateStbReq;

H
Hongze Cheng 已提交
1661 1662
int tEncodeSVCreateStbReq(SEncoder* pCoder, const SVCreateStbReq* pReq);
int tDecodeSVCreateStbReq(SDecoder* pCoder, SVCreateStbReq* pReq);
H
Hongze Cheng 已提交
1663

H
Hongze Cheng 已提交
1664
// TDMT_VND_DROP_STB ==============
H
Hongze Cheng 已提交
1665
typedef struct SVDropStbReq {
H
Hongze Cheng 已提交
1666 1667
  const char* name;
  tb_uid_t    suid;
H
Hongze Cheng 已提交
1668 1669
} SVDropStbReq;

H
Hongze Cheng 已提交
1670 1671
int32_t tEncodeSVDropStbReq(SEncoder* pCoder, const SVDropStbReq* pReq);
int32_t tDecodeSVDropStbReq(SDecoder* pCoder, SVDropStbReq* pReq);
H
Hongze Cheng 已提交
1672

H
Hongze Cheng 已提交
1673
#define TD_CREATE_IF_NOT_EXISTS 0x1
H
more  
Hongze Cheng 已提交
1674
typedef struct SVCreateTbReq {
H
Hongze Cheng 已提交
1675
  int32_t     flags;
H
Hongze Cheng 已提交
1676 1677 1678 1679 1680
  tb_uid_t    uid;
  int64_t     ctime;
  const char* name;
  int32_t     ttl;
  int8_t      type;
C
Cary Xu 已提交
1681 1682
  union {
    struct {
H
Hongze Cheng 已提交
1683 1684
      tb_uid_t       suid;
      const uint8_t* pTag;
H
Hongze Cheng 已提交
1685
    } ctb;
H
more  
Hongze Cheng 已提交
1686
    struct {
H
Hongze Cheng 已提交
1687
      SSchemaWrapper schema;
H
Hongze Cheng 已提交
1688
    } ntb;
H
more  
Hongze Cheng 已提交
1689
  };
H
Hongze Cheng 已提交
1690
} SVCreateTbReq;
H
Hongze Cheng 已提交
1691

H
Hongze Cheng 已提交
1692 1693
int tEncodeSVCreateTbReq(SEncoder* pCoder, const SVCreateTbReq* pReq);
int tDecodeSVCreateTbReq(SDecoder* pCoder, SVCreateTbReq* pReq);
H
Hongze Cheng 已提交
1694

H
more  
Hongze Cheng 已提交
1695
typedef struct {
H
Hongze Cheng 已提交
1696 1697 1698 1699 1700
  int32_t nReqs;
  union {
    SVCreateTbReq* pReqs;
    SArray*        pArray;
  };
H
more  
Hongze Cheng 已提交
1701
} SVCreateTbBatchReq;
H
more  
Hongze Cheng 已提交
1702

H
Hongze Cheng 已提交
1703 1704
int tEncodeSVCreateTbBatchReq(SEncoder* pCoder, const SVCreateTbBatchReq* pReq);
int tDecodeSVCreateTbBatchReq(SDecoder* pCoder, SVCreateTbBatchReq* pReq);
H
more  
Hongze Cheng 已提交
1705

H
more  
Hongze Cheng 已提交
1706
typedef struct {
D
dapan1121 已提交
1707
  int32_t code;
S
Shengliang Guan 已提交
1708
} SVCreateTbRsp, SVUpdateTbRsp;
H
more  
Hongze Cheng 已提交
1709

H
Hongze Cheng 已提交
1710 1711
int tEncodeSVCreateTbRsp(SEncoder* pCoder, const SVCreateTbRsp* pRsp);
int tDecodeSVCreateTbRsp(SDecoder* pCoder, SVCreateTbRsp* pRsp);
H
Hongze Cheng 已提交
1712

S
Shengliang Guan 已提交
1713 1714
int32_t tSerializeSVCreateTbReq(void** buf, SVCreateTbReq* pReq);
void*   tDeserializeSVCreateTbReq(void* buf, SVCreateTbReq* pReq);
H
more  
Hongze Cheng 已提交
1715

H
more  
Hongze Cheng 已提交
1716
typedef struct {
H
Hongze Cheng 已提交
1717 1718 1719 1720 1721
  int32_t nRsps;
  union {
    SVCreateTbRsp* pRsps;
    SArray*        pArray;
  };
S
Shengliang Guan 已提交
1722
} SVCreateTbBatchRsp;
H
more  
Hongze Cheng 已提交
1723

H
Hongze Cheng 已提交
1724 1725
int tEncodeSVCreateTbBatchRsp(SEncoder* pCoder, const SVCreateTbBatchRsp* pRsp);
int tDecodeSVCreateTbBatchRsp(SDecoder* pCoder, SVCreateTbBatchRsp* pRsp);
H
Hongze Cheng 已提交
1726

L
Liu Jicong 已提交
1727 1728
int32_t tSerializeSVCreateTbBatchRsp(void* buf, int32_t bufLen, SVCreateTbBatchRsp* pRsp);
int32_t tDeserializeSVCreateTbBatchRsp(void* buf, int32_t bufLen, SVCreateTbBatchRsp* pRsp);
S
Shengliang Guan 已提交
1729

H
Hongze Cheng 已提交
1730
// TDMT_VND_DROP_TABLE =================
S
Shengliang Guan 已提交
1731
typedef struct {
H
Hongze Cheng 已提交
1732
  const char* name;
X
Xiaoyu Wang 已提交
1733
  int8_t      igNotExists;
S
Shengliang Guan 已提交
1734 1735 1736
} SVDropTbReq;

typedef struct {
H
Hongze Cheng 已提交
1737
  int32_t code;
S
Shengliang Guan 已提交
1738 1739
} SVDropTbRsp;

H
Hongze Cheng 已提交
1740 1741 1742 1743 1744 1745 1746 1747
typedef struct {
  int32_t nReqs;
  union {
    SVDropTbReq* pReqs;
    SArray*      pArray;
  };
} SVDropTbBatchReq;

H
Hongze Cheng 已提交
1748 1749
int32_t tEncodeSVDropTbBatchReq(SEncoder* pCoder, const SVDropTbBatchReq* pReq);
int32_t tDecodeSVDropTbBatchReq(SDecoder* pCoder, SVDropTbBatchReq* pReq);
H
Hongze Cheng 已提交
1750 1751 1752 1753 1754 1755 1756 1757 1758

typedef struct {
  int32_t nRsps;
  union {
    SVDropTbRsp* pRsps;
    SArray*      pArray;
  };
} SVDropTbBatchRsp;

H
Hongze Cheng 已提交
1759 1760
int32_t tEncodeSVDropTbBatchRsp(SEncoder* pCoder, const SVDropTbBatchRsp* pRsp);
int32_t tDecodeSVDropTbBatchRsp(SDecoder* pCoder, SVDropTbBatchRsp* pRsp);
S
Shengliang Guan 已提交
1761

S
Shengliang Guan 已提交
1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
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 已提交
1781 1782 1783
  SMsgHead head;
} SVShowTablesReq;

S
Shengliang Guan 已提交
1784
typedef struct {
H
Hongze Cheng 已提交
1785
  SMsgHead head;
H
Haojun Liao 已提交
1786
  int32_t  id;
H
Hongze Cheng 已提交
1787 1788
} SVShowTablesFetchReq;

S
Shengliang Guan 已提交
1789
typedef struct {
H
Hongze Cheng 已提交
1790 1791 1792 1793 1794 1795 1796 1797 1798
  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 已提交
1799
typedef struct {
L
Liu Jicong 已提交
1800 1801
  int64_t consumerId;
  int32_t epoch;
L
Liu Jicong 已提交
1802
  char    cgroup[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
1803
} SMqAskEpReq;
L
Liu Jicong 已提交
1804 1805

typedef struct {
D
dapan1121 已提交
1806
  int32_t key;
L
Liu Jicong 已提交
1807 1808 1809 1810 1811
  int32_t valueLen;
  void*   value;
} SKv;

typedef struct {
D
dapan1121 已提交
1812
  int64_t tscRid;
D
dapan1121 已提交
1813
  int8_t  connType;
L
Liu Jicong 已提交
1814 1815 1816
} SClientHbKey;

typedef struct {
D
dapan1121 已提交
1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829
  int64_t tid;
  int32_t status;
} SQuerySubDesc;

typedef struct {
  char     sql[TSDB_SHOW_SQL_LEN];
  uint64_t queryId;
  int64_t  useconds;
  int64_t  stime;
  int64_t  reqRid;
  int32_t  pid;
  char     fqdn[TSDB_FQDN_LEN];
  int32_t  subPlanNum;
1830
  SArray*  subDesc;  // SArray<SQuerySubDesc>
D
dapan1121 已提交
1831 1832 1833
} SQueryDesc;

typedef struct {
1834 1835 1836 1837
  uint32_t connId;
  int32_t  pid;
  char     app[TSDB_APP_NAME_LEN];
  SArray*  queryDesc;  // SArray<SQueryDesc>
D
dapan1121 已提交
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
} SQueryHbReqBasic;

typedef struct {
  uint32_t connId;
  uint64_t killRid;
  int32_t  totalDnodes;
  int32_t  onlineDnodes;
  int8_t   killConnection;
  int8_t   align[3];
  SEpSet   epSet;
} SQueryHbRspBasic;

typedef struct {
  SClientHbKey      connKey;
  SQueryHbReqBasic* query;
  SHashObj*         info;  // hash<Skv.key, Skv>
L
Liu Jicong 已提交
1854 1855 1856 1857 1858 1859 1860 1861
} SClientHbReq;

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

typedef struct {
D
dapan1121 已提交
1862 1863 1864 1865
  SClientHbKey      connKey;
  int32_t           status;
  SQueryHbRspBasic* query;
  SArray*           info;  // Array<Skv>
L
Liu Jicong 已提交
1866 1867 1868 1869 1870 1871 1872 1873
} SClientHbRsp;

typedef struct {
  int64_t reqId;
  int64_t rspId;
  SArray* rsps;  // SArray<SClientHbRsp>
} SClientHbBatchRsp;

1874
static FORCE_INLINE uint32_t hbKeyHashFunc(const char* key, uint32_t keyLen) { return taosIntHash_64(key, keyLen); }
L
Liu Jicong 已提交
1875

1876 1877
static FORCE_INLINE void tFreeReqKvHash(SHashObj* info) {
  void* pIter = taosHashIterate(info, NULL);
D
dapan1121 已提交
1878 1879
  while (pIter != NULL) {
    SKv* kv = (SKv*)pIter;
wafwerar's avatar
wafwerar 已提交
1880
    taosMemoryFreeClear(kv->value);
D
dapan1121 已提交
1881 1882 1883 1884
    pIter = taosHashIterate(info, pIter);
  }
}

D
dapan1121 已提交
1885 1886 1887 1888 1889 1890 1891 1892
static FORCE_INLINE void tFreeClientHbQueryDesc(void* pDesc) {
  SQueryDesc* desc = (SQueryDesc*)pDesc;
  if (desc->subDesc) {
    taosArrayDestroy(desc->subDesc);
    desc->subDesc = NULL;
  }
}

1893
static FORCE_INLINE void tFreeClientHbReq(void* pReq) {
L
Liu Jicong 已提交
1894
  SClientHbReq* req = (SClientHbReq*)pReq;
D
dapan1121 已提交
1895 1896 1897 1898 1899 1900
  if (req->query) {
    if (req->query->queryDesc) {
      taosArrayDestroyEx(req->query->queryDesc, tFreeClientHbQueryDesc);
    }
    taosMemoryFreeClear(req->query);
  }
1901

D
dapan1121 已提交
1902 1903 1904 1905
  if (req->info) {
    tFreeReqKvHash(req->info);
    taosHashCleanup(req->info);
  }
L
Liu Jicong 已提交
1906 1907
}

S
Shengliang Guan 已提交
1908 1909
int32_t tSerializeSClientHbBatchReq(void* buf, int32_t bufLen, const SClientHbBatchReq* pReq);
int32_t tDeserializeSClientHbBatchReq(void* buf, int32_t bufLen, SClientHbBatchReq* pReq);
L
Liu Jicong 已提交
1910 1911

static FORCE_INLINE void tFreeClientHbBatchReq(void* pReq, bool deep) {
1912
  SClientHbBatchReq* req = (SClientHbBatchReq*)pReq;
L
Liu Jicong 已提交
1913 1914 1915 1916 1917
  if (deep) {
    taosArrayDestroyEx(req->reqs, tFreeClientHbReq);
  } else {
    taosArrayDestroy(req->reqs);
  }
wafwerar's avatar
wafwerar 已提交
1918
  taosMemoryFree(pReq);
L
Liu Jicong 已提交
1919 1920
}

1921 1922
static FORCE_INLINE void tFreeClientKv(void* pKv) {
  SKv* kv = (SKv*)pKv;
D
dapan1121 已提交
1923
  if (kv) {
wafwerar's avatar
wafwerar 已提交
1924
    taosMemoryFreeClear(kv->value);
D
dapan1121 已提交
1925 1926 1927
  }
}

1928
static FORCE_INLINE void tFreeClientHbRsp(void* pRsp) {
D
dapan1121 已提交
1929
  SClientHbRsp* rsp = (SClientHbRsp*)pRsp;
D
dapan1121 已提交
1930
  taosMemoryFreeClear(rsp->query);
D
dapan1121 已提交
1931 1932 1933 1934
  if (rsp->info) taosArrayDestroyEx(rsp->info, tFreeClientKv);
}

static FORCE_INLINE void tFreeClientHbBatchRsp(void* pRsp) {
1935
  SClientHbBatchRsp* rsp = (SClientHbBatchRsp*)pRsp;
D
dapan1121 已提交
1936 1937 1938
  taosArrayDestroyEx(rsp->rsps, tFreeClientHbRsp);
}

S
Shengliang Guan 已提交
1939 1940
int32_t tSerializeSClientHbBatchRsp(void* buf, int32_t bufLen, const SClientHbBatchRsp* pBatchRsp);
int32_t tDeserializeSClientHbBatchRsp(void* buf, int32_t bufLen, SClientHbBatchRsp* pBatchRsp);
L
Liu Jicong 已提交
1941

H
Hongze Cheng 已提交
1942
static FORCE_INLINE int32_t tEncodeSKv(SEncoder* pEncoder, const SKv* pKv) {
S
Shengliang Guan 已提交
1943 1944
  if (tEncodeI32(pEncoder, pKv->key) < 0) return -1;
  if (tEncodeI32(pEncoder, pKv->valueLen) < 0) return -1;
H
Hongze Cheng 已提交
1945
  if (tEncodeBinary(pEncoder, (uint8_t*)pKv->value, pKv->valueLen) < 0) return -1;
S
Shengliang Guan 已提交
1946
  return 0;
L
Liu Jicong 已提交
1947 1948
}

H
Hongze Cheng 已提交
1949
static FORCE_INLINE int32_t tDecodeSKv(SDecoder* pDecoder, SKv* pKv) {
S
Shengliang Guan 已提交
1950 1951
  if (tDecodeI32(pDecoder, &pKv->key) < 0) return -1;
  if (tDecodeI32(pDecoder, &pKv->valueLen) < 0) return -1;
wafwerar's avatar
wafwerar 已提交
1952
  pKv->value = taosMemoryMalloc(pKv->valueLen + 1);
S
Shengliang Guan 已提交
1953 1954 1955
  if (pKv->value == NULL) return -1;
  if (tDecodeCStrTo(pDecoder, (char*)pKv->value) < 0) return -1;
  return 0;
L
Liu Jicong 已提交
1956 1957
}

H
Hongze Cheng 已提交
1958
static FORCE_INLINE int32_t tEncodeSClientHbKey(SEncoder* pEncoder, const SClientHbKey* pKey) {
D
dapan1121 已提交
1959
  if (tEncodeI64(pEncoder, pKey->tscRid) < 0) return -1;
D
dapan1121 已提交
1960
  if (tEncodeI8(pEncoder, pKey->connType) < 0) return -1;
S
Shengliang Guan 已提交
1961
  return 0;
L
Liu Jicong 已提交
1962 1963
}

H
Hongze Cheng 已提交
1964
static FORCE_INLINE int32_t tDecodeSClientHbKey(SDecoder* pDecoder, SClientHbKey* pKey) {
D
dapan1121 已提交
1965
  if (tDecodeI64(pDecoder, &pKey->tscRid) < 0) return -1;
D
dapan1121 已提交
1966
  if (tDecodeI8(pDecoder, &pKey->connType) < 0) return -1;
S
Shengliang Guan 已提交
1967
  return 0;
L
Liu Jicong 已提交
1968 1969 1970 1971 1972 1973
}

typedef struct SMqHbVgInfo {
  int32_t vgId;
} SMqHbVgInfo;

S
Shengliang Guan 已提交
1974 1975
static FORCE_INLINE int32_t taosEncodeSMqVgInfo(void** buf, const SMqHbVgInfo* pVgInfo) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988
  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];
L
Liu Jicong 已提交
1989
  SArray* pVgInfo;  // SArray<SMqHbVgInfo>
L
Liu Jicong 已提交
1990 1991
} SMqHbTopicInfo;

S
Shengliang Guan 已提交
1992 1993
static FORCE_INLINE int32_t taosEncodeSMqHbTopicInfoMsg(void** buf, const SMqHbTopicInfo* pTopicInfo) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
  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 {
2022 2023 2024 2025
  int32_t status;  // ask hb endpoint
  int32_t epoch;
  int64_t consumerId;
  SArray* pTopics;  // SArray<SMqHbTopicInfo>
L
Liu Jicong 已提交
2026 2027
} SMqHbMsg;

S
Shengliang Guan 已提交
2028 2029
static FORCE_INLINE int32_t taosEncodeSMqMsg(void** buf, const SMqHbMsg* pMsg) {
  int32_t tlen = 0;
L
Liu Jicong 已提交
2030 2031 2032 2033 2034
  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);
S
Shengliang Guan 已提交
2035
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048
    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));
S
Shengliang Guan 已提交
2049
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
2050 2051 2052 2053 2054 2055 2056
    SMqHbTopicInfo topicInfo;
    buf = taosDecodeSMqHbTopicInfoMsg(buf, &topicInfo);
    taosArrayPush(pMsg->pTopics, &topicInfo);
  }
  return buf;
}

L
Liu Jicong 已提交
2057 2058 2059 2060 2061
enum {
  TOPIC_SUB_TYPE__DB = 1,
  TOPIC_SUB_TYPE__TABLE,
};

2062 2063 2064 2065 2066 2067
typedef struct {
  int64_t leftForVer;
  int32_t vgId;
  int64_t oldConsumerId;
  int64_t newConsumerId;
  char    subKey[TSDB_SUBSCRIBE_KEY_LEN];
L
Liu Jicong 已提交
2068 2069 2070 2071
  int8_t  subType;
  int8_t  withTbName;
  int8_t  withSchema;
  int8_t  withTag;
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081
  char*   qmsg;
} SMqRebVgReq;

static FORCE_INLINE int32_t tEncodeSMqRebVgReq(void** buf, const SMqRebVgReq* pReq) {
  int32_t tlen = 0;
  tlen += taosEncodeFixedI64(buf, pReq->leftForVer);
  tlen += taosEncodeFixedI32(buf, pReq->vgId);
  tlen += taosEncodeFixedI64(buf, pReq->oldConsumerId);
  tlen += taosEncodeFixedI64(buf, pReq->newConsumerId);
  tlen += taosEncodeString(buf, pReq->subKey);
L
Liu Jicong 已提交
2082 2083 2084 2085 2086 2087 2088
  tlen += taosEncodeFixedI8(buf, pReq->subType);
  tlen += taosEncodeFixedI8(buf, pReq->withTbName);
  tlen += taosEncodeFixedI8(buf, pReq->withSchema);
  tlen += taosEncodeFixedI8(buf, pReq->withTag);
  if (pReq->subType == TOPIC_SUB_TYPE__TABLE) {
    tlen += taosEncodeString(buf, pReq->qmsg);
  }
2089 2090 2091 2092 2093 2094 2095 2096 2097
  return tlen;
}

static FORCE_INLINE void* tDecodeSMqRebVgReq(const void* buf, SMqRebVgReq* pReq) {
  buf = taosDecodeFixedI64(buf, &pReq->leftForVer);
  buf = taosDecodeFixedI32(buf, &pReq->vgId);
  buf = taosDecodeFixedI64(buf, &pReq->oldConsumerId);
  buf = taosDecodeFixedI64(buf, &pReq->newConsumerId);
  buf = taosDecodeStringTo(buf, pReq->subKey);
L
Liu Jicong 已提交
2098 2099 2100 2101 2102 2103 2104
  buf = taosDecodeFixedI8(buf, &pReq->subType);
  buf = taosDecodeFixedI8(buf, &pReq->withTbName);
  buf = taosDecodeFixedI8(buf, &pReq->withSchema);
  buf = taosDecodeFixedI8(buf, &pReq->withTag);
  if (pReq->subType == TOPIC_SUB_TYPE__TABLE) {
    buf = taosDecodeString(buf, &pReq->qmsg);
  }
2105 2106 2107
  return (void*)buf;
}

L
Liu Jicong 已提交
2108 2109 2110 2111
typedef struct {
  int32_t vgId;
  int64_t offset;
  char    topicName[TSDB_TOPIC_FNAME_LEN];
L
Liu Jicong 已提交
2112
  char    cgroup[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
2113 2114 2115 2116 2117
} SMqOffset;

typedef struct {
  int32_t    num;
  SMqOffset* offsets;
L
Liu Jicong 已提交
2118
} SMqCMCommitOffsetReq;
L
Liu Jicong 已提交
2119 2120 2121

typedef struct {
  int32_t reserved;
L
Liu Jicong 已提交
2122
} SMqCMCommitOffsetRsp;
L
Liu Jicong 已提交
2123

H
Hongze Cheng 已提交
2124 2125 2126 2127
int32_t tEncodeSMqOffset(SEncoder* encoder, const SMqOffset* pOffset);
int32_t tDecodeSMqOffset(SDecoder* decoder, SMqOffset* pOffset);
int32_t tEncodeSMqCMCommitOffsetReq(SEncoder* encoder, const SMqCMCommitOffsetReq* pReq);
int32_t tDecodeSMqCMCommitOffsetReq(SDecoder* decoder, SMqCMCommitOffsetReq* pReq);
L
Liu Jicong 已提交
2128

S
Shengliang Guan 已提交
2129 2130 2131 2132 2133 2134 2135
typedef struct {
  char    name[TSDB_TABLE_FNAME_LEN];
  char    stb[TSDB_TABLE_FNAME_LEN];
  int8_t  igExists;
  int8_t  intervalUnit;
  int8_t  slidingUnit;
  int8_t  timezone;
S
sma  
Shengliang Guan 已提交
2136
  int32_t dstVgId;  // for stream
S
Shengliang Guan 已提交
2137 2138 2139
  int64_t interval;
  int64_t offset;
  int64_t sliding;
S
sma  
Shengliang Guan 已提交
2140 2141 2142 2143
  int32_t exprLen;        // strlen + 1
  int32_t tagsFilterLen;  // strlen + 1
  int32_t sqlLen;         // strlen + 1
  int32_t astLen;         // strlen + 1
L
Liu Jicong 已提交
2144
  char*   expr;
S
Shengliang Guan 已提交
2145
  char*   tagsFilter;
S
sma  
Shengliang Guan 已提交
2146 2147
  char*   sql;
  char*   ast;
S
Shengliang Guan 已提交
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161
} SMCreateSmaReq;

int32_t tSerializeSMCreateSmaReq(void* buf, int32_t bufLen, SMCreateSmaReq* pReq);
int32_t tDeserializeSMCreateSmaReq(void* buf, int32_t bufLen, SMCreateSmaReq* pReq);
void    tFreeSMCreateSmaReq(SMCreateSmaReq* pReq);

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

int32_t tSerializeSMDropSmaReq(void* buf, int32_t bufLen, SMDropSmaReq* pReq);
int32_t tDeserializeSMDropSmaReq(void* buf, int32_t bufLen, SMDropSmaReq* pReq);

C
Cary Xu 已提交
2162
typedef struct {
L
Liu Jicong 已提交
2163 2164 2165
  int8_t   version;       // for compatibility(default 0)
  int8_t   intervalUnit;  // MACRO: TIME_UNIT_XXX
  int8_t   slidingUnit;   // MACRO: TIME_UNIT_XXX
L
Liu Jicong 已提交
2166
  int8_t   timezoneInt;   // sma data expired if timezone changes.
C
Cary Xu 已提交
2167
  char     indexName[TSDB_INDEX_NAME_LEN];
X
Xiaoyu Wang 已提交
2168 2169
  int32_t  exprLen;
  int32_t  tagsFilterLen;
C
Cary Xu 已提交
2170 2171 2172
  int64_t  indexUid;
  tb_uid_t tableUid;  // super/child/common table uid
  int64_t  interval;
L
Liu Jicong 已提交
2173
  int64_t  offset;  // use unit by precision of DB
C
Cary Xu 已提交
2174 2175 2176
  int64_t  sliding;
  char*    expr;  // sma expression
  char*    tagsFilter;
C
Cary Xu 已提交
2177
} STSma;  // Time-range-wise SMA
C
Cary Xu 已提交
2178

C
Cary Xu 已提交
2179
typedef struct {
C
Cary Xu 已提交
2180 2181 2182
  int64_t ver;  // use a general definition
  STSma   tSma;
} SVCreateTSmaReq;
C
Cary Xu 已提交
2183 2184

typedef struct {
C
Cary Xu 已提交
2185 2186 2187
  int8_t  type;  // 0 status report, 1 update data
  int64_t indexUid;
  int64_t skey;  // start TS key of interval/sliding window
C
Cary Xu 已提交
2188 2189 2190 2191
} STSmaMsg;

typedef struct {
  int64_t ver;  // use a general definition
C
Cary Xu 已提交
2192
  int64_t indexUid;
C
Cary Xu 已提交
2193
  char    indexName[TSDB_INDEX_NAME_LEN];
C
Cary Xu 已提交
2194
} SVDropTSmaReq;
2195

C
Cary Xu 已提交
2196
typedef struct {
L
Liu Jicong 已提交
2197
  int tmp;  // TODO: to avoid compile error
C
Cary Xu 已提交
2198 2199 2200 2201 2202 2203
} SVCreateTSmaRsp, SVDropTSmaRsp;

int32_t tSerializeSVCreateTSmaReq(void** buf, SVCreateTSmaReq* pReq);
void*   tDeserializeSVCreateTSmaReq(void* buf, SVCreateTSmaReq* pReq);
int32_t tSerializeSVDropTSmaReq(void** buf, SVDropTSmaReq* pReq);
void*   tDeserializeSVDropTSmaReq(void* buf, SVDropTSmaReq* pReq);
C
Cary Xu 已提交
2204

C
Cary Xu 已提交
2205
// RSma: Rollup SMA
C
Cary Xu 已提交
2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218
typedef struct {
  int64_t  interval;
  int32_t  retention;  // unit: day
  uint16_t days;       // unit: day
  int8_t   intervalUnit;
} SSmaParams;

typedef struct {
  STSma   tsma;
  float   xFilesFactor;
  SArray* smaParams;  // SSmaParams
} SRSma;

C
Cary Xu 已提交
2219 2220 2221 2222 2223
typedef struct {
  uint32_t number;
  STSma*   tSma;
} STSmaWrapper;

C
Cary Xu 已提交
2224
static FORCE_INLINE void tdDestroyTSma(STSma* pSma) {
C
Cary Xu 已提交
2225
  if (pSma) {
wafwerar's avatar
wafwerar 已提交
2226 2227
    taosMemoryFreeClear(pSma->expr);
    taosMemoryFreeClear(pSma->tagsFilter);
C
Cary Xu 已提交
2228 2229 2230
  }
}

C
Cary Xu 已提交
2231
static FORCE_INLINE void tdDestroyTSmaWrapper(STSmaWrapper* pSW) {
C
Cary Xu 已提交
2232 2233 2234
  if (pSW) {
    if (pSW->tSma) {
      for (uint32_t i = 0; i < pSW->number; ++i) {
C
Cary Xu 已提交
2235
        tdDestroyTSma(pSW->tSma + i);
C
Cary Xu 已提交
2236
      }
wafwerar's avatar
wafwerar 已提交
2237
      taosMemoryFreeClear(pSW->tSma);
C
Cary Xu 已提交
2238
    }
C
Cary Xu 已提交
2239 2240 2241
  }
}

C
Cary Xu 已提交
2242
static FORCE_INLINE void* tdFreeTSmaWrapper(STSmaWrapper* pSW) {
C
Cary Xu 已提交
2243
  tdDestroyTSmaWrapper(pSW);
C
Cary Xu 已提交
2244 2245
  taosMemoryFree(pSW);
  return NULL;
C
Cary Xu 已提交
2246 2247
}

C
Cary Xu 已提交
2248 2249 2250
static FORCE_INLINE int32_t tEncodeTSma(void** buf, const STSma* pSma) {
  int32_t tlen = 0;

C
Cary Xu 已提交
2251 2252 2253
  tlen += taosEncodeFixedI8(buf, pSma->version);
  tlen += taosEncodeFixedI8(buf, pSma->intervalUnit);
  tlen += taosEncodeFixedI8(buf, pSma->slidingUnit);
S
sma  
Shengliang Guan 已提交
2254
  tlen += taosEncodeFixedI8(buf, pSma->timezoneInt);
C
Cary Xu 已提交
2255
  tlen += taosEncodeString(buf, pSma->indexName);
X
Xiaoyu Wang 已提交
2256 2257
  tlen += taosEncodeFixedI32(buf, pSma->exprLen);
  tlen += taosEncodeFixedI32(buf, pSma->tagsFilterLen);
C
Cary Xu 已提交
2258
  tlen += taosEncodeFixedI64(buf, pSma->indexUid);
C
Cary Xu 已提交
2259
  tlen += taosEncodeFixedI64(buf, pSma->tableUid);
C
Cary Xu 已提交
2260
  tlen += taosEncodeFixedI64(buf, pSma->interval);
X
Xiaoyu Wang 已提交
2261
  tlen += taosEncodeFixedI64(buf, pSma->offset);
C
Cary Xu 已提交
2262
  tlen += taosEncodeFixedI64(buf, pSma->sliding);
L
Liu Jicong 已提交
2263

C
Cary Xu 已提交
2264 2265
  if (pSma->exprLen > 0) {
    tlen += taosEncodeString(buf, pSma->expr);
C
Cary Xu 已提交
2266 2267
  }

C
Cary Xu 已提交
2268 2269
  if (pSma->tagsFilterLen > 0) {
    tlen += taosEncodeString(buf, pSma->tagsFilter);
C
Cary Xu 已提交
2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285
  }

  return tlen;
}

static FORCE_INLINE int32_t tEncodeTSmaWrapper(void** buf, const STSmaWrapper* pSW) {
  int32_t tlen = 0;

  tlen += taosEncodeFixedU32(buf, pSW->number);
  for (uint32_t i = 0; i < pSW->number; ++i) {
    tlen += tEncodeTSma(buf, pSW->tSma + i);
  }
  return tlen;
}

static FORCE_INLINE void* tDecodeTSma(void* buf, STSma* pSma) {
C
Cary Xu 已提交
2286 2287 2288
  buf = taosDecodeFixedI8(buf, &pSma->version);
  buf = taosDecodeFixedI8(buf, &pSma->intervalUnit);
  buf = taosDecodeFixedI8(buf, &pSma->slidingUnit);
S
sma  
Shengliang Guan 已提交
2289
  buf = taosDecodeFixedI8(buf, &pSma->timezoneInt);
C
Cary Xu 已提交
2290
  buf = taosDecodeStringTo(buf, pSma->indexName);
X
Xiaoyu Wang 已提交
2291 2292
  buf = taosDecodeFixedI32(buf, &pSma->exprLen);
  buf = taosDecodeFixedI32(buf, &pSma->tagsFilterLen);
C
Cary Xu 已提交
2293
  buf = taosDecodeFixedI64(buf, &pSma->indexUid);
C
Cary Xu 已提交
2294
  buf = taosDecodeFixedI64(buf, &pSma->tableUid);
C
Cary Xu 已提交
2295
  buf = taosDecodeFixedI64(buf, &pSma->interval);
X
Xiaoyu Wang 已提交
2296
  buf = taosDecodeFixedI64(buf, &pSma->offset);
C
Cary Xu 已提交
2297 2298
  buf = taosDecodeFixedI64(buf, &pSma->sliding);

C
Cary Xu 已提交
2299
  if (pSma->exprLen > 0) {
2300
    if ((buf = taosDecodeString(buf, &pSma->expr)) == NULL) {
C
Cary Xu 已提交
2301
      tdDestroyTSma(pSma);
C
Cary Xu 已提交
2302 2303 2304
      return NULL;
    }
  } else {
C
Cary Xu 已提交
2305
    pSma->expr = NULL;
C
Cary Xu 已提交
2306 2307
  }

C
Cary Xu 已提交
2308
  if (pSma->tagsFilterLen > 0) {
2309
    if ((buf = taosDecodeString(buf, &pSma->tagsFilter)) == NULL) {
C
Cary Xu 已提交
2310
      tdDestroyTSma(pSma);
C
Cary Xu 已提交
2311 2312 2313
      return NULL;
    }
  } else {
C
Cary Xu 已提交
2314
    pSma->tagsFilter = NULL;
C
Cary Xu 已提交
2315 2316 2317 2318 2319 2320 2321 2322
  }

  return buf;
}

static FORCE_INLINE void* tDecodeTSmaWrapper(void* buf, STSmaWrapper* pSW) {
  buf = taosDecodeFixedU32(buf, &pSW->number);

wafwerar's avatar
wafwerar 已提交
2323
  pSW->tSma = (STSma*)taosMemoryCalloc(pSW->number, sizeof(STSma));
C
Cary Xu 已提交
2324 2325 2326 2327 2328 2329 2330
  if (pSW->tSma == NULL) {
    return NULL;
  }

  for (uint32_t i = 0; i < pSW->number; ++i) {
    if ((buf = tDecodeTSma(buf, pSW->tSma + i)) == NULL) {
      for (uint32_t j = i; j >= 0; --i) {
C
Cary Xu 已提交
2331
        tdDestroyTSma(pSW->tSma + j);
C
Cary Xu 已提交
2332
      }
wafwerar's avatar
wafwerar 已提交
2333
      taosMemoryFree(pSW->tSma);
C
Cary Xu 已提交
2334 2335 2336 2337 2338
      return NULL;
    }
  }
  return buf;
}
L
Liu Jicong 已提交
2339

dengyihao's avatar
dengyihao 已提交
2340
typedef struct {
dengyihao's avatar
dengyihao 已提交
2341
  int idx;
dengyihao's avatar
dengyihao 已提交
2342 2343 2344 2345 2346 2347
} SMCreateFullTextReq;

int32_t tSerializeSMCreateFullTextReq(void* buf, int32_t bufLen, SMCreateFullTextReq* pReq);
int32_t tDeserializeSMCreateFullTextReq(void* buf, int32_t bufLen, SMCreateFullTextReq* pReq);
void    tFreeSMCreateFullTextReq(SMCreateFullTextReq* pReq);

dengyihao's avatar
dengyihao 已提交
2348 2349 2350 2351 2352 2353 2354 2355
typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
} SMDropFullTextReq;

int32_t tSerializeSMDropFullTextReq(void* buf, int32_t bufLen, SMDropFullTextReq* pReq);
int32_t tDeserializeSMDropFullTextReq(void* buf, int32_t bufLen, SMDropFullTextReq* pReq);

D
dapan1121 已提交
2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
typedef struct {
  char indexFName[TSDB_INDEX_FNAME_LEN];
} SUserIndexReq;

int32_t tSerializeSUserIndexReq(void* buf, int32_t bufLen, SUserIndexReq* pReq);
int32_t tDeserializeSUserIndexReq(void* buf, int32_t bufLen, SUserIndexReq* pReq);

typedef struct {
  char dbFName[TSDB_DB_FNAME_LEN];
  char tblFName[TSDB_TABLE_FNAME_LEN];
  char colName[TSDB_COL_NAME_LEN];
  char indexType[TSDB_INDEX_TYPE_LEN];
  char indexExts[TSDB_INDEX_EXTS_LEN];
} SUserIndexRsp;

int32_t tSerializeSUserIndexRsp(void* buf, int32_t bufLen, const SUserIndexRsp* pRsp);
int32_t tDeserializeSUserIndexRsp(void* buf, int32_t bufLen, SUserIndexRsp* pRsp);

L
Liu Jicong 已提交
2374 2375 2376 2377
typedef struct {
  int8_t  mqMsgType;
  int32_t code;
  int32_t epoch;
L
Liu Jicong 已提交
2378
  int64_t consumerId;
L
Liu Jicong 已提交
2379 2380
} SMqRspHead;

L
Liu Jicong 已提交
2381 2382 2383
typedef struct {
  SMsgHead head;
  char     subKey[TSDB_SUBSCRIBE_KEY_LEN];
2384
  int8_t   withTbName;
L
Liu Jicong 已提交
2385 2386 2387
  int32_t  epoch;
  uint64_t reqId;
  int64_t  consumerId;
2388
  int64_t  waitTime;
L
Liu Jicong 已提交
2389
  int64_t  currentOffset;
L
Liu Jicong 已提交
2390
} SMqPollReq;
L
Liu Jicong 已提交
2391

L
Liu Jicong 已提交
2392
typedef struct {
L
Liu Jicong 已提交
2393
  int32_t vgId;
L
Liu Jicong 已提交
2394
  int64_t offset;
L
Liu Jicong 已提交
2395 2396 2397
  SEpSet  epSet;
} SMqSubVgEp;

L
Liu Jicong 已提交
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
static FORCE_INLINE int32_t tEncodeSMqSubVgEp(void** buf, const SMqSubVgEp* pVgEp) {
  int32_t tlen = 0;
  tlen += taosEncodeFixedI32(buf, pVgEp->vgId);
  tlen += taosEncodeFixedI64(buf, pVgEp->offset);
  tlen += taosEncodeSEpSet(buf, &pVgEp->epSet);
  return tlen;
}

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

L
Liu Jicong 已提交
2413
typedef struct {
L
Liu Jicong 已提交
2414 2415 2416 2417
  char           topic[TSDB_TOPIC_FNAME_LEN];
  int8_t         isSchemaAdaptive;
  SArray*        vgs;  // SArray<SMqSubVgEp>
  SSchemaWrapper schema;
L
Liu Jicong 已提交
2418 2419
} SMqSubTopicEp;

L
Liu Jicong 已提交
2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456
static FORCE_INLINE int32_t tEncodeSMqSubTopicEp(void** buf, const SMqSubTopicEp* pTopicEp) {
  int32_t tlen = 0;
  tlen += taosEncodeString(buf, pTopicEp->topic);
  tlen += taosEncodeFixedI8(buf, pTopicEp->isSchemaAdaptive);
  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);
  }
  tlen += taosEncodeSSchemaWrapper(buf, &pTopicEp->schema);
  return tlen;
}

static FORCE_INLINE void* tDecodeSMqSubTopicEp(void* buf, SMqSubTopicEp* pTopicEp) {
  buf = taosDecodeStringTo(buf, pTopicEp->topic);
  buf = taosDecodeFixedI8(buf, &pTopicEp->isSchemaAdaptive);
  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);
  }
  buf = taosDecodeSSchemaWrapper(buf, &pTopicEp->schema);
  return buf;
}

static FORCE_INLINE void tDeleteSMqSubTopicEp(SMqSubTopicEp* pSubTopicEp) {
  // taosMemoryFree(pSubTopicEp->schema.pSchema);
  taosArrayDestroy(pSubTopicEp->vgs);
}

L
Liu Jicong 已提交
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
typedef struct {
  SMqRspHead head;
  int64_t    reqOffset;
  int64_t    rspOffset;
  int32_t    skipLogNum;
  int32_t    blockNum;
  int8_t     withTbName;
  int8_t     withSchema;
  int8_t     withTag;
  SArray*    blockDataLen;    // SArray<int32_t>
  SArray*    blockData;       // SArray<SRetrieveTableRsp*>
  SArray*    blockTbName;     // SArray<char*>
  SArray*    blockSchema;     // SArray<SSchemaWrapper>
  SArray*    blockTags;       // SArray<kvrow>
  SArray*    blockTagSchema;  // SArray<kvrow>
} SMqDataBlkRsp;

static FORCE_INLINE int32_t tEncodeSMqDataBlkRsp(void** buf, const SMqDataBlkRsp* pRsp) {
  int32_t tlen = 0;
  tlen += taosEncodeFixedI64(buf, pRsp->reqOffset);
  tlen += taosEncodeFixedI64(buf, pRsp->rspOffset);
  tlen += taosEncodeFixedI32(buf, pRsp->skipLogNum);
  tlen += taosEncodeFixedI32(buf, pRsp->blockNum);
  if (pRsp->blockNum != 0) {
    tlen += taosEncodeFixedI8(buf, pRsp->withTbName);
    tlen += taosEncodeFixedI8(buf, pRsp->withSchema);
    tlen += taosEncodeFixedI8(buf, pRsp->withTag);

    for (int32_t i = 0; i < pRsp->blockNum; i++) {
      int32_t bLen = *(int32_t*)taosArrayGet(pRsp->blockDataLen, i);
      void*   data = taosArrayGetP(pRsp->blockData, i);
      tlen += taosEncodeFixedI32(buf, bLen);
      tlen += taosEncodeBinary(buf, data, bLen);
L
Liu Jicong 已提交
2490 2491 2492 2493
      if (pRsp->withSchema) {
        SSchemaWrapper* pSW = (SSchemaWrapper*)taosArrayGetP(pRsp->blockSchema, i);
        tlen += taosEncodeSSchemaWrapper(buf, pSW);
      }
L
Liu Jicong 已提交
2494 2495 2496 2497
      if (pRsp->withTbName) {
        char* tbName = (char*)taosArrayGetP(pRsp->blockTbName, i);
        tlen += taosEncodeString(buf, tbName);
      }
L
Liu Jicong 已提交
2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509
    }
  }
  return tlen;
}

static FORCE_INLINE void* tDecodeSMqDataBlkRsp(const void* buf, SMqDataBlkRsp* pRsp) {
  buf = taosDecodeFixedI64(buf, &pRsp->reqOffset);
  buf = taosDecodeFixedI64(buf, &pRsp->rspOffset);
  buf = taosDecodeFixedI32(buf, &pRsp->skipLogNum);
  buf = taosDecodeFixedI32(buf, &pRsp->blockNum);
  pRsp->blockData = taosArrayInit(pRsp->blockNum, sizeof(void*));
  pRsp->blockDataLen = taosArrayInit(pRsp->blockNum, sizeof(void*));
L
Liu Jicong 已提交
2510
  pRsp->blockTbName = taosArrayInit(pRsp->blockNum, sizeof(void*));
L
Liu Jicong 已提交
2511
  pRsp->blockSchema = taosArrayInit(pRsp->blockNum, sizeof(void*));
L
Liu Jicong 已提交
2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523
  if (pRsp->blockNum != 0) {
    buf = taosDecodeFixedI8(buf, &pRsp->withTbName);
    buf = taosDecodeFixedI8(buf, &pRsp->withSchema);
    buf = taosDecodeFixedI8(buf, &pRsp->withTag);

    for (int32_t i = 0; i < pRsp->blockNum; i++) {
      int32_t bLen = 0;
      void*   data = NULL;
      buf = taosDecodeFixedI32(buf, &bLen);
      buf = taosDecodeBinary(buf, &data, bLen);
      taosArrayPush(pRsp->blockDataLen, &bLen);
      taosArrayPush(pRsp->blockData, &data);
L
Liu Jicong 已提交
2524 2525 2526 2527 2528
      if (pRsp->withSchema) {
        SSchemaWrapper* pSW = (SSchemaWrapper*)taosMemoryMalloc(sizeof(SSchemaWrapper));
        buf = taosDecodeSSchemaWrapper(buf, pSW);
        taosArrayPush(pRsp->blockSchema, &pSW);
      }
L
Liu Jicong 已提交
2529 2530 2531 2532 2533
      if (pRsp->withTbName) {
        char* name = NULL;
        buf = taosDecodeString(buf, &name);
        taosArrayPush(pRsp->blockTbName, &name);
      }
L
Liu Jicong 已提交
2534 2535 2536 2537 2538
    }
  }
  return (void*)buf;
}

L
Liu Jicong 已提交
2539
typedef struct {
L
Liu Jicong 已提交
2540
  SMqRspHead head;
L
Liu Jicong 已提交
2541 2542
  char       cgroup[TSDB_CGROUP_LEN];
  SArray*    topics;  // SArray<SMqSubTopicEp>
L
Liu Jicong 已提交
2543
} SMqAskEpRsp;
L
Liu Jicong 已提交
2544

L
Liu Jicong 已提交
2545
static FORCE_INLINE int32_t tEncodeSMqAskEpRsp(void** buf, const SMqAskEpRsp* pRsp) {
L
Liu Jicong 已提交
2546
  int32_t tlen = 0;
L
Liu Jicong 已提交
2547
  // tlen += taosEncodeString(buf, pRsp->cgroup);
L
Liu Jicong 已提交
2548 2549 2550 2551 2552 2553 2554 2555 2556
  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;
}

L
Liu Jicong 已提交
2557
static FORCE_INLINE void* tDecodeSMqAskEpRsp(void* buf, SMqAskEpRsp* pRsp) {
L
Liu Jicong 已提交
2558
  // buf = taosDecodeStringTo(buf, pRsp->cgroup);
L
Liu Jicong 已提交
2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571
  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;
}
dengyihao's avatar
dengyihao 已提交
2572

L
Liu Jicong 已提交
2573 2574 2575 2576
static FORCE_INLINE void tDeleteSMqAskEpRsp(SMqAskEpRsp* pRsp) {
  taosArrayDestroyEx(pRsp->topics, (void (*)(void*))tDeleteSMqSubTopicEp);
}

L
Liu Jicong 已提交
2577 2578 2579 2580 2581 2582 2583 2584
typedef struct {
  void* data;
} SStreamDispatchReq;

typedef struct {
  int8_t status;
} SStreamDispatchRsp;

H
Hongze Cheng 已提交
2585 2586
#define TD_AUTO_CREATE_TABLE 0x1
typedef struct {
H
Hongze Cheng 已提交
2587 2588 2589
  int64_t        suid;
  int64_t        uid;
  int32_t        sver;
H
Hongze Cheng 已提交
2590
  uint32_t       nData;
H
Hongze Cheng 已提交
2591 2592
  const uint8_t* pData;
  SVCreateTbReq  cTbReq;
H
Hongze Cheng 已提交
2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603
} SVSubmitBlk;

typedef struct {
  int32_t flags;
  int32_t nBlocks;
  union {
    SArray*      pArray;
    SVSubmitBlk* pBlocks;
  };
} SVSubmitReq;

H
Hongze Cheng 已提交
2604 2605
int32_t tEncodeSVSubmitReq(SEncoder* pCoder, const SVSubmitReq* pReq);
int32_t tDecodeSVSubmitReq(SDecoder* pCoder, SVSubmitReq* pReq);
H
Hongze Cheng 已提交
2606

L
Liu Jicong 已提交
2607 2608
#pragma pack(pop)

D
dapan1121 已提交
2609 2610 2611 2612 2613
#ifdef __cplusplus
}
#endif

#endif /*_TD_COMMON_TAOS_MSG_H_*/