taosmsg.h 29.4 KB
Newer Older
D
dapan1121 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _TD_COMMON_TAOS_MSG_H_
#define _TD_COMMON_TAOS_MSG_H_

#ifdef __cplusplus
extern "C" {
#endif

#include "taosdef.h"
#include "taoserror.h"
#include "tdataformat.h"

// message type

#ifdef TAOS_MESSAGE_C
#define TAOS_DEFINE_MESSAGE_TYPE( name, msg ) msg, msg "-rsp",
char *taosMsg[] = {
  "null",
#else
#define TAOS_DEFINE_MESSAGE_TYPE( name, msg ) name, name##_RSP,
enum {
  TSDB_MESSAGE_NULL = 0,
#endif

S
Shengliang Guan 已提交
39
// message from client to vnode
D
dapan1121 已提交
40 41 42
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_SUBMIT, "submit" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_QUERY, "query" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_FETCH, "fetch" )
S
Shengliang Guan 已提交
43 44 45
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_TABLE, "create-table" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_TABLE, "drop-table" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_TABLE, "alter-table" )	
D
dapan1121 已提交
46
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_UPDATE_TAG_VAL, "update-tag-val" )
S
Shengliang Guan 已提交
47 48
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_TABLE_META, "table-meta" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_TABLES_META, "tables-meta" )
L
Liu Jicong 已提交
49
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MQ_CONSUME, "mq-consume" )
L
Liu Jicong 已提交
50
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MQ_QUERY, "mq-query" )
S
Shengliang Guan 已提交
51 52
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MQ_CONNECT, "mq-connect" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MQ_DISCONNECT, "mq-disconnect" )
L
Liu Jicong 已提交
53
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MQ_SET_CUR, "mq-set-cur" )
D
dapan1121 已提交
54
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_RES_READY, "res-ready" )
D
dapan1121 已提交
55 56 57 58
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_TASKS_STATUS, "tasks-status" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CANCEL_TASK, "cancel-task" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_TASK, "drop-task" )

S
Shengliang Guan 已提交
59
// message from client to mnode
L
Liu Jicong 已提交
60
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CONNECT, "connect" )
S
Shengliang Guan 已提交
61 62 63 64 65 66 67 68 69
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_ACCT, "create-acct" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_ACCT, "alter-acct" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_ACCT, "drop-acct" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_USER, "create-user" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_USER, "alter-user" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_USER, "drop-user" ) 
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_DNODE, "create-dnode" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CONFIG_DNODE, "config-dnode" ) 
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_DNODE, "drop-dnode" )   
S
Shengliang Guan 已提交
70 71
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_MNODE, "create-mnode" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_MNODE, "drop-mnode" ) 
S
Shengliang Guan 已提交
72 73 74 75 76
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_DB, "create-db" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_DB, "drop-db" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_USE_DB, "use-db" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_DB, "alter-db" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_SYNC_DB, "sync-db" )
S
Shengliang Guan 已提交
77
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_COMPACT_DB, "compact-db" )
S
Shengliang Guan 已提交
78
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_FUNCTION, "create-function" )
S
Shengliang Guan 已提交
79
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_RETRIEVE_FUNCTION, "retrieve-function" )
S
Shengliang Guan 已提交
80
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_FUNCTION, "drop-function" )
S
Shengliang Guan 已提交
81 82 83
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_STB, "create-stb" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_STB, "alter-stb" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_STB, "drop-stb" )	
D
dapan1121 已提交
84
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_VGROUP_LIST, "vgroup-list" )
S
Shengliang Guan 已提交
85
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_KILL_QUERY, "kill-query" )		
S
Shengliang Guan 已提交
86 87 88 89
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_KILL_CONN, "kill-conn" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_HEARTBEAT, "heartbeat" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_SHOW, "show" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_SHOW_RETRIEVE, "retrieve" )  
S
Shengliang Guan 已提交
90 91 92
// message from client to qnode
// message from client to dnode
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_NETWORK_TEST, "nettest" )
S
Shengliang Guan 已提交
93

S
Shengliang Guan 已提交
94 95 96 97 98 99
// message from vnode to vnode
// message from vnode to mnode
// message from vnode to qnode
// message from vnode to dnode

// message from mnode to vnode
100
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_STB_IN, "create-stb-internal" )
101
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_STB_IN, "alter-stb-internal" )
102
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_STB_IN, "drop-stb-internal" )
S
Shengliang Guan 已提交
103 104 105
// message from mnode to mnode
// message from mnode to qnode
// message from mnode to dnode
106 107
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_VNODE_IN, "create-vnode-internal" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_VNODE_IN, "alter-vnode-internal" )
108 109
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_VNODE_IN, "drop-vnode-internal" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_AUTH_VNODE_IN, "auth-vnode-internal" )
110 111 112 113 114 115
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_SYNC_VNODE_IN, "sync-vnode-internal" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_COMPACT_VNODE_IN, "compact-vnode-internal" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CREATE_MNODE_IN, "create-mnode-internal" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_ALTER_MNODE_IN, "alter-mnode-internal" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DROP_MNODE_IN, "drop-mnode-internal" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CONFIG_DNODE_IN, "config-dnode-internal" )
D
dapan1121 已提交
116

S
Shengliang Guan 已提交
117 118 119 120 121 122
// message from qnode to vnode
// message from qnode to mnode
// message from qnode to qnode
// message from qnode to dnode

// message from dnode to vnode
D
dapan1121 已提交
123
// message from dnode to mnode
S
Shengliang Guan 已提交
124 125 126
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_STATUS, "status" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_GRANT, "grant" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_AUTH, "auth" )
S
Shengliang Guan 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139
// message from dnode to qnode
// message from dnode to dnode

TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY0, "dummy0" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY1, "dummy1" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY2, "dummy2" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY3, "dummy3" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY4, "dummy4" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY5, "dummy5" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY6, "dummy6" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY7, "dummy7" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY8, "dummy8" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY9, "dummy9" )
D
dapan1121 已提交
140 141

#ifndef TAOS_MESSAGE_C
L
Liu Jicong 已提交
142
  TSDB_MSG_TYPE_MAX  // 147
D
dapan1121 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155
#endif

};

// IE type
#define TSDB_IE_TYPE_SEC 1
#define TSDB_IE_TYPE_META 2
#define TSDB_IE_TYPE_MGMT_IP 3
#define TSDB_IE_TYPE_DNODE_CFG 4
#define TSDB_IE_TYPE_NEW_VERSION 5
#define TSDB_IE_TYPE_DNODE_EXT 6
#define TSDB_IE_TYPE_DNODE_STATE 7

S
Shengliang Guan 已提交
156 157
typedef enum _mgmt_table {
  TSDB_MGMT_TABLE_START,
D
dapan1121 已提交
158 159 160 161 162 163 164
  TSDB_MGMT_TABLE_ACCT,
  TSDB_MGMT_TABLE_USER,
  TSDB_MGMT_TABLE_DB,
  TSDB_MGMT_TABLE_TABLE,
  TSDB_MGMT_TABLE_DNODE,
  TSDB_MGMT_TABLE_MNODE,
  TSDB_MGMT_TABLE_VGROUP,
S
Shengliang Guan 已提交
165
  TSDB_MGMT_TABLE_STB,
D
dapan1121 已提交
166 167 168 169 170 171 172 173 174
  TSDB_MGMT_TABLE_MODULE,
  TSDB_MGMT_TABLE_QUERIES,
  TSDB_MGMT_TABLE_STREAMS,
  TSDB_MGMT_TABLE_VARIABLES,
  TSDB_MGMT_TABLE_CONNS,
  TSDB_MGMT_TABLE_SCORES,
  TSDB_MGMT_TABLE_GRANTS,
  TSDB_MGMT_TABLE_VNODES,
  TSDB_MGMT_TABLE_CLUSTER,
S
Shengliang Guan 已提交
175
  TSDB_MGMT_TABLE_STREAMTABLES,
D
dapan1121 已提交
176 177 178
  TSDB_MGMT_TABLE_TP,
  TSDB_MGMT_TABLE_FUNCTION,
  TSDB_MGMT_TABLE_MAX,
S
Shengliang Guan 已提交
179
} EShowType;
D
dapan1121 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209

#define TSDB_ALTER_TABLE_ADD_TAG_COLUMN    1
#define TSDB_ALTER_TABLE_DROP_TAG_COLUMN   2
#define TSDB_ALTER_TABLE_CHANGE_TAG_COLUMN 3
#define TSDB_ALTER_TABLE_UPDATE_TAG_VAL    4

#define TSDB_ALTER_TABLE_ADD_COLUMN        5
#define TSDB_ALTER_TABLE_DROP_COLUMN       6
#define TSDB_ALTER_TABLE_CHANGE_COLUMN     7
#define TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN 8

#define TSDB_FILL_NONE             0
#define TSDB_FILL_NULL             1
#define TSDB_FILL_SET_VALUE        2
#define TSDB_FILL_LINEAR           3
#define TSDB_FILL_PREV             4
#define TSDB_FILL_NEXT             5

#define TSDB_ALTER_USER_PASSWD     0x1
#define TSDB_ALTER_USER_PRIVILEGES 0x2

#define TSDB_KILL_MSG_LEN          30

#define TSDB_VN_READ_ACCCESS       ((char)0x1)
#define TSDB_VN_WRITE_ACCCESS      ((char)0x2)
#define TSDB_VN_ALL_ACCCESS (TSDB_VN_READ_ACCCESS | TSDB_VN_WRITE_ACCCESS)

#define TSDB_COL_NORMAL             0x0u    // the normal column of the table
#define TSDB_COL_TAG                0x1u    // the tag column type
#define TSDB_COL_UDC                0x2u    // the user specified normal string column, it is a dummy column
210 211
#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 已提交
212 213 214 215 216 217 218 219

#define TSDB_COL_IS_TAG(f)          (((f&(~(TSDB_COL_NULL)))&TSDB_COL_TAG) != 0)
#define TSDB_COL_IS_NORMAL_COL(f)   ((f&(~(TSDB_COL_NULL))) == TSDB_COL_NORMAL)
#define TSDB_COL_IS_UD_COL(f)       ((f&(~(TSDB_COL_NULL))) == TSDB_COL_UDC)
#define TSDB_COL_REQ_NULL(f)        (((f)&TSDB_COL_NULL) != 0)

extern char *taosMsg[];

D
dapan1121 已提交
220
typedef struct SBuildTableMetaInput {
S
Shengliang Guan 已提交
221 222
  int32_t vgId;
  char   *tableFullName;
D
dapan1121 已提交
223 224
} SBuildTableMetaInput;

D
dapan1121 已提交
225 226
typedef struct SBuildUseDBInput {
  char    db[TSDB_TABLE_FNAME_LEN];
227
  int32_t vgVersion;
D
dapan1121 已提交
228 229 230
} SBuildUseDBInput;


D
dapan1121 已提交
231 232 233 234 235 236 237 238 239
#pragma pack(push, 1)

// null-terminated string instead of char array to avoid too many memory consumption in case of more than 1M tableMeta
typedef struct {
  char     fqdn[TSDB_FQDN_LEN];
  uint16_t port;
} SEpAddrMsg;

typedef struct {
D
dapan1121 已提交
240
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
241
  uint16_t port;
D
dapan1121 已提交
242
} SEpAddr;
D
dapan1121 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

typedef struct {
  int32_t numOfVnodes;
} SMsgDesc;

typedef struct SMsgHead {
  int32_t contLen;
  int32_t vgId;
} SMsgHead;

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

// Submit message for this TSDB
typedef struct SSubmitMsg {
S
Shengliang Guan 已提交
267 268 269 270
  SMsgHead header;
  int32_t  length;
  int32_t  numOfBlocks;
  char     blocks[];
D
dapan1121 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
} SSubmitMsg;

typedef struct {
  int32_t index;  // index of failed block in submit blocks
  int32_t vnode;  // vnode index of failed block
  int32_t sid;    // table index of failed block
  int32_t code;   // errorcode while write data to vnode, such as not created, dropped, no space, invalid table
} SShellSubmitRspBlock;

typedef struct {
  int32_t              code;          // 0-success, > 0 error code
  int32_t              numOfRows;     // number of records the client is trying to write
  int32_t              affectedRows;  // number of records actually written
  int32_t              failedRows;    // number of failed records (exclude duplicate records)
  int32_t              numOfFailedBlocks;
  SShellSubmitRspBlock failedBlocks[];
} SShellSubmitRspMsg;

typedef struct SSchema {
S
Shengliang Guan 已提交
290
  int8_t  type;
S
Shengliang Guan 已提交
291
  int32_t colId;
292
  int32_t bytes;
S
Shengliang Guan 已提交
293
  char    name[TSDB_COL_NAME_LEN];
D
dapan1121 已提交
294 295
} SSchema;

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
typedef struct {
  int32_t  contLen;
  int32_t  vgId;
  int8_t   tableType;
  int16_t  numOfColumns;
  int16_t  numOfTags;
  int32_t  tid;
  int32_t  sversion;
  int32_t  tversion;
  int32_t  tagDataLen;
  int32_t  sqlDataLen;
  uint64_t uid;
  uint64_t superTableUid;
  uint64_t createdTime;
  char     tableFname[TSDB_TABLE_FNAME_LEN];
  char     stbFname[TSDB_TABLE_FNAME_LEN];
  char     data[];
} SMDCreateTableMsg;

315 316 317 318 319 320 321 322 323 324 325
//typedef struct {
//  int32_t len;  // one create table message
//  char    tableName[TSDB_TABLE_FNAME_LEN];
//  int16_t numOfColumns;
//  int16_t sqlLen;  // the length of SQL, it starts after schema , sql is a null-terminated string
//  int8_t  igExists;
//  int8_t  rspMeta;
//  int8_t  reserved[16];
//  char    schema[];
//} SCreateTableMsg;

326 327 328
typedef struct {
  char    tableName[TSDB_TABLE_FNAME_LEN];
  int16_t numOfColumns;
329
  int16_t numOfTags;
330 331 332
  int8_t  igExists;
  int8_t  rspMeta;
  char    schema[];
333
} SCreateCTableMsg;
334

D
dapan1121 已提交
335
typedef struct {
S
Shengliang Guan 已提交
336 337 338 339 340
  char    name[TSDB_TABLE_FNAME_LEN];
  int8_t  igExists;
  int32_t numOfTags;
  int32_t numOfColumns;
  SSchema pSchema[];
341
} SCreateStbMsg, SCreateTableMsg;
D
dapan1121 已提交
342 343 344 345

typedef struct {
  char   name[TSDB_TABLE_FNAME_LEN];
  int8_t igNotExists;
S
Shengliang Guan 已提交
346 347 348 349 350 351 352
} SDropStbMsg;

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

typedef struct {
S
Shengliang Guan 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
  uint64_t suid;
  int32_t  sverson;
  uint32_t ttl;
  uint32_t keep;
  int32_t  numOfTags;
  int32_t  numOfColumns;
  SSchema  pSchema[];
} SCreateStbInternalMsg;

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

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

S
Shengliang Guan 已提交
381 382 383
typedef struct {
  SMsgHead head;
  char     name[TSDB_TABLE_FNAME_LEN];
384
  int8_t   ignoreNotExists;
S
Shengliang Guan 已提交
385 386
} SDropTableMsg;

D
dapan1121 已提交
387
typedef struct {
S
Shengliang Guan 已提交
388 389 390 391 392 393 394 395 396 397 398
  SMsgHead head;
  int64_t  uid;
  int32_t  tid;
  int16_t  tversion;
  int16_t  colId;
  int8_t   type;
  int16_t  bytes;
  int32_t  tagValLen;
  int16_t  numOfTags;
  int32_t  schemaLen;
  char     data[];
D
dapan1121 已提交
399 400 401 402
} SUpdateTableTagValMsg;

typedef struct {
  int32_t pid;
S
Shengliang Guan 已提交
403 404
  char    app[TSDB_APP_NAME_LEN];
  char    db[TSDB_DB_NAME_LEN];
405
  int64_t startTime;
D
dapan1121 已提交
406 407 408
} SConnectMsg;

typedef struct SEpSet {
S
Shengliang Guan 已提交
409 410 411 412
  int8_t   inUse;
  int8_t   numOfEps;
  uint16_t port[TSDB_MAX_REPLICA];
  char     fqdn[TSDB_MAX_REPLICA][TSDB_FQDN_LEN];
D
dapan1121 已提交
413 414 415
} SEpSet;

typedef struct {
416 417 418 419 420 421
  int32_t  acctId;
  uint32_t clusterId;
  int32_t  connId;
  int8_t   superUser;
  int8_t   reserved[5];
  SEpSet   epSet;
D
dapan1121 已提交
422 423 424
} SConnectRsp;

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

typedef struct {
S
Shengliang Guan 已提交
437 438
  char    user[TSDB_USER_LEN];
  int32_t reserve[8];
D
dapan1121 已提交
439 440 441
} SDropUserMsg, SDropAcctMsg;

typedef struct {
H
Haojun Liao 已提交
442
  int8_t  type;
S
Shengliang Guan 已提交
443 444
  char    user[TSDB_USER_LEN];
  char    pass[TSDB_PASSWORD_LEN];
H
Haojun Liao 已提交
445
  int8_t  superUser;      // denote if it is a super user or not
S
Shengliang Guan 已提交
446
  int32_t reserve[8];
D
dapan1121 已提交
447 448 449 450 451 452 453 454 455 456 457 458 459 460
} SCreateUserMsg, SAlterUserMsg;

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

typedef struct {
  int32_t  contLen;
  int32_t  vgId;
  uint64_t uid;
S
Shengliang Guan 已提交
461
  char     tableFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
462 463 464
} SDropSTableMsg;

typedef struct SColIndex {
S
Shengliang Guan 已提交
465 466 467 468
  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
  char    name[TSDB_COL_NAME_LEN + TSDB_DB_NAME_LEN + 1];
D
dapan1121 已提交
469 470 471 472 473
} SColIndex;

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

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

typedef struct SColumnFilterList {
S
Shengliang Guan 已提交
493 494 495
  int16_t numOfFilters;
  union {
    int64_t            placeholder;
D
dapan1121 已提交
496 497 498 499 500 501 502 503
    SColumnFilterInfo *filterInfo;
  };
} SColumnFilterList;
/*
 * for client side struct, we only need the column id, type, bytes are not necessary
 * But for data in vnode side, we need all the following information.
 */
typedef struct SColumnInfo {
S
Shengliang Guan 已提交
504 505 506 507
  int16_t           colId;
  int16_t           type;
  int16_t           bytes;
  SColumnFilterList flist;
D
dapan1121 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520
} SColumnInfo;

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

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

typedef struct {
S
Shengliang Guan 已提交
521 522 523 524
  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 已提交
525 526 527
} STsBufInfo;

typedef struct SInterval {
S
Shengliang Guan 已提交
528
  int32_t tz;  // query client timezone
D
dapan1121 已提交
529 530 531 532 533 534 535 536 537
  char    intervalUnit;
  char    slidingUnit;
  char    offsetUnit;
  int64_t interval;
  int64_t sliding;
  int64_t offset;
} SInterval;

typedef struct {
S
Shengliang Guan 已提交
538 539
  SMsgHead head;
  char     version[TSDB_VERSION_LEN];
D
dapan1121 已提交
540

S
Shengliang Guan 已提交
541 542 543 544 545 546 547 548 549 550 551 552 553
  bool stableQuery;        // super table query or not
  bool topBotQuery;        // TODO used bitwise flag
  bool interpQuery;        // interp query or not
  bool groupbyColumn;      // denote if this is a groupby normal column query
  bool hasTagResults;      // if there are tag values in final result or not
  bool timeWindowInterpo;  // if the time window start/end required interpolation
  bool queryBlockDist;     // if query data block distribution
  bool stabledev;          // super table stddev query
  bool tsCompQuery;        // is tscomp query
  bool simpleAgg;
  bool pointInterpQuery;  // point interpolation query
  bool needReverseScan;   // need reverse scan
  bool stateWindow;       // state window flag
D
dapan1121 已提交
554 555 556 557 558

  STimeWindow window;
  int32_t     numOfTables;
  int16_t     order;
  int16_t     orderColId;
S
Shengliang Guan 已提交
559
  int16_t     numOfCols;  // the number of columns will be load from vnode
D
dapan1121 已提交
560
  SInterval   interval;
S
Shengliang Guan 已提交
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
  //  SSessionWindow sw;            // session window
  int16_t tagCondLen;      // tag length in current query
  int16_t colCondLen;      // column length in current query
  int16_t numOfGroupCols;  // num of group by columns
  int16_t orderByIdx;
  int16_t orderType;    // used in group by xx order by xxx
  int64_t vgroupLimit;  // limit the number of rows for each table, used in order by + limit in stable projection query.
  int16_t prjOrder;     // global order in super table projection query.
  int64_t limit;
  int64_t offset;
  int32_t queryType;    // denote another query process
  int16_t numOfOutput;  // final output columns numbers
  int16_t fillType;     // interpolate type
  int64_t fillVal;      // default value array list
  int32_t secondStageOutput;
  STsBufInfo  tsBuf;          // tsBuf info
  int32_t     numOfTags;      // number of tags columns involved
  int32_t     sqlstrLen;      // sql query string
  int32_t     prevResultLen;  // previous result length
D
dapan1121 已提交
580 581 582 583 584 585 586 587 588
  int32_t     numOfOperator;
  int32_t     tableScanOperator;// table scan operator. -1 means no scan operator
  int32_t     udfNum;           // number of udf function
  int32_t     udfContentOffset;
  int32_t     udfContentLen;
  SColumnInfo tableCols[];
} SQueryTableMsg;

typedef struct {
S
Shengliang Guan 已提交
589
  int32_t code;
D
dapan1121 已提交
590 591 592 593 594
} SQueryTableRsp;

// todo: the show handle should be replaced with id
typedef struct {
  SMsgHead header;
S
Shengliang Guan 已提交
595 596 597 598 599 600
  union {
    int32_t showId;
    int64_t qhandle;
    int64_t qId;
  };  // query handle
  int8_t free;
D
dapan1121 已提交
601 602 603 604
} SRetrieveTableMsg;

typedef struct SRetrieveTableRsp {
  int64_t useconds;
S
Shengliang Guan 已提交
605 606
  int8_t  completed;  // all results are returned to client
  int8_t  precision;
D
dapan1121 已提交
607 608
  int8_t  compressed;
  int32_t compLen;
H
Haojun Liao 已提交
609 610

  int32_t numOfRows;
D
dapan1121 已提交
611 612 613 614
  char    data[];
} SRetrieveTableRsp;

typedef struct {
S
Shengliang Guan 已提交
615
  char    db[TSDB_FULL_DB_NAME_LEN];
616
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
617 618 619 620 621 622
  int32_t cacheBlockSize;  // MB
  int32_t totalBlocks;
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
623 624
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
625 626
  int32_t commitTime;
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
627
  int8_t  walLevel;
S
Shengliang Guan 已提交
628 629 630 631 632 633
  int8_t  precision;  // time resolution
  int8_t  compression;
  int8_t  replications;
  int8_t  quorum;
  int8_t  update;
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
  int8_t  ignoreExist;
  int32_t reserve[8];
} SCreateDbMsg;

typedef struct {
  char    db[TSDB_FULL_DB_NAME_LEN];
  int32_t totalBlocks;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
  int32_t fsyncPeriod;
  int8_t  walLevel;
  int8_t  quorum;
  int8_t  cacheLastRow;
  int32_t reserve[8];
} SAlterDbMsg;

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

typedef struct {
  char    db[TSDB_TABLE_FNAME_LEN];
659
  int32_t vgVersion;
S
Shengliang Guan 已提交
660 661 662 663 664 665 666 667 668 669 670 671
  int32_t reserve[8];
} SUseDbMsg;

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

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

typedef struct {
S
Shengliang Guan 已提交
674
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
675 676 677
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
S
Shengliang Guan 已提交
678
  int8_t  outputType;
S
Shengliang Guan 已提交
679
  int32_t outputLen;
S
Shengliang Guan 已提交
680
  int32_t bufSize;
S
Shengliang Guan 已提交
681 682 683 684
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
D
dapan1121 已提交
685 686 687
} SCreateFuncMsg;

typedef struct {
S
Shengliang Guan 已提交
688 689 690 691 692 693
  char name[TSDB_FUNC_NAME_LEN];
} SDropFuncMsg;

typedef struct {
  int32_t numOfFuncs;
  char    pFuncNames[];
D
dapan1121 已提交
694 695 696 697
} SRetrieveFuncMsg;

typedef struct {
  char    name[TSDB_FUNC_NAME_LEN];
S
Shengliang Guan 已提交
698 699 700 701 702
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
  int8_t  outputType;
  int32_t outputLen;
D
dapan1121 已提交
703
  int32_t bufSize;
S
Shengliang Guan 已提交
704 705 706 707 708
  int64_t sigature;
  int32_t commentSize;
  int32_t codeSize;
  char    pCont[];
} SFuncInfo;
D
dapan1121 已提交
709 710

typedef struct {
S
Shengliang Guan 已提交
711 712 713
  int32_t numOfFuncs;
  char    pFuncInfos[];
} SRetrieveFuncRsp;
D
dapan1121 已提交
714 715

typedef struct {
S
Shengliang Guan 已提交
716 717 718 719 720 721
  int32_t statusInterval;
  int64_t checkTime;                    // 1970-01-01 00:00:00.000
  char    timezone[TSDB_TIMEZONE_LEN];  // tsTimezone
  char    locale[TSDB_LOCALE_LEN];      // tsLocale
  char    charset[TSDB_LOCALE_LEN];     // tsCharset
} SClusterCfg;
D
dapan1121 已提交
722

S
Shengliang Guan 已提交
723 724 725
typedef struct {
  int32_t vgId;
  int8_t  role;
S
Shengliang Guan 已提交
726
  int8_t  reserved[3];
S
Shengliang Guan 已提交
727 728 729 730 731 732 733
  int64_t totalStorage;
  int64_t compStorage;
  int64_t pointsWritten;
  int64_t tablesNum;
} SVnodeLoad;

typedef struct {
S
Shengliang Guan 已提交
734 735
  int32_t    num;
  SVnodeLoad data[];
S
Shengliang Guan 已提交
736 737
} SVnodeLoads;

S
Shengliang Guan 已提交
738
typedef struct {
S
Shengliang Guan 已提交
739
  int32_t     sver;
S
Shengliang Guan 已提交
740
  int32_t     dnodeId;
S
Shengliang Guan 已提交
741
  int32_t     clusterId;
742
  int64_t     rebootTime;  // time stamp for last reboot
S
Shengliang Guan 已提交
743 744 745 746
  int16_t     numOfCores;
  int16_t     numOfSupportMnodes;
  int16_t     numOfSupportVnodes;
  int16_t     numOfSupportQnodes;
S
Shengliang Guan 已提交
747 748 749 750
  char        dnodeEp[TSDB_EP_LEN];
  SClusterCfg clusterCfg;
  SVnodeLoads vnodeLoads;
} SStatusMsg;
D
dapan1121 已提交
751 752

typedef struct {
S
Shengliang Guan 已提交
753
  int32_t dnodeId;
S
Shengliang Guan 已提交
754
  int32_t clusterId;
S
Shengliang Guan 已提交
755
  int8_t  dropped;
S
Shengliang Guan 已提交
756
  char    reserved[7];
D
dapan1121 已提交
757 758 759
} SDnodeCfg;

typedef struct {
S
Shengliang Guan 已提交
760
  int32_t  id;
S
Shengliang Guan 已提交
761 762
  int8_t   isMnode;
  int8_t   reserved;
S
Shengliang Guan 已提交
763 764
  uint16_t port;
  char     fqdn[TSDB_FQDN_LEN];
D
dapan1121 已提交
765 766 767
} SDnodeEp;

typedef struct {
S
Shengliang Guan 已提交
768 769
  int32_t  num;
  SDnodeEp eps[];
D
dapan1121 已提交
770 771 772
} SDnodeEps;

typedef struct {
S
Shengliang Guan 已提交
773 774
  SDnodeCfg dnodeCfg;
  SDnodeEps dnodeEps;
D
dapan1121 已提交
775 776 777
} SStatusRsp;

typedef struct {
S
Shengliang Guan 已提交
778 779 780
  int32_t  id;
  uint16_t port;                 // node sync Port
  char     fqdn[TSDB_FQDN_LEN];  // node FQDN
S
Shengliang Guan 已提交
781 782 783
} SReplica;

typedef struct {
S
Shengliang Guan 已提交
784
  int32_t  vgId;
S
Shengliang Guan 已提交
785 786 787
  int32_t  dnodeId;
  char     db[TSDB_FULL_DB_NAME_LEN];
  uint64_t dbUid;
788
  int32_t  vgVersion;
S
Shengliang Guan 已提交
789 790 791 792 793 794
  int32_t  cacheBlockSize;
  int32_t  totalBlocks;
  int32_t  daysPerFile;
  int32_t  daysToKeep0;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
Shengliang Guan 已提交
795 796 797
  int32_t  minRows;
  int32_t  maxRows;
  int32_t  commitTime;
S
Shengliang Guan 已提交
798
  int32_t  fsyncPeriod;
S
Shengliang Guan 已提交
799
  int8_t   walLevel;
S
Shengliang Guan 已提交
800 801 802
  int8_t   precision;
  int8_t   compression;
  int8_t   quorum;
S
Shengliang Guan 已提交
803 804
  int8_t   update;
  int8_t   cacheLastRow;
S
Shengliang Guan 已提交
805
  int8_t   replica;
S
Shengliang Guan 已提交
806 807
  int8_t   selfIndex;
  SReplica replicas[TSDB_MAX_REPLICA];
D
dapan1121 已提交
808 809
} SCreateVnodeMsg, SAlterVnodeMsg;

S
Shengliang Guan 已提交
810
typedef struct {
S
Shengliang Guan 已提交
811 812 813 814
  int32_t  vgId;
  int32_t  dnodeId;
  char     db[TSDB_FULL_DB_NAME_LEN];
  uint64_t dbUid;
S
Shengliang Guan 已提交
815 816 817 818 819 820 821
} SDropVnodeMsg, SSyncVnodeMsg, SCompactVnodeMsg;

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

D
dapan1121 已提交
822
typedef struct {
S
Shengliang Guan 已提交
823 824
  int32_t vgId;
  char    tableFname[TSDB_TABLE_FNAME_LEN];
D
dapan1121 已提交
825 826 827
} STableInfoMsg;

typedef struct {
S
Shengliang Guan 已提交
828
  int8_t  metaClone;  // create local clone of the cached table meta
D
dapan1121 已提交
829 830 831 832 833 834
  int32_t numOfVgroups;
  int32_t numOfTables;
  int32_t numOfUdfs;
  char    tableNames[];
} SMultiTableInfoMsg;

D
dapan1121 已提交
835 836
typedef struct SVgroupInfo {
  int32_t    vgId;
S
Shengliang Guan 已提交
837 838
  uint32_t   hashBegin;
  uint32_t   hashEnd;
839
  int8_t     inUse;
D
dapan1121 已提交
840 841 842 843
  int8_t     numOfEps;
  SEpAddrMsg epAddr[TSDB_MAX_REPLICA];
} SVgroupInfo;

D
dapan1121 已提交
844 845 846 847 848 849 850
typedef struct {
  int32_t    vgId;
  int8_t     numOfEps;
  SEpAddrMsg epAddr[TSDB_MAX_REPLICA];
} SVgroupMsg;

typedef struct {
S
Shengliang Guan 已提交
851
  int32_t    numOfVgroups;
D
dapan1121 已提交
852 853 854
  SVgroupMsg vgroups[];
} SVgroupsMsg, SVgroupsInfo;

S
Shengliang Guan 已提交
855
typedef struct {
856
  char     tbFname[TSDB_TABLE_FNAME_LEN];  // table full name
S
Shengliang Guan 已提交
857 858 859 860 861 862 863 864 865
  char     stbFname[TSDB_TABLE_FNAME_LEN];
  int32_t  numOfTags;
  int32_t  numOfColumns;
  int8_t   precision;
  int8_t   tableType;
  int8_t   update;
  int32_t  sversion;
  int32_t  tversion;
  uint64_t suid;
S
Shengliang Guan 已提交
866
  uint64_t tuid;
S
Shengliang Guan 已提交
867 868
  int32_t  vgId;
  SSchema  pSchema[];
D
dapan1121 已提交
869 870 871
} STableMetaMsg;

typedef struct SMultiTableMeta {
S
Shengliang Guan 已提交
872 873 874 875 876 877 878 879
  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 已提交
880 881 882 883 884 885 886 887
} SMultiTableMeta;

typedef struct {
  int32_t dataLen;
  char    name[TSDB_TABLE_FNAME_LEN];
  char   *data;
} STagData;

D
dapan1121 已提交
888
typedef struct {
889 890
  char        db[TSDB_FULL_DB_NAME_LEN];
  int32_t     vgVersion;
S
Shengliang Guan 已提交
891
  int32_t     vgNum;
892
  int8_t      hashMethod;
D
dapan1121 已提交
893
  SVgroupInfo vgroupInfo[];
894
} SUseDbRsp;
D
dapan1121 已提交
895

D
dapan1121 已提交
896 897 898 899 900 901
/*
 * sql: show tables like '%a_%'
 * payload is the query condition, e.g., '%a_%'
 * payloadLen is the length of payload
 */
typedef struct {
S
Shengliang Guan 已提交
902 903 904 905
  int8_t  type;
  char    db[TSDB_FULL_DB_NAME_LEN];
  int16_t payloadLen;
  char    payload[];
D
dapan1121 已提交
906 907 908
} SShowMsg;

typedef struct {
S
Shengliang Guan 已提交
909
  char    db[TSDB_FULL_DB_NAME_LEN];
D
dapan1121 已提交
910 911 912 913 914
  int32_t numOfVgroup;
  int32_t vgid[];
} SCompactMsg;

typedef struct SShowRsp {
S
Shengliang Guan 已提交
915
  int32_t       showId;
D
dapan1121 已提交
916 917 918 919
  STableMetaMsg tableMeta;
} SShowRsp;

typedef struct {
S
Shengliang Guan 已提交
920 921
  char    ep[TSDB_EP_LEN];  // end point, hostname:port
  int32_t reserve[8];
S
Shengliang Guan 已提交
922 923 924 925
} SCreateDnodeMsg;

typedef struct {
  int32_t dnodeId;
S
Shengliang Guan 已提交
926
  int32_t reserve[8];
S
Shengliang Guan 已提交
927 928 929 930
} SDropDnodeMsg;

typedef struct {
  int32_t dnodeId;
931
  char    config[TSDB_DNODE_CONFIG_LEN];
S
Shengliang Guan 已提交
932
  int32_t reserve[8];
S
Shengliang Guan 已提交
933
} SCfgDnodeMsg;
D
dapan1121 已提交
934

S
Shengliang Guan 已提交
935 936 937 938
typedef struct {
  int32_t dnodeId;
} SCreateMnodeMsg, SDropMnodeMsg;

D
dapan1121 已提交
939
typedef struct {
S
Shengliang Guan 已提交
940
  int32_t  dnodeId;
S
Shengliang Guan 已提交
941
  int8_t   align[3];
S
Shengliang Guan 已提交
942
  int8_t   replica;
S
Shengliang Guan 已提交
943
  SReplica replicas[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
944 945 946 947 948
} SCreateMnodeInMsg, SAlterMnodeInMsg;

typedef struct {
  int32_t dnodeId;
} SDropMnodeInMsg;
D
dapan1121 已提交
949 950 951 952 953 954 955 956

typedef struct {
  int32_t dnodeId;
  int32_t vgId;
  int32_t tid;
} SConfigTableMsg;

typedef struct {
S
Shengliang Guan 已提交
957 958
  int32_t dnodeId;
  int32_t vgId;
D
dapan1121 已提交
959 960 961
} SConfigVnodeMsg;

typedef struct {
S
Shengliang Guan 已提交
962 963 964 965 966 967 968 969 970 971 972
  char    sql[TSDB_SHOW_SQL_LEN];
  int32_t queryId;
  int64_t useconds;
  int64_t stime;
  int64_t qId;
  int64_t sqlObjId;
  int32_t pid;
  char    fqdn[TSDB_FQDN_LEN];
  int8_t  stableQuery;
  int32_t numOfSub;
  char    subSqlInfo[TSDB_SHOW_SUBQUERY_LEN];  // include subqueries' index, Obj IDs and states(C-complete/I-imcomplete)
D
dapan1121 已提交
973 974 975
} SQueryDesc;

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

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

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

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

typedef struct {
  int32_t connId;
} SKillConnMsg;
D
dapan1121 已提交
1008 1009 1010 1011 1012

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

typedef struct {
S
Shengliang Guan 已提交
1018 1019 1020 1021
  int8_t finished;
  int8_t reserved1[7];
  char   name[TSDB_STEP_NAME_LEN];
  char   desc[TSDB_STEP_DESC_LEN];
S
Shengliang Guan 已提交
1022
} SStartupMsg;
D
dapan1121 已提交
1023

L
Liu Jicong 已提交
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
// mq related
typedef struct {

} SMqConnectReq;

typedef struct {

} SMqConnectRsp;

typedef struct {

} SMqDisconnectReq;

typedef struct {

} SMqDisconnectRsp;

typedef struct {

} SMqAckReq;

typedef struct {

} SMqAckRsp;

typedef struct {

} SMqResetReq;

typedef struct {

} SMqResetRsp;
S
Shengliang Guan 已提交
1056
// mq related end
L
Liu Jicong 已提交
1057

D
dapan1121 已提交
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
typedef struct {
  /* data */
} SSubmitReq;

typedef struct {
  /* data */
} SSubmitRsp;

typedef struct {
  /* data */
} SSubmitReqReader;

typedef struct {
  /* data */
} SCreateTableReq;

typedef struct {
  /* data */
} SCreateTableRsp;

typedef struct {
  /* data */
} SDropTableReq;

typedef struct {
  /* data */
} SDropTableRsp;

typedef struct {
  /* data */
} SAlterTableReq;

typedef struct {
  /* data */
} SAlterTableRsp;

1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
typedef struct {
  /* data */
} SDropStableReq;

typedef struct {
  /* data */
} SDropStableRsp;

typedef struct {
  /* data */
} SUpdateTagValReq;

typedef struct {
  /* data */
} SUpdateTagValRsp;

D
dapan1121 已提交
1110
typedef struct SSubQueryMsg {
D
dapan1121 已提交
1111
  uint64_t  schedulerId;
D
dapan 已提交
1112 1113 1114 1115
  uint64_t  queryId;
  uint64_t  taskId;
  uint32_t  contentLen;
  char      msg[];
D
dapan1121 已提交
1116
} SSubQueryMsg;
D
dapan 已提交
1117

D
dapan1121 已提交
1118
typedef struct SResReadyMsg {
D
dapan1121 已提交
1119
  uint64_t  schedulerId;
D
dapan 已提交
1120 1121
  uint64_t  queryId;
  uint64_t  taskId;
D
dapan1121 已提交
1122
} SResReadyMsg;
D
dapan 已提交
1123

D
dapan1121 已提交
1124
typedef struct SResFetchMsg {
D
dapan1121 已提交
1125
  uint64_t  schedulerId;
D
dapan 已提交
1126 1127
  uint64_t  queryId;
  uint64_t  taskId;
D
dapan1121 已提交
1128
} SResFetchMsg;
D
dapan 已提交
1129

D
dapan1121 已提交
1130
typedef struct SSchTasksStatusMsg {
D
dapan1121 已提交
1131
  uint64_t  schedulerId;
D
dapan1121 已提交
1132
} SSchTasksStatusMsg;
D
dapan1121 已提交
1133

D
dapan1121 已提交
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
typedef struct STaskStatus {
  uint64_t  queryId;
  uint64_t  taskId;
  int8_t    status;
} STaskStatus;

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


D
dapan1121 已提交
1146 1147 1148 1149 1150 1151 1152
typedef struct STaskCancelMsg {
  uint64_t  schedulerId;
  uint64_t  queryId;
  uint64_t  taskId;
} STaskCancelMsg;

typedef struct STaskDropMsg {
D
dapan1121 已提交
1153 1154 1155
  uint64_t  schedulerId;
  uint64_t  queryId;
  uint64_t  taskId;
D
dapan1121 已提交
1156
} STaskDropMsg;
D
dapan1121 已提交
1157

D
dapan 已提交
1158

D
dapan1121 已提交
1159 1160 1161 1162 1163 1164 1165
#pragma pack(pop)

#ifdef __cplusplus
}
#endif

#endif /*_TD_COMMON_TAOS_MSG_H_*/