tcommon.h 9.2 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

47 48
typedef struct {
  uint64_t groupId;
49
  TSKEY    ts;
50 51
} SWinKey;

52
static inline int sWinKeyCmprImpl(const void* pKey1, const void* pKey2) {
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
  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;
}

71 72 73 74
static inline int winKeyCmpr(const void* pKey1, int kLen1, const void* pKey2, int kLen2) {
  return sWinKeyCmprImpl(pKey1, pKey2);
}

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

H
Haojun Liao 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
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;

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

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

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

161
typedef struct {
wmmhello's avatar
wmmhello 已提交
162
  SArray*   pGroupList;
wmmhello's avatar
wmmhello 已提交
163
  SArray*   pTableList;
L
Liu Jicong 已提交
164
  SHashObj* map;  // speedup acquire the tableQueryInfo by table uid
165
  bool      needSortTableByGroupId;
D
dapan1121 已提交
166
  uint64_t  suid;
wmmhello's avatar
wmmhello 已提交
167
} STableListInfo;
168

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

typedef struct SDataBlockInfo {
L
fix  
Liu Jicong 已提交
180
  STimeWindow window;
181
  int32_t     rows;  // todo hide this attribute
L
fix  
Liu Jicong 已提交
182
  int32_t     rowSize;
183
  uint64_t    uid;      // the uid of table, from which current data block comes
184
  uint16_t    blockId;  // block id, generated by physical planner
185
  uint64_t    groupId;
186
  int16_t     hasVarCol;
187
  uint32_t    capacity;
L
Liu Jicong 已提交
188
  // TODO: optimize and remove following
189 190 191 192 193
  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
194

L
Liu Jicong 已提交
195 196
  char  parTbName[TSDB_TABLE_NAME_LEN];  // used for stream partition
  STag* pTag;                            // used for stream partition
197 198 199
} SDataBlockInfo;

typedef struct SSDataBlock {
200 201 202
  SColumnDataAgg** pBlockAgg;
  SArray*          pDataBlock;  // SArray<SColumnInfoData>
  SDataBlockInfo   info;
203 204
} SSDataBlock;

L
Liu Jicong 已提交
205 206 207
enum {
  FETCH_TYPE__DATA = 1,
  FETCH_TYPE__META,
L
Liu Jicong 已提交
208
  FETCH_TYPE__SEP,
L
Liu Jicong 已提交
209 210 211 212
  FETCH_TYPE__NONE,
};

typedef struct {
L
Liu Jicong 已提交
213 214
  int8_t       fetchType;
  STqOffsetVal offset;
L
Liu Jicong 已提交
215 216 217 218 219 220
  union {
    SSDataBlock data;
    void*       meta;
  };
} SFetchRet;

H
Haojun Liao 已提交
221
typedef struct SVarColAttr {
L
Liu Jicong 已提交
222
  int32_t* offset;    // start position for each entry in the list
H
Haojun Liao 已提交
223 224 225 226
  uint32_t length;    // used buffer size that contain the valid data
  uint32_t allocLen;  // allocated buffer size
} SVarColAttr;

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

239
typedef struct SQueryTableDataCond {
H
more  
Hongze Cheng 已提交
240
  uint64_t     suid;
241 242
  int32_t      order;  // desc|asc order to iterate the data block
  int32_t      numOfCols;
H
more  
Hongze Cheng 已提交
243
  SColumnInfo* colList;
L
Liu Jicong 已提交
244
  int32_t      type;  // data block load type:
H
Haojun Liao 已提交
245 246 247
  STimeWindow  twindows;
  int64_t      startVersion;
  int64_t      endVersion;
248 249
} SQueryTableDataCond;

H
Haojun Liao 已提交
250 251
int32_t tEncodeDataBlock(void** buf, const SSDataBlock* pBlock);
void*   tDecodeDataBlock(const void* buf, SSDataBlock* pBlock);
H
Haojun Liao 已提交
252

L
Liu Jicong 已提交
253
int32_t tEncodeDataBlocks(void** buf, const SArray* blocks);
L
Liu Jicong 已提交
254
void*   tDecodeDataBlocks(const void* buf, SArray** blocks);
L
fix  
Liu Jicong 已提交
255
void    colDataDestroy(SColumnInfoData* pColData);
L
Liu Jicong 已提交
256

257 258
//======================================================================================================================
// the following structure shared by parser and executor
259
typedef struct SColumn {
H
Haojun Liao 已提交
260 261 262 263 264
  union {
    uint64_t uid;
    int64_t  dataBlockId;
  };

H
Haojun Liao 已提交
265 266
  int16_t colId;
  int16_t slotId;
H
Haojun Liao 已提交
267

H
Haojun Liao 已提交
268
  char    name[TSDB_COL_NAME_LEN];
269
  int16_t colType;  // column type: normal column, tag, or window column
H
Haojun Liao 已提交
270 271 272 273
  int16_t type;
  int32_t bytes;
  uint8_t precision;
  uint8_t scale;
274 275
} SColumn;

H
Haojun Liao 已提交
276
typedef struct STableBlockDistInfo {
277
  uint32_t rowSize;
L
Liu Jicong 已提交
278 279
  uint16_t numOfFiles;
  uint32_t numOfTables;
280
  uint32_t numOfBlocks;
L
Liu Jicong 已提交
281 282 283 284
  uint64_t totalSize;
  uint64_t totalRows;
  int32_t  maxRows;
  int32_t  minRows;
285 286
  int32_t  defMinRows;
  int32_t  defMaxRows;
L
Liu Jicong 已提交
287
  int32_t  firstSeekTimeUs;
288
  uint32_t numOfInmemRows;
L
Liu Jicong 已提交
289
  uint32_t numOfSmallBlocks;
290
  int32_t  blockRowsHisto[20];
H
Haojun Liao 已提交
291
} STableBlockDistInfo;
292

293 294 295
int32_t tSerializeBlockDistInfo(void* buf, int32_t bufLen, const STableBlockDistInfo* pInfo);
int32_t tDeserializeBlockDistInfo(void* buf, int32_t bufLen, STableBlockDistInfo* pInfo);

G
Ganlin Zhao 已提交
296
enum {
H
Haojun Liao 已提交
297
  FUNC_PARAM_TYPE_VALUE = 0x1,
L
Liu Jicong 已提交
298
  FUNC_PARAM_TYPE_COLUMN = 0x2,
G
Ganlin Zhao 已提交
299 300
};

H
Haojun Liao 已提交
301 302
typedef struct SFunctParam {
  int32_t  type;
L
Liu Jicong 已提交
303
  SColumn* pCol;
H
Haojun Liao 已提交
304 305
  SVariant param;
} SFunctParam;
H
Haojun Liao 已提交
306

H
Haojun Liao 已提交
307
// the structure for sql function in select clause
H
Haojun Liao 已提交
308 309
typedef struct SResSchame {
  int8_t  type;
310
  int32_t slotId;
H
Haojun Liao 已提交
311 312 313 314 315 316
  int32_t bytes;
  int32_t precision;
  int32_t scale;
  char    name[TSDB_COL_NAME_LEN];
} SResSchema;

H
Haojun Liao 已提交
317
typedef struct SExprBasicInfo {
H
Haojun Liao 已提交
318
  SResSchema   resSchema;
H
Haojun Liao 已提交
319
  int16_t      numOfParams;  // argument value of each function
L
Liu Jicong 已提交
320
  SFunctParam* pParam;
H
Haojun Liao 已提交
321
} SExprBasicInfo;
322 323

typedef struct SExprInfo {
L
Liu Jicong 已提交
324 325
  struct SExprBasicInfo base;
  struct tExprNode*     pExpr;
326 327
} SExprInfo;

wmmhello's avatar
wmmhello 已提交
328
typedef struct {
H
more  
Hongze Cheng 已提交
329 330 331 332
  const char* key;
  int32_t     keyLen;
  uint8_t     type;
  union {
wmmhello's avatar
wmmhello 已提交
333
    const char* value;
wmmhello's avatar
wmmhello 已提交
334 335 336 337
    int64_t     i;
    uint64_t    u;
    double      d;
    float       f;
wmmhello's avatar
wmmhello 已提交
338
  };
H
more  
Hongze Cheng 已提交
339
  int32_t length;
wmmhello's avatar
wmmhello 已提交
340 341
} SSmlKv;

L
Liu Jicong 已提交
342
#define QUERY_ASC_FORWARD_STEP  1
343 344 345 346
#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 已提交
347
#define SORT_QSORT_T              0x1
348 349 350 351 352 353 354 355 356
#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;

357 358 359 360 361 362 363 364
// 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
365
#define TABLE_NAME_COLUMN_INDEX         6
366

H
Haojun Liao 已提交
367 368 369 370
#ifdef __cplusplus
}
#endif

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