tcommon.h 6.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
enum {
  TMQ_CONF__RESET_OFFSET__LATEST = -1,
  TMQ_CONF__RESET_OFFSET__EARLIEAST = -2,
  TMQ_CONF__RESET_OFFSET__NONE = -3,
};
L
Liu Jicong 已提交
33

L
Liu Jicong 已提交
34
enum {
L
Liu Jicong 已提交
35 36
  TMQ_MSG_TYPE__DUMMY = 0,
  TMQ_MSG_TYPE__POLL_RSP,
L
Liu Jicong 已提交
37
  TMQ_MSG_TYPE__EP_RSP,
L
Liu Jicong 已提交
38
  TMQ_MSG_TYPE__END_RSP,
L
Liu Jicong 已提交
39 40
};

5
54liuyao 已提交
41 42 43
typedef enum EStreamType {
  STREAM_NORMAL = 1,
  STREAM_INVERT,
5
54liuyao 已提交
44
  STREAM_REPROCESS,
5
54liuyao 已提交
45
  STREAM_INVALID,
5
54liuyao 已提交
46
  STREAM_GET_ALL,
5
54liuyao 已提交
47 48
} EStreamType;

49
typedef struct {
wmmhello's avatar
wmmhello 已提交
50
  SArray*   pTableList;
L
Liu Jicong 已提交
51
  SHashObj* map;  // speedup acquire the tableQueryInfo by table uid
wmmhello's avatar
wmmhello 已提交
52
} STableListInfo;
53

54 55 56 57 58
typedef struct SColumnDataAgg {
  int16_t colId;
  int16_t maxIndex;
  int16_t minIndex;
  int16_t numOfNull;
59 60 61
  int64_t sum;
  int64_t max;
  int64_t min;
62 63 64
} SColumnDataAgg;

typedef struct SDataBlockInfo {
L
fix  
Liu Jicong 已提交
65 66 67
  STimeWindow window;
  int32_t     rows;
  int32_t     rowSize;
68 69 70 71 72
  int64_t     uid;      // the uid of table, from which current data block comes
  int64_t     blockId;  // block id, generated by physical planner
  uint64_t    groupId;  // no need to serialize
  int16_t     numOfCols;
  int16_t     hasVarCol;
73
  int32_t     capacity;
L
Liu Jicong 已提交
74 75 76
  // TODO: optimize and remove following
  int32_t     childId;  // used for stream, do not serialize
  EStreamType type;     // used for stream, do not serialize
77 78 79
} SDataBlockInfo;

typedef struct SSDataBlock {
80 81 82
  SColumnDataAgg** pBlockAgg;
  SArray*          pDataBlock;  // SArray<SColumnInfoData>
  SDataBlockInfo   info;
83 84
} SSDataBlock;

H
Haojun Liao 已提交
85
typedef struct SVarColAttr {
L
Liu Jicong 已提交
86
  int32_t* offset;    // start position for each entry in the list
H
Haojun Liao 已提交
87 88 89 90
  uint32_t length;    // used buffer size that contain the valid data
  uint32_t allocLen;  // allocated buffer size
} SVarColAttr;

91 92
// pBlockAgg->numOfNull == info.rows, all data are null
// pBlockAgg->numOfNull == 0, no data are null.
93
typedef struct SColumnInfoData {
L
Liu Jicong 已提交
94 95 96
  SColumnInfo info;     // TODO filter info needs to be removed
  bool        hasNull;  // if current column data has null value.
  char*       pData;    // the corresponding block data in memory
H
Haojun Liao 已提交
97
  union {
L
Liu Jicong 已提交
98
    char*       nullbitmap;  // bitmap, one bit for each item in the list
H
Haojun Liao 已提交
99 100
    SVarColAttr varmeta;
  };
101 102
} SColumnInfoData;

103
typedef struct SQueryTableDataCond {
H
more  
Hongze Cheng 已提交
104
  uint64_t     suid;
105 106
  int32_t      order;  // desc|asc order to iterate the data block
  int32_t      numOfCols;
H
more  
Hongze Cheng 已提交
107
  SColumnInfo* colList;
H
Haojun Liao 已提交
108
  int32_t      type;             // data block load type:
109
  int32_t      numOfTWindows;
H
more  
Hongze Cheng 已提交
110
  STimeWindow* twindows;
H
Haojun Liao 已提交
111 112 113 114
  int32_t      numOfTables;      // number of tables
  uint64_t*    uidList;          // table uid list
  int64_t      startVersion;     // start version
  int64_t      endVersion;       // end version
115 116
} SQueryTableDataCond;

H
Haojun Liao 已提交
117 118 119
void*   blockDataDestroy(SSDataBlock* pBlock);
int32_t tEncodeDataBlock(void** buf, const SSDataBlock* pBlock);
void*   tDecodeDataBlock(const void* buf, SSDataBlock* pBlock);
H
Haojun Liao 已提交
120

L
Liu Jicong 已提交
121
int32_t tEncodeDataBlocks(void** buf, const SArray* blocks);
L
Liu Jicong 已提交
122
void*   tDecodeDataBlocks(const void* buf, SArray** blocks);
L
fix  
Liu Jicong 已提交
123
void    colDataDestroy(SColumnInfoData* pColData);
L
Liu Jicong 已提交
124

L
Liu Jicong 已提交
125 126 127 128
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);
129
    colDataDestroy(pColInfoData);
L
Liu Jicong 已提交
130
  }
L
Liu Jicong 已提交
131 132

  taosArrayDestroy(pBlock->pDataBlock);
wafwerar's avatar
wafwerar 已提交
133
  taosMemoryFreeClear(pBlock->pBlockAgg);
L
Liu Jicong 已提交
134 135
}

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

138 139
//======================================================================================================================
// the following structure shared by parser and executor
140
typedef struct SColumn {
H
Haojun Liao 已提交
141 142 143 144 145
  union {
    uint64_t uid;
    int64_t  dataBlockId;
  };

H
Haojun Liao 已提交
146 147
  int16_t colId;
  int16_t slotId;
H
Haojun Liao 已提交
148

H
Haojun Liao 已提交
149 150
  char    name[TSDB_COL_NAME_LEN];
  int8_t  flag;  // column type: normal column, tag, or user-input column (integer/float/string)
H
Haojun Liao 已提交
151 152 153 154
  int16_t type;
  int32_t bytes;
  uint8_t precision;
  uint8_t scale;
155 156
} SColumn;

H
Haojun Liao 已提交
157
typedef struct STableBlockDistInfo {
158
  uint32_t rowSize;
L
Liu Jicong 已提交
159 160
  uint16_t numOfFiles;
  uint32_t numOfTables;
161
  uint32_t numOfBlocks;
L
Liu Jicong 已提交
162 163 164 165
  uint64_t totalSize;
  uint64_t totalRows;
  int32_t  maxRows;
  int32_t  minRows;
166 167
  int32_t  defMinRows;
  int32_t  defMaxRows;
L
Liu Jicong 已提交
168
  int32_t  firstSeekTimeUs;
169
  uint32_t numOfInmemRows;
L
Liu Jicong 已提交
170
  uint32_t numOfSmallBlocks;
171
  int32_t  blockRowsHisto[20];
H
Haojun Liao 已提交
172
} STableBlockDistInfo;
173

174 175 176
int32_t tSerializeBlockDistInfo(void* buf, int32_t bufLen, const STableBlockDistInfo* pInfo);
int32_t tDeserializeBlockDistInfo(void* buf, int32_t bufLen, STableBlockDistInfo* pInfo);

G
Ganlin Zhao 已提交
177
enum {
H
Haojun Liao 已提交
178
  FUNC_PARAM_TYPE_VALUE = 0x1,
L
Liu Jicong 已提交
179
  FUNC_PARAM_TYPE_COLUMN = 0x2,
G
Ganlin Zhao 已提交
180 181
};

H
Haojun Liao 已提交
182 183
typedef struct SFunctParam {
  int32_t  type;
L
Liu Jicong 已提交
184
  SColumn* pCol;
H
Haojun Liao 已提交
185 186
  SVariant param;
} SFunctParam;
H
Haojun Liao 已提交
187

H
Haojun Liao 已提交
188
// the structure for sql function in select clause
H
Haojun Liao 已提交
189 190
typedef struct SResSchame {
  int8_t  type;
191
  int32_t slotId;
H
Haojun Liao 已提交
192 193 194 195 196 197
  int32_t bytes;
  int32_t precision;
  int32_t scale;
  char    name[TSDB_COL_NAME_LEN];
} SResSchema;

H
Haojun Liao 已提交
198
typedef struct SExprBasicInfo {
H
Haojun Liao 已提交
199
  SResSchema   resSchema;
H
Haojun Liao 已提交
200
  int16_t      numOfParams;  // argument value of each function
L
Liu Jicong 已提交
201
  SFunctParam* pParam;
H
Haojun Liao 已提交
202
} SExprBasicInfo;
203 204

typedef struct SExprInfo {
L
Liu Jicong 已提交
205 206
  struct SExprBasicInfo base;
  struct tExprNode*     pExpr;
207 208
} SExprInfo;

wmmhello's avatar
wmmhello 已提交
209
typedef struct {
H
more  
Hongze Cheng 已提交
210 211 212 213
  const char* key;
  int32_t     keyLen;
  uint8_t     type;
  union {
wmmhello's avatar
wmmhello 已提交
214
    const char* value;
wmmhello's avatar
wmmhello 已提交
215 216 217 218
    int64_t     i;
    uint64_t    u;
    double      d;
    float       f;
wmmhello's avatar
wmmhello 已提交
219
  };
H
more  
Hongze Cheng 已提交
220
  int32_t length;
wmmhello's avatar
wmmhello 已提交
221 222
} SSmlKv;

L
Liu Jicong 已提交
223
#define QUERY_ASC_FORWARD_STEP  1
224 225 226 227
#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 已提交
228
#define SORT_QSORT_T              0x1
229 230 231 232 233 234 235 236 237
#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 已提交
238 239 240 241
#ifdef __cplusplus
}
#endif

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