tcommon.h 9.6 KB
Newer Older
H
Haojun Liao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

S
Shengliang Guan 已提交
16 17
#ifndef _TD_COMMON_DEF_H_
#define _TD_COMMON_DEF_H_
H
Haojun Liao 已提交
18

H
Haojun Liao 已提交
19
#include "taosdef.h"
H
Haojun Liao 已提交
20
#include "tarray.h"
L
Liu Jicong 已提交
21
#include "tmsg.h"
22
#include "tvariant.h"
S
Shengliang Guan 已提交
23 24 25 26 27

#ifdef __cplusplus
extern "C" {
#endif

L
Liu Jicong 已提交
28 29 30 31 32 33 34 35
// clang-format off
#define IS_META_MSG(x) ( \
     x == TDMT_VND_CREATE_STB     \
  || x == TDMT_VND_ALTER_STB      \
  || x == TDMT_VND_DROP_STB       \
  || x == TDMT_VND_CREATE_TABLE   \
  || x == TDMT_VND_ALTER_TABLE    \
  || x == TDMT_VND_DROP_TABLE     \
wmmhello's avatar
wmmhello 已提交
36
  || x == TDMT_VND_DELETE         \
L
Liu Jicong 已提交
37 38 39
)
// clang-format on

5
54liuyao 已提交
40
typedef struct SWinKey {
41
  uint64_t groupId;
42
  TSKEY    ts;
43 44
} SWinKey;

5
54liuyao 已提交
45 46 47 48 49 50
typedef struct SSessionKey {
  STimeWindow win;
  uint64_t    groupId;
} SSessionKey;

static inline int winKeyCmprImpl(const void* pKey1, const void* pKey2) {
51 52 53
  SWinKey* pWin1 = (SWinKey*)pKey1;
  SWinKey* pWin2 = (SWinKey*)pKey2;

L
liuyao 已提交
54
  if (pWin1->groupId > pWin2->groupId) {
55
    return 1;
L
liuyao 已提交
56
  } else if (pWin1->groupId < pWin2->groupId) {
57 58 59
    return -1;
  }

L
liuyao 已提交
60
  if (pWin1->ts > pWin2->ts) {
61
    return 1;
L
liuyao 已提交
62
  } else if (pWin1->ts < pWin2->ts) {
63 64 65 66 67 68
    return -1;
  }

  return 0;
}

69
static inline int winKeyCmpr(const void* pKey1, int kLen1, const void* pKey2, int kLen2) {
5
54liuyao 已提交
70
  return winKeyCmprImpl(pKey1, pKey2);
71 72
}

73 74 75 76 77 78
typedef struct {
  uint64_t groupId;
  TSKEY    ts;
  int32_t  exprIdx;
} STupleKey;

H
Haojun Liao 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
typedef struct STuplePos {
  union {
    struct {
      int32_t pageId;
      int32_t offset;
    };
    STupleKey streamTupleKey;
  };
} STuplePos;

typedef struct SFirstLastRes {
  bool hasResult;
  // used for last_row function only, isNullRes in SResultRowEntry can not be passed to downstream.So,
  // this attribute is required
  bool      isNull;
  int32_t   bytes;
  int64_t   ts;
  STuplePos pos;
  char      buf[];
} SFirstLastRes;

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
static inline int STupleKeyCmpr(const void* pKey1, int kLen1, const void* pKey2, int kLen2) {
  STupleKey* pTuple1 = (STupleKey*)pKey1;
  STupleKey* pTuple2 = (STupleKey*)pKey2;

  if (pTuple1->groupId > pTuple2->groupId) {
    return 1;
  } else if (pTuple1->groupId < pTuple2->groupId) {
    return -1;
  }

  if (pTuple1->ts > pTuple2->ts) {
    return 1;
  } else if (pTuple1->ts < pTuple2->ts) {
    return -1;
  }

  if (pTuple1->exprIdx > pTuple2->exprIdx) {
    return 1;
  } else if (pTuple1->exprIdx < pTuple2->exprIdx) {
    return -1;
  }

  return 0;
}

L
Liu Jicong 已提交
125
enum {
L
Liu Jicong 已提交
126 127
  TMQ_MSG_TYPE__DUMMY = 0,
  TMQ_MSG_TYPE__POLL_RSP,
L
Liu Jicong 已提交
128
  TMQ_MSG_TYPE__POLL_META_RSP,
L
Liu Jicong 已提交
129
  TMQ_MSG_TYPE__EP_RSP,
L
Liu Jicong 已提交
130
  TMQ_MSG_TYPE__TAOSX_RSP,
L
Liu Jicong 已提交
131
  TMQ_MSG_TYPE__END_RSP,
L
Liu Jicong 已提交
132 133
};

L
Liu Jicong 已提交
134 135 136
enum {
  STREAM_INPUT__DATA_SUBMIT = 1,
  STREAM_INPUT__DATA_BLOCK,
137
  STREAM_INPUT__MERGED_SUBMIT,
L
Liu Jicong 已提交
138
  STREAM_INPUT__TQ_SCAN,
L
Liu Jicong 已提交
139
  STREAM_INPUT__DATA_RETRIEVE,
L
Liu Jicong 已提交
140
  STREAM_INPUT__GET_RES,
L
Liu Jicong 已提交
141
  STREAM_INPUT__CHECKPOINT,
L
Liu Jicong 已提交
142
  STREAM_INPUT__REF_DATA_BLOCK,
L
Liu Jicong 已提交
143
  STREAM_INPUT__DESTROY,
L
Liu Jicong 已提交
144 145
};

5
54liuyao 已提交
146 147 148
typedef enum EStreamType {
  STREAM_NORMAL = 1,
  STREAM_INVERT,
5
54liuyao 已提交
149
  STREAM_CLEAR,
5
54liuyao 已提交
150
  STREAM_INVALID,
5
54liuyao 已提交
151
  STREAM_GET_ALL,
152 153
  STREAM_DELETE_RESULT,
  STREAM_DELETE_DATA,
L
Liu Jicong 已提交
154
  STREAM_RETRIEVE,
L
Liu Jicong 已提交
155 156
  STREAM_PULL_DATA,
  STREAM_PULL_OVER,
157
  STREAM_FILL_OVER,
5
54liuyao 已提交
158
  STREAM_CREATE_CHILD_TABLE,
5
54liuyao 已提交
159 160
} EStreamType;

H
Hongze Cheng 已提交
161
#pragma pack(push, 1)
162 163 164
typedef struct SColumnDataAgg {
  int16_t colId;
  int16_t numOfNull;
165 166 167
  int64_t sum;
  int64_t max;
  int64_t min;
168
} SColumnDataAgg;
H
Hongze Cheng 已提交
169
#pragma pack(pop)
170

H
Haojun Liao 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184
typedef struct SBlockID {
  // The uid of table, from which current data block comes. And it is always 0, if current block is the
  // result of calculation.
  uint64_t uid;

  // Block id, acquired and assigned from executor, which created according to the hysical planner. Block id is used
  // to mark the stage of exec task.
  uint64_t blockId;

  // Generated by group/partition by [value|tags]. Created and assigned by table-scan operator, group-by operator,
  // and partition by operator.
  uint64_t groupId;
} SBlockID;

185
typedef struct SDataBlockInfo {
L
fix  
Liu Jicong 已提交
186 187
  STimeWindow window;
  int32_t     rowSize;
D
dapan1121 已提交
188
  int64_t     rows;  // todo hide this attribute
189
  uint32_t    capacity;
H
Haojun Liao 已提交
190 191
  SBlockID    id;
  int16_t     hasVarCol;
L
Liu Jicong 已提交
192
  int16_t     dataLoad;  // denote if the data is loaded or not
H
Haojun Liao 已提交
193

L
Liu Jicong 已提交
194
  // TODO: optimize and remove following
195 196 197 198 199
  int64_t     version;    // used for stream, and need serialization
  int32_t     childId;    // used for stream, do not serialize
  EStreamType type;       // used for stream, do not serialize
  STimeWindow calWin;     // used for stream, do not serialize
  TSKEY       watermark;  // used for stream
200

dengyihao's avatar
dengyihao 已提交
201
  char parTbName[TSDB_TABLE_NAME_LEN];  // used for stream partition
202 203 204
} SDataBlockInfo;

typedef struct SSDataBlock {
205 206 207
  SColumnDataAgg** pBlockAgg;
  SArray*          pDataBlock;  // SArray<SColumnInfoData>
  SDataBlockInfo   info;
208 209
} SSDataBlock;

L
Liu Jicong 已提交
210 211 212
enum {
  FETCH_TYPE__DATA = 1,
  FETCH_TYPE__META,
L
Liu Jicong 已提交
213
  FETCH_TYPE__SEP,
L
Liu Jicong 已提交
214 215 216 217
  FETCH_TYPE__NONE,
};

typedef struct {
L
Liu Jicong 已提交
218 219
  int8_t       fetchType;
  STqOffsetVal offset;
L
Liu Jicong 已提交
220 221 222 223 224 225
  union {
    SSDataBlock data;
    void*       meta;
  };
} SFetchRet;

H
Haojun Liao 已提交
226
typedef struct SVarColAttr {
L
Liu Jicong 已提交
227
  int32_t* offset;    // start position for each entry in the list
H
Haojun Liao 已提交
228 229 230 231
  uint32_t length;    // used buffer size that contain the valid data
  uint32_t allocLen;  // allocated buffer size
} SVarColAttr;

232 233
// pBlockAgg->numOfNull == info.rows, all data are null
// pBlockAgg->numOfNull == 0, no data are null.
234
typedef struct SColumnInfoData {
L
Liu Jicong 已提交
235
  char* pData;  // the corresponding block data in memory
H
Haojun Liao 已提交
236
  union {
L
Liu Jicong 已提交
237
    char*       nullbitmap;  // bitmap, one bit for each item in the list
H
Haojun Liao 已提交
238 239
    SVarColAttr varmeta;
  };
L
Liu Jicong 已提交
240 241
  SColumnInfo info;     // column info
  bool        hasNull;  // if current column data has null value.
242 243
} SColumnInfoData;

244
typedef struct SQueryTableDataCond {
H
more  
Hongze Cheng 已提交
245
  uint64_t     suid;
L
Liu Jicong 已提交
246
  int32_t      order;  // desc|asc order to iterate the data block
247
  int32_t      numOfCols;
H
more  
Hongze Cheng 已提交
248
  SColumnInfo* colList;
L
Liu Jicong 已提交
249 250
  int32_t*     pSlotList;  // the column output destation slot, and it may be null
  int32_t      type;       // data block load type:
H
Haojun Liao 已提交
251 252 253
  STimeWindow  twindows;
  int64_t      startVersion;
  int64_t      endVersion;
254 255
} SQueryTableDataCond;

H
Haojun Liao 已提交
256 257
int32_t tEncodeDataBlock(void** buf, const SSDataBlock* pBlock);
void*   tDecodeDataBlock(const void* buf, SSDataBlock* pBlock);
H
Haojun Liao 已提交
258

L
Liu Jicong 已提交
259
int32_t tEncodeDataBlocks(void** buf, const SArray* blocks);
L
Liu Jicong 已提交
260
void*   tDecodeDataBlocks(const void* buf, SArray** blocks);
L
fix  
Liu Jicong 已提交
261
void    colDataDestroy(SColumnInfoData* pColData);
L
Liu Jicong 已提交
262

263 264
//======================================================================================================================
// the following structure shared by parser and executor
265
typedef struct SColumn {
H
Haojun Liao 已提交
266 267 268 269 270
  union {
    uint64_t uid;
    int64_t  dataBlockId;
  };

H
Haojun Liao 已提交
271 272
  int16_t colId;
  int16_t slotId;
H
Haojun Liao 已提交
273

H
Haojun Liao 已提交
274
  char    name[TSDB_COL_NAME_LEN];
275
  int16_t colType;  // column type: normal column, tag, or window column
H
Haojun Liao 已提交
276 277 278 279
  int16_t type;
  int32_t bytes;
  uint8_t precision;
  uint8_t scale;
280 281
} SColumn;

H
Haojun Liao 已提交
282
typedef struct STableBlockDistInfo {
283
  uint32_t rowSize;
L
Liu Jicong 已提交
284 285
  uint16_t numOfFiles;
  uint32_t numOfTables;
286
  uint32_t numOfBlocks;
L
Liu Jicong 已提交
287 288 289 290
  uint64_t totalSize;
  uint64_t totalRows;
  int32_t  maxRows;
  int32_t  minRows;
291 292
  int32_t  defMinRows;
  int32_t  defMaxRows;
L
Liu Jicong 已提交
293
  int32_t  firstSeekTimeUs;
294
  uint32_t numOfInmemRows;
L
Liu Jicong 已提交
295
  uint32_t numOfSmallBlocks;
dengyihao's avatar
dengyihao 已提交
296
  uint32_t numOfVgroups;
297
  int32_t  blockRowsHisto[20];
H
Haojun Liao 已提交
298
} STableBlockDistInfo;
299

300 301 302
int32_t tSerializeBlockDistInfo(void* buf, int32_t bufLen, const STableBlockDistInfo* pInfo);
int32_t tDeserializeBlockDistInfo(void* buf, int32_t bufLen, STableBlockDistInfo* pInfo);

G
Ganlin Zhao 已提交
303
enum {
H
Haojun Liao 已提交
304
  FUNC_PARAM_TYPE_VALUE = 0x1,
L
Liu Jicong 已提交
305
  FUNC_PARAM_TYPE_COLUMN = 0x2,
G
Ganlin Zhao 已提交
306 307
};

H
Haojun Liao 已提交
308 309
typedef struct SFunctParam {
  int32_t  type;
L
Liu Jicong 已提交
310
  SColumn* pCol;
H
Haojun Liao 已提交
311 312
  SVariant param;
} SFunctParam;
H
Haojun Liao 已提交
313

H
Haojun Liao 已提交
314
// the structure for sql function in select clause
H
Haojun Liao 已提交
315 316
typedef struct SResSchame {
  int8_t  type;
317
  int32_t slotId;
H
Haojun Liao 已提交
318 319 320 321 322 323
  int32_t bytes;
  int32_t precision;
  int32_t scale;
  char    name[TSDB_COL_NAME_LEN];
} SResSchema;

H
Haojun Liao 已提交
324
typedef struct SExprBasicInfo {
H
Haojun Liao 已提交
325
  SResSchema   resSchema;
H
Haojun Liao 已提交
326
  int16_t      numOfParams;  // argument value of each function
L
Liu Jicong 已提交
327
  SFunctParam* pParam;
H
Haojun Liao 已提交
328
} SExprBasicInfo;
329 330

typedef struct SExprInfo {
L
Liu Jicong 已提交
331 332
  struct SExprBasicInfo base;
  struct tExprNode*     pExpr;
333 334
} SExprInfo;

wmmhello's avatar
wmmhello 已提交
335
typedef struct {
H
more  
Hongze Cheng 已提交
336
  const char* key;
dengyihao's avatar
dengyihao 已提交
337
  size_t      keyLen;
H
more  
Hongze Cheng 已提交
338 339
  uint8_t     type;
  union {
wmmhello's avatar
wmmhello 已提交
340
    const char* value;
wmmhello's avatar
wmmhello 已提交
341 342 343 344
    int64_t     i;
    uint64_t    u;
    double      d;
    float       f;
wmmhello's avatar
wmmhello 已提交
345
  };
346
  size_t length;
wmmhello's avatar
wmmhello 已提交
347 348
} SSmlKv;

L
Liu Jicong 已提交
349
#define QUERY_ASC_FORWARD_STEP  1
350 351 352 353
#define QUERY_DESC_FORWARD_STEP -1

#define GET_FORWARD_DIRECTION_FACTOR(ord) (((ord) == TSDB_ORDER_ASC) ? QUERY_ASC_FORWARD_STEP : QUERY_DESC_FORWARD_STEP)

H
more  
Hongze Cheng 已提交
354
#define SORT_QSORT_T              0x1
355 356 357 358 359 360 361 362 363
#define SORT_SPILLED_MERGE_SORT_T 0x2
typedef struct SSortExecInfo {
  int32_t sortMethod;
  int32_t sortBuffer;
  int32_t loops;       // loop count
  int32_t writeBytes;  // write io bytes
  int32_t readBytes;   // read io bytes
} SSortExecInfo;

364
typedef struct STUidTagInfo {
H
Haojun Liao 已提交
365 366 367
  char*    name;
  uint64_t uid;
  void*    pTagVal;
368
} STUidTagInfo;
H
Haojun Liao 已提交
369

370 371 372 373 374 375 376 377
// stream special block column

#define START_TS_COLUMN_INDEX           0
#define END_TS_COLUMN_INDEX             1
#define UID_COLUMN_INDEX                2
#define GROUPID_COLUMN_INDEX            3
#define CALCULATE_START_TS_COLUMN_INDEX 4
#define CALCULATE_END_TS_COLUMN_INDEX   5
378
#define TABLE_NAME_COLUMN_INDEX         6
379

5
54liuyao 已提交
380
// stream create table block column
dengyihao's avatar
dengyihao 已提交
381 382 383
#define UD_TABLE_NAME_COLUMN_INDEX 0
#define UD_GROUPID_COLUMN_INDEX    1
#define UD_TAG_COLUMN_INDEX        2
5
54liuyao 已提交
384

H
Haojun Liao 已提交
385 386 387 388
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
389
#endif /*_TD_COMMON_DEF_H_*/