executil.h 5.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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_QUERYUTIL_H
#define TDENGINE_QUERYUTIL_H

18 19 20
#include "function.h"
#include "nodes.h"
#include "plannodes.h"
21
#include "tbuffer.h"
H
Haojun Liao 已提交
22
#include "tcommon.h"
H
Haojun Liao 已提交
23
#include "tpagedbuf.h"
24

H
Haojun Liao 已提交
25 26 27
#define SET_RES_WINDOW_KEY(_k, _ori, _len, _uid)     \
  do {                                               \
    assert(sizeof(_uid) == sizeof(uint64_t));        \
28
    *(uint64_t*)(_k) = (_uid);                       \
H
Haojun Liao 已提交
29 30 31
    memcpy((_k) + sizeof(uint64_t), (_ori), (_len)); \
  } while (0)

32 33 34 35 36 37
#define SET_RES_EXT_WINDOW_KEY(_k, _ori, _len, _uid, _buf)           \
  do {                                                               \
    assert(sizeof(_uid) == sizeof(uint64_t));                        \
    *(void**)(_k) = (_buf);                                          \
    *(uint64_t*)((_k) + POINTER_BYTES) = (_uid);                     \
    memcpy((_k) + POINTER_BYTES + sizeof(uint64_t), (_ori), (_len)); \
W
fix bug  
wpan 已提交
38 39
  } while (0)

40
#define GET_RES_WINDOW_KEY_LEN(_l)     ((_l) + sizeof(uint64_t))
W
fix bug  
wpan 已提交
41 42
#define GET_RES_EXT_WINDOW_KEY_LEN(_l) ((_l) + sizeof(uint64_t) + POINTER_BYTES)

43
#define GET_TASKID(_t) (((SExecTaskInfo*)(_t))->id.str)
H
Haojun Liao 已提交
44

45 46
typedef struct SGroupResInfo {
  int32_t index;
47
  SArray* pRows;  // SArray<SResKeyPos>
48 49 50
} SGroupResInfo;

typedef struct SResultRow {
51 52 53 54 55 56 57
  int32_t                    pageId;  // pageId & rowId is the position of current result in disk-based output buffer
  int32_t                    offset : 29;  // row index in buffer page
  bool                       startInterp;  // the time window start timestamp has done the interpolation already.
  bool                       endInterp;    // the time window end timestamp has done the interpolation already.
  bool                       closed;       // this result status: closed or opened
  uint32_t                   numOfRows;    // number of rows of current time window
  STimeWindow                win;
H
Haojun Liao 已提交
58
  struct SResultRowEntryInfo pEntryInfo[];  // For each result column, there is a resultInfo
59 60
} SResultRow;

61 62 63 64 65
typedef struct SResultRowPosition {
  int32_t pageId;
  int32_t offset;
} SResultRowPosition;

66 67
typedef struct SResKeyPos {
  SResultRowPosition pos;
68 69
  uint64_t           groupId;
  char               key[];
70 71
} SResKeyPos;

72
typedef struct SResultRowInfo {
73
  int32_t            size;  // number of result set
74
  SResultRowPosition cur;
75
  SList*             openWindow;
76 77
} SResultRowInfo;

78
struct SqlFunctionCtx;
79

80 81 82
size_t getResultRowSize(struct SqlFunctionCtx* pCtx, int32_t numOfOutput);
void   initResultRowInfo(SResultRowInfo* pResultRowInfo);
void   cleanupResultRowInfo(SResultRowInfo* pResultRowInfo);
83

84
void closeAllResultRows(SResultRowInfo* pResultRowInfo);
85

86 87 88
void initResultRow(SResultRow* pResultRow);
void closeResultRow(SResultRow* pResultRow);
bool isResultRowClosed(SResultRow* pResultRow);
89

90
struct SResultRowEntryInfo* getResultEntryInfo(const SResultRow* pRow, int32_t index, const int32_t* offset);
H
Haojun Liao 已提交
91

92 93
static FORCE_INLINE SResultRow* getResultRowByPos(SDiskbasedBuf* pBuf, SResultRowPosition* pos) {
  SFilePage*  bufPage = (SFilePage*)getBufPage(pBuf, pos->pageId);
H
Haojun Liao 已提交
94 95
  SResultRow* pRow = (SResultRow*)((char*)bufPage + pos->offset);
  return pRow;
H
Haojun Liao 已提交
96
}
H
Haojun Liao 已提交
97

98 99
void initGroupedResultInfo(SGroupResInfo* pGroupResInfo, SHashObj* pHashmap, int32_t order);
void initMultiResInfoFromArrayList(SGroupResInfo* pGroupResInfo, SArray* pArrayList);
H
Haojun Liao 已提交
100

101 102
void cleanupGroupResInfo(SGroupResInfo* pGroupResInfo);
bool hasDataInGroupInfo(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
103

H
Haojun Liao 已提交
104 105
int32_t getNumOfTotalRes(SGroupResInfo* pGroupResInfo);

106 107
SSDataBlock* createResDataBlock(SDataBlockDescNode* pNode);

wmmhello's avatar
wmmhello 已提交
108
EDealRes doTranslateTagExpr(SNode** pNode, void* pContext);
109 110 111 112 113
int32_t  getTableList(void* metaHandle, SScanPhysiNode* pScanNode, STableListInfo* pListInfo);
SArray*  createSortInfo(SNodeList* pNodeList);
SArray*  extractPartitionColInfo(SNodeList* pNodeList);
SArray*  extractColMatchInfo(SNodeList* pNodeList, SDataBlockDescNode* pOutputNodeList, int32_t* numOfOutputCols,
                             int32_t type);
114 115 116

SExprInfo* createExprInfo(SNodeList* pNodeList, SNodeList* pGroupKeys, int32_t* numOfExprs);

117
SqlFunctionCtx* createSqlFunctionCtx(SExprInfo* pExprInfo, int32_t numOfOutput, int32_t** rowEntryInfoOffset);
118 119
void relocateColumnData(SSDataBlock* pBlock, const SArray* pColMatchInfo, SArray* pCols, bool outputEveryColumn);
void initExecTimeWindowInfo(SColumnInfoData* pColData, STimeWindow* pQueryWindow);
120 121 122 123 124

SInterval extractIntervalInfo(const STableScanPhysiNode* pTableScanNode);
SColumn   extractColumnFromColumnNode(SColumnNode* pColNode);

int32_t initQueryTableDataCond(SQueryTableDataCond* pCond, const STableScanPhysiNode* pTableScanNode);
125
void    cleanupQueryTableDataCond(SQueryTableDataCond* pCond);
126

127 128
int32_t convertFillType(int32_t mode);

129
#endif  // TDENGINE_QUERYUTIL_H