tcommon.h 7.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 43 44 45 46
// 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     \
  || x == TDMT_VND_DROP_TTL_TABLE \
)
// clang-format on

L
Liu Jicong 已提交
47
enum {
L
Liu Jicong 已提交
48 49
  TMQ_MSG_TYPE__DUMMY = 0,
  TMQ_MSG_TYPE__POLL_RSP,
L
Liu Jicong 已提交
50
  TMQ_MSG_TYPE__POLL_META_RSP,
L
Liu Jicong 已提交
51
  TMQ_MSG_TYPE__EP_RSP,
L
Liu Jicong 已提交
52
  TMQ_MSG_TYPE__END_RSP,
L
Liu Jicong 已提交
53 54
};

L
Liu Jicong 已提交
55 56 57 58 59 60 61 62 63 64
enum {
  STREAM_INPUT__DATA_SUBMIT = 1,
  STREAM_INPUT__DATA_BLOCK,
  STREAM_INPUT__DATA_SCAN,
  STREAM_INPUT__DATA_RETRIEVE,
  STREAM_INPUT__TRIGGER,
  STREAM_INPUT__CHECKPOINT,
  STREAM_INPUT__DROP,
};

5
54liuyao 已提交
65 66 67
typedef enum EStreamType {
  STREAM_NORMAL = 1,
  STREAM_INVERT,
5
54liuyao 已提交
68
  STREAM_CLEAR,
5
54liuyao 已提交
69
  STREAM_INVALID,
5
54liuyao 已提交
70
  STREAM_GET_ALL,
71 72
  STREAM_DELETE_RESULT,
  STREAM_DELETE_DATA,
L
Liu Jicong 已提交
73
  STREAM_RETRIEVE,
L
Liu Jicong 已提交
74 75
  STREAM_PULL_DATA,
  STREAM_PULL_OVER,
5
54liuyao 已提交
76 77
} EStreamType;

78
typedef struct {
wmmhello's avatar
wmmhello 已提交
79
  SArray*   pGroupList;
wmmhello's avatar
wmmhello 已提交
80
  SArray*   pTableList;
L
Liu Jicong 已提交
81
  SHashObj* map;  // speedup acquire the tableQueryInfo by table uid
82
  bool      needSortTableByGroupId;
wmmhello's avatar
wmmhello 已提交
83 84
  void*     pTagCond;
  void*     pTagIndexCond;
D
dapan1121 已提交
85
  uint64_t  suid;
wmmhello's avatar
wmmhello 已提交
86
} STableListInfo;
87

H
Hongze Cheng 已提交
88
#pragma pack(push, 1)
89 90 91
typedef struct SColumnDataAgg {
  int16_t colId;
  int16_t numOfNull;
92 93 94
  int64_t sum;
  int64_t max;
  int64_t min;
95
} SColumnDataAgg;
H
Hongze Cheng 已提交
96
#pragma pack(pop)
97 98

typedef struct SDataBlockInfo {
L
fix  
Liu Jicong 已提交
99
  STimeWindow window;
100
  int32_t     rows;  // todo hide this attribute
L
fix  
Liu Jicong 已提交
101
  int32_t     rowSize;
102
  uint64_t    uid;      // the uid of table, from which current data block comes
103
  uint16_t    blockId;  // block id, generated by physical planner
104 105
  uint64_t    groupId;  // no need to serialize
  int16_t     hasVarCol;
106
  uint32_t    capacity;
L
Liu Jicong 已提交
107 108 109
  // TODO: optimize and remove following
  int32_t     childId;  // used for stream, do not serialize
  EStreamType type;     // used for stream, do not serialize
110 111 112
} SDataBlockInfo;

typedef struct SSDataBlock {
113 114 115
  SColumnDataAgg** pBlockAgg;
  SArray*          pDataBlock;  // SArray<SColumnInfoData>
  SDataBlockInfo   info;
116 117
} SSDataBlock;

H
Haojun Liao 已提交
118
typedef struct SVarColAttr {
L
Liu Jicong 已提交
119
  int32_t* offset;    // start position for each entry in the list
H
Haojun Liao 已提交
120 121 122 123
  uint32_t length;    // used buffer size that contain the valid data
  uint32_t allocLen;  // allocated buffer size
} SVarColAttr;

124 125
// pBlockAgg->numOfNull == info.rows, all data are null
// pBlockAgg->numOfNull == 0, no data are null.
126
typedef struct SColumnInfoData {
127
  SColumnInfo info;     // column info
L
Liu Jicong 已提交
128 129
  bool        hasNull;  // if current column data has null value.
  char*       pData;    // the corresponding block data in memory
H
Haojun Liao 已提交
130
  union {
L
Liu Jicong 已提交
131
    char*       nullbitmap;  // bitmap, one bit for each item in the list
H
Haojun Liao 已提交
132 133
    SVarColAttr varmeta;
  };
134 135
} SColumnInfoData;

136
typedef struct SQueryTableDataCond {
H
more  
Hongze Cheng 已提交
137
  uint64_t     suid;
138 139
  int32_t      order;  // desc|asc order to iterate the data block
  int32_t      numOfCols;
H
more  
Hongze Cheng 已提交
140
  SColumnInfo* colList;
H
Hongze Cheng 已提交
141
  int32_t      type;  // data block load type:
142
  int32_t      numOfTWindows;
H
more  
Hongze Cheng 已提交
143
  STimeWindow* twindows;
L
Liu Jicong 已提交
144 145
  int64_t      startVersion;
  int64_t      endVersion;
146 147
} SQueryTableDataCond;

H
Haojun Liao 已提交
148 149 150
void*   blockDataDestroy(SSDataBlock* pBlock);
int32_t tEncodeDataBlock(void** buf, const SSDataBlock* pBlock);
void*   tDecodeDataBlock(const void* buf, SSDataBlock* pBlock);
H
Haojun Liao 已提交
151

L
Liu Jicong 已提交
152
int32_t tEncodeDataBlocks(void** buf, const SArray* blocks);
L
Liu Jicong 已提交
153
void*   tDecodeDataBlocks(const void* buf, SArray** blocks);
L
fix  
Liu Jicong 已提交
154
void    colDataDestroy(SColumnInfoData* pColData);
L
Liu Jicong 已提交
155

L
Liu Jicong 已提交
156 157 158 159
static FORCE_INLINE void blockDestroyInner(SSDataBlock* pBlock) {
  int32_t numOfOutput = taosArrayGetSize(pBlock->pDataBlock);
  for (int32_t i = 0; i < numOfOutput; ++i) {
    SColumnInfoData* pColInfoData = (SColumnInfoData*)taosArrayGet(pBlock->pDataBlock, i);
160
    colDataDestroy(pColInfoData);
L
Liu Jicong 已提交
161
  }
L
Liu Jicong 已提交
162 163

  taosArrayDestroy(pBlock->pDataBlock);
wafwerar's avatar
wafwerar 已提交
164
  taosMemoryFreeClear(pBlock->pBlockAgg);
L
Liu Jicong 已提交
165 166
}

L
Liu Jicong 已提交
167 168
static FORCE_INLINE void tDeleteSSDataBlock(SSDataBlock* pBlock) { blockDestroyInner(pBlock); }

169 170
//======================================================================================================================
// the following structure shared by parser and executor
171
typedef struct SColumn {
H
Haojun Liao 已提交
172 173 174 175 176
  union {
    uint64_t uid;
    int64_t  dataBlockId;
  };

H
Haojun Liao 已提交
177 178
  int16_t colId;
  int16_t slotId;
H
Haojun Liao 已提交
179

H
Haojun Liao 已提交
180 181
  char    name[TSDB_COL_NAME_LEN];
  int8_t  flag;  // column type: normal column, tag, or user-input column (integer/float/string)
H
Haojun Liao 已提交
182 183 184 185
  int16_t type;
  int32_t bytes;
  uint8_t precision;
  uint8_t scale;
186 187
} SColumn;

H
Haojun Liao 已提交
188
typedef struct STableBlockDistInfo {
189
  uint32_t rowSize;
L
Liu Jicong 已提交
190 191
  uint16_t numOfFiles;
  uint32_t numOfTables;
192
  uint32_t numOfBlocks;
L
Liu Jicong 已提交
193 194 195 196
  uint64_t totalSize;
  uint64_t totalRows;
  int32_t  maxRows;
  int32_t  minRows;
197 198
  int32_t  defMinRows;
  int32_t  defMaxRows;
L
Liu Jicong 已提交
199
  int32_t  firstSeekTimeUs;
200
  uint32_t numOfInmemRows;
L
Liu Jicong 已提交
201
  uint32_t numOfSmallBlocks;
202
  int32_t  blockRowsHisto[20];
H
Haojun Liao 已提交
203
} STableBlockDistInfo;
204

205 206 207
int32_t tSerializeBlockDistInfo(void* buf, int32_t bufLen, const STableBlockDistInfo* pInfo);
int32_t tDeserializeBlockDistInfo(void* buf, int32_t bufLen, STableBlockDistInfo* pInfo);

G
Ganlin Zhao 已提交
208
enum {
H
Haojun Liao 已提交
209
  FUNC_PARAM_TYPE_VALUE = 0x1,
L
Liu Jicong 已提交
210
  FUNC_PARAM_TYPE_COLUMN = 0x2,
G
Ganlin Zhao 已提交
211 212
};

H
Haojun Liao 已提交
213 214
typedef struct SFunctParam {
  int32_t  type;
L
Liu Jicong 已提交
215
  SColumn* pCol;
H
Haojun Liao 已提交
216 217
  SVariant param;
} SFunctParam;
H
Haojun Liao 已提交
218

H
Haojun Liao 已提交
219
// the structure for sql function in select clause
H
Haojun Liao 已提交
220 221
typedef struct SResSchame {
  int8_t  type;
222
  int32_t slotId;
H
Haojun Liao 已提交
223 224 225 226 227 228
  int32_t bytes;
  int32_t precision;
  int32_t scale;
  char    name[TSDB_COL_NAME_LEN];
} SResSchema;

H
Haojun Liao 已提交
229
typedef struct SExprBasicInfo {
H
Haojun Liao 已提交
230
  SResSchema   resSchema;
H
Haojun Liao 已提交
231
  int16_t      numOfParams;  // argument value of each function
L
Liu Jicong 已提交
232
  SFunctParam* pParam;
H
Haojun Liao 已提交
233
} SExprBasicInfo;
234 235

typedef struct SExprInfo {
L
Liu Jicong 已提交
236 237
  struct SExprBasicInfo base;
  struct tExprNode*     pExpr;
238 239
} SExprInfo;

wmmhello's avatar
wmmhello 已提交
240
typedef struct {
H
more  
Hongze Cheng 已提交
241 242 243 244
  const char* key;
  int32_t     keyLen;
  uint8_t     type;
  union {
wmmhello's avatar
wmmhello 已提交
245
    const char* value;
wmmhello's avatar
wmmhello 已提交
246 247 248 249
    int64_t     i;
    uint64_t    u;
    double      d;
    float       f;
wmmhello's avatar
wmmhello 已提交
250
  };
H
more  
Hongze Cheng 已提交
251
  int32_t length;
wmmhello's avatar
wmmhello 已提交
252 253
} SSmlKv;

L
Liu Jicong 已提交
254
#define QUERY_ASC_FORWARD_STEP  1
255 256 257 258
#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 已提交
259
#define SORT_QSORT_T              0x1
260 261 262 263 264 265 266 267 268
#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;

H
Haojun Liao 已提交
269 270 271 272
#ifdef __cplusplus
}
#endif

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