tscUtil.h 10.9 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * 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_TSCUTIL_H
#define TDENGINE_TSCUTIL_H

#ifdef __cplusplus
extern "C" {
#endif

/*
 * @date   2018/09/30
 */
H
hjxilinx 已提交
26
#include "os.h"
27
#include "tbuffer.h"
28
#include "exception.h"
29 30
#include "qextbuffer.h"
#include "taosdef.h"
H
hjxilinx 已提交
31
#include "tscSecondaryMerge.h"
S
slguan 已提交
32
#include "tsclient.h"
H
hzcheng 已提交
33

H
hjxilinx 已提交
34
#define UTIL_TABLE_IS_SUPERTABLE(metaInfo) \
H
hjxilinx 已提交
35
  (((metaInfo)->pTableMeta != NULL) && ((metaInfo)->pTableMeta->tableType == TSDB_SUPER_TABLE))
H
hjxilinx 已提交
36
#define UTIL_TABLE_IS_NOMRAL_TABLE(metaInfo) (!(UTIL_TABLE_IS_SUPERTABLE(metaInfo)))
37
#define UTIL_TABLE_IS_CHILD_TABLE(metaInfo) \
H
hjxilinx 已提交
38
  (((metaInfo)->pTableMeta != NULL) && ((metaInfo)->pTableMeta->tableType == TSDB_CHILD_TABLE))
H
hzcheng 已提交
39

S
slguan 已提交
40 41
#define TSDB_COL_IS_TAG(f) (((f)&TSDB_COL_TAG) != 0)

H
hzcheng 已提交
42 43 44 45 46 47
typedef struct SParsedColElem {
  int16_t colIndex;
  int16_t offset;
} SParsedColElem;

typedef struct SParsedDataColInfo {
48 49
  int16_t        numOfCols;
  int16_t        numOfAssignedCols;
H
hzcheng 已提交
50 51 52 53
  SParsedColElem elems[TSDB_MAX_COLUMNS];
  bool           hasVal[TSDB_MAX_COLUMNS];
} SParsedDataColInfo;

54 55 56 57 58 59 60 61
typedef struct STidTags {
  int64_t  uid;
  int32_t  tid;
  int32_t  vgId;
  char     tag[];
} STidTags;

typedef struct SJoinSupporter {
S
slguan 已提交
62 63 64 65 66 67
  SSubqueryState* pState;
  SSqlObj*        pObj;           // parent SqlObj
  int32_t         subqueryIndex;  // index of sub query
  int64_t         interval;       // interval time
  SLimitVal       limit;          // limit info
  uint64_t        uid;            // query meter uid
H
hjxilinx 已提交
68 69
  SArray*         colList;        // previous query information, no need to use this attribute, and the corresponding attribution
  SArray*         exprList;
S
slguan 已提交
70 71 72
  SFieldInfo      fieldsInfo;
  STagCond        tagCond;
  SSqlGroupbyExpr groupbyExpr;
H
hjxilinx 已提交
73 74
  struct STSBuf*  pTSBuf;          // the TSBuf struct that holds the compressed timestamp array
  FILE*           f;               // temporary file in order to create TSBuf
75 76 77 78 79 80 81 82 83 84 85
  char            path[PATH_MAX];  // temporary file path, todo dynamic allocate memory
  int32_t         tagSize;         // the length of each in the first filter stage
  char*           pIdTagList;      // result of first stage tags
  int32_t         totalLen;
  int32_t         num;
} SJoinSupporter;

typedef struct SVgroupTableInfo {
  SCMVgroupInfo vgInfo;
  SArray*       itemList;   //SArray<STableIdInfo>
} SVgroupTableInfo;
S
slguan 已提交
86

H
hjxilinx 已提交
87
int32_t tscCreateDataBlock(size_t initialSize, int32_t rowSize, int32_t startOffset, const char* name,
H
hjxilinx 已提交
88
                           STableMeta* pTableMeta, STableDataBlocks** dataBlocks);
H
hjxilinx 已提交
89 90 91
void tscAppendDataBlock(SDataBlockList* pList, STableDataBlocks* pBlocks);
void tscDestroyDataBlock(STableDataBlocks* pDataBlock);
void tscSortRemoveDataBlockDupRows(STableDataBlocks* dataBuf);
H
hjxilinx 已提交
92 93 94 95 96 97 98 99 100 101 102

SParamInfo* tscAddParamToDataBlock(STableDataBlocks* pDataBlock, char type, uint8_t timePrec, short bytes,
                                   uint32_t offset);

SDataBlockList* tscCreateBlockArrayList();

void*   tscDestroyBlockArrayList(SDataBlockList* pList);
int32_t tscCopyDataBlockToPayload(SSqlObj* pSql, STableDataBlocks* pDataBlock);
void    tscFreeUnusedDataBlocks(SDataBlockList* pList);
int32_t tscMergeTableDataBlocks(SSqlObj* pSql, SDataBlockList* pDataList);
int32_t tscGetDataBlockFromList(void* pHashList, SDataBlockList* pDataBlockList, int64_t id, int32_t size,
H
hjxilinx 已提交
103
                                int32_t startOffset, int32_t rowSize, const char* tableId, STableMeta* pTableMeta,
H
hjxilinx 已提交
104
                                STableDataBlocks** dataBlocks);
H
hjxilinx 已提交
105

106
//UNUSED_FUNC STableIdInfo*  tscGetMeterSidInfo(SVnodeSidList* pSidList, int32_t idx);
H
hzcheng 已提交
107 108 109 110

/**
 *
 * for the projection query on metric or point interpolation query on metric,
S
slguan 已提交
111
 * we iterate all the meters, instead of invoke query on all qualified meters simultaneously.
H
hzcheng 已提交
112 113 114 115
 *
 * @param pSql  sql object
 * @return
 */
116 117
bool tscIsPointInterpQuery(SQueryInfo* pQueryInfo);
bool tscIsTWAQuery(SQueryInfo* pQueryInfo);
118

119
bool tscNonOrderedProjectionQueryOnSTable(SQueryInfo *pQueryInfo, int32_t tableIndex);
120 121 122
bool tscOrderedProjectionQueryOnSTable(SQueryInfo* pQueryInfo, int32_t tableIndex);
bool tscIsProjectionQueryOnSTable(SQueryInfo* pQueryInfo, int32_t tableIndex);

123
bool tscProjectionQueryOnTable(SQueryInfo* pQueryInfo);
H
hjxilinx 已提交
124

H
hjxilinx 已提交
125
bool tscIsTwoStageSTableQuery(SQueryInfo* pQueryInfo, int32_t tableIndex);
126
bool tscQueryOnSTable(SSqlCmd* pCmd);
H
hjxilinx 已提交
127
bool tscQueryTags(SQueryInfo* pQueryInfo);
S
slguan 已提交
128 129
bool tscIsSelectivityWithTagQuery(SSqlCmd* pCmd);

130
void tscAddSpecialColumnForSelect(SQueryInfo* pQueryInfo, int32_t outputColIndex, int16_t functionId, SColumnIndex* pIndex,
S
slguan 已提交
131
                                  SSchema* pColSchema, int16_t isTag);
H
hzcheng 已提交
132

133 134
//void addRequiredTagColumn(SQueryInfo* pQueryInfo, int32_t tagColIndex, int32_t tableIndex);
void addRequiredTagColumn(STableMetaInfo* pTableMetaInfo, SColumnIndex* index);
H
hjxilinx 已提交
135

H
hjxilinx 已提交
136
int32_t tscSetTableId(STableMetaInfo* pTableMetaInfo, SSQLToken* pzTableName, SSqlObj* pSql);
137
void    tscClearInterpInfo(SQueryInfo* pQueryInfo);
H
hzcheng 已提交
138 139 140 141

bool tscIsInsertOrImportData(char* sqlstr);

/* use for keep current db info temporarily, for handle table with db prefix */
H
hjxilinx 已提交
142
// todo remove it
S
slguan 已提交
143
void tscGetDBInfoFromMeterId(char* tableId, char* db);
H
hzcheng 已提交
144

S
slguan 已提交
145
int tscAllocPayload(SSqlCmd* pCmd, int size);
H
hzcheng 已提交
146

H
hjxilinx 已提交
147 148 149 150 151 152 153
TAOS_FIELD tscCreateField(int8_t type, const char* name, int16_t bytes);

SFieldSupInfo* tscFieldInfoAppend(SFieldInfo* pFieldInfo, TAOS_FIELD* pField);
SFieldSupInfo* tscFieldInfoInsert(SFieldInfo* pFieldInfo, int32_t index, TAOS_FIELD* field);

SFieldSupInfo* tscFieldInfoGetSupp(SFieldInfo* pFieldInfo, int32_t index);
TAOS_FIELD* tscFieldInfoGetField(SFieldInfo* pFieldInfo, int32_t index);
H
hzcheng 已提交
154

H
hjxilinx 已提交
155 156
void tscFieldInfoUpdateOffset(SQueryInfo* pQueryInfo);
void tscFieldInfoCopy(SFieldInfo* dst, const SFieldInfo* src);
157
void tscFieldInfoUpdateOffsetForInterResult(SQueryInfo* pQueryInfo);
H
hzcheng 已提交
158

H
hjxilinx 已提交
159 160
int16_t tscFieldInfoGetOffset(SQueryInfo* pQueryInfo, int32_t index);
void    tscFieldInfoClear(SFieldInfo* pFieldInfo);
161
int32_t tscNumOfFields(SQueryInfo* pQueryInfo);
H
hjxilinx 已提交
162
int32_t tscFieldInfoCompare(const SFieldInfo* pFieldInfo1, const SFieldInfo* pFieldInfo2);
H
hzcheng 已提交
163

S
slguan 已提交
164
void addExprParams(SSqlExpr* pExpr, char* argument, int32_t type, int32_t bytes, int16_t tableIndex);
H
hzcheng 已提交
165

H
hjxilinx 已提交
166
int32_t   tscGetResRowLength(SArray* pExprList);
H
hjxilinx 已提交
167 168

SSqlExpr* tscSqlExprInsert(SQueryInfo* pQueryInfo, int32_t index, int16_t functionId, SColumnIndex* pColIndex, int16_t type,
169
    int16_t size, int16_t interSize, bool isTagCol);
H
hjxilinx 已提交
170 171

SSqlExpr* tscSqlExprAppend(SQueryInfo* pQueryInfo, int16_t functionId, SColumnIndex* pColIndex, int16_t type,
172
                           int16_t size, int16_t interSize, bool isTagCol);
H
hjxilinx 已提交
173

174
SSqlExpr* tscSqlExprUpdate(SQueryInfo* pQueryInfo, int32_t index, int16_t functionId, int16_t srcColumnIndex, int16_t type,
H
hzcheng 已提交
175
                           int16_t size);
H
hjxilinx 已提交
176
int32_t   tscSqlExprNumOfExprs(SQueryInfo* pQueryInfo);
H
hzcheng 已提交
177

178
SSqlExpr* tscSqlExprGet(SQueryInfo* pQueryInfo, int32_t index);
H
hjxilinx 已提交
179
void      tscSqlExprCopy(SArray* dst, const SArray* src, uint64_t uid, bool deepcopy);
H
hjxilinx 已提交
180
void      tscSqlExprInfoDestroy(SArray* pExprInfo);
S
slguan 已提交
181

182 183
SColumn* tscColumnClone(const SColumn* src);
SColumn* tscColumnListInsert(SArray* pColList, SColumnIndex* colIndex);
H
hjxilinx 已提交
184
void tscColumnListCopy(SArray* dst, const SArray* src, int16_t tableIndex);
185
void tscColumnListDestroy(SArray* pColList);
H
hzcheng 已提交
186

187
SColumnFilterInfo* tscFilterInfoClone(const SColumnFilterInfo* src, int32_t numOfFilters);
H
hzcheng 已提交
188 189 190 191 192

int32_t tscValidateName(SSQLToken* pToken);

void tscIncStreamExecutionCount(void* pStream);

H
hjxilinx 已提交
193
bool tscValidateColumnId(STableMetaInfo* pTableMetaInfo, int32_t colId);
H
hzcheng 已提交
194

S
slguan 已提交
195
// get starter position of metric query condition (query on tags) in SSqlCmd.payload
196
SCond* tsGetSTableQueryCond(STagCond* pCond, uint64_t uid);
197
void   tsSetSTableQueryCond(STagCond* pTagCond, uint64_t uid, SBufferWriter* bw);
S
slguan 已提交
198 199

void tscTagCondCopy(STagCond* dest, const STagCond* src);
H
hzcheng 已提交
200 201
void tscTagCondRelease(STagCond* pCond);

202
void tscGetSrcColumnInfo(SSrcColumnInfo* pColInfo, SQueryInfo* pQueryInfo);
H
hzcheng 已提交
203 204 205 206

void tscSetFreeHeatBeat(STscObj* pObj);
bool tscShouldFreeHeatBeat(SSqlObj* pHb);
void tscCleanSqlCmd(SSqlCmd* pCmd);
H
hjxilinx 已提交
207
bool tscShouldBeFreed(SSqlObj* pSql);
S
slguan 已提交
208

209
STableMetaInfo* tscGetTableMetaInfoFromCmd(SSqlCmd *pCmd, int32_t subClauseIndex, int32_t tableIndex);
H
hjxilinx 已提交
210
STableMetaInfo* tscGetMetaInfo(SQueryInfo *pQueryInfo, int32_t tableIndex);
211 212

SQueryInfo *tscGetQueryInfoDetail(SSqlCmd* pCmd, int32_t subClauseIndex);
213
int32_t tscGetQueryInfoDetailSafely(SSqlCmd *pCmd, int32_t subClauseIndex, SQueryInfo** pQueryInfo);
214

215
void tscClearTableMetaInfo(STableMetaInfo* pTableMetaInfo, bool removeFromCache);
S
slguan 已提交
216

217
STableMetaInfo* tscAddTableMetaInfo(SQueryInfo* pQueryInfo, const char* name, STableMeta* pTableMeta,
218
    SVgroupsInfo* vgroupList, SArray* pTagCols);
219

H
hjxilinx 已提交
220
STableMetaInfo* tscAddEmptyMetaInfo(SQueryInfo *pQueryInfo);
221
int32_t tscAddSubqueryInfo(SSqlCmd *pCmd);
H
hjxilinx 已提交
222

223
void tscFreeQueryInfo(SSqlCmd* pCmd);
H
hjxilinx 已提交
224 225
void tscInitQueryInfo(SQueryInfo* pQueryInfo);

226
void tscClearSubqueryInfo(SSqlCmd* pCmd);
S
slguan 已提交
227

H
hjxilinx 已提交
228
int  tscGetSTableVgroupInfo(SSqlObj* pSql, int32_t clauseIndex);
H
hjxilinx 已提交
229
int  tscGetTableMeta(SSqlObj* pSql, STableMetaInfo* pTableMetaInfo);
H
hjxilinx 已提交
230
int  tscGetMeterMetaEx(SSqlObj* pSql, STableMetaInfo* pTableMetaInfo, bool createIfNotExists);
S
slguan 已提交
231 232 233

void tscResetForNextRetrieve(SSqlRes* pRes);

234
void tscAddTimestampColumn(SQueryInfo* pQueryInfo, int16_t functionId, int16_t tableIndex);
H
hzcheng 已提交
235 236
void tscDoQuery(SSqlObj* pSql);

S
slguan 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
/**
 * The create object function must be successful expect for the out of memory issue.
 *
 * Therefore, the metermeta/metricmeta object is directly passed to the newly created subquery object from the
 * previous sql object, instead of retrieving the metermeta/metricmeta from cache.
 *
 * Because the metermeta/metricmeta may have been released by other threads, resulting in the retrieving failed as
 * well as the create function.
 *
 * @param pSql
 * @param vnodeIndex
 * @param tableIndex
 * @param fp
 * @param param
 * @param pPrevSql
 * @return
 */
254
SSqlObj* createSubqueryObj(SSqlObj* pSql, int16_t tableIndex, void (*fp)(), void* param, int32_t cmd, SSqlObj* pPrevSql);
255
void     addGroupInfoForSubquery(SSqlObj* pParentObj, SSqlObj* pSql, int32_t subClauseIndex, int32_t tableIndex);
S
slguan 已提交
256

257
void doAddGroupColumnForSubquery(SQueryInfo* pQueryInfo, int32_t tagIndex);
S
slguan 已提交
258

H
hjxilinx 已提交
259
int16_t tscGetJoinTagColIndexByUid(STagCond* pTagCond, uint64_t uid);
S
slguan 已提交
260

H
hjxilinx 已提交
261
void tscPrintSelectClause(SSqlObj* pSql, int32_t subClauseIndex);
H
hjxilinx 已提交
262

263 264 265
bool hasMoreVnodesToTry(SSqlObj *pSql);
void tscTryQueryNextVnode(SSqlObj *pSql, __async_cb_func_t fp);
void tscAsyncQuerySingleRowForNextVnode(void *param, TAOS_RES *tres, int numOfRows);
266
void tscTryQueryNextClause(SSqlObj* pSql, void (*queryFp)());
267

H
hzcheng 已提交
268 269 270 271 272
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_TSCUTIL_H