163 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			163 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C
		
	
	
	
/*
 | 
						|
 * 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
 | 
						|
 | 
						|
#include "common.h"
 | 
						|
#include "tpagedfile.h"
 | 
						|
#include "tbuffer.h"
 | 
						|
 | 
						|
#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 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));   \
 | 
						|
  } while (0)
 | 
						|
 | 
						|
 | 
						|
#define GET_RES_WINDOW_KEY_LEN(_l) ((_l) + sizeof(uint64_t))
 | 
						|
#define GET_RES_EXT_WINDOW_KEY_LEN(_l) ((_l) + sizeof(uint64_t) + POINTER_BYTES)
 | 
						|
 | 
						|
#define GET_QID(_r)  (((SQInfo*)((_r)->qinfo))->qId)
 | 
						|
 | 
						|
#define curTimeWindowIndex(_winres)        ((_winres)->curIndex)
 | 
						|
 | 
						|
struct SColumnFilterElem;
 | 
						|
 | 
						|
typedef bool (*__filter_func_t)(struct SColumnFilterElem* pFilter, const char* val1, const char* val2, int16_t type);
 | 
						|
 | 
						|
typedef struct SGroupResInfo {
 | 
						|
  int32_t totalGroup;
 | 
						|
  int32_t currentGroup;
 | 
						|
  int32_t index;
 | 
						|
  SArray* pRows;      // SArray<SResultRow*>
 | 
						|
  bool    ordered;
 | 
						|
  int32_t position;
 | 
						|
} SGroupResInfo;
 | 
						|
 | 
						|
typedef struct SResultRow {
 | 
						|
  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
 | 
						|
  struct SResultRowEntryInfo* pEntryInfo;  // For each result column, there is a resultInfo
 | 
						|
  STimeWindow   win;
 | 
						|
  char         *key;               // start key of current result row
 | 
						|
} SResultRow;
 | 
						|
 | 
						|
typedef struct SResultRowInfo {
 | 
						|
  SResultRow** pResult;    // result list
 | 
						|
  int16_t      type:8;     // data type for hash key
 | 
						|
  int32_t      size:24;    // number of result set
 | 
						|
  int32_t      capacity;   // max capacity
 | 
						|
  int32_t      curPos;     // current active result row index of pResult list
 | 
						|
} SResultRowInfo;
 | 
						|
 | 
						|
typedef struct SResultRowPool {
 | 
						|
  int32_t elemSize;
 | 
						|
  int32_t blockSize;
 | 
						|
  int32_t numOfElemPerBlock;
 | 
						|
 | 
						|
  struct {
 | 
						|
    int32_t blockIndex;
 | 
						|
    int32_t pos;
 | 
						|
  } position;
 | 
						|
 | 
						|
  SArray* pData;    // SArray<void*>
 | 
						|
} SResultRowPool;
 | 
						|
 | 
						|
struct SQueryAttr;
 | 
						|
struct SQueryRuntimeEnv;
 | 
						|
struct SUdfInfo;
 | 
						|
 | 
						|
int32_t getOutputInterResultBufSize(struct SQueryAttr* pQueryAttr);
 | 
						|
 | 
						|
size_t  getResultRowSize(struct SQueryRuntimeEnv* pRuntimeEnv);
 | 
						|
int32_t initResultRowInfo(SResultRowInfo* pResultRowInfo, int32_t size, int16_t type);
 | 
						|
void    cleanupResultRowInfo(SResultRowInfo* pResultRowInfo);
 | 
						|
 | 
						|
void    resetResultRowInfo(struct SQueryRuntimeEnv* pRuntimeEnv, SResultRowInfo* pResultRowInfo);
 | 
						|
int32_t numOfClosedResultRows(SResultRowInfo* pResultRowInfo);
 | 
						|
void    closeAllResultRows(SResultRowInfo* pResultRowInfo);
 | 
						|
 | 
						|
int32_t initResultRow(SResultRow *pResultRow);
 | 
						|
void    closeResultRow(SResultRowInfo* pResultRowInfo, int32_t slot);
 | 
						|
bool    isResultRowClosed(SResultRowInfo *pResultRowInfo, int32_t slot);
 | 
						|
void    clearResultRow(struct SQueryRuntimeEnv* pRuntimeEnv, SResultRow* pResultRow, int16_t type);
 | 
						|
 | 
						|
struct SResultRowEntryInfo* getResultCell(const SResultRow* pRow, int32_t index, int32_t* offset);
 | 
						|
 | 
						|
void* destroyQueryFuncExpr(SExprInfo* pExprInfo, int32_t numOfExpr);
 | 
						|
void* freeColumnInfo(SColumnInfo* pColumnInfo, int32_t numOfCols);
 | 
						|
int32_t getRowNumForMultioutput(struct SQueryAttr* pQueryAttr, bool topBottomQuery, bool stable);
 | 
						|
 | 
						|
static FORCE_INLINE SResultRow *getResultRow(SResultRowInfo *pResultRowInfo, int32_t slot) {
 | 
						|
  assert(pResultRowInfo != NULL && slot >= 0 && slot < pResultRowInfo->size);
 | 
						|
  return pResultRowInfo->pResult[slot];
 | 
						|
}
 | 
						|
 | 
						|
static FORCE_INLINE char* getPosInResultPage(struct SQueryAttr* pQueryAttr, SFilePage* page, int32_t rowOffset,
 | 
						|
                                             int32_t offset) {
 | 
						|
  assert(rowOffset >= 0 && pQueryAttr != NULL);
 | 
						|
 | 
						|
//  int32_t numOfRows = (int32_t)getRowNumForMultioutput(pQueryAttr, pQueryAttr->topBotQuery, pQueryAttr->stableQuery);
 | 
						|
//  return ((char *)page->data) + rowOffset + offset * numOfRows;
 | 
						|
}
 | 
						|
 | 
						|
//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);
 | 
						|
 | 
						|
__filter_func_t getFilterOperator(int32_t lowerOptr, int32_t upperOptr);
 | 
						|
 | 
						|
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);
 | 
						|
 | 
						|
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);
 | 
						|
 | 
						|
void    initGroupResInfo(SGroupResInfo* pGroupResInfo, SResultRowInfo* pResultInfo);
 | 
						|
void    cleanupGroupResInfo(SGroupResInfo* pGroupResInfo);
 | 
						|
bool    hasRemainDataInCurrentGroup(SGroupResInfo* pGroupResInfo);
 | 
						|
bool    hasRemainData(SGroupResInfo* pGroupResInfo);
 | 
						|
 | 
						|
bool    incNextGroup(SGroupResInfo* pGroupResInfo);
 | 
						|
int32_t getNumOfTotalRes(SGroupResInfo* pGroupResInfo);
 | 
						|
 | 
						|
int32_t mergeIntoGroupResult(SGroupResInfo* pGroupResInfo, struct SQueryRuntimeEnv *pRuntimeEnv, int32_t* offset);
 | 
						|
 | 
						|
int32_t initUdfInfo(struct SUdfInfo* pUdfInfo);
 | 
						|
 | 
						|
#endif  // TDENGINE_QUERYUTIL_H
 |