qUtil.h 4.8 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
#include "tbuffer.h"

20 21 22
#define SELECT_ALL_JSON_TAG 1
#define SELECT_ELEMENT_JSON_TAG 2

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

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


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

H
Haojun Liao 已提交
42
#define GET_QID(_r)  (((SQInfo*)((_r)->qinfo))->qId)
H
Haojun Liao 已提交
43

H
Haojun Liao 已提交
44 45
#define curTimeWindowIndex(_winres)        ((_winres)->curIndex)

H
Haojun Liao 已提交
46
int32_t getOutputInterResultBufSize(SQueryAttr* pQueryAttr);
H
Haojun Liao 已提交
47

H
Haojun Liao 已提交
48 49 50
size_t  getResultRowSize(SQueryRuntimeEnv* pRuntimeEnv);
int32_t initResultRowInfo(SResultRowInfo* pResultRowInfo, int32_t size, int16_t type);
void    cleanupResultRowInfo(SResultRowInfo* pResultRowInfo);
51

H
Haojun Liao 已提交
52 53 54
void    resetResultRowInfo(SQueryRuntimeEnv* pRuntimeEnv, SResultRowInfo* pResultRowInfo);
int32_t numOfClosedResultRows(SResultRowInfo* pResultRowInfo);
void    closeAllResultRows(SResultRowInfo* pResultRowInfo);
55

H
Haojun Liao 已提交
56 57 58 59
int32_t initResultRow(SResultRow *pResultRow);
void    closeResultRow(SResultRowInfo* pResultRowInfo, int32_t slot);
bool    isResultRowClosed(SResultRowInfo *pResultRowInfo, int32_t slot);
void    clearResultRow(SQueryRuntimeEnv* pRuntimeEnv, SResultRow* pResultRow, int16_t type);
60

H
Haojun Liao 已提交
61
SResultRowCellInfo* getResultCell(const SResultRow* pRow, int32_t index, int32_t* offset);
H
Haojun Liao 已提交
62

H
Haojun Liao 已提交
63
void* destroyQueryFuncExpr(SExprInfo* pExprInfo, int32_t numOfExpr);
H
Haojun Liao 已提交
64
void* freeColumnInfo(SColumnInfo* pColumnInfo, int32_t numOfCols);
W
wpan 已提交
65
int32_t getRowNumForMultioutput(SQueryAttr* pQueryAttr, bool topBottomQuery, bool stable);
H
Haojun Liao 已提交
66

H
Haojun Liao 已提交
67 68 69
static FORCE_INLINE SResultRow *getResultRow(SResultRowInfo *pResultRowInfo, int32_t slot) {
  assert(pResultRowInfo != NULL && slot >= 0 && slot < pResultRowInfo->size);
  return pResultRowInfo->pResult[slot];
H
Haojun Liao 已提交
70
}
H
Haojun Liao 已提交
71

72 73
static FORCE_INLINE char* getPosInResultPage(SQueryAttr* pQueryAttr, tFilePage* page, int32_t rowOffset,
                                             int32_t offset) {
H
Haojun Liao 已提交
74
  assert(rowOffset >= 0 && pQueryAttr != NULL);
H
Haojun Liao 已提交
75

W
wpan 已提交
76
  int32_t numOfRows = (int32_t)getRowNumForMultioutput(pQueryAttr, pQueryAttr->topBotQuery, pQueryAttr->stableQuery);
H
Haojun Liao 已提交
77
  return ((char *)page->data) + rowOffset + offset * numOfRows;
H
Haojun Liao 已提交
78
}
79

80 81
bool isNullOperator(SColumnFilterElem *pFilter, const char* minval, const char* maxval, int16_t type);
bool notNullOperator(SColumnFilterElem *pFilter, const char* minval, const char* maxval, int16_t type);
H
Haojun Liao 已提交
82

83
__filter_func_t getFilterOperator(int32_t lowerOptr, int32_t upperOptr);
84

H
Haojun Liao 已提交
85 86 87 88 89 90
SResultRowPool* initResultRowPool(size_t size);
SResultRow* getNewResultRow(SResultRowPool* p);
int64_t getResultRowPoolMemSize(SResultRowPool* p);
void* destroyResultRowPool(SResultRowPool* p);
int32_t getNumOfAllocatedResultRows(SResultRowPool* p);
int32_t getNumOfUsedResultRows(SResultRowPool* p);
91

92 93 94 95 96 97 98 99
typedef struct {
  SArray* pResult;     // SArray<SResPair>
  int32_t colId;
} SStddevInterResult;

void interResToBinary(SBufferWriter* bw, SArray* pRes, int32_t tagLen);
SArray* interResFromBinary(const char* data, int32_t len);
void freeInterResult(void* param);
100

H
Haojun Liao 已提交
101
void    initGroupResInfo(SGroupResInfo* pGroupResInfo, SResultRowInfo* pResultInfo);
H
Haojun Liao 已提交
102
void    cleanupGroupResInfo(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
103
bool    hasRemainDataInCurrentGroup(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
104
bool    hasRemainData(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
105

H
Haojun Liao 已提交
106 107 108
bool    incNextGroup(SGroupResInfo* pGroupResInfo);
int32_t getNumOfTotalRes(SGroupResInfo* pGroupResInfo);

H
Haojun Liao 已提交
109
int32_t mergeIntoGroupResult(SGroupResInfo* pGroupResInfo, SQueryRuntimeEnv *pRuntimeEnv, int32_t* offset);
H
Haojun Liao 已提交
110

D
dapan1121 已提交
111
int32_t initUdfInfo(SUdfInfo* pUdfInfo);
112
#endif  // TDENGINE_QUERYUTIL_H