queryExecutor.h 6.6 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"
21
#include "tsdb.h"
22 23 24 25 26 27 28
#include "qinterpolation.h"
#include "qresultBuf.h"
#include "qsqlparser.h"
#include "qtsbuf.h"
#include "taosdef.h"
#include "tref.h"
#include "tsqlfunction.h"
H
hjxilinx 已提交
29
#include "tarray.h"
30 31 32 33 34 35 36 37

typedef struct SData {
  int32_t num;
  char    data[];
} SData;

struct SColumnFilterElem;
typedef bool (*__filter_func_t)(struct SColumnFilterElem* pFilter, char* val1, char* val2);
H
hjxilinx 已提交
38
typedef int32_t (*__block_search_fn_t)(char* data, int32_t num, int64_t key, int32_t order);
39 40 41

typedef struct SSqlGroupbyExpr {
  int16_t     tableIndex;
42
  SArray*     columnInfo;      // SArray<SColIndex>, group by columns information
43
  int16_t     numOfGroupCols;
44 45
  int16_t     orderIndex;      // order by column index
  int16_t     orderType;       // order by type: asc/desc
46 47 48 49 50 51 52 53 54 55 56 57
} SSqlGroupbyExpr;

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

typedef struct SWindowStatus {
  bool closed;
} SWindowStatus;

typedef struct SWindowResult {
H
hjxilinx 已提交
58
  uint16_t      numOfRows;   // number of rows of current  time window
59 60 61
  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 已提交
62
  SWindowStatus status;      // this result status: closed or opened
63 64 65
} SWindowResult;

typedef struct SResultRec {
H
hjxilinx 已提交
66
  int64_t total;     // total generated result size in rows
67
  int64_t rows;      // current result set size in rows
H
hjxilinx 已提交
68 69 70 71
  int64_t capacity;  // capacity of current result output buffer
  
  // result size threshold in rows. If the result buffer is larger than this, pause query and return to client
  int32_t threshold;
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
} SResultRec;

typedef struct SWindowResInfo {
  SWindowResult* pResult;    // result list
  void*          hashList;   // hash list for quick access
  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
  int64_t        threshold;  // threshold to pausing query and return closed results.
} SWindowResInfo;

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

typedef struct SSingleColumnFilterInfo {
93
  SColumnInfo        info;
94 95 96 97 98
  int32_t            numOfFilters;
  SColumnFilterElem* pFilters;
  void*              pData;
} SSingleColumnFilterInfo;

H
hjxilinx 已提交
99 100 101 102
typedef struct STableQueryInfo {  // todo merge with the STableQueryInfo struct
  int32_t     tableIndex;
  int32_t     groupIdx;       // group id in table list
  TSKEY       lastKey;
103 104 105
  int32_t     numOfRes;
  int16_t     queryRangeSet;  // denote if the query range is set, only available for interval query
  int64_t     tag;
H
hjxilinx 已提交
106
  STimeWindow win;
107
  STSCursor   cur;
H
hjxilinx 已提交
108 109
  STableId    id;             // for retrieve the page id list
  
110 111 112 113 114
  SWindowResInfo windowResInfo;
} STableQueryInfo;

typedef struct SQuery {
  int16_t           numOfCols;
115 116
  int16_t           numOfTags;
  
117 118 119 120 121 122
  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
  int8_t            precision;
123
  int16_t           numOfOutput;
124
  int16_t           interpoType;
125
  int16_t           checkBuffer;  // check if the buffer is full during scan each block
126 127 128
  SLimitVal         limit;
  int32_t           rowSize;
  SSqlGroupbyExpr*  pGroupbyExpr;
H
hjxilinx 已提交
129
  SExprInfo*        pSelectExpr;
130
  SColumnInfo*      colList;
131
  SColumnInfo*      tagColList;
132 133 134 135 136 137
  int32_t           numOfFilterCols;
  int64_t*          defaultVal;
  TSKEY             lastKey;
  uint32_t          status;  // query status
  SResultRec        rec;
  int32_t           pos;
H
hjxilinx 已提交
138
  SData**           sdata;
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
  SSingleColumnFilterInfo* pFilterInfo;
} SQuery;

typedef struct SQueryCostSummary {
} SQueryCostSummary;

typedef struct SQueryRuntimeEnv {
  SResultInfo*       resultInfo;  // todo refactor to merge with SWindowResInfo
  SQuery*            pQuery;
  SData**            pInterpoBuf;
  SQLFunctionCtx*    pCtx;
  int16_t            numOfRowsPerPage;
  int16_t            offset[TSDB_MAX_COLUMNS];
  uint16_t           scanFlag;  // denotes reversed scan of data or not
  SInterpolationInfo interpoInfo;
  SWindowResInfo     windowResInfo;
  STSBuf*            pTSBuf;
  STSCursor          cur;
  SQueryCostSummary  summary;
  bool               stableQuery;  // super table query or not
  void*              pQueryHandle;
160
  void*              pSecQueryHandle; // another thread for
161 162 163 164
  SDiskbasedResultBuf* pResultBuf;  // query result buffer based on blocked-wised disk file
} SQueryRuntimeEnv;

typedef struct SQInfo {
H
hjxilinx 已提交
165
  void*            signature;
166
  TSKEY            startTime;
H
hjxilinx 已提交
167
  TSKEY            elapsedTime;
H
hjxilinx 已提交
168
  int32_t          pointsInterpo;
H
hjxilinx 已提交
169
  int32_t          code;              // error code to returned to client
170
  sem_t            dataReady;
171
  void*            tsdb;
172
  int32_t          vgId;
173
  
H
hjxilinx 已提交
174 175
  STableGroupInfo  tableIdGroupInfo;  // table id list < only includes the STableId list>
  STableGroupInfo  groupInfo;         //
176
  SQueryRuntimeEnv runtimeEnv;
177
  int32_t          groupIndex;
H
hjxilinx 已提交
178
  int32_t          offset;            // offset in group result set of subgroup, todo refactor
H
hjxilinx 已提交
179
  
180 181 182 183 184 185 186 187 188 189 190 191
  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.
   */
  int32_t         tableIndex;
  int32_t         numOfGroupResultPages;
} SQInfo;

#endif  // TDENGINE_QUERYEXECUTOR_H