executil.h 6.0 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
#include "vnode.h"
19 20 21
#include "function.h"
#include "nodes.h"
#include "plannodes.h"
22
#include "tbuffer.h"
H
Haojun Liao 已提交
23
#include "tcommon.h"
H
Haojun Liao 已提交
24
#include "tpagedbuf.h"
25
#include "tsimplehash.h"
26

27 28 29 30 31 32
#define T_LONG_JMP(_obj, _c) \
  do {                       \
    ASSERT((_c) != -1);      \
    longjmp((_obj), (_c));   \
  } while (0);

H
Haojun Liao 已提交
33 34 35
#define SET_RES_WINDOW_KEY(_k, _ori, _len, _uid)     \
  do {                                               \
    assert(sizeof(_uid) == sizeof(uint64_t));        \
36
    *(uint64_t*)(_k) = (_uid);                       \
H
Haojun Liao 已提交
37 38 39
    memcpy((_k) + sizeof(uint64_t), (_ori), (_len)); \
  } while (0)

40 41 42 43 44 45
#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 已提交
46 47
  } while (0)

48
#define GET_RES_WINDOW_KEY_LEN(_l)     ((_l) + sizeof(uint64_t))
W
fix bug  
wpan 已提交
49 50
#define GET_RES_EXT_WINDOW_KEY_LEN(_l) ((_l) + sizeof(uint64_t) + POINTER_BYTES)

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

53 54
typedef struct SGroupResInfo {
  int32_t index;
55
  SArray* pRows;  // SArray<SResKeyPos>
56 57 58
} SGroupResInfo;

typedef struct SResultRow {
59 60 61 62 63 64 65
  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 已提交
66
  struct SResultRowEntryInfo pEntryInfo[];  // For each result column, there is a resultInfo
67 68
} SResultRow;

69 70 71 72 73
typedef struct SResultRowPosition {
  int32_t pageId;
  int32_t offset;
} SResultRowPosition;

74 75
typedef struct SResKeyPos {
  SResultRowPosition pos;
76 77
  uint64_t           groupId;
  char               key[];
78 79
} SResKeyPos;

80
typedef struct SResultRowInfo {
81
  int32_t            size;  // number of result set
82
  SResultRowPosition cur;
83
  SList*             openWindow;
84 85
} SResultRowInfo;

86
struct SqlFunctionCtx;
87

88 89
size_t getResultRowSize(struct SqlFunctionCtx* pCtx, int32_t numOfOutput);
void   initResultRowInfo(SResultRowInfo* pResultRowInfo);
90

91 92
void initResultRow(SResultRow* pResultRow);
void closeResultRow(SResultRow* pResultRow);
93

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

96
static FORCE_INLINE SResultRow* getResultRowByPos(SDiskbasedBuf* pBuf, SResultRowPosition* pos, bool forUpdate) {
97
  SFilePage*  bufPage = (SFilePage*)getBufPage(pBuf, pos->pageId);
98 99 100
  if (forUpdate) {
    setBufPageDirty(bufPage, true);
  }
H
Haojun Liao 已提交
101 102
  SResultRow* pRow = (SResultRow*)((char*)bufPage + pos->offset);
  return pRow;
H
Haojun Liao 已提交
103
}
H
Haojun Liao 已提交
104

D
dapan1121 已提交
105 106 107 108 109
static FORCE_INLINE void setResultBufPageDirty(SDiskbasedBuf* pBuf, SResultRowPosition* pos) {
  void* pPage = getBufPage(pBuf, pos->pageId);
  setBufPageDirty(pPage, true);
}

110
void initGroupedResultInfo(SGroupResInfo* pGroupResInfo, SSHashObj* pHashmap, int32_t order);
111
void cleanupGroupResInfo(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
112 113

void initMultiResInfoFromArrayList(SGroupResInfo* pGroupResInfo, SArray* pArrayList);
114
bool hasRemainResults(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
115

H
Haojun Liao 已提交
116 117
int32_t getNumOfTotalRes(SGroupResInfo* pGroupResInfo);

118 119
SSDataBlock* createResDataBlock(SDataBlockDescNode* pNode);

wmmhello's avatar
wmmhello 已提交
120
EDealRes doTranslateTagExpr(SNode** pNode, void* pContext);
121
int32_t getTableList(void* metaHandle, void* pVnode, SScanPhysiNode* pScanNode, SNode* pTagCond, SNode* pTagIndexCond, STableListInfo* pListInfo);
H
Haojun Liao 已提交
122
int32_t getGroupIdFromTagsVal(void* pMeta, uint64_t uid, SNodeList* pGroupNode, char* keyBuf, uint64_t* pGroupId);
H
Haojun Liao 已提交
123
int32_t getColInfoResultForGroupby(void* metaHandle, SNodeList* group, STableListInfo* pTableListInfo);
124 125
size_t  getTableTagsBufLen(const SNodeList* pGroups);

126 127 128 129
SArray*  createSortInfo(SNodeList* pNodeList);
SArray*  extractPartitionColInfo(SNodeList* pNodeList);
SArray*  extractColMatchInfo(SNodeList* pNodeList, SDataBlockDescNode* pOutputNodeList, int32_t* numOfOutputCols,
                             int32_t type);
130 131 132

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

133
SqlFunctionCtx* createSqlFunctionCtx(SExprInfo* pExprInfo, int32_t numOfOutput, int32_t** rowEntryInfoOffset);
134 135
void relocateColumnData(SSDataBlock* pBlock, const SArray* pColMatchInfo, SArray* pCols, bool outputEveryColumn);
void initExecTimeWindowInfo(SColumnInfoData* pColData, STimeWindow* pQueryWindow);
136 137 138 139 140

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

int32_t initQueryTableDataCond(SQueryTableDataCond* pCond, const STableScanPhysiNode* pTableScanNode);
141
void    cleanupQueryTableDataCond(SQueryTableDataCond* pCond);
142

143 144
int32_t convertFillType(int32_t mode);

5
54liuyao 已提交
145 146
int32_t resultrowComparAsc(const void* p1, const void* p2);

H
Haojun Liao 已提交
147
int32_t isQualifiedTable(STableKeyInfo* info, SNode* pTagCond, void* metaHandle, bool* pQualified);
148

149
#endif  // TDENGINE_QUERYUTIL_H