tcommon.h 9.5 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
// TODO remove it
L
Liu Jicong 已提交
29 30
enum {
  TMQ_CONF__RESET_OFFSET__NONE = -3,
L
Liu Jicong 已提交
31 32
  TMQ_CONF__RESET_OFFSET__EARLIEAST = -2,
  TMQ_CONF__RESET_OFFSET__LATEST = -1,
L
Liu Jicong 已提交
33
};
L
Liu Jicong 已提交
34

L
Liu Jicong 已提交
35 36 37 38 39 40 41 42
// 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 已提交
43
  || x == TDMT_VND_DELETE         \
L
Liu Jicong 已提交
44 45 46
)
// clang-format on

5
54liuyao 已提交
47
typedef struct SWinKey {
48
  uint64_t groupId;
49
  TSKEY    ts;
50 51
} SWinKey;

5
54liuyao 已提交
52 53 54 55 56 57
typedef struct SSessionKey {
  STimeWindow win;
  uint64_t    groupId;
} SSessionKey;

static inline int winKeyCmprImpl(const void* pKey1, const void* pKey2) {
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
  SWinKey* pWin1 = (SWinKey*)pKey1;
  SWinKey* pWin2 = (SWinKey*)pKey2;

  if (pWin1->groupId > pWin2->groupId) {
    return 1;
  } else if (pWin1->groupId < pWin2->groupId) {
    return -1;
  }

  if (pWin1->ts > pWin2->ts) {
    return 1;
  } else if (pWin1->ts < pWin2->ts) {
    return -1;
  }

  return 0;
}

76
static inline int winKeyCmpr(const void* pKey1, int kLen1, const void* pKey2, int kLen2) {
5
54liuyao 已提交
77
  return winKeyCmprImpl(pKey1, pKey2);
78 79
}

80 81 82 83 84 85
typedef struct {
  uint64_t groupId;
  TSKEY    ts;
  int32_t  exprIdx;
} STupleKey;

H
Haojun Liao 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
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;

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
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 已提交
132
enum {
L
Liu Jicong 已提交
133 134
  TMQ_MSG_TYPE__DUMMY = 0,
  TMQ_MSG_TYPE__POLL_RSP,
L
Liu Jicong 已提交
135
  TMQ_MSG_TYPE__POLL_META_RSP,
L
Liu Jicong 已提交
136
  TMQ_MSG_TYPE__EP_RSP,
L
Liu Jicong 已提交
137
  TMQ_MSG_TYPE__TAOSX_RSP,
L
Liu Jicong 已提交
138
  TMQ_MSG_TYPE__END_RSP,
L
Liu Jicong 已提交
139 140
};

L
Liu Jicong 已提交
141 142 143
enum {
  STREAM_INPUT__DATA_SUBMIT = 1,
  STREAM_INPUT__DATA_BLOCK,
144
  STREAM_INPUT__MERGED_SUBMIT,
L
Liu Jicong 已提交
145
  STREAM_INPUT__TQ_SCAN,
L
Liu Jicong 已提交
146
  STREAM_INPUT__DATA_RETRIEVE,
L
Liu Jicong 已提交
147
  STREAM_INPUT__GET_RES,
L
Liu Jicong 已提交
148
  STREAM_INPUT__CHECKPOINT,
L
Liu Jicong 已提交
149
  STREAM_INPUT__REF_DATA_BLOCK,
L
Liu Jicong 已提交
150
  STREAM_INPUT__DESTROY,
L
Liu Jicong 已提交
151 152
};

5
54liuyao 已提交
153 154 155
typedef enum EStreamType {
  STREAM_NORMAL = 1,
  STREAM_INVERT,
5
54liuyao 已提交
156
  STREAM_CLEAR,
5
54liuyao 已提交
157
  STREAM_INVALID,
5
54liuyao 已提交
158
  STREAM_GET_ALL,
159 160
  STREAM_DELETE_RESULT,
  STREAM_DELETE_DATA,
L
Liu Jicong 已提交
161
  STREAM_RETRIEVE,
L
Liu Jicong 已提交
162 163
  STREAM_PULL_DATA,
  STREAM_PULL_OVER,
164
  STREAM_FILL_OVER,
5
54liuyao 已提交
165 166
} EStreamType;

H
Hongze Cheng 已提交
167
#pragma pack(push, 1)
168 169 170
typedef struct SColumnDataAgg {
  int16_t colId;
  int16_t numOfNull;
171 172 173
  int64_t sum;
  int64_t max;
  int64_t min;
174
} SColumnDataAgg;
H
Hongze Cheng 已提交
175
#pragma pack(pop)
176

H
Haojun Liao 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190
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;

191
typedef struct SDataBlockInfo {
L
fix  
Liu Jicong 已提交
192 193
  STimeWindow window;
  int32_t     rowSize;
H
Haojun Liao 已提交
194
  int32_t     rows;  // todo hide this attribute
195
  uint32_t    capacity;
H
Haojun Liao 已提交
196 197 198
  SBlockID    id;
  int16_t     hasVarCol;

L
Liu Jicong 已提交
199
  // TODO: optimize and remove following
200 201 202 203 204
  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
205

H
Haojun Liao 已提交
206 207
  char        parTbName[TSDB_TABLE_NAME_LEN];  // used for stream partition
  STag*       pTag;                            // used for stream partition
208 209 210
} SDataBlockInfo;

typedef struct SSDataBlock {
211 212 213
  SColumnDataAgg** pBlockAgg;
  SArray*          pDataBlock;  // SArray<SColumnInfoData>
  SDataBlockInfo   info;
214 215
} SSDataBlock;

L
Liu Jicong 已提交
216 217 218
enum {
  FETCH_TYPE__DATA = 1,
  FETCH_TYPE__META,
L
Liu Jicong 已提交
219
  FETCH_TYPE__SEP,
L
Liu Jicong 已提交
220 221 222 223
  FETCH_TYPE__NONE,
};

typedef struct {
L
Liu Jicong 已提交
224 225
  int8_t       fetchType;
  STqOffsetVal offset;
L
Liu Jicong 已提交
226 227 228 229 230 231
  union {
    SSDataBlock data;
    void*       meta;
  };
} SFetchRet;

H
Haojun Liao 已提交
232
typedef struct SVarColAttr {
L
Liu Jicong 已提交
233
  int32_t* offset;    // start position for each entry in the list
H
Haojun Liao 已提交
234 235 236 237
  uint32_t length;    // used buffer size that contain the valid data
  uint32_t allocLen;  // allocated buffer size
} SVarColAttr;

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

250
typedef struct SQueryTableDataCond {
H
more  
Hongze Cheng 已提交
251
  uint64_t     suid;
252 253
  int32_t      order;  // desc|asc order to iterate the data block
  int32_t      numOfCols;
H
more  
Hongze Cheng 已提交
254
  SColumnInfo* colList;
L
Liu Jicong 已提交
255
  int32_t      type;  // data block load type:
H
Haojun Liao 已提交
256 257 258
  STimeWindow  twindows;
  int64_t      startVersion;
  int64_t      endVersion;
259 260
} SQueryTableDataCond;

H
Haojun Liao 已提交
261 262
int32_t tEncodeDataBlock(void** buf, const SSDataBlock* pBlock);
void*   tDecodeDataBlock(const void* buf, SSDataBlock* pBlock);
H
Haojun Liao 已提交
263

L
Liu Jicong 已提交
264
int32_t tEncodeDataBlocks(void** buf, const SArray* blocks);
L
Liu Jicong 已提交
265
void*   tDecodeDataBlocks(const void* buf, SArray** blocks);
L
fix  
Liu Jicong 已提交
266
void    colDataDestroy(SColumnInfoData* pColData);
L
Liu Jicong 已提交
267

268 269
//======================================================================================================================
// the following structure shared by parser and executor
270
typedef struct SColumn {
H
Haojun Liao 已提交
271 272 273 274 275
  union {
    uint64_t uid;
    int64_t  dataBlockId;
  };

H
Haojun Liao 已提交
276 277
  int16_t colId;
  int16_t slotId;
H
Haojun Liao 已提交
278

H
Haojun Liao 已提交
279
  char    name[TSDB_COL_NAME_LEN];
280
  int16_t colType;  // column type: normal column, tag, or window column
H
Haojun Liao 已提交
281 282 283 284
  int16_t type;
  int32_t bytes;
  uint8_t precision;
  uint8_t scale;
285 286
} SColumn;

H
Haojun Liao 已提交
287
typedef struct STableBlockDistInfo {
288
  uint32_t rowSize;
L
Liu Jicong 已提交
289 290
  uint16_t numOfFiles;
  uint32_t numOfTables;
291
  uint32_t numOfBlocks;
L
Liu Jicong 已提交
292 293 294 295
  uint64_t totalSize;
  uint64_t totalRows;
  int32_t  maxRows;
  int32_t  minRows;
296 297
  int32_t  defMinRows;
  int32_t  defMaxRows;
L
Liu Jicong 已提交
298
  int32_t  firstSeekTimeUs;
299
  uint32_t numOfInmemRows;
L
Liu Jicong 已提交
300
  uint32_t numOfSmallBlocks;
301
  int32_t  blockRowsHisto[20];
H
Haojun Liao 已提交
302
} STableBlockDistInfo;
303

304 305 306
int32_t tSerializeBlockDistInfo(void* buf, int32_t bufLen, const STableBlockDistInfo* pInfo);
int32_t tDeserializeBlockDistInfo(void* buf, int32_t bufLen, STableBlockDistInfo* pInfo);

G
Ganlin Zhao 已提交
307
enum {
H
Haojun Liao 已提交
308
  FUNC_PARAM_TYPE_VALUE = 0x1,
L
Liu Jicong 已提交
309
  FUNC_PARAM_TYPE_COLUMN = 0x2,
G
Ganlin Zhao 已提交
310 311
};

H
Haojun Liao 已提交
312 313
typedef struct SFunctParam {
  int32_t  type;
L
Liu Jicong 已提交
314
  SColumn* pCol;
H
Haojun Liao 已提交
315 316
  SVariant param;
} SFunctParam;
H
Haojun Liao 已提交
317

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

H
Haojun Liao 已提交
328
typedef struct SExprBasicInfo {
H
Haojun Liao 已提交
329
  SResSchema   resSchema;
H
Haojun Liao 已提交
330
  int16_t      numOfParams;  // argument value of each function
L
Liu Jicong 已提交
331
  SFunctParam* pParam;
H
Haojun Liao 已提交
332
} SExprBasicInfo;
333 334

typedef struct SExprInfo {
L
Liu Jicong 已提交
335 336
  struct SExprBasicInfo base;
  struct tExprNode*     pExpr;
337 338
} SExprInfo;

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

L
Liu Jicong 已提交
353
#define QUERY_ASC_FORWARD_STEP  1
354 355 356 357
#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 已提交
358
#define SORT_QSORT_T              0x1
359 360 361 362 363 364 365 366 367
#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;

368 369 370 371 372 373 374 375
// 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
376
#define TABLE_NAME_COLUMN_INDEX         6
377

H
Haojun Liao 已提交
378 379 380 381
#ifdef __cplusplus
}
#endif

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