qExecutor.h 6.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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/>.
 */
#ifndef TDENGINE_QUERYEXECUTOR_H
#define TDENGINE_QUERYEXECUTOR_H

#include "os.h"

#include "hash.h"
H
Haojun Liao 已提交
21
#include "qfill.h"
22 23 24 25
#include "qresultBuf.h"
#include "qsqlparser.h"
#include "qtsbuf.h"
#include "taosdef.h"
H
Haojun Liao 已提交
26
#include "tarray.h"
27
#include "tref.h"
H
Haojun Liao 已提交
28
#include "tsdb.h"
29 30 31 32
#include "tsqlfunction.h"

struct SColumnFilterElem;
typedef bool (*__filter_func_t)(struct SColumnFilterElem* pFilter, char* val1, char* val2);
H
hjxilinx 已提交
33
typedef int32_t (*__block_search_fn_t)(char* data, int32_t num, int64_t key, int32_t order);
34 35

typedef struct SSqlGroupbyExpr {
H
Haojun Liao 已提交
36 37 38 39 40
  int16_t tableIndex;
  SArray* columnInfo;  // SArray<SColIndex>, group by columns information
  int16_t numOfGroupCols;
  int16_t orderIndex;  // order by column index
  int16_t orderType;   // order by type: asc/desc
41 42 43 44 45 46 47 48 49 50 51 52
} SSqlGroupbyExpr;

typedef struct SPosInfo {
  int16_t pageId;
  int16_t rowId;
} SPosInfo;

typedef struct SWindowStatus {
  bool closed;
} SWindowStatus;

typedef struct SWindowResult {
H
hjxilinx 已提交
53
  uint16_t      numOfRows;   // number of rows of current  time window
54 55 56
  SPosInfo      pos;         // Position of current result in disk-based output buffer
  SResultInfo*  resultInfo;  // For each result column, there is a resultInfo
  STimeWindow   window;      // The time window that current result covers.
H
hjxilinx 已提交
57
  SWindowStatus status;      // this result status: closed or opened
58 59
} SWindowResult;

H
Haojun Liao 已提交
60 61 62 63
/**
 * If the number of generated results is greater than this value,
 * query query will be halt and return results to client immediate.
 */
64
typedef struct SResultRec {
H
Haojun Liao 已提交
65 66 67 68
  int64_t total;      // total generated result size in rows
  int64_t rows;       // current result set size in rows
  int64_t capacity;   // capacity of current result output buffer
  int32_t threshold;  // result size threshold in rows.
69 70 71 72
} SResultRec;

typedef struct SWindowResInfo {
  SWindowResult* pResult;    // result list
H
Haojun Liao 已提交
73
  SHashObj*      hashList;   // hash list for quick access
74 75 76 77 78 79
  int16_t        type;       // data type for hash key
  int32_t        capacity;   // max capacity
  int32_t        curIndex;   // current start active index
  int32_t        size;       // number of result set
  int64_t        startTime;  // start time of the first time window for sliding query
  int64_t        prevSKey;   // previous (not completed) sliding window start key
H
Haojun Liao 已提交
80
  int64_t        threshold;  // threshold to halt query and return the generated results.
81 82 83 84 85 86 87 88 89
} SWindowResInfo;

typedef struct SColumnFilterElem {
  int16_t           bytes;  // column length
  __filter_func_t   fp;
  SColumnFilterInfo filterInfo;
} SColumnFilterElem;

typedef struct SSingleColumnFilterInfo {
H
Haojun Liao 已提交
90
  void*              pData;
91
  int32_t            numOfFilters;
H
Haojun Liao 已提交
92
  SColumnInfo        info;
93 94 95
  SColumnFilterElem* pFilters;
} SSingleColumnFilterInfo;

H
hjxilinx 已提交
96 97
typedef struct STableQueryInfo {  // todo merge with the STableQueryInfo struct
  int32_t     tableIndex;
H
Haojun Liao 已提交
98
  int32_t     groupIndex;  // group id in table list
H
hjxilinx 已提交
99
  TSKEY       lastKey;
100 101 102
  int32_t     numOfRes;
  int16_t     queryRangeSet;  // denote if the query range is set, only available for interval query
  int64_t     tag;
H
hjxilinx 已提交
103
  STimeWindow win;
104
  STSCursor   cur;
H
Haojun Liao 已提交
105 106
  STableId    id;  // for retrieve the page id list

107 108 109
  SWindowResInfo windowResInfo;
} STableQueryInfo;

H
Haojun Liao 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
typedef struct SQueryCostInfo {
  uint64_t loadStatisTime;
  uint64_t loadFileBlockTime;
  uint64_t loadDataInCacheTime;
  uint64_t loadStatisSize;
  uint64_t loadFileBlockSize;
  uint64_t loadDataInCacheSize;
  
  uint64_t loadDataTime;
  uint64_t dataInRows;
  uint64_t checkRows;
  uint32_t dataBlocks;
  uint32_t loadBlockStatis;
  uint32_t discardBlocks;
} SQueryCostInfo;
H
hjxilinx 已提交
125 126

typedef struct SGroupItem {
H
Haojun Liao 已提交
127
  STableId         id;
H
hjxilinx 已提交
128 129 130
  STableQueryInfo* info;
} SGroupItem;

131
typedef struct SQuery {
H
Haojun Liao 已提交
132 133 134 135 136 137 138
  int16_t          numOfCols;
  int16_t          numOfTags;
  SOrderVal        order;
  STimeWindow      window;
  int64_t          intervalTime;
  int64_t          slidingTime;      // sliding time for sliding window query
  char             slidingTimeUnit;  // interval data type, used for daytime revise
139
  int16_t          precision;
H
Haojun Liao 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
  int16_t          numOfOutput;
  int16_t          fillType;
  int16_t          checkBuffer;  // check if the buffer is full during scan each block
  SLimitVal        limit;
  int32_t          rowSize;
  SSqlGroupbyExpr* pGroupbyExpr;
  SExprInfo*       pSelectExpr;
  SColumnInfo*     colList;
  SColumnInfo*     tagColList;
  int32_t          numOfFilterCols;
  int64_t*         fillVal;
  uint32_t         status;  // query status
  SResultRec       rec;
  int32_t          pos;
  tFilePage**      sdata;
  STableQueryInfo* current;

157 158 159 160
  SSingleColumnFilterInfo* pFilterInfo;
} SQuery;

typedef struct SQueryRuntimeEnv {
H
Haojun Liao 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
  SResultInfo*         resultInfo;  // todo refactor to merge with SWindowResInfo
  SQuery*              pQuery;
  SQLFunctionCtx*      pCtx;
  int16_t              numOfRowsPerPage;
  int16_t              offset[TSDB_MAX_COLUMNS];
  uint16_t             scanFlag;  // denotes reversed scan of data or not
  SFillInfo*           pFillInfo;
  SWindowResInfo       windowResInfo;
  STSBuf*              pTSBuf;
  STSCursor            cur;
  SQueryCostInfo    summary;
  bool                 stableQuery;  // super table query or not
  void*                pQueryHandle;
  void*                pSecQueryHandle;  // another thread for
  SDiskbasedResultBuf* pResultBuf;       // query result buffer based on blocked-wised disk file
176 177 178
} SQueryRuntimeEnv;

typedef struct SQInfo {
H
Haojun Liao 已提交
179 180 181 182 183 184 185 186 187
  void*   signature;
  TSKEY   startTime;
  TSKEY   elapsedTime;
  int32_t pointsInterpo;
  int32_t code;  // error code to returned to client
  sem_t   dataReady;
  void*   tsdb;
  int32_t vgId;

H
hjxilinx 已提交
188 189
  STableGroupInfo  tableIdGroupInfo;  // table id list < only includes the STableId list>
  STableGroupInfo  groupInfo;         //
190
  SQueryRuntimeEnv runtimeEnv;
191
  int32_t          groupIndex;
H
Haojun Liao 已提交
192
  int32_t          offset;  // offset in group result set of subgroup, todo refactor
weixin_48148422's avatar
weixin_48148422 已提交
193
  SArray*          arrTableIdInfo;
H
Haojun Liao 已提交
194

195 196 197 198 199 200 201
  T_REF_DECLARE()
  /*
   * the query is executed position on which meter of the whole list.
   * when the index reaches the last one of the list, it means the query is completed.
   * We later may refactor to remove this attribution by using another flag to denote
   * whether a multimeter query is completed or not.
   */
H
Haojun Liao 已提交
202 203
  int32_t tableIndex;
  int32_t numOfGroupResultPages;
204 205 206
} SQInfo;

#endif  // TDENGINE_QUERYEXECUTOR_H