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

H
Haojun Liao 已提交
20 21 22 23 24 25 26 27
#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)

#define GET_RES_WINDOW_KEY_LEN(_l) ((_l) + sizeof(uint64_t))
H
Haojun Liao 已提交
28
#define GET_QID(_r)  (((SQInfo*)((_r)->qinfo))->qId)
H
Haojun Liao 已提交
29

H
Haojun Liao 已提交
30
#define curTimeWindowIndex(_winres)        ((_winres)->curIndex)
H
Haojun Liao 已提交
31
#define GET_ROW_PARAM_FOR_MULTIOUTPUT(_q, tbq, sq) (((tbq) && (!(sq)))? (_q)->pExpr1[1].base.arg->argValue.i64:1)
H
Haojun Liao 已提交
32

H
Haojun Liao 已提交
33 34
int32_t getOutputInterResultBufSize(SQuery* pQuery);

H
Haojun Liao 已提交
35 36 37
size_t  getResultRowSize(SQueryRuntimeEnv* pRuntimeEnv);
int32_t initResultRowInfo(SResultRowInfo* pResultRowInfo, int32_t size, int16_t type);
void    cleanupResultRowInfo(SResultRowInfo* pResultRowInfo);
38

H
Haojun Liao 已提交
39 40 41
void    resetResultRowInfo(SQueryRuntimeEnv* pRuntimeEnv, SResultRowInfo* pResultRowInfo);
int32_t numOfClosedResultRows(SResultRowInfo* pResultRowInfo);
void    closeAllResultRows(SResultRowInfo* pResultRowInfo);
42

H
Haojun Liao 已提交
43 44 45 46
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);
47

H
Haojun Liao 已提交
48
SResultRowCellInfo* getResultCell(const SResultRow* pRow, int32_t index, int32_t* offset);
H
Haojun Liao 已提交
49 50 51 52

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 已提交
53
}
H
Haojun Liao 已提交
54

55 56 57 58 59 60
static FORCE_INLINE char* getPosInResultPage(SQueryRuntimeEnv* pRuntimeEnv, tFilePage* page, int32_t rowOffset,
                                             int16_t offset, int32_t size) {
  assert(rowOffset >= 0 && pRuntimeEnv != NULL);

  SQuery* pQuery = pRuntimeEnv->pQuery;
  int64_t pageSize = pRuntimeEnv->pResultBuf->pageSize;
H
Haojun Liao 已提交
61

sangshuduo's avatar
sangshuduo 已提交
62
  int32_t numOfRows = (int32_t)GET_ROW_PARAM_FOR_MULTIOUTPUT(pQuery, pQuery->topBotQuery, pQuery->stableQuery);
63 64 65 66 67 68

  // buffer overflow check
  int64_t bufEnd = (rowOffset + offset * numOfRows + size);
  assert(page->num <= pageSize && bufEnd <= page->num);

  return ((char*)page->data) + rowOffset + offset * numOfRows;
H
Haojun Liao 已提交
69
}
70

71 72
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 已提交
73

74
__filter_func_t getFilterOperator(int32_t lowerOptr, int32_t upperOptr);
75

H
Haojun Liao 已提交
76 77 78 79 80 81
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);
82

83 84 85 86 87 88 89 90
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);
91

H
Haojun Liao 已提交
92
void    initGroupResInfo(SGroupResInfo* pGroupResInfo, SResultRowInfo* pResultInfo);
H
Haojun Liao 已提交
93
void    cleanupGroupResInfo(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
94
bool    hasRemainDataInCurrentGroup(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
95
bool    hasRemainData(SGroupResInfo* pGroupResInfo);
H
Haojun Liao 已提交
96

H
Haojun Liao 已提交
97 98 99
bool    incNextGroup(SGroupResInfo* pGroupResInfo);
int32_t getNumOfTotalRes(SGroupResInfo* pGroupResInfo);

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

102
#endif  // TDENGINE_QUERYUTIL_H