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

#ifndef TDENGINE_TAOSMSG_H
#define TDENGINE_TAOSMSG_H

#ifdef __cplusplus
extern "C" {
#endif

S
#1177  
slguan 已提交
23
#include <stdbool.h>
24
#include <stdint.h>
S
#1177  
slguan 已提交
25

S
slguan 已提交
26
#include "taosdef.h"
H
hjxilinx 已提交
27
#include "taoserror.h"
S
slguan 已提交
28
#include "trpc.h"
B
Bomin Zhang 已提交
29
#include "tdataformat.h"
H
hzcheng 已提交
30 31

// message type
32 33 34 35 36 37 38 39 40 41 42

#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

43 44 45 46
// message from client to dnode
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" )
47
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_UPDATE_TAG_VAL, "update-tag-val" )
J
jtao1735 已提交
48 49 50
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" )
S
slguan 已提交
51

S
slguan 已提交
52
// message from mnode to dnode
53 54 55 56 57 58 59 60
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_CREATE_TABLE, "create-table" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_DROP_TABLE, "drop-table" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_ALTER_TABLE, "alter-table" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_CREATE_VNODE, "create-vnode" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_DROP_VNODE, "drop-vnode" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_DROP_STABLE, "drop-stable" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_ALTER_STREAM, "alter-stream" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_CONFIG_DNODE, "config-dnode" )
S
Shengliang Guan 已提交
61
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_ALTER_VNODE, "alter-vnode" )
62
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_SYNC_VNODE, "sync-vnode" )
S
TD-1671  
Shengliang Guan 已提交
63
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_CREATE_MNODE, "create-mnode" )
Y
yihaoDeng 已提交
64
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_MD_COMPACT_VNODE, "compact-vnode" )
J
jtao1735 已提交
65 66
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY6, "dummy6" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY7, "dummy7" )
S
slguan 已提交
67

Y
yihaoDeng 已提交
68

S
slguan 已提交
69
// message from client to mnode
70 71 72 73 74 75 76 77 78 79
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CONNECT, "connect" )	 
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_ACCT, "create-acct" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_ACCT, "alter-acct" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_ACCT, "drop-acct" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_USER, "create-user" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_USER, "alter-user" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_USER, "drop-user" ) 
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_DNODE, "create-dnode" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_DNODE, "drop-dnode" )   
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_DB, "create-db" )
D
dapan1121 已提交
80
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_FUNCTION, "create-function" )
H
Haojun Liao 已提交
81 82 83
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_DB, "drop-db" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_FUNCTION, "drop-function" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_USE_DB, "use-db" )
84
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_DB, "alter-db" )
85
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_SYNC_DB, "sync-db-replica" )
86 87 88 89 90
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_TABLE, "create-table" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_TABLE, "drop-table" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_TABLE, "alter-table" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_TABLE_META, "table-meta" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_STABLE_VGROUP, "stable-vgroup" )
Y
yihaoDeng 已提交
91
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_COMPACT_VNODE, "compact-vnode" )
92
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_TABLES_META, "multiTable-meta" )
93 94
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_STREAM, "alter-stream" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_SHOW, "show" )
J
jtao1735 已提交
95
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_RETRIEVE, "retrieve" )     
96 97 98 99 100
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_KILL_QUERY, "kill-query" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_KILL_STREAM, "kill-stream" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_KILL_CONN, "kill-conn" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CONFIG_DNODE, "cm-config-dnode" ) 
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_HEARTBEAT, "heartbeat" )
H
Haojun Liao 已提交
101
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_RETRIEVE_FUNC, "retrieve-func" )
J
jtao1735 已提交
102 103 104
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY9, "dummy9" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY10, "dummy10" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY11, "dummy11" )
S
slguan 已提交
105

S
slguan 已提交
106
// message from dnode to mnode
107 108 109 110
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DM_CONFIG_TABLE, "config-table" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DM_CONFIG_VNODE, "config-vnode" )	
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DM_STATUS, "status" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DM_GRANT, "grant" )
S
Shengliang Guan 已提交
111
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DM_AUTH, "auth" )
J
jtao1735 已提交
112 113 114
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY12, "dummy12" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY13, "dummy13" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DUMMY14, "dummy14" )
115
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_NETWORK_TEST, "nettest" )
H
Hui Li 已提交
116

S
Shengliang Guan 已提交
117 118 119 120 121 122
// message for topic
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_CREATE_TP, "create-tp" )
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_DROP_TP, "drop-tp" )	  
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_USE_TP, "use-tp" )	 
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_CM_ALTER_TP, "alter-tp" )

123 124 125 126
// delete
TAOS_DEFINE_MESSAGE_TYPE( TSDB_MSG_TYPE_DELDATA, "delete-data" )


127 128 129
#ifndef TAOS_MESSAGE_C
  TSDB_MSG_TYPE_MAX  // 105
#endif
130

131
};
H
hzcheng 已提交
132 133

// IE type
134 135 136 137 138 139 140
#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
H
hzcheng 已提交
141 142

enum _mgmt_table {
S
slguan 已提交
143
  TSDB_MGMT_TABLE_ACCT,
H
hzcheng 已提交
144 145 146
  TSDB_MGMT_TABLE_USER,
  TSDB_MGMT_TABLE_DB,
  TSDB_MGMT_TABLE_TABLE,
147
  TSDB_MGMT_TABLE_DNODE,
S
slguan 已提交
148
  TSDB_MGMT_TABLE_MNODE,
H
hzcheng 已提交
149 150
  TSDB_MGMT_TABLE_VGROUP,
  TSDB_MGMT_TABLE_METRIC,
S
slguan 已提交
151
  TSDB_MGMT_TABLE_MODULE,
H
hzcheng 已提交
152 153
  TSDB_MGMT_TABLE_QUERIES,
  TSDB_MGMT_TABLE_STREAMS,
H
Haojun Liao 已提交
154
  TSDB_MGMT_TABLE_VARIABLES,
H
hzcheng 已提交
155
  TSDB_MGMT_TABLE_CONNS,
S
slguan 已提交
156 157
  TSDB_MGMT_TABLE_SCORES,
  TSDB_MGMT_TABLE_GRANTS,
L
lihui 已提交
158
  TSDB_MGMT_TABLE_VNODES,
S
Shengliang Guan 已提交
159
  TSDB_MGMT_TABLE_STREAMTABLES,
S
Shengliang Guan 已提交
160
  TSDB_MGMT_TABLE_CLUSTER,
S
Shengliang Guan 已提交
161
  TSDB_MGMT_TABLE_TP,
D
dapan1121 已提交
162
  TSDB_MGMT_TABLE_FUNCTION,
H
hzcheng 已提交
163 164 165
  TSDB_MGMT_TABLE_MAX,
};

166 167
#define TSDB_ALTER_TABLE_ADD_TAG_COLUMN    1
#define TSDB_ALTER_TABLE_DROP_TAG_COLUMN   2
168
#define TSDB_ALTER_TABLE_CHANGE_TAG_COLUMN 3
169
#define TSDB_ALTER_TABLE_UPDATE_TAG_VAL    4
H
hzcheng 已提交
170

171 172
#define TSDB_ALTER_TABLE_ADD_COLUMN        5
#define TSDB_ALTER_TABLE_DROP_COLUMN       6
S
Shengliang Guan 已提交
173
#define TSDB_ALTER_TABLE_CHANGE_COLUMN     7
D
dapan1121 已提交
174
#define TSDB_ALTER_TABLE_MODIFY_TAG_COLUMN 8
H
hzcheng 已提交
175

176 177 178 179 180 181 182 183
#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
184
#define TSDB_ALTER_USER_PRIVILEGES 0x2
H
hzcheng 已提交
185

186
#define TSDB_KILL_MSG_LEN          30
H
hzcheng 已提交
187

188 189
#define TSDB_VN_READ_ACCCESS       ((char)0x1)
#define TSDB_VN_WRITE_ACCCESS      ((char)0x2)
S
slguan 已提交
190
#define TSDB_VN_ALL_ACCCESS (TSDB_VN_READ_ACCCESS | TSDB_VN_WRITE_ACCCESS)
H
hzcheng 已提交
191

192 193 194 195
#define TSDB_COL_NORMAL             0x0u    // the normal column of the table
#define TSDB_COL_TAG                0x1u    // the tag column type
#define TSDB_COL_UDC                0x2u    // the user specified normal string column, it is a dummy column
#define TSDB_COL_NULL               0x4u    // the column filter NULL or not
Y
TD-1230  
yihaoDeng 已提交
196

197 198 199 200
#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)
Y
TD-1230  
yihaoDeng 已提交
201

202 203 204
// SSubmitBlk->flag define
#define FLAG_BLK_CONTROL            0x00000001 // SSubmitBlk is a control block to submit
#define IS_CONTROL_BLOCK(x)         (x->flag & FLAG_BLK_CONTROL)
H
hzcheng 已提交
205 206 207

extern char *taosMsg[];

S
slguan 已提交
208
#pragma pack(push, 1)
H
hzcheng 已提交
209

H
Haojun Liao 已提交
210
// null-terminated string instead of char array to avoid too many memory consumption in case of more than 1M tableMeta
211
typedef struct {
J
jtao1735 已提交
212
  char     fqdn[TSDB_FQDN_LEN];
213
  uint16_t port;
H
Haojun Liao 已提交
214 215
} SEpAddrMsg;

H
hzcheng 已提交
216
typedef struct {
H
hjxilinx 已提交
217 218 219 220 221 222 223 224
  int32_t numOfVnodes;
} SMsgDesc;

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

225 226
// Submit message for one table
typedef struct SSubmitBlk {
227 228
  uint64_t uid;        // table unique id
  int32_t  tid;        // table id
229
  int32_t  flag;       // extend special information, can see FLAG_BLK_??? define
230
  int32_t  sversion;   // data schema version
231 232
  int32_t  dataLen;    // data part length, not including the SSubmitBlk head
  int32_t  schemaLen;  // schema length, if length is 0, no schema exists
233 234
  int16_t  numOfRows;  // total number of rows in current submit block
  char     data[];
235 236 237 238 239
} SSubmitBlk;

// Submit message for this TSDB
typedef struct SSubmitMsg {
  SMsgHead   header;
240
  int8_t     extend;
241
  int32_t    length;
H
Hongze Cheng 已提交
242
  int32_t    numOfBlocks;
S
TD-1037  
Shengliang Guan 已提交
243
  char       blocks[];
244
} SSubmitMsg;
H
hzcheng 已提交
245

S
slguan 已提交
246
typedef struct {
247 248 249 250
  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
S
slguan 已提交
251 252 253
} SShellSubmitRspBlock;

typedef struct {
254
  int8_t               extend;
255 256 257 258
  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)
259
  int32_t              numOfTables;   // affected tables
S
slguan 已提交
260
  SShellSubmitRspBlock failedBlocks[];
S
slguan 已提交
261 262
} SShellSubmitRspMsg;

S
slguan 已提交
263
typedef struct SSchema {
S
slguan 已提交
264
  uint8_t type;
B
Bomin Zhang 已提交
265
  char    name[TSDB_COL_NAME_LEN];
S
slguan 已提交
266 267
  int16_t colId;
  int16_t bytes;
S
slguan 已提交
268
} SSchema;
H
hzcheng 已提交
269

270 271 272 273 274
typedef struct STimeWindow {
  TSKEY skey;
  TSKEY ekey;
} STimeWindow;

S
slguan 已提交
275
typedef struct {
276 277 278 279 280
  int32_t  contLen;
  int32_t  vgId;
  int8_t   tableType;
  int16_t  numOfColumns;
  int16_t  numOfTags;
H
Haojun Liao 已提交
281
  int32_t  tid;
282
  int32_t  sversion;
283
  int32_t  tversion;
284 285 286 287 288
  int32_t  tagDataLen;
  int32_t  sqlDataLen;
  uint64_t uid;
  uint64_t superTableUid;
  uint64_t createdTime;
H
Haojun Liao 已提交
289 290
  char     tableFname[TSDB_TABLE_FNAME_LEN];
  char     stableFname[TSDB_TABLE_FNAME_LEN];
291
  char     data[];
S
slguan 已提交
292
} SMDCreateTableMsg;
S
slguan 已提交
293

H
hzcheng 已提交
294
typedef struct {
295
  int8_t  extend;
296
  int32_t len;  // one create table message
297
  char    tableName[TSDB_TABLE_FNAME_LEN];
298
  int8_t  igExists;
S
slguan 已提交
299
  int8_t  getMeta;
300 301 302 303 304
  int16_t numOfTags;
  int16_t numOfColumns;
  int16_t sqlLen;  // the length of SQL, it starts after schema , sql is a null-terminated string
  int8_t  reserved[16];
  char    schema[];
305 306 307
} SCreateTableMsg;

typedef struct {
308
  int8_t  extend;
309 310
  int32_t numOfTables;
  int32_t contLen;
311
} SCMCreateTableMsg;
H
hzcheng 已提交
312 313

typedef struct {
314
  int8_t extend;
315
  char   name[TSDB_TABLE_FNAME_LEN];
316 317
  // if user specify DROP STABLE, this flag will be set. And an error will be returned if it is not a super table
  int8_t supertable;
318
  int8_t igNotExists;
319
} SCMDropTableMsg;
H
hzcheng 已提交
320 321

typedef struct {
322
  int8_t  extend;
H
Haojun Liao 已提交
323
  char    tableFname[TSDB_TABLE_FNAME_LEN];
324
  char    db[TSDB_ACCT_ID_LEN + TSDB_DB_NAME_LEN];
325
  int16_t type; /* operation type   */
326 327
  int16_t numOfCols; /* number of schema */
  int32_t tagValLen;
S
slguan 已提交
328
  SSchema schema[];
329 330
  // tagVal is padded after schema
  // char    tagVal[];
S
TD-1732  
Shengliang Guan 已提交
331
} SAlterTableMsg;
H
hzcheng 已提交
332

333 334
typedef struct {
  SMsgHead  head;
335
  int8_t    extend;
336 337 338 339
  int64_t   uid;
  int32_t   tid;
  int16_t   tversion;
  int16_t   colId;
H
Hongze Cheng 已提交
340
  int8_t    type;
H
Haojun Liao 已提交
341
  int16_t   bytes;
342
  int32_t   tagValLen;
343 344
  int16_t   numOfTags;
  int32_t   schemaLen;
345 346 347
  char      data[];
} SUpdateTableTagValMsg;

S
slguan 已提交
348
typedef struct {
349
  int8_t  extend;
350 351
  char    clientVersion[TSDB_VERSION_LEN];  // useless
  char    msgVersion[TSDB_VERSION_LEN];     // useless
S
TD-1762  
Shengliang Guan 已提交
352 353
  char    db[TSDB_TABLE_FNAME_LEN];
  char    appName[TSDB_APPNAME_LEN];
H
Haojun Liao 已提交
354
  int32_t pid;
S
TD-1762  
Shengliang Guan 已提交
355
} SConnectMsg;
S
slguan 已提交
356 357

typedef struct {
358
  int8_t    extend;
359
  char      acctId[TSDB_ACCT_ID_LEN];
S
slguan 已提交
360
  char      serverVersion[TSDB_VERSION_LEN];
361
  char      clusterId[TSDB_CLUSTER_ID_LEN];
S
slguan 已提交
362 363
  int8_t    writeAuth;
  int8_t    superAuth;
S
Shengliang Guan 已提交
364 365 366
  int8_t    reserved1;
  int8_t    reserved2;
  int32_t   connId;
367
  SRpcEpSet epSet;
S
TD-1762  
Shengliang Guan 已提交
368
} SConnectRsp;
S
slguan 已提交
369

H
hzcheng 已提交
370 371 372 373 374 375 376 377 378 379 380
typedef struct {
  int32_t maxUsers;
  int32_t maxDbs;
  int32_t maxTimeSeries;
  int32_t maxConnections;
  int32_t maxStreams;
  int32_t maxPointsPerSecond;
  int64_t maxStorage;    // In unit of GB
  int64_t maxQueryTime;  // In unit of hour
  int64_t maxInbound;
  int64_t maxOutbound;
381
  int8_t  accessState;  // Configured only by command
S
slguan 已提交
382
} SAcctCfg;
H
hzcheng 已提交
383 384

typedef struct {
385
  int8_t   extend;
B
Bomin Zhang 已提交
386
  char     user[TSDB_USER_LEN];
387
  char     pass[TSDB_PASS_LEN];
S
slguan 已提交
388
  SAcctCfg cfg;
S
TD-1762  
Shengliang Guan 已提交
389
} SCreateAcctMsg, SAlterAcctMsg;
H
hzcheng 已提交
390 391

typedef struct {
392 393
  int8_t     extend;
  char       user[TSDB_USER_LEN];
S
TD-1732  
Shengliang Guan 已提交
394
} SDropUserMsg, SDropAcctMsg;
S
slguan 已提交
395 396

typedef struct {
397
  int8_t extend;
B
Bomin Zhang 已提交
398
  char   user[TSDB_USER_LEN];
399
  char   pass[TSDB_PASS_LEN];
S
slguan 已提交
400 401
  int8_t privilege;
  int8_t flag;
S
TD-1732  
Shengliang Guan 已提交
402
} SCreateUserMsg, SAlterUserMsg;
H
hzcheng 已提交
403 404

typedef struct {
405 406
  int32_t  contLen;
  int32_t  vgId;
H
Haojun Liao 已提交
407
  int32_t  tid;
408
  uint64_t uid;
H
Haojun Liao 已提交
409
  char     tableFname[TSDB_TABLE_FNAME_LEN];
S
slguan 已提交
410
} SMDDropTableMsg;
H
hzcheng 已提交
411

S
slguan 已提交
412
typedef struct {
413 414 415
  int32_t  contLen;
  int32_t  vgId;
  uint64_t uid;
H
Haojun Liao 已提交
416
  char    tableFname[TSDB_TABLE_FNAME_LEN];
S
TD-1732  
Shengliang Guan 已提交
417
} SDropSTableMsg;
S
slguan 已提交
418

S
slguan 已提交
419
typedef struct {
420
  int32_t vgId;
Y
yihaoDeng 已提交
421
} SDropVnodeMsg, SSyncVnodeMsg, SCompactVnodeMsg;
H
hzcheng 已提交
422

423 424 425 426 427 428 429 430
typedef struct {
  int32_t     contLen;
  int32_t     vgId;
  uint64_t    uid;
  uint16_t    nSpan;
  char        tableFname[TSDB_TABLE_FNAME_LEN];
  STimeWindow span[];
} STruncateTblMsg;
C
Cary Xu 已提交
431 432 433 434 435 436 437
typedef struct {
  int32_t     contLen;
  int32_t     vgId;
  uint64_t    uid;
  uint16_t    nSpan;
  char        tableFname[TSDB_TABLE_FNAME_LEN];
  STimeWindow span[];
C
Cary Xu 已提交
438
} SDeleteDataMsg;
439

440
typedef struct SColIndex {
441 442 443
  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
  uint16_t flag;       // denote if it is a tag or a normal column
wmmhello's avatar
wmmhello 已提交
444
  char     name[TSDB_COL_NAME_LEN + TSDB_TABLE_NAME_LEN + TSDB_MAX_JSON_KEY_LEN + 4 + 1];  // 4 meams ->'' for json tag
445
} SColIndex;
H
hzcheng 已提交
446

S
slguan 已提交
447
typedef struct SColumnFilterInfo {
H
hzcheng 已提交
448 449
  int16_t lowerRelOptr;
  int16_t upperRelOptr;
450
  int16_t filterstr;   // denote if current column is char(binary/nchar)
H
hzcheng 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465

  union {
    struct {
      int64_t lowerBndi;
      int64_t upperBndi;
    };
    struct {
      double lowerBndd;
      double upperBndd;
    };
    struct {
      int64_t pz;
      int64_t len;
    };
  };
S
slguan 已提交
466 467
} SColumnFilterInfo;

468 469 470 471 472 473 474
typedef struct SColumnFilterList {
  int16_t              numOfFilters;
  union{
    int64_t placeholder;
    SColumnFilterInfo *filterInfo;
  };
} SColumnFilterList;
S
slguan 已提交
475 476 477 478 479 480 481
/*
 * 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 {
  int16_t            colId;
  int16_t            type;
482
  int32_t            bytes;
483
  SColumnFilterList  flist;
S
slguan 已提交
484
} SColumnInfo;
H
hzcheng 已提交
485

486
typedef struct STableIdInfo {
487 488 489
  uint64_t uid;
  int32_t  tid;
  TSKEY    key;  // last accessed ts, for subscription
490
} STableIdInfo;
H
hzcheng 已提交
491

H
Haojun Liao 已提交
492 493 494 495 496 497 498
typedef struct {
  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
} STsBufInfo;

H
hzcheng 已提交
499
typedef struct {
500
  SMsgHead    head;
501
  int8_t      extend;
502 503
  char        version[TSDB_VERSION_LEN];

H
Haojun Liao 已提交
504 505
  bool        stableQuery;      // super table query or not
  bool        topBotQuery;      // TODO used bitwise flag
W
wpan 已提交
506
  bool        interpQuery;      // interp query or not
H
Haojun Liao 已提交
507 508 509 510 511 512 513 514
  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
515
  bool        needTableSeqScan; // need scan table by table
H
Haojun Liao 已提交
516
  bool        needReverseScan;  // need reverse scan
517
  bool        stateWindow;       // state window flag 
H
Haojun Liao 已提交
518

H
hjxilinx 已提交
519
  STimeWindow window;
D
dapan1121 已提交
520
  STimeWindow range;            // result range for interp query
521 522 523 524
  int32_t     numOfTables;
  int16_t     order;
  int16_t     orderColId;
  int16_t     numOfCols;        // the number of columns will be load from vnode
525
  SInterval   interval;
526
  SSessionWindow sw;            // session window
527
  uint32_t    tagCondLen;       // tag length in current query
528
  int32_t    colCondLen;       // column length in current query
529
  int16_t     numOfGroupCols;   // num of group by columns
wmmhello's avatar
wmmhello 已提交
530 531
  int16_t     orderByIdx;       // useless
  int16_t     groupOrderType;   // used for group order
532
  int64_t     vgroupLimit;      // limit the number of rows for each table, used in order by + limit in stable projection query.
533
  int16_t     prjOrder;         // global order in super table projection query.
534 535
  int64_t     limit;
  int64_t     offset;
H
Haojun Liao 已提交
536
  uint32_t    queryType;        // denote another query process
H
Haojun Liao 已提交
537
  int16_t     numOfOutput;      // final output columns numbers
538 539
  int16_t     fillType;         // interpolate type
  uint64_t    fillVal;          // default value array list
H
Haojun Liao 已提交
540
  int32_t     secondStageOutput;
H
Haojun Liao 已提交
541
  STsBufInfo  tsBuf;            // tsBuf info
542
  int32_t     numOfTags;        // number of tags columns involved
543
  int32_t     sqlstrLen;        // sql query string
544
  int32_t     prevResultLen;    // previous result length
H
Haojun Liao 已提交
545 546
  int32_t     numOfOperator;
  int32_t     tableScanOperator;// table scan operator. -1 means no scan operator
H
Haojun Liao 已提交
547 548 549
  int32_t     udfNum;           // number of udf function
  int32_t     udfContentOffset;
  int32_t     udfContentLen;
H
Haojun Liao 已提交
550
  SColumnInfo tableCols[];
S
slguan 已提交
551
} SQueryTableMsg;
H
hzcheng 已提交
552 553

typedef struct {
554
  int8_t   extend;
H
hjxilinx 已提交
555
  int32_t  code;
H
Haojun Liao 已提交
556
  union{uint64_t qhandle; uint64_t qId;}; // query handle
S
slguan 已提交
557
} SQueryTableRsp;
H
hzcheng 已提交
558

H
Haojun Liao 已提交
559
// todo: the show handle should be replaced with id
H
hzcheng 已提交
560
typedef struct {
561
  SMsgHead header;
562
  int8_t     extend;
H
Haojun Liao 已提交
563
  union{uint64_t qhandle; uint64_t qId;}; // query handle
H
hjxilinx 已提交
564
  uint16_t free;
S
slguan 已提交
565
} SRetrieveTableMsg;
H
hzcheng 已提交
566

567
typedef struct SRetrieveTableRsp {
568
  int8_t  extend;
H
hzcheng 已提交
569
  int32_t numOfRows;
570
  int8_t  completed;  // all results are returned to client
H
hzcheng 已提交
571
  int16_t precision;
572
  int64_t offset;     // updated offset value for multi-vnode projection query
H
hzcheng 已提交
573
  int64_t useconds;
574
  int8_t  compressed;
575
  int32_t compLen;
H
hzcheng 已提交
576
  char    data[];
S
slguan 已提交
577
} SRetrieveTableRsp;
H
hzcheng 已提交
578 579

typedef struct {
S
TD-2429  
Shengliang Guan 已提交
580 581 582 583 584 585 586 587 588 589
  int32_t  vgId;
  int32_t  dbCfgVersion;
  int64_t  totalStorage;
  int64_t  compStorage;
  int64_t  pointsWritten;
  uint64_t vnodeVersion;
  int32_t  vgCfgVersion;
  uint8_t  status;
  uint8_t  role;
  uint8_t  replica;
590
  uint8_t  compact;
591
  uint8_t  truncate;
H
hzcheng 已提交
592 593 594
} SVnodeLoad;

typedef struct {
595
  int8_t   extend;
596
  char     db[TSDB_ACCT_ID_LEN + TSDB_DB_NAME_LEN];
S
slguan 已提交
597
  int32_t  cacheBlockSize; //MB
598 599
  int32_t  totalBlocks;
  int32_t  maxTables;
S
slguan 已提交
600
  int32_t  daysPerFile;
D
dapan1121 已提交
601
  int32_t  daysToKeep0;
S
slguan 已提交
602 603 604 605
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
  int32_t  minRowsPerFileBlock;
  int32_t  maxRowsPerFileBlock;
606
  int32_t  commitTime;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
607
  int32_t  fsyncPeriod;
608
  uint8_t  precision;   // time resolution
S
slguan 已提交
609
  int8_t   compression;
H
hjxilinx 已提交
610
  int8_t   walLevel;
S
slguan 已提交
611
  int8_t   replications;
612
  int8_t   quorum;
S
slguan 已提交
613
  int8_t   ignoreExist;
S
Shengliang Guan 已提交
614
  int8_t   update;
M
Minglei Jin 已提交
615
  int8_t   cacheLastRow;
S
Shengliang Guan 已提交
616 617 618
  int8_t   dbType;
  int16_t  partitions;
  int8_t   reserve[5];
S
TD-1732  
Shengliang Guan 已提交
619
} SCreateDbMsg, SAlterDbMsg;
H
hzcheng 已提交
620

D
dapan1121 已提交
621
typedef struct {
622
  int8_t   extend;
D
dapan1121 已提交
623
  char     name[TSDB_FUNC_NAME_LEN];
D
dapan1121 已提交
624
  char     path[PATH_MAX];
625
  int32_t  funcType;
D
dapan1121 已提交
626 627
  uint8_t  outputType;
  int16_t  outputLen;
D
dapan1121 已提交
628
  int32_t  bufSize;
D
dapan1121 已提交
629 630 631 632
  int32_t  codeLen;
  char     code[];
} SCreateFuncMsg;

H
Haojun Liao 已提交
633
typedef struct {
634
  int8_t  extend;
H
Haojun Liao 已提交
635 636 637 638 639
  int32_t num;
  char    name[];
} SRetrieveFuncMsg;

typedef struct {
640
  int8_t  extend;
H
Haojun Liao 已提交
641
  char    name[TSDB_FUNC_NAME_LEN];
642
  int32_t funcType;
H
Haojun Liao 已提交
643
  int8_t  resType;
H
Haojun Liao 已提交
644
  int16_t resBytes;
D
dapan1121 已提交
645
  int32_t bufSize;
H
Haojun Liao 已提交
646
  int32_t len;
H
Haojun Liao 已提交
647 648 649 650
  char    content[];
} SFunctionInfoMsg;

typedef struct {
651
  int8_t  extend;
H
Haojun Liao 已提交
652 653 654 655
  int32_t num;
  char    content[];
} SUdfFuncMsg;

D
dapan1121 已提交
656
typedef struct {
657
  int8_t   extend;
D
dapan1121 已提交
658 659 660
  char     name[TSDB_FUNC_NAME_LEN];
} SDropFuncMsg;

661
typedef struct {
662
  int8_t  extend;
H
Haojun Liao 已提交
663
  char    db[TSDB_TABLE_FNAME_LEN];
664
  uint8_t ignoreNotExists;
665
} SDropDbMsg, SUseDbMsg, SSyncDbMsg;
H
hzcheng 已提交
666 667 668 669 670 671 672 673 674 675 676

// IMPORTANT: sizeof(SVnodeStatisticInfo) should not exceed
// TSDB_FILE_HEADER_LEN/4 - TSDB_FILE_HEADER_VERSION_SIZE
typedef struct {
  int64_t pointsWritten;  // In unit of points
  int64_t totalStorage;   // In unit of bytes
  int64_t compStorage;    // In unit of bytes
  int64_t queryTime;      // In unit of second ??
  char    reserved[64];
} SVnodeStatisticInfo;

S
slguan 已提交
677 678 679
typedef struct {
  int32_t  vgId;
  int8_t   accessState;
S
TD-1732  
Shengliang Guan 已提交
680
} SVgroupAccess;
S
slguan 已提交
681

S
slguan 已提交
682
typedef struct {
S
slguan 已提交
683
  int32_t  dnodeId;
S
slguan 已提交
684 685
  uint32_t moduleStatus;
  uint32_t numOfVnodes;
686 687
  char     clusterId[TSDB_CLUSTER_ID_LEN];
  char     reserved[16];
S
TD-1762  
Shengliang Guan 已提交
688 689 690 691 692 693 694
} SDnodeCfg;

typedef struct {
  int32_t  dnodeId;
  uint16_t dnodePort;
  char     dnodeFqdn[TSDB_FQDN_LEN];
} SDnodeEp;
S
slguan 已提交
695 696

typedef struct {
S
TD-1762  
Shengliang Guan 已提交
697 698 699
  int32_t  dnodeNum;
  SDnodeEp dnodeEps[];
} SDnodeEps;
S
slguan 已提交
700 701

typedef struct {
S
TD-1762  
Shengliang Guan 已提交
702 703
  int32_t mnodeId;
  char    mnodeEp[TSDB_EP_LEN];
S
TD-2331  
Shengliang Guan 已提交
704
} SMInfo;
S
slguan 已提交
705 706

typedef struct {
S
TD-2331  
Shengliang Guan 已提交
707 708 709 710
  int8_t inUse;
  int8_t mnodeNum;
  SMInfo mnodeInfos[TSDB_MAX_REPLICA];
} SMInfos;
S
slguan 已提交
711

H
hzcheng 已提交
712
typedef struct {
H
Hui Li 已提交
713 714 715 716
  int32_t  numOfMnodes;               // tsNumOfMnodes
  int32_t  mnodeEqualVnodeNum;        // tsMnodeEqualVnodeNum
  int32_t  offlineThreshold;          // tsOfflineThreshold
  int32_t  statusInterval;            // tsStatusInterval
717 718
  int32_t  maxtablesPerVnode;
  int32_t  maxVgroupsPerDb;
H
Hui Li 已提交
719
  char     arbitrator[TSDB_EP_LEN];   // tsArbitrator
720
  char     reserve[2];                // to solve arm32 bus error
H
Hui Li 已提交
721
  char     timezone[64];              // tsTimezone
H
Hui Li 已提交
722
  int64_t  checkTime;                 // 1970-01-01 00:00:00.000
H
Hui Li 已提交
723 724
  char     locale[TSDB_LOCALE_LEN];   // tsLocale
  char     charset[TSDB_LOCALE_LEN];  // tsCharset
S
Shengliang Guan 已提交
725 726 727 728 729
  int8_t   enableBalance;             // tsEnableBalance
  int8_t   flowCtrl;
  int8_t   slaveQuery;
  int8_t   adjustMaster;
  int8_t   reserved[4];
H
Hui Li 已提交
730 731 732 733 734 735 736 737
} SClusterCfg;

typedef struct {
  uint32_t    version;
  int32_t     dnodeId;
  char        dnodeEp[TSDB_EP_LEN];
  uint32_t    moduleStatus;
  uint32_t    lastReboot;        // time stamp for last reboot
S
Shengliang Guan 已提交
738
  uint16_t    reserve1;          // from config file
H
Hui Li 已提交
739 740 741
  uint16_t    openVnodes;
  uint16_t    numOfCores;
  float       diskAvailable;  // GB
742
  char        clusterId[TSDB_CLUSTER_ID_LEN];
H
Hui Li 已提交
743
  uint8_t     alternativeRole;
S
Shengliang Guan 已提交
744
  uint8_t     reserve2[15];
H
Hui Li 已提交
745
  SClusterCfg clusterCfg;
H
Hui Li 已提交
746
  SVnodeLoad  load[];
S
TD-1732  
Shengliang Guan 已提交
747
} SStatusMsg;
H
hzcheng 已提交
748

S
slguan 已提交
749
typedef struct {
S
TD-2331  
Shengliang Guan 已提交
750
  SMInfos       mnodes;
S
TD-1732  
Shengliang Guan 已提交
751 752 753
  SDnodeCfg     dnodeCfg;
  SVgroupAccess vgAccess[];
} SStatusRsp;
S
slguan 已提交
754

H
hzcheng 已提交
755
typedef struct {
S
slguan 已提交
756
  uint32_t vgId;
S
TD-2270  
Shengliang Guan 已提交
757
  int32_t  dbCfgVersion;
758
  int32_t  maxTables;
S
slguan 已提交
759 760
  int32_t  cacheBlockSize;
  int32_t  totalBlocks;
S
slguan 已提交
761 762 763 764
  int32_t  daysPerFile;
  int32_t  daysToKeep;
  int32_t  daysToKeep1;
  int32_t  daysToKeep2;
S
slguan 已提交
765 766
  int32_t  minRowsPerFileBlock;
  int32_t  maxRowsPerFileBlock;
S
slguan 已提交
767
  int32_t  commitTime;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
768
  int32_t  fsyncPeriod;
S
slguan 已提交
769
  int8_t   precision;
S
slguan 已提交
770
  int8_t   compression;
H
hjxilinx 已提交
771
  int8_t   walLevel;
S
TD-2429  
Shengliang Guan 已提交
772
  int8_t   vgReplica;
S
slguan 已提交
773
  int8_t   wals;
S
slguan 已提交
774
  int8_t   quorum;
S
Shengliang Guan 已提交
775
  int8_t   update;
M
Minglei Jin 已提交
776
  int8_t   cacheLastRow;
S
TD-2270  
Shengliang Guan 已提交
777
  int32_t  vgCfgVersion;
S
TD-2429  
Shengliang Guan 已提交
778
  int8_t   dbReplica;
S
TD-3130  
Shengliang Guan 已提交
779 780
  int8_t   dbType;
  int8_t   reserved[8];
S
TD-1732  
Shengliang Guan 已提交
781
} SVnodeCfg;
S
slguan 已提交
782 783 784

typedef struct {
  int32_t  nodeId;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
785
  char     nodeEp[TSDB_EP_LEN];
S
TD-1732  
Shengliang Guan 已提交
786
} SVnodeDesc;
S
slguan 已提交
787 788

typedef struct {
789
  char       db[TSDB_ACCT_ID_LEN + TSDB_DB_NAME_LEN];
S
TD-1732  
Shengliang Guan 已提交
790 791 792
  SVnodeCfg  cfg;
  SVnodeDesc nodes[TSDB_MAX_REPLICA];
} SCreateVnodeMsg, SAlterVnodeMsg;
H
hzcheng 已提交
793 794

typedef struct {
795
  int8_t  extend;
H
Haojun Liao 已提交
796
  char    tableFname[TSDB_TABLE_FNAME_LEN];
S
slguan 已提交
797 798
  int16_t createFlag;
  char    tags[];
S
TD-1732  
Shengliang Guan 已提交
799
} STableInfoMsg;
H
hzcheng 已提交
800 801

typedef struct {
802
  int8_t  extend;
803
  uint8_t metaClone;     // create local clone of the cached table meta
H
Haojun Liao 已提交
804
  int32_t numOfVgroups;
S
slguan 已提交
805
  int32_t numOfTables;
D
dapan1121 已提交
806
  int32_t numOfUdfs;
807
  char    tableNames[];
S
TD-1732  
Shengliang Guan 已提交
808
} SMultiTableInfoMsg;
H
hzcheng 已提交
809

S
TD-1732  
Shengliang Guan 已提交
810
typedef struct SSTableVgroupMsg {
811
  int8_t  extend;
H
hjxilinx 已提交
812
  int32_t numOfTables;
S
TD-1732  
Shengliang Guan 已提交
813
} SSTableVgroupMsg, SSTableVgroupRspMsg;
S
slguan 已提交
814

H
Haojun Liao 已提交
815
typedef struct {
816
  int8_t     extend;
H
Haojun Liao 已提交
817 818 819
  int32_t    vgId;
  int8_t     numOfEps;
  SEpAddrMsg epAddr[TSDB_MAX_REPLICA];
820
} SVgroupMsg, SVgroupInfo;
H
Haojun Liao 已提交
821 822

typedef struct {
823
  int8_t     extend;
H
Haojun Liao 已提交
824
  int32_t numOfVgroups;
S
TD-1732  
Shengliang Guan 已提交
825
  SVgroupMsg vgroups[];
H
Haojun Liao 已提交
826
} SVgroupsMsg, SVgroupsInfo;
H
Haojun Liao 已提交
827

H
hjxilinx 已提交
828
typedef struct STableMetaMsg {
829
  int8_t        extend;
S
slguan 已提交
830
  int32_t       contLen;
H
Haojun Liao 已提交
831
  char          tableFname[TSDB_TABLE_FNAME_LEN];   // table id
S
slguan 已提交
832 833
  uint8_t       numOfTags;
  uint8_t       precision;
834
  uint8_t       update;
S
slguan 已提交
835 836 837
  uint8_t       tableType;
  int16_t       numOfColumns;
  int16_t       sversion;
838
  int16_t       tversion;
H
Haojun Liao 已提交
839
  int32_t       tid;
S
slguan 已提交
840
  uint64_t      uid;
S
TD-1732  
Shengliang Guan 已提交
841
  SVgroupMsg    vgroup;
842 843 844

  char          sTableName[TSDB_TABLE_FNAME_LEN];
  uint64_t      suid;
S
slguan 已提交
845
  SSchema       schema[];
H
hjxilinx 已提交
846
} STableMetaMsg;
H
hzcheng 已提交
847

S
slguan 已提交
848
typedef struct SMultiTableMeta {
D
dapan1121 已提交
849
  int8_t        extend;
850
  int32_t       numOfTables;
H
Haojun Liao 已提交
851
  int32_t       numOfVgroup;
D
dapan1121 已提交
852
  int32_t       numOfUdf;
853
  int32_t       contLen;
H
Haojun Liao 已提交
854 855
  uint8_t       compressed;      // denote if compressed or not
  uint32_t      rawLen;          // size before compress
856
  uint8_t       metaClone;       // make meta clone after retrieve meta from mnode
857
  char          meta[];
S
slguan 已提交
858
} SMultiTableMeta;
S
slguan 已提交
859

H
hzcheng 已提交
860
typedef struct {
861
  int32_t dataLen;
862 863
  char    name[TSDB_TABLE_FNAME_LEN];
  char   *data;
H
hzcheng 已提交
864 865 866 867 868 869 870 871
} STagData;

/*
 * sql: show tables like '%a_%'
 * payload is the query condition, e.g., '%a_%'
 * payloadLen is the length of payload
 */
typedef struct {
872
  int8_t   extend;
S
slguan 已提交
873
  int8_t   type;
874
  char     db[TSDB_ACCT_ID_LEN + TSDB_DB_NAME_LEN];
H
hzcheng 已提交
875 876
  uint16_t payloadLen;
  char     payload[];
S
TD-1732  
Shengliang Guan 已提交
877
} SShowMsg;
H
hzcheng 已提交
878

Y
yihaoDeng 已提交
879
typedef struct {
880
  int8_t     extend;
Y
yihaoDeng 已提交
881 882 883 884 885
  char db[TSDB_ACCT_ID_LEN + TSDB_DB_NAME_LEN];
  int32_t numOfVgroup;
  int32_t vgid[];
} SCompactMsg;

S
TD-1732  
Shengliang Guan 已提交
886
typedef struct SShowRsp {
887
  int8_t        extend;
H
hjxilinx 已提交
888 889
  uint64_t      qhandle;
  STableMetaMsg tableMeta;
S
TD-1732  
Shengliang Guan 已提交
890
} SShowRsp;
S
slguan 已提交
891 892

typedef struct {
893
  int8_t     extend;
S
TD-1732  
Shengliang Guan 已提交
894 895
  char ep[TSDB_EP_LEN];  // end point, hostname:port
} SCreateDnodeMsg, SDropDnodeMsg;
H
hzcheng 已提交
896

S
TD-1671  
Shengliang Guan 已提交
897 898 899
typedef struct {
  int32_t dnodeId;
  char    dnodeEp[TSDB_EP_LEN];  // end point, hostname:port
S
TD-2331  
Shengliang Guan 已提交
900
  SMInfos mnodes;
S
TD-1732  
Shengliang Guan 已提交
901
} SCreateMnodeMsg;
S
TD-1671  
Shengliang Guan 已提交
902

H
hzcheng 已提交
903
typedef struct {
S
Shengliang Guan 已提交
904 905
  int32_t dnodeId;
  int32_t vgId;
H
Haojun Liao 已提交
906
  int32_t tid;
S
TD-1732  
Shengliang Guan 已提交
907
} SConfigTableMsg;
H
hzcheng 已提交
908

S
slguan 已提交
909
typedef struct {
S
slguan 已提交
910 911
  uint32_t dnodeId;
  int32_t  vgId;
S
TD-1732  
Shengliang Guan 已提交
912
} SConfigVnodeMsg;
H
hzcheng 已提交
913 914

typedef struct {
915
  int8_t extend;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
916
  char ep[TSDB_EP_LEN];  // end point, hostname:port
917
  char config[64];
S
TD-1732  
Shengliang Guan 已提交
918
} SCfgDnodeMsg;
H
hzcheng 已提交
919 920

typedef struct {
H
hjxilinx 已提交
921
  char     sql[TSDB_SHOW_SQL_LEN];
H
hzcheng 已提交
922 923 924
  uint32_t queryId;
  int64_t  useconds;
  int64_t  stime;
H
Haojun Liao 已提交
925
  uint64_t qId;
926 927 928
  uint64_t sqlObjId;
  int32_t  pid;
  char     fqdn[TSDB_FQDN_LEN];
929
  uint8_t  stableQuery;
930
  int32_t  numOfSub;
931
  char     subSqlInfo[TSDB_SHOW_SUBQUERY_LEN]; //include subqueries' index, Obj IDs and states(C-complete/I-imcomplete)
S
slguan 已提交
932
} SQueryDesc;
H
hzcheng 已提交
933 934

typedef struct {
H
hjxilinx 已提交
935
  char     sql[TSDB_SHOW_SQL_LEN];
936
  char     dstTable[TSDB_TABLE_NAME_LEN];
H
hzcheng 已提交
937 938 939 940 941 942 943
  uint32_t streamId;
  int64_t  num;  // number of computing/cycles
  int64_t  useconds;
  int64_t  ctime;
  int64_t  stime;
  int64_t  slidingTime;
  int64_t  interval;
S
slguan 已提交
944
} SStreamDesc;
H
hzcheng 已提交
945

S
slguan 已提交
946
typedef struct {
947
  int8_t   extend;
948
  char     clientVer[TSDB_VERSION_LEN];   // useless
S
Shengliang Guan 已提交
949
  uint32_t connId;
H
Haojun Liao 已提交
950
  int32_t  pid;
951 952
  int32_t  numOfQueries;
  int32_t  numOfStreams;
H
Haojun Liao 已提交
953
  char     appName[TSDB_APPNAME_LEN];
954
  char     pData[];
S
TD-1732  
Shengliang Guan 已提交
955
} SHeartBeatMsg;
S
slguan 已提交
956 957

typedef struct {
958
  int8_t    extend;
S
slguan 已提交
959 960
  uint32_t  queryId;
  uint32_t  streamId;
961 962
  uint32_t  totalDnodes;
  uint32_t  onlineDnodes;
S
Shengliang Guan 已提交
963
  uint32_t  connId;
S
slguan 已提交
964
  int8_t    killConnection;
965
  SRpcEpSet epSet;
S
TD-1732  
Shengliang Guan 已提交
966
} SHeartBeatRsp;
H
hzcheng 已提交
967 968

typedef struct {
969
  int8_t     extend;
S
slguan 已提交
970
  char queryId[TSDB_KILL_MSG_LEN + 1];
S
TD-1732  
Shengliang Guan 已提交
971
} SKillQueryMsg, SKillStreamMsg, SKillConnMsg;
H
hzcheng 已提交
972 973

typedef struct {
974
  int8_t   extend;
S
slguan 已提交
975
  int32_t  vnode;
H
hzcheng 已提交
976 977 978
  int32_t  sid;
  uint64_t uid;
  uint64_t stime;  // stream starting time
S
slguan 已提交
979
  int32_t  status;
H
Haojun Liao 已提交
980
  char     tableFname[TSDB_TABLE_FNAME_LEN];
S
TD-1732  
Shengliang Guan 已提交
981
} SAlterStreamMsg;
H
hzcheng 已提交
982

S
Shengliang Guan 已提交
983
typedef struct {
B
Bomin Zhang 已提交
984
  char user[TSDB_USER_LEN];
S
Shengliang Guan 已提交
985 986
  char spi;
  char encrypt;
B
Bomin Zhang 已提交
987 988
  char secret[TSDB_KEY_LEN];
  char ckey[TSDB_KEY_LEN];
S
TD-1732  
Shengliang Guan 已提交
989
} SAuthMsg, SAuthRsp;
S
Shengliang Guan 已提交
990

991 992 993 994 995 996 997 998
typedef struct {
  int8_t  finished;
  int8_t  reserved1[7];
  char    name[TSDB_STEP_NAME_LEN];
  char    desc[TSDB_STEP_DESC_LEN];
  char    reserved2[64];
} SStartupStep;

999 1000 1001 1002 1003 1004
typedef struct {
  int16_t type;
  int32_t len;
  char    value[];
} STLV;

1005
// Ox00000001 ~ 0x00010000 command id  16 items
1006
#define CMD_DELETE_DATA 0x00000001
1007 1008 1009

// 0x00010000 ~ 0x10000000 command flag 16 items
#define FLAG_SUPER_TABLE 0x00010000
1010 1011

#define GET_CTLDATA_SIZE(p) (sizeof(SControlData) + p->tnum * sizeof(int32_t))
1012
typedef struct SControlData {
1013
  uint32_t    command;  // see define CMD_???
1014
  STimeWindow win;
1015 1016 1017
  // tag cond
  int32_t     tagCondLen;
  char        tagCond[];
1018 1019
} SControlData;

1020
enum {
1021
  TLV_TYPE_END_MARK = -1,
S
shenglian zhou 已提交
1022 1023
  //TLV_TYPE_DUMMY = 1,
  TLV_TYPE_META_VERSION = 1,
1024 1025
};

S
slguan 已提交
1026
#pragma pack(pop)
H
hzcheng 已提交
1027 1028 1029 1030 1031 1032

#ifdef __cplusplus
}
#endif

#endif