You need to sign in or sign up before continuing.
executil.c 70.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

16 17
#include "function.h"
#include "functionMgt.h"
dengyihao's avatar
dengyihao 已提交
18 19
#include "index.h"
#include "os.h"
dengyihao's avatar
dengyihao 已提交
20
#include "query.h"
21
#include "tdatablock.h"
22
#include "thash.h"
23
#include "tmsg.h"
24
#include "ttime.h"
25

26
#include "executil.h"
27
#include "executorInt.h"
28
#include "querytask.h"
29
#include "storageapi.h"
dengyihao's avatar
dengyihao 已提交
30
#include "tcompression.h"
H
Haojun Liao 已提交
31 32 33 34 35 36 37

typedef struct tagFilterAssist {
  SHashObj* colHash;
  int32_t   index;
  SArray*   cInfoList;
} tagFilterAssist;

dengyihao's avatar
dengyihao 已提交
38 39 40 41 42 43 44
typedef enum {
  FILTER_NO_LOGIC = 1,
  FILTER_AND,
  FILTER_OTHER,
} FilterCondType;

static FilterCondType checkTagCond(SNode* cond);
dengyihao's avatar
dengyihao 已提交
45 46
static int32_t optimizeTbnameInCond(void* metaHandle, int64_t suid, SArray* list, SNode* pTagCond, SStorageAPI* pAPI);
static int32_t optimizeTbnameInCondImpl(void* metaHandle, SArray* list, SNode* pTagCond, SStorageAPI* pStoreAPI);
X
Xiaoyu Wang 已提交
47

dengyihao's avatar
dengyihao 已提交
48 49 50 51
static int32_t      getTableList(void* pVnode, SScanPhysiNode* pScanNode, SNode* pTagCond, SNode* pTagIndexCond,
                                 STableListInfo* pListInfo, uint8_t* digest, const char* idstr, SStorageAPI* pStorageAPI);
static SSDataBlock* createTagValBlockForFilter(SArray* pColList, int32_t numOfTables, SArray* pUidTagList, void* pVnode,
                                               SStorageAPI* pStorageAPI);
dengyihao's avatar
dengyihao 已提交
52

H
Haojun Liao 已提交
53 54
static int64_t getLimit(const SNode* pLimit) { return NULL == pLimit ? -1 : ((SLimitNode*)pLimit)->limit; }
static int64_t getOffset(const SNode* pLimit) { return NULL == pLimit ? -1 : ((SLimitNode*)pLimit)->offset; }
dengyihao's avatar
dengyihao 已提交
55

dengyihao's avatar
dengyihao 已提交
56 57
void initResultRowInfo(SResultRowInfo* pResultRowInfo) {
  pResultRowInfo->size = 0;
58
  pResultRowInfo->cur.pageId = -1;
59 60
}

dengyihao's avatar
dengyihao 已提交
61
void closeResultRow(SResultRow* pResultRow) { pResultRow->closed = true; }
62

63 64 65 66 67 68 69 70 71 72 73
void resetResultRow(SResultRow* pResultRow, size_t entrySize) {
  pResultRow->numOfRows = 0;
  pResultRow->closed = false;
  pResultRow->endInterp = false;
  pResultRow->startInterp = false;

  if (entrySize > 0) {
    memset(pResultRow->pEntryInfo, 0, entrySize);
  }
}

H
Haojun Liao 已提交
74
// TODO refactor: use macro
75
SResultRowEntryInfo* getResultEntryInfo(const SResultRow* pRow, int32_t index, const int32_t* offset) {
dengyihao's avatar
dengyihao 已提交
76
  return (SResultRowEntryInfo*)((char*)pRow->pEntryInfo + offset[index]);
H
Haojun Liao 已提交
77 78
}

79 80 81
size_t getResultRowSize(SqlFunctionCtx* pCtx, int32_t numOfOutput) {
  int32_t rowSize = (numOfOutput * sizeof(SResultRowEntryInfo)) + sizeof(SResultRow);

dengyihao's avatar
dengyihao 已提交
82
  for (int32_t i = 0; i < numOfOutput; ++i) {
83 84 85
    rowSize += pCtx[i].resDataInfo.interBufSize;
  }

86 87
  rowSize += (numOfOutput * sizeof(bool));
  // expand rowSize to mark if col is null for top/bottom result(saveTupleData)
88
  return rowSize;
89 90
}

X
Xiaoyu Wang 已提交
91
static void freeEx(void* p) { taosMemoryFree(*(void**)p); }
H
Haojun Liao 已提交
92 93

void cleanupGroupResInfo(SGroupResInfo* pGroupResInfo) {
H
Haojun Liao 已提交
94
  taosMemoryFreeClear(pGroupResInfo->pBuf);
H
Haojun Liao 已提交
95
  if (pGroupResInfo->freeItem) {
X
Xiaoyu Wang 已提交
96
    //    taosArrayDestroy(pGroupResInfo->pRows);
97 98
    taosArrayDestroyEx(pGroupResInfo->pRows, freeEx);
    pGroupResInfo->freeItem = false;
H
Haojun Liao 已提交
99 100 101
    pGroupResInfo->pRows = NULL;
  } else {
    pGroupResInfo->pRows = taosArrayDestroy(pGroupResInfo->pRows);
H
Haojun Liao 已提交
102
  }
dengyihao's avatar
dengyihao 已提交
103
  pGroupResInfo->index = 0;
H
Haojun Liao 已提交
104 105
}

5
54liuyao 已提交
106
int32_t resultrowComparAsc(const void* p1, const void* p2) {
dengyihao's avatar
dengyihao 已提交
107 108
  SResKeyPos* pp1 = *(SResKeyPos**)p1;
  SResKeyPos* pp2 = *(SResKeyPos**)p2;
109 110

  if (pp1->groupId == pp2->groupId) {
dengyihao's avatar
dengyihao 已提交
111 112
    int64_t pts1 = *(int64_t*)pp1->key;
    int64_t pts2 = *(int64_t*)pp2->key;
113 114 115 116

    if (pts1 == pts2) {
      return 0;
    } else {
dengyihao's avatar
dengyihao 已提交
117
      return pts1 < pts2 ? -1 : 1;
118 119
    }
  } else {
dengyihao's avatar
dengyihao 已提交
120
    return pp1->groupId < pp2->groupId ? -1 : 1;
121 122 123
  }
}

dengyihao's avatar
dengyihao 已提交
124
static int32_t resultrowComparDesc(const void* p1, const void* p2) { return resultrowComparAsc(p2, p1); }
125

126
void initGroupedResultInfo(SGroupResInfo* pGroupResInfo, SSHashObj* pHashmap, int32_t order) {
H
Haojun Liao 已提交
127 128 129 130
  if (pGroupResInfo->pRows != NULL) {
    taosArrayDestroy(pGroupResInfo->pRows);
  }

131
  // extract the result rows information from the hash map
H
Haojun Liao 已提交
132 133
  int32_t size = tSimpleHashGetSize(pHashmap);

134
  void* pData = NULL;
H
Haojun Liao 已提交
135
  pGroupResInfo->pRows = taosArrayInit(size, POINTER_BYTES);
136

137 138
  size_t  keyLen = 0;
  int32_t iter = 0;
D
dapan1121 已提交
139
  int64_t bufLen = 0, offset = 0;
H
Haojun Liao 已提交
140

H
Haojun Liao 已提交
141
  // todo move away and record this during create window
142
  while ((pData = tSimpleHashIterate(pHashmap, pData, &iter)) != NULL) {
X
Xiaoyu Wang 已提交
143
    /*void* key = */ tSimpleHashGetKey(pData, &keyLen);
H
Haojun Liao 已提交
144 145
    bufLen += keyLen + sizeof(SResultRowPosition);
  }
146

H
Haojun Liao 已提交
147
  pGroupResInfo->pBuf = taosMemoryMalloc(bufLen);
H
Haojun Liao 已提交
148

H
Haojun Liao 已提交
149
  iter = 0;
150 151
  while ((pData = tSimpleHashIterate(pHashmap, pData, &iter)) != NULL) {
    void* key = tSimpleHashGetKey(pData, &keyLen);
152

X
Xiaoyu Wang 已提交
153
    SResKeyPos* p = (SResKeyPos*)(pGroupResInfo->pBuf + offset);
154

dengyihao's avatar
dengyihao 已提交
155 156
    p->groupId = *(uint64_t*)key;
    p->pos = *(SResultRowPosition*)pData;
157
    memcpy(p->key, (char*)key + sizeof(uint64_t), keyLen - sizeof(uint64_t));
158
    taosArrayPush(pGroupResInfo->pRows, &p);
H
Haojun Liao 已提交
159 160

    offset += keyLen + sizeof(struct SResultRowPosition);
161 162
  }

163
  if (order == TSDB_ORDER_ASC || order == TSDB_ORDER_DESC) {
dengyihao's avatar
dengyihao 已提交
164
    __compar_fn_t fn = (order == TSDB_ORDER_ASC) ? resultrowComparAsc : resultrowComparDesc;
165
    size = POINTER_BYTES;
H
Haojun Liao 已提交
166
    taosSort(pGroupResInfo->pRows->pData, taosArrayGetSize(pGroupResInfo->pRows), size, fn);
167 168
  }

H
Haojun Liao 已提交
169
  pGroupResInfo->index = 0;
H
Haojun Liao 已提交
170 171
}

H
Haojun Liao 已提交
172 173
void initMultiResInfoFromArrayList(SGroupResInfo* pGroupResInfo, SArray* pArrayList) {
  if (pGroupResInfo->pRows != NULL) {
174
    taosArrayDestroy(pGroupResInfo->pRows);
H
Haojun Liao 已提交
175 176
  }

H
Haojun Liao 已提交
177
  pGroupResInfo->freeItem = true;
178
  pGroupResInfo->pRows = pArrayList;
H
Haojun Liao 已提交
179
  pGroupResInfo->index = 0;
180
  ASSERT(pGroupResInfo->index <= getNumOfTotalRes(pGroupResInfo));
H
Haojun Liao 已提交
181 182
}

183
bool hasRemainResults(SGroupResInfo* pGroupResInfo) {
H
Haojun Liao 已提交
184 185 186 187 188 189 190 191 192 193 194 195
  if (pGroupResInfo->pRows == NULL) {
    return false;
  }

  return pGroupResInfo->index < taosArrayGetSize(pGroupResInfo->pRows);
}

int32_t getNumOfTotalRes(SGroupResInfo* pGroupResInfo) {
  if (pGroupResInfo->pRows == 0) {
    return 0;
  }

dengyihao's avatar
dengyihao 已提交
196
  return (int32_t)taosArrayGetSize(pGroupResInfo->pRows);
H
Haojun Liao 已提交
197 198
}

199
SArray* createSortInfo(SNodeList* pNodeList) {
200
  size_t numOfCols = 0;
201

202 203 204 205 206
  if (pNodeList != NULL) {
    numOfCols = LIST_LENGTH(pNodeList);
  } else {
    numOfCols = 0;
  }
207

208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
  SArray* pList = taosArrayInit(numOfCols, sizeof(SBlockOrderInfo));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return pList;
  }

  for (int32_t i = 0; i < numOfCols; ++i) {
    SOrderByExprNode* pSortKey = (SOrderByExprNode*)nodesListGetNode(pNodeList, i);
    SBlockOrderInfo   bi = {0};
    bi.order = (pSortKey->order == ORDER_ASC) ? TSDB_ORDER_ASC : TSDB_ORDER_DESC;
    bi.nullFirst = (pSortKey->nullOrder == NULL_ORDER_FIRST);

    SColumnNode* pColNode = (SColumnNode*)pSortKey->pExpr;
    bi.slotId = pColNode->slotId;
    taosArrayPush(pList, &bi);
  }

  return pList;
}

H
Haojun Liao 已提交
228
SSDataBlock* createDataBlockFromDescNode(SDataBlockDescNode* pNode) {
229
  int32_t numOfCols = LIST_LENGTH(pNode->pSlots);
H
Haojun Liao 已提交
230

231
  SSDataBlock* pBlock = createDataBlock();
H
Haojun Liao 已提交
232

H
Haojun Liao 已提交
233
  pBlock->info.id.blockId = pNode->dataBlockId;
234
  pBlock->info.type = STREAM_INVALID;
5
54liuyao 已提交
235
  pBlock->info.calWin = (STimeWindow){.skey = INT64_MIN, .ekey = INT64_MAX};
236
  pBlock->info.watermark = INT64_MIN;
H
Haojun Liao 已提交
237

238
  for (int32_t i = 0; i < numOfCols; ++i) {
M
Minglei Jin 已提交
239
    SSlotDescNode*  pDescNode = (SSlotDescNode*)nodesListGetNode(pNode->pSlots, i);
dengyihao's avatar
dengyihao 已提交
240 241
    SColumnInfoData idata =
        createColumnInfoData(pDescNode->dataType.type, pDescNode->dataType.bytes, pDescNode->slotId);
242 243 244
    idata.info.scale = pDescNode->dataType.scale;
    idata.info.precision = pDescNode->dataType.precision;

245
    blockDataAppendColInfo(pBlock, &idata);
H
Haojun Liao 已提交
246 247
  }

248 249 250
  return pBlock;
}

wmmhello's avatar
wmmhello 已提交
251 252
EDealRes doTranslateTagExpr(SNode** pNode, void* pContext) {
  SMetaReader* mr = (SMetaReader*)pContext;
dengyihao's avatar
dengyihao 已提交
253
  if (nodeType(*pNode) == QUERY_NODE_COLUMN) {
wmmhello's avatar
wmmhello 已提交
254 255
    SColumnNode* pSColumnNode = *(SColumnNode**)pNode;

dengyihao's avatar
dengyihao 已提交
256
    SValueNode* res = (SValueNode*)nodesMakeNode(QUERY_NODE_VALUE);
wmmhello's avatar
wmmhello 已提交
257 258 259 260 261 262 263 264 265
    if (NULL == res) {
      return DEAL_RES_ERROR;
    }

    res->translate = true;
    res->node.resType = pSColumnNode->node.resType;

    STagVal tagVal = {0};
    tagVal.cid = pSColumnNode->colId;
H
Haojun Liao 已提交
266
    const char* p = mr->pAPI->extractTagVal(mr->me.ctbEntry.pTags, pSColumnNode->node.resType.type, &tagVal);
wmmhello's avatar
wmmhello 已提交
267 268
    if (p == NULL) {
      res->node.resType.type = TSDB_DATA_TYPE_NULL;
dengyihao's avatar
dengyihao 已提交
269 270
    } else if (pSColumnNode->node.resType.type == TSDB_DATA_TYPE_JSON) {
      int32_t len = ((const STag*)p)->len;
wmmhello's avatar
wmmhello 已提交
271 272 273 274 275 276 277 278 279 280 281
      res->datum.p = taosMemoryCalloc(len + 1, 1);
      memcpy(res->datum.p, p, len);
    } else if (IS_VAR_DATA_TYPE(pSColumnNode->node.resType.type)) {
      res->datum.p = taosMemoryCalloc(tagVal.nData + VARSTR_HEADER_SIZE + 1, 1);
      memcpy(varDataVal(res->datum.p), tagVal.pData, tagVal.nData);
      varDataSetLen(res->datum.p, tagVal.nData);
    } else {
      nodesSetValueNodeValue(res, &(tagVal.i64));
    }
    nodesDestroyNode(*pNode);
    *pNode = (SNode*)res;
dengyihao's avatar
dengyihao 已提交
282 283 284 285
  } else if (nodeType(*pNode) == QUERY_NODE_FUNCTION) {
    SFunctionNode* pFuncNode = *(SFunctionNode**)pNode;
    if (pFuncNode->funcType == FUNCTION_TYPE_TBNAME) {
      SValueNode* res = (SValueNode*)nodesMakeNode(QUERY_NODE_VALUE);
wmmhello's avatar
wmmhello 已提交
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
      if (NULL == res) {
        return DEAL_RES_ERROR;
      }

      res->translate = true;
      res->node.resType = pFuncNode->node.resType;

      int32_t len = strlen(mr->me.name);
      res->datum.p = taosMemoryCalloc(len + VARSTR_HEADER_SIZE + 1, 1);
      memcpy(varDataVal(res->datum.p), mr->me.name, len);
      varDataSetLen(res->datum.p, len);
      nodesDestroyNode(*pNode);
      *pNode = (SNode*)res;
    }
  }

  return DEAL_RES_CONTINUE;
}

dengyihao's avatar
dengyihao 已提交
305
int32_t isQualifiedTable(STableKeyInfo* info, SNode* pTagCond, void* metaHandle, bool* pQualified, SStorageAPI* pAPI) {
306
  int32_t     code = TSDB_CODE_SUCCESS;
dengyihao's avatar
dengyihao 已提交
307
  SMetaReader mr = {0};
308

H
Haojun Liao 已提交
309
  pAPI->metaReaderFn.initReader(&mr, metaHandle, 0, &pAPI->metaFn);
310
  code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, info->uid);
311
  if (TSDB_CODE_SUCCESS != code) {
312
    pAPI->metaReaderFn.clearReader(&mr);
M
Minglei Jin 已提交
313
    *pQualified = false;
314

M
Minglei Jin 已提交
315
    return TSDB_CODE_SUCCESS;
316
  }
wmmhello's avatar
wmmhello 已提交
317

dengyihao's avatar
dengyihao 已提交
318
  SNode* pTagCondTmp = nodesCloneNode(pTagCond);
wmmhello's avatar
wmmhello 已提交
319 320

  nodesRewriteExprPostOrder(&pTagCondTmp, doTranslateTagExpr, &mr);
321
  pAPI->metaReaderFn.clearReader(&mr);
wmmhello's avatar
wmmhello 已提交
322

323 324
  SNode* pNew = NULL;
  code = scalarCalculateConstants(pTagCondTmp, &pNew);
wmmhello's avatar
wmmhello 已提交
325
  if (TSDB_CODE_SUCCESS != code) {
wmmhello's avatar
wmmhello 已提交
326
    terrno = code;
wmmhello's avatar
wmmhello 已提交
327
    nodesDestroyNode(pTagCondTmp);
328 329 330
    *pQualified = false;

    return code;
wmmhello's avatar
wmmhello 已提交
331 332
  }

dengyihao's avatar
dengyihao 已提交
333
  SValueNode* pValue = (SValueNode*)pNew;
334 335
  *pQualified = pValue->datum.b;

wmmhello's avatar
wmmhello 已提交
336
  nodesDestroyNode(pNew);
337
  return TSDB_CODE_SUCCESS;
wmmhello's avatar
wmmhello 已提交
338 339
}

wmmhello's avatar
wmmhello 已提交
340 341 342 343
static EDealRes getColumn(SNode** pNode, void* pContext) {
  SColumnNode* pSColumnNode = NULL;
  if (QUERY_NODE_COLUMN == nodeType((*pNode))) {
    pSColumnNode = *(SColumnNode**)pNode;
H
Haojun Liao 已提交
344
  } else if (QUERY_NODE_FUNCTION == nodeType((*pNode))) {
wmmhello's avatar
wmmhello 已提交
345 346 347 348 349 350 351 352 353 354 355 356
    SFunctionNode* pFuncNode = *(SFunctionNode**)(pNode);
    if (pFuncNode->funcType == FUNCTION_TYPE_TBNAME) {
      pSColumnNode = (SColumnNode*)nodesMakeNode(QUERY_NODE_COLUMN);
      if (NULL == pSColumnNode) {
        return DEAL_RES_ERROR;
      }
      pSColumnNode->colId = -1;
      pSColumnNode->colType = COLUMN_TYPE_TBNAME;
      pSColumnNode->node.resType.type = TSDB_DATA_TYPE_VARCHAR;
      pSColumnNode->node.resType.bytes = TSDB_TABLE_FNAME_LEN - 1 + VARSTR_HEADER_SIZE;
      nodesDestroyNode(*pNode);
      *pNode = (SNode*)pSColumnNode;
H
Haojun Liao 已提交
357
    } else {
358
      return DEAL_RES_CONTINUE;
wmmhello's avatar
wmmhello 已提交
359
    }
H
Haojun Liao 已提交
360
  } else {
wmmhello's avatar
wmmhello 已提交
361
    return DEAL_RES_CONTINUE;
wmmhello's avatar
wmmhello 已提交
362
  }
wmmhello's avatar
wmmhello 已提交
363

H
Haojun Liao 已提交
364 365 366
  tagFilterAssist* pData = (tagFilterAssist*)pContext;
  void*            data = taosHashGet(pData->colHash, &pSColumnNode->colId, sizeof(pSColumnNode->colId));
  if (!data) {
wmmhello's avatar
wmmhello 已提交
367 368
    taosHashPut(pData->colHash, &pSColumnNode->colId, sizeof(pSColumnNode->colId), pNode, sizeof((*pNode)));
    pSColumnNode->slotId = pData->index++;
H
Haojun Liao 已提交
369 370 371
    SColumnInfo cInfo = {.colId = pSColumnNode->colId,
                         .type = pSColumnNode->node.resType.type,
                         .bytes = pSColumnNode->node.resType.bytes};
372 373 374
#if TAG_FILTER_DEBUG
    qDebug("tagfilter build column info, slotId:%d, colId:%d, type:%d", pSColumnNode->slotId, cInfo.colId, cInfo.type);
#endif
wmmhello's avatar
wmmhello 已提交
375
    taosArrayPush(pData->cInfoList, &cInfo);
H
Haojun Liao 已提交
376
  } else {
377 378
    SColumnNode* col = *(SColumnNode**)data;
    pSColumnNode->slotId = col->slotId;
wmmhello's avatar
wmmhello 已提交
379 380
  }

wmmhello's avatar
wmmhello 已提交
381 382 383 384 385 386 387 388 389 390
  return DEAL_RES_CONTINUE;
}

static int32_t createResultData(SDataType* pType, int32_t numOfRows, SScalarParam* pParam) {
  SColumnInfoData* pColumnData = taosMemoryCalloc(1, sizeof(SColumnInfoData));
  if (pColumnData == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return terrno;
  }

H
Haojun Liao 已提交
391 392 393
  pColumnData->info.type = pType->type;
  pColumnData->info.bytes = pType->bytes;
  pColumnData->info.scale = pType->scale;
wmmhello's avatar
wmmhello 已提交
394 395
  pColumnData->info.precision = pType->precision;

H
Haojun Liao 已提交
396
  int32_t code = colInfoDataEnsureCapacity(pColumnData, numOfRows, true);
wmmhello's avatar
wmmhello 已提交
397
  if (code != TSDB_CODE_SUCCESS) {
wmmhello's avatar
wmmhello 已提交
398
    terrno = code;
wmmhello's avatar
wmmhello 已提交
399 400 401 402 403 404 405 406 407
    taosMemoryFree(pColumnData);
    return terrno;
  }

  pParam->columnData = pColumnData;
  pParam->colAlloced = true;
  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
408 409 410 411 412 413 414 415
static void releaseColInfoData(void* pCol) {
  if (pCol) {
    SColumnInfoData* col = (SColumnInfoData*)pCol;
    colDataDestroy(col);
    taosMemoryFree(col);
  }
}

H
Haojun Liao 已提交
416
void freeItem(void* p) {
X
Xiaoyu Wang 已提交
417
  STUidTagInfo* pInfo = p;
H
Haojun Liao 已提交
418 419 420 421 422
  if (pInfo->pTagVal != NULL) {
    taosMemoryFree(pInfo->pTagVal);
  }
}

D
dapan1121 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
static void genTagFilterDigest(const SNode* pTagCond, T_MD5_CTX* pContext) {
  if (pTagCond == NULL) {
    return;
  }

  char*   payload = NULL;
  int32_t len = 0;
  nodesNodeToMsg(pTagCond, &payload, &len);

  tMD5Init(pContext);
  tMD5Update(pContext, (uint8_t*)payload, (uint32_t)len);
  tMD5Final(pContext);

  taosMemoryFree(payload);
}

D
dapan1121 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
static void genTbGroupDigest(const SNode* pGroup, uint8_t* filterDigest, T_MD5_CTX* pContext) {
  char*   payload = NULL;
  int32_t len = 0;
  nodesNodeToMsg(pGroup, &payload, &len);
  if (filterDigest[0]) {
    payload = taosMemoryRealloc(payload, len + tListLen(pContext->digest));
    memcpy(payload + len, filterDigest + 1, tListLen(pContext->digest));
    len += tListLen(pContext->digest);
  }

  tMD5Init(pContext);
  tMD5Update(pContext, (uint8_t*)payload, (uint32_t)len);
  tMD5Final(pContext);

  taosMemoryFree(payload);
}

456 457
int32_t getColInfoResultForGroupby(void* pVnode, SNodeList* group, STableListInfo* pTableListInfo, uint8_t* digest,
                                   SStorageAPI* pAPI) {
H
Haojun Liao 已提交
458 459 460 461 462
  int32_t      code = TSDB_CODE_SUCCESS;
  SArray*      pBlockList = NULL;
  SSDataBlock* pResBlock = NULL;
  void*        keyBuf = NULL;
  SArray*      groupData = NULL;
D
dapan1121 已提交
463
  SArray*      pUidTagList = NULL;
D
dapan1121 已提交
464
  SArray*      tableList = NULL;
H
Haojun Liao 已提交
465 466 467

  int32_t rows = taosArrayGetSize(pTableListInfo->pTableList);
  if (rows == 0) {
468
    return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
469 470 471 472 473 474 475 476
  }

  tagFilterAssist ctx = {0};
  ctx.colHash = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_SMALLINT), false, HASH_NO_LOCK);
  if (ctx.colHash == NULL) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
477

H
Haojun Liao 已提交
478 479 480 481 482 483 484 485 486 487 488 489 490
  ctx.index = 0;
  ctx.cInfoList = taosArrayInit(4, sizeof(SColumnInfo));
  if (ctx.cInfoList == NULL) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }

  SNode* pNode = NULL;
  FOREACH(pNode, group) {
    nodesRewriteExprPostOrder(&pNode, getColumn, (void*)&ctx);
    REPLACE_NODE(pNode);
  }

D
dapan1121 已提交
491
  T_MD5_CTX context = {0};
D
dapan1121 已提交
492 493 494
  if (tsTagFilterCache) {
    SNodeListNode* listNode = (SNodeListNode*)nodesMakeNode(QUERY_NODE_NODE_LIST);
    listNode->pNodeList = group;
Y
yihaoDeng 已提交
495
    genTbGroupDigest((SNode*)listNode, digest, &context);
D
dapan1121 已提交
496
    nodesFree(listNode);
497

dengyihao's avatar
dengyihao 已提交
498 499
    pAPI->metaFn.metaGetCachedTbGroup(pVnode, pTableListInfo->idInfo.suid, context.digest, tListLen(context.digest),
                                      &tableList);
D
dapan1121 已提交
500 501 502
    if (tableList) {
      taosArrayDestroy(pTableListInfo->pTableList);
      pTableListInfo->pTableList = tableList;
Y
yihaoDeng 已提交
503 504
      qDebug("retrieve tb group list from cache, numOfTables:%d",
             (int32_t)taosArrayGetSize(pTableListInfo->pTableList));
D
dapan1121 已提交
505 506
      goto end;
    }
D
dapan1121 已提交
507
  }
Y
yihaoDeng 已提交
508

D
dapan1121 已提交
509
  pUidTagList = taosArrayInit(8, sizeof(STUidTagInfo));
H
Haojun Liao 已提交
510 511
  for (int32_t i = 0; i < rows; ++i) {
    STableKeyInfo* pkeyInfo = taosArrayGet(pTableListInfo->pTableList, i);
X
Xiaoyu Wang 已提交
512
    STUidTagInfo   info = {.uid = pkeyInfo->uid};
513
    taosArrayPush(pUidTagList, &info);
H
Haojun Liao 已提交
514 515
  }

516
  code = pAPI->metaFn.getTableTags(pVnode, pTableListInfo->idInfo.suid, pUidTagList);
H
Haojun Liao 已提交
517 518 519 520
  if (code != TSDB_CODE_SUCCESS) {
    goto end;
  }

521
  int32_t numOfTables = taosArrayGetSize(pUidTagList);
522
  pResBlock = createTagValBlockForFilter(ctx.cInfoList, numOfTables, pUidTagList, pVnode, pAPI);
H
Haojun Liao 已提交
523 524
  if (pResBlock == NULL) {
    code = terrno;
H
Haojun Liao 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
    goto end;
  }

  //  int64_t st1 = taosGetTimestampUs();
  //  qDebug("generate tag block rows:%d, cost:%ld us", rows, st1-st);

  pBlockList = taosArrayInit(2, POINTER_BYTES);
  taosArrayPush(pBlockList, &pResBlock);

  groupData = taosArrayInit(2, POINTER_BYTES);
  FOREACH(pNode, group) {
    SScalarParam output = {0};

    switch (nodeType(pNode)) {
      case QUERY_NODE_VALUE:
        break;
      case QUERY_NODE_COLUMN:
      case QUERY_NODE_OPERATOR:
      case QUERY_NODE_FUNCTION: {
        SExprNode* expNode = (SExprNode*)pNode;
        code = createResultData(&expNode->resType, rows, &output);
        if (code != TSDB_CODE_SUCCESS) {
          goto end;
        }
        break;
      }
551

H
Haojun Liao 已提交
552 553 554 555
      default:
        code = TSDB_CODE_OPS_NOT_SUPPORT;
        goto end;
    }
556

H
Haojun Liao 已提交
557 558 559 560 561 562 563 564 565
    if (nodeType(pNode) == QUERY_NODE_COLUMN) {
      SColumnNode*     pSColumnNode = (SColumnNode*)pNode;
      SColumnInfoData* pColInfo = (SColumnInfoData*)taosArrayGet(pResBlock->pDataBlock, pSColumnNode->slotId);
      code = colDataAssign(output.columnData, pColInfo, rows, NULL);
    } else if (nodeType(pNode) == QUERY_NODE_VALUE) {
      continue;
    } else {
      code = scalarCalculate(pNode, pBlockList, &output);
    }
566

H
Haojun Liao 已提交
567 568 569 570
    if (code != TSDB_CODE_SUCCESS) {
      releaseColInfoData(output.columnData);
      goto end;
    }
571

H
Haojun Liao 已提交
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
    taosArrayPush(groupData, &output.columnData);
  }

  int32_t keyLen = 0;
  SNode*  node;
  FOREACH(node, group) {
    SExprNode* pExpr = (SExprNode*)node;
    keyLen += pExpr->resType.bytes;
  }

  int32_t nullFlagSize = sizeof(int8_t) * LIST_LENGTH(group);
  keyLen += nullFlagSize;

  keyBuf = taosMemoryCalloc(1, keyLen);
  if (keyBuf == NULL) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
590

H
Haojun Liao 已提交
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
  for (int i = 0; i < rows; i++) {
    STableKeyInfo* info = taosArrayGet(pTableListInfo->pTableList, i);

    char* isNull = (char*)keyBuf;
    char* pStart = (char*)keyBuf + sizeof(int8_t) * LIST_LENGTH(group);
    for (int j = 0; j < taosArrayGetSize(groupData); j++) {
      SColumnInfoData* pValue = (SColumnInfoData*)taosArrayGetP(groupData, j);

      if (colDataIsNull_s(pValue, i)) {
        isNull[j] = 1;
      } else {
        isNull[j] = 0;
        char* data = colDataGetData(pValue, i);
        if (pValue->info.type == TSDB_DATA_TYPE_JSON) {
          if (tTagIsJson(data)) {
            code = TSDB_CODE_QRY_JSON_IN_GROUP_ERROR;
            goto end;
          }
          if (tTagIsJsonNull(data)) {
            isNull[j] = 1;
            continue;
          }
          int32_t len = getJsonValueLen(data);
          memcpy(pStart, data, len);
          pStart += len;
        } else if (IS_VAR_DATA_TYPE(pValue->info.type)) {
D
dapan1121 已提交
617 618 619 620
          if (varDataTLen(data) > pValue->info.bytes) {
            code = TSDB_CODE_TDB_INVALID_TABLE_SCHEMA_VER;
            goto end;
          }
H
Haojun Liao 已提交
621 622 623 624 625 626 627 628 629 630 631 632 633
          memcpy(pStart, data, varDataTLen(data));
          pStart += varDataTLen(data);
        } else {
          memcpy(pStart, data, pValue->info.bytes);
          pStart += pValue->info.bytes;
        }
      }
    }

    int32_t len = (int32_t)(pStart - (char*)keyBuf);
    info->groupId = calcGroupId(keyBuf, len);
  }

D
dapan1121 已提交
634 635
  if (tsTagFilterCache) {
    tableList = taosArrayDup(pTableListInfo->pTableList, NULL);
dengyihao's avatar
dengyihao 已提交
636 637
    pAPI->metaFn.metaPutTbGroupToCache(pVnode, pTableListInfo->idInfo.suid, context.digest, tListLen(context.digest),
                                       tableList, taosArrayGetSize(tableList) * sizeof(STableKeyInfo));
D
dapan1121 已提交
638
  }
Y
yihaoDeng 已提交
639

H
Haojun Liao 已提交
640 641 642 643 644 645 646 647 648
  //  int64_t st2 = taosGetTimestampUs();
  //  qDebug("calculate tag block rows:%d, cost:%ld us", rows, st2-st1);

end:
  taosMemoryFreeClear(keyBuf);
  taosHashCleanup(ctx.colHash);
  taosArrayDestroy(ctx.cInfoList);
  blockDataDestroy(pResBlock);
  taosArrayDestroy(pBlockList);
H
Haojun Liao 已提交
649
  taosArrayDestroyEx(pUidTagList, freeItem);
H
Haojun Liao 已提交
650 651 652 653
  taosArrayDestroyP(groupData, releaseColInfoData);
  return code;
}

H
Haojun Liao 已提交
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
static int32_t nameComparFn(const void* p1, const void* p2) {
  const char* pName1 = *(const char**)p1;
  const char* pName2 = *(const char**)p2;

  int32_t ret = strcmp(pName1, pName2);
  if (ret == 0) {
    return 0;
  } else {
    return (ret > 0) ? 1 : -1;
  }
}

static SArray* getTableNameList(const SNodeListNode* pList) {
  int32_t    len = LIST_LENGTH(pList->pNodeList);
  SListCell* cell = pList->pNodeList->pHead;

  SArray* pTbList = taosArrayInit(len, POINTER_BYTES);
  for (int i = 0; i < pList->pNodeList->length; i++) {
    SValueNode* valueNode = (SValueNode*)cell->pNode;
    if (!IS_VAR_DATA_TYPE(valueNode->node.resType.type)) {
      terrno = TSDB_CODE_INVALID_PARA;
      taosArrayDestroy(pTbList);
      return NULL;
    }

    char* name = varDataVal(valueNode->datum.p);
    taosArrayPush(pTbList, &name);
    cell = cell->pNext;
  }

  size_t numOfTables = taosArrayGetSize(pTbList);

  // order the name
  taosArraySort(pTbList, nameComparFn);

  // remove the duplicates
  SArray* pNewList = taosArrayInit(taosArrayGetSize(pTbList), sizeof(void*));
  taosArrayPush(pNewList, taosArrayGet(pTbList, 0));

  for (int32_t i = 1; i < numOfTables; ++i) {
    char** name = taosArrayGetLast(pNewList);
    char** nameInOldList = taosArrayGet(pTbList, i);
    if (strcmp(*name, *nameInOldList) == 0) {
      continue;
    }

    taosArrayPush(pNewList, nameInOldList);
  }

  taosArrayDestroy(pTbList);
  return pNewList;
}

dengyihao's avatar
dengyihao 已提交
707
static int tableUidCompare(const void* a, const void* b) {
H
Haojun Liao 已提交
708 709 710
  uint64_t u1 = *(uint64_t*)a;
  uint64_t u2 = *(uint64_t*)b;

dengyihao's avatar
dengyihao 已提交
711 712 713
  if (u1 == u2) {
    return 0;
  }
H
Haojun Liao 已提交
714

dengyihao's avatar
dengyihao 已提交
715 716
  return u1 < u2 ? -1 : 1;
}
H
Haojun Liao 已提交
717

H
Haojun Liao 已提交
718
static int32_t filterTableInfoCompare(const void* a, const void* b) {
X
Xiaoyu Wang 已提交
719 720
  STUidTagInfo* p1 = (STUidTagInfo*)a;
  STUidTagInfo* p2 = (STUidTagInfo*)b;
H
Haojun Liao 已提交
721 722 723 724 725

  if (p1->uid == p2->uid) {
    return 0;
  }

X
Xiaoyu Wang 已提交
726 727 728
  return p1->uid < p2->uid ? -1 : 1;
}

dengyihao's avatar
dengyihao 已提交
729 730 731 732 733 734 735 736
static FilterCondType checkTagCond(SNode* cond) {
  if (nodeType(cond) == QUERY_NODE_OPERATOR) {
    return FILTER_NO_LOGIC;
  }
  if (nodeType(cond) != QUERY_NODE_LOGIC_CONDITION || ((SLogicConditionNode*)cond)->condType != LOGIC_COND_TYPE_AND) {
    return FILTER_AND;
  }
  return FILTER_OTHER;
H
Haojun Liao 已提交
737 738
}

739
static int32_t optimizeTbnameInCond(void* pVnode, int64_t suid, SArray* list, SNode* cond, SStorageAPI* pAPI) {
dengyihao's avatar
dengyihao 已提交
740
  int32_t ret = -1;
741 742 743
  int32_t ntype = nodeType(cond);

  if (ntype == QUERY_NODE_OPERATOR) {
744
    ret = optimizeTbnameInCondImpl(pVnode, list, cond, pAPI);
dengyihao's avatar
dengyihao 已提交
745 746
  }

747
  if (ntype != QUERY_NODE_LOGIC_CONDITION || ((SLogicConditionNode*)cond)->condType != LOGIC_COND_TYPE_AND) {
dengyihao's avatar
dengyihao 已提交
748
    return ret;
dengyihao's avatar
dengyihao 已提交
749 750
  }

dengyihao's avatar
dengyihao 已提交
751
  bool                 hasTbnameCond = false;
dengyihao's avatar
dengyihao 已提交
752
  SLogicConditionNode* pNode = (SLogicConditionNode*)cond;
dengyihao's avatar
dengyihao 已提交
753
  SNodeList*           pList = (SNodeList*)pNode->pParameterList;
dengyihao's avatar
dengyihao 已提交
754

dengyihao's avatar
dengyihao 已提交
755
  int32_t len = LIST_LENGTH(pList);
H
Haojun Liao 已提交
756 757 758
  if (len <= 0) {
    return ret;
  }
dengyihao's avatar
dengyihao 已提交
759

dengyihao's avatar
dengyihao 已提交
760
  SListCell* cell = pList->pHead;
dengyihao's avatar
dengyihao 已提交
761
  for (int i = 0; i < len; i++) {
dengyihao's avatar
dengyihao 已提交
762
    if (cell == NULL) break;
763
    if (optimizeTbnameInCondImpl(pVnode, list, cell->pNode, pAPI) == 0) {
dengyihao's avatar
dengyihao 已提交
764
      hasTbnameCond = true;
dengyihao's avatar
dengyihao 已提交
765
      break;
dengyihao's avatar
dengyihao 已提交
766 767 768
    }
    cell = cell->pNext;
  }
H
Haojun Liao 已提交
769

X
Xiaoyu Wang 已提交
770 771
  taosArraySort(list, filterTableInfoCompare);
  taosArrayRemoveDuplicate(list, filterTableInfoCompare, NULL);
dengyihao's avatar
dengyihao 已提交
772

dengyihao's avatar
dengyihao 已提交
773
  if (hasTbnameCond) {
774
    ret = pAPI->metaFn.getTableTagsByUid(pVnode, suid, list);
dengyihao's avatar
dengyihao 已提交
775
  }
H
Haojun Liao 已提交
776

dengyihao's avatar
dengyihao 已提交
777 778 779
  return ret;
}

780
// only return uid that does not contained in pExistedUidList
dengyihao's avatar
dengyihao 已提交
781 782
static int32_t optimizeTbnameInCondImpl(void* pVnode, SArray* pExistedUidList, SNode* pTagCond,
                                        SStorageAPI* pStoreAPI) {
dengyihao's avatar
dengyihao 已提交
783 784 785
  if (nodeType(pTagCond) != QUERY_NODE_OPERATOR) {
    return -1;
  }
786

dengyihao's avatar
dengyihao 已提交
787 788 789 790
  SOperatorNode* pNode = (SOperatorNode*)pTagCond;
  if (pNode->opType != OP_TYPE_IN) {
    return -1;
  }
791

dengyihao's avatar
dengyihao 已提交
792 793 794 795 796 797
  if ((pNode->pLeft != NULL && nodeType(pNode->pLeft) == QUERY_NODE_COLUMN &&
       ((SColumnNode*)pNode->pLeft)->colType == COLUMN_TYPE_TBNAME) &&
      (pNode->pRight != NULL && nodeType(pNode->pRight) == QUERY_NODE_NODE_LIST)) {
    SNodeListNode* pList = (SNodeListNode*)pNode->pRight;

    int32_t len = LIST_LENGTH(pList->pNodeList);
H
Haojun Liao 已提交
798 799
    if (len <= 0) {
      return -1;
dengyihao's avatar
dengyihao 已提交
800 801
    }

dengyihao's avatar
dengyihao 已提交
802 803 804
    SArray*   pTbList = getTableNameList(pList);
    int32_t   numOfTables = taosArrayGetSize(pTbList);
    SHashObj* uHash = NULL;
H
Haojun Liao 已提交
805

X
Xiaoyu Wang 已提交
806
    size_t numOfExisted = taosArrayGetSize(pExistedUidList);  // len > 0 means there already have uids
807 808 809
    if (numOfExisted > 0) {
      uHash = taosHashInit(numOfExisted / 0.7, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_NO_LOCK);
      for (int i = 0; i < numOfExisted; i++) {
810
        STUidTagInfo* pTInfo = taosArrayGet(pExistedUidList, i);
H
Haojun Liao 已提交
811
        taosHashPut(uHash, &pTInfo->uid, sizeof(uint64_t), &i, sizeof(i));
D
dapan1121 已提交
812 813
      }
    }
dengyihao's avatar
dengyihao 已提交
814

815 816
    for (int i = 0; i < numOfTables; i++) {
      char* name = taosArrayGetP(pTbList, i);
dengyihao's avatar
dengyihao 已提交
817 818

      uint64_t uid = 0;
819
      if (pStoreAPI->metaFn.getTableUidByName(pVnode, name, &uid) == 0) {
dengyihao's avatar
dengyihao 已提交
820
        ETableType tbType = TSDB_TABLE_MAX;
821
        if (pStoreAPI->metaFn.getTableTypeByName(pVnode, name, &tbType) == 0 && tbType == TSDB_CHILD_TABLE) {
D
dapan1121 已提交
822
          if (NULL == uHash || taosHashGet(uHash, &uid, sizeof(uid)) == NULL) {
823
            STUidTagInfo s = {.uid = uid, .name = name, .pTagVal = NULL};
H
Haojun Liao 已提交
824
            taosArrayPush(pExistedUidList, &s);
D
dapan1121 已提交
825
          }
dengyihao's avatar
dengyihao 已提交
826 827
        } else {
          taosArrayDestroy(pTbList);
D
dapan1121 已提交
828
          taosHashCleanup(uHash);
dengyihao's avatar
dengyihao 已提交
829 830
          return -1;
        }
dengyihao's avatar
dengyihao 已提交
831
      } else {
dengyihao's avatar
dengyihao 已提交
832
        //        qWarn("failed to get tableIds from by table name: %s, reason: %s", name, tstrerror(terrno));
dengyihao's avatar
dengyihao 已提交
833 834 835
        terrno = 0;
      }
    }
836

D
dapan1121 已提交
837
    taosHashCleanup(uHash);
dengyihao's avatar
dengyihao 已提交
838
    taosArrayDestroy(pTbList);
dengyihao's avatar
dengyihao 已提交
839
    return 0;
dengyihao's avatar
dengyihao 已提交
840
  }
H
Haojun Liao 已提交
841

dengyihao's avatar
dengyihao 已提交
842
  return -1;
dengyihao's avatar
dengyihao 已提交
843
}
H
Haojun Liao 已提交
844

dengyihao's avatar
dengyihao 已提交
845 846
static SSDataBlock* createTagValBlockForFilter(SArray* pColList, int32_t numOfTables, SArray* pUidTagList, void* pVnode,
                                               SStorageAPI* pStorageAPI) {
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
  SSDataBlock* pResBlock = createDataBlock();
  if (pResBlock == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  for (int32_t i = 0; i < taosArrayGetSize(pColList); ++i) {
    SColumnInfoData colInfo = {0};
    colInfo.info = *(SColumnInfo*)taosArrayGet(pColList, i);
    blockDataAppendColInfo(pResBlock, &colInfo);
  }

  int32_t code = blockDataEnsureCapacity(pResBlock, numOfTables);
  if (code != TSDB_CODE_SUCCESS) {
    terrno = code;
H
Haojun Liao 已提交
862
    taosMemoryFree(pResBlock);
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
    return NULL;
  }

  pResBlock->info.rows = numOfTables;

  int32_t numOfCols = taosArrayGetSize(pResBlock->pDataBlock);

  for (int32_t i = 0; i < numOfTables; i++) {
    STUidTagInfo* p1 = taosArrayGet(pUidTagList, i);

    for (int32_t j = 0; j < numOfCols; j++) {
      SColumnInfoData* pColInfo = (SColumnInfoData*)taosArrayGet(pResBlock->pDataBlock, j);

      if (pColInfo->info.colId == -1) {  // tbname
        char str[TSDB_TABLE_FNAME_LEN + VARSTR_HEADER_SIZE] = {0};
H
Haojun Liao 已提交
878 879
        if (p1->name != NULL) {
          STR_TO_VARSTR(str, p1->name);
X
Xiaoyu Wang 已提交
880
        } else {  // name is not retrieved during filter
881
          pStorageAPI->metaFn.getTableNameByUid(pVnode, p1->uid, str);
H
Haojun Liao 已提交
882 883
        }

884
        colDataSetVal(pColInfo, i, str, false);
885 886 887 888 889 890 891
#if TAG_FILTER_DEBUG
        qDebug("tagfilter uid:%ld, tbname:%s", *uid, str + 2);
#endif
      } else {
        STagVal tagVal = {0};
        tagVal.cid = pColInfo->info.colId;
        if (p1->pTagVal == NULL) {
892
          colDataSetNULL(pColInfo, i);
H
Haojun Liao 已提交
893
        } else {
894
          const char* p = pStorageAPI->metaFn.extractTagVal(p1->pTagVal, pColInfo->info.type, &tagVal);
H
Haojun Liao 已提交
895 896 897 898 899 900 901 902 903 904

          if (p == NULL || (pColInfo->info.type == TSDB_DATA_TYPE_JSON && ((STag*)p)->nTag == 0)) {
            colDataSetNULL(pColInfo, i);
          } else if (pColInfo->info.type == TSDB_DATA_TYPE_JSON) {
            colDataSetVal(pColInfo, i, p, false);
          } else if (IS_VAR_DATA_TYPE(pColInfo->info.type)) {
            char* tmp = taosMemoryMalloc(tagVal.nData + VARSTR_HEADER_SIZE + 1);
            varDataSetLen(tmp, tagVal.nData);
            memcpy(tmp + VARSTR_HEADER_SIZE, tagVal.pData, tagVal.nData);
            colDataSetVal(pColInfo, i, tmp, false);
905
#if TAG_FILTER_DEBUG
H
Haojun Liao 已提交
906
            qDebug("tagfilter varch:%s", tmp + 2);
907
#endif
H
Haojun Liao 已提交
908 909 910
            taosMemoryFree(tmp);
          } else {
            colDataSetVal(pColInfo, i, (const char*)&tagVal.i64, false);
911
#if TAG_FILTER_DEBUG
H
Haojun Liao 已提交
912 913 914 915 916
            if (pColInfo->info.type == TSDB_DATA_TYPE_INT) {
              qDebug("tagfilter int:%d", *(int*)(&tagVal.i64));
            } else if (pColInfo->info.type == TSDB_DATA_TYPE_DOUBLE) {
              qDebug("tagfilter double:%f", *(double*)(&tagVal.i64));
            }
917
#endif
H
Haojun Liao 已提交
918
          }
919 920 921 922 923 924 925 926 927 928 929 930
        }
      }
    }
  }

  return pResBlock;
}

static void doSetQualifiedUid(SArray* pUidList, const SArray* pUidTagList, bool* pResultList) {
  taosArrayClear(pUidList);

  int32_t numOfTables = taosArrayGetSize(pUidTagList);
X
Xiaoyu Wang 已提交
931
  for (int32_t i = 0; i < numOfTables; ++i) {
932 933 934 935 936 937 938 939 940 941 942
    uint64_t uid = ((STUidTagInfo*)taosArrayGet(pUidTagList, i))->uid;
    qDebug("tagfilter get uid:%" PRId64 ", res:%d", uid, pResultList[i]);

    if (pResultList[i]) {
      taosArrayPush(pUidList, &uid);
    }
  }
}

static void copyExistedUids(SArray* pUidTagList, const SArray* pUidList) {
  int32_t numOfExisted = taosArrayGetSize(pUidList);
943 944 945 946
  if (numOfExisted == 0) {
    return;
  }

X
Xiaoyu Wang 已提交
947 948
  for (int32_t i = 0; i < numOfExisted; ++i) {
    uint64_t*    uid = taosArrayGet(pUidList, i);
949 950
    STUidTagInfo info = {.uid = *uid};
    taosArrayPush(pUidTagList, &info);
951 952 953
  }
}

954 955
static int32_t doFilterByTagCond(STableListInfo* pListInfo, SArray* pUidList, SNode* pTagCond, void* pVnode,
                                 SIdxFltStatus status, SStorageAPI* pAPI) {
956 957 958 959
  if (pTagCond == NULL) {
    return TSDB_CODE_SUCCESS;
  }

960
  terrno = TSDB_CODE_SUCCESS;
961 962 963 964 965

  int32_t      code = TSDB_CODE_SUCCESS;
  SArray*      pBlockList = NULL;
  SSDataBlock* pResBlock = NULL;
  SScalarParam output = {0};
966
  SArray*      pUidTagList = NULL;
967 968 969 970 971 972

  tagFilterAssist ctx = {0};
  ctx.colHash = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_SMALLINT), false, HASH_NO_LOCK);
  if (ctx.colHash == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
973 974
  }

975 976 977 978 979
  ctx.cInfoList = taosArrayInit(4, sizeof(SColumnInfo));
  if (ctx.cInfoList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto end;
  }
980

981
  nodesRewriteExprPostOrder(&pTagCond, getColumn, (void*)&ctx);
982

983
  SDataType type = {.type = TSDB_DATA_TYPE_BOOL, .bytes = sizeof(bool)};
984

985
  //  int64_t stt = taosGetTimestampUs();
986
  pUidTagList = taosArrayInit(10, sizeof(STUidTagInfo));
987 988
  copyExistedUids(pUidTagList, pUidList);

X
Xiaoyu Wang 已提交
989 990
  FilterCondType condType = checkTagCond(pTagCond);

991
  int32_t filter = optimizeTbnameInCond(pVnode, pListInfo->idInfo.suid, pUidTagList, pTagCond, pAPI);
992
  if (filter == 0) {  // tbname in filter is activated, do nothing and return
993 994
    taosArrayClear(pUidList);

995 996
    int32_t numOfRows = taosArrayGetSize(pUidTagList);
    taosArrayEnsureCap(pUidList, numOfRows);
X
Xiaoyu Wang 已提交
997
    for (int32_t i = 0; i < numOfRows; ++i) {
998 999
      STUidTagInfo* pInfo = taosArrayGet(pUidTagList, i);
      taosArrayPush(pUidList, &pInfo->uid);
1000
    }
1001 1002
    terrno = 0;
  } else {
X
Xiaoyu Wang 已提交
1003
    if ((condType == FILTER_NO_LOGIC || condType == FILTER_AND) && status != SFLT_NOT_INDEX) {
1004
      code = pAPI->metaFn.getTableTagsByUid(pVnode, pListInfo->idInfo.suid, pUidTagList);
X
Xiaoyu Wang 已提交
1005
    } else {
1006
      code = pAPI->metaFn.getTableTags(pVnode, pListInfo->idInfo.suid, pUidTagList);
X
Xiaoyu Wang 已提交
1007
    }
1008
    if (code != TSDB_CODE_SUCCESS) {
1009
      qError("failed to get table tags from meta, reason:%s, suid:%" PRIu64, tstrerror(code), pListInfo->idInfo.suid);
1010 1011
      terrno = code;
      goto end;
1012 1013 1014
    }
  }

1015 1016 1017
  int32_t numOfTables = taosArrayGetSize(pUidTagList);
  if (numOfTables == 0) {
    goto end;
1018 1019
  }

1020
  pResBlock = createTagValBlockForFilter(ctx.cInfoList, numOfTables, pUidTagList, pVnode, pAPI);
H
Haojun Liao 已提交
1021 1022
  if (pResBlock == NULL) {
    code = terrno;
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
    goto end;
  }

  //  int64_t st1 = taosGetTimestampUs();
  //  qDebug("generate tag block rows:%d, cost:%ld us", rows, st1-st);
  pBlockList = taosArrayInit(2, POINTER_BYTES);
  taosArrayPush(pBlockList, &pResBlock);

  code = createResultData(&type, numOfTables, &output);
  if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
1033
    terrno = code;
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
    goto end;
  }

  code = scalarCalculate(pTagCond, pBlockList, &output);
  if (code != TSDB_CODE_SUCCESS) {
    qError("failed to calculate scalar, reason:%s", tstrerror(code));
    terrno = code;
    goto end;
  }

X
Xiaoyu Wang 已提交
1044
  doSetQualifiedUid(pUidList, pUidTagList, (bool*)output.columnData->pData);
1045

X
Xiaoyu Wang 已提交
1046
end:
1047 1048 1049 1050
  taosHashCleanup(ctx.colHash);
  taosArrayDestroy(ctx.cInfoList);
  blockDataDestroy(pResBlock);
  taosArrayDestroy(pBlockList);
H
Haojun Liao 已提交
1051
  taosArrayDestroyEx(pUidTagList, freeItem);
1052 1053 1054

  colDataDestroy(output.columnData);
  taosMemoryFreeClear(output.columnData);
H
Haojun Liao 已提交
1055
  return code;
1056 1057
}

1058 1059
int32_t getTableList(void* pVnode, SScanPhysiNode* pScanNode, SNode* pTagCond, SNode* pTagIndexCond,
                     STableListInfo* pListInfo, uint8_t* digest, const char* idstr, SStorageAPI* pStorageAPI) {
1060
  int32_t code = TSDB_CODE_SUCCESS;
1061
  size_t  numOfTables = 0;
1062

1063 1064
  pListInfo->idInfo.suid = pScanNode->suid;
  pListInfo->idInfo.tableType = pScanNode->tableType;
1065

1066
  SArray* pUidList = taosArrayInit(8, sizeof(uint64_t));
dengyihao's avatar
dengyihao 已提交
1067

dengyihao's avatar
dengyihao 已提交
1068
  SIdxFltStatus status = SFLT_NOT_INDEX;
1069
  if (pScanNode->tableType != TSDB_SUPER_TABLE) {
1070
    pListInfo->idInfo.uid = pScanNode->uid;
1071
    if (pStorageAPI->metaFn.isTableExisted(pVnode, pScanNode->uid)) {
1072
      taosArrayPush(pUidList, &pScanNode->uid);
1073
    }
1074
    code = doFilterByTagCond(pListInfo, pUidList, pTagCond, pVnode, status, pStorageAPI);
1075
    if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
1076
      goto _end;
H
Haojun Liao 已提交
1077
    }
1078 1079
  } else {
    T_MD5_CTX context = {0};
H
Haojun Liao 已提交
1080

1081 1082 1083 1084 1085
    if (tsTagFilterCache) {
      // try to retrieve the result from meta cache
      genTagFilterDigest(pTagCond, &context);

      bool acquired = false;
dengyihao's avatar
dengyihao 已提交
1086 1087
      pStorageAPI->metaFn.getCachedTableList(pVnode, pScanNode->suid, context.digest, tListLen(context.digest),
                                             pUidList, &acquired);
1088
      if (acquired) {
D
dapan1121 已提交
1089 1090
        digest[0] = 1;
        memcpy(digest + 1, context.digest, tListLen(context.digest));
1091
        qDebug("retrieve table uid list from cache, numOfTables:%d", (int32_t)taosArrayGetSize(pUidList));
1092 1093
        goto _end;
      }
wmmhello's avatar
wmmhello 已提交
1094 1095
    }

1096
    if (!pTagCond) {  // no tag filter condition exists, let's fetch all tables of this super table
1097
      pStorageAPI->metaFn.getChildTableList(pVnode, pScanNode->suid, pUidList);
1098
    } else {
H
Haojun Liao 已提交
1099 1100
      // failed to find the result in the cache, let try to calculate the results
      if (pTagIndexCond) {
1101
        void* pIndex = pStorageAPI->metaFn.getInvertIndex(pVnode);
1102

dengyihao's avatar
dengyihao 已提交
1103 1104 1105 1106
        SIndexMetaArg metaArg = {.metaEx = pVnode,
                                 .idx = pStorageAPI->metaFn.storeGetIndexInfo(pVnode),
                                 .ivtIdx = pIndex,
                                 .suid = pScanNode->uid};
H
Haojun Liao 已提交
1107

1108
        status = SFLT_NOT_INDEX;
H
Haojun Liao 已提交
1109
        code = doFilterTag(pTagIndexCond, &metaArg, pUidList, &status, &pStorageAPI->metaFilter);
H
Haojun Liao 已提交
1110
        if (code != 0 || status == SFLT_NOT_INDEX) {  // temporarily disable it for performance sake
dengyihao's avatar
dengyihao 已提交
1111
          qDebug("failed to get tableIds from index, suid:%" PRIu64, pScanNode->uid);
1112
          code = TSDB_CODE_SUCCESS;
dengyihao's avatar
dengyihao 已提交
1113
        } else {
X
Xiaoyu Wang 已提交
1114
          qInfo("succ to get filter result, table num: %d", (int)taosArrayGetSize(pUidList));
H
Haojun Liao 已提交
1115
        }
wmmhello's avatar
wmmhello 已提交
1116 1117
      }
    }
1118

1119
    code = doFilterByTagCond(pListInfo, pUidList, pTagCond, pVnode, status, pStorageAPI);
1120
    if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
1121
      goto _end;
wmmhello's avatar
wmmhello 已提交
1122 1123
    }

1124
    // let's add the filter results into meta-cache
1125
    numOfTables = taosArrayGetSize(pUidList);
1126

1127
    if (tsTagFilterCache) {
1128 1129
      size_t size = numOfTables * sizeof(uint64_t) + sizeof(int32_t);
      char*  pPayload = taosMemoryMalloc(size);
1130

1131
      *(int32_t*)pPayload = numOfTables;
1132
      if (numOfTables > 0) {
1133
        memcpy(pPayload + sizeof(int32_t), taosArrayGet(pUidList, 0), numOfTables * sizeof(uint64_t));
1134 1135
      }

H
Haojun Liao 已提交
1136
      pStorageAPI->metaFn.putCachedTableList(pVnode, pScanNode->suid, context.digest, tListLen(context.digest), pPayload, size, 1);
D
dapan1121 已提交
1137 1138
      digest[0] = 1;
      memcpy(digest + 1, context.digest, tListLen(context.digest));
1139
    }
wmmhello's avatar
wmmhello 已提交
1140 1141
  }

1142
_end:
1143
  numOfTables = taosArrayGetSize(pUidList);
H
Haojun Liao 已提交
1144
  for (int i = 0; i < numOfTables; i++) {
1145
    STableKeyInfo info = {.uid = *(uint64_t*)taosArrayGet(pUidList, i), .groupId = 0};
1146 1147

    void* p = taosArrayPush(pListInfo->pTableList, &info);
H
Haojun Liao 已提交
1148
    if (p == NULL) {
1149
      taosArrayDestroy(pUidList);
H
Haojun Liao 已提交
1150 1151 1152
      return TSDB_CODE_OUT_OF_MEMORY;
    }

X
Xiaoyu Wang 已提交
1153
    qTrace("tagfilter get uid:%" PRIu64 ", %s", info.uid, idstr);
1154 1155
  }

1156
  taosArrayDestroy(pUidList);
1157 1158
  return code;
}
H
Haojun Liao 已提交
1159

dengyihao's avatar
dengyihao 已提交
1160 1161
int32_t qGetTableList(int64_t suid, void* pVnode, void* node, SArray** tableList, void* pTaskInfo) {
  SSubplan*      pSubplan = (SSubplan*)node;
1162 1163 1164 1165
  SScanPhysiNode pNode = {0};
  pNode.suid = suid;
  pNode.uid = suid;
  pNode.tableType = TSDB_SUPER_TABLE;
1166
  STableListInfo* pTableListInfo = tableListCreate();
dengyihao's avatar
dengyihao 已提交
1167 1168 1169 1170
  uint8_t         digest[17] = {0};
  int             code =
      getTableList(pVnode, &pNode, pSubplan ? pSubplan->pTagCond : NULL, pSubplan ? pSubplan->pTagIndexCond : NULL,
                   pTableListInfo, digest, "qGetTableList", &((SExecTaskInfo*)pTaskInfo)->storageAPI);
1171 1172 1173 1174 1175 1176
  *tableList = pTableListInfo->pTableList;
  pTableListInfo->pTableList = NULL;
  tableListDestroy(pTableListInfo);
  return code;
}

1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
size_t getTableTagsBufLen(const SNodeList* pGroups) {
  size_t keyLen = 0;

  SNode* node;
  FOREACH(node, pGroups) {
    SExprNode* pExpr = (SExprNode*)node;
    keyLen += pExpr->resType.bytes;
  }

  keyLen += sizeof(int8_t) * LIST_LENGTH(pGroups);
  return keyLen;
}

1190
int32_t getGroupIdFromTagsVal(void* pVnode, uint64_t uid, SNodeList* pGroupNode, char* keyBuf, uint64_t* pGroupId,
dengyihao's avatar
dengyihao 已提交
1191
                              SStorageAPI* pAPI) {
M
Minglei Jin 已提交
1192
  SMetaReader mr = {0};
1193

H
Haojun Liao 已提交
1194
  pAPI->metaReaderFn.initReader(&mr, pVnode, 0, &pAPI->metaFn);
1195
  if (pAPI->metaReaderFn.getEntryGetUidCache(&mr, uid) != 0) {  // table not exist
1196
    pAPI->metaReaderFn.clearReader(&mr);
1197 1198
    return TSDB_CODE_PAR_TABLE_NOT_EXIST;
  }
1199 1200 1201 1202 1203

  SNodeList* groupNew = nodesCloneList(pGroupNode);

  nodesRewriteExprsPostOrder(groupNew, doTranslateTagExpr, &mr);
  char* isNull = (char*)keyBuf;
M
Minglei Jin 已提交
1204
  char* pStart = (char*)keyBuf + sizeof(int8_t) * LIST_LENGTH(pGroupNode);
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214

  SNode*  pNode;
  int32_t index = 0;
  FOREACH(pNode, groupNew) {
    SNode*  pNew = NULL;
    int32_t code = scalarCalculateConstants(pNode, &pNew);
    if (TSDB_CODE_SUCCESS == code) {
      REPLACE_NODE(pNew);
    } else {
      nodesDestroyList(groupNew);
1215
      pAPI->metaReaderFn.clearReader(&mr);
1216 1217 1218
      return code;
    }

1219
    ASSERT(nodeType(pNew) == QUERY_NODE_VALUE);
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
    SValueNode* pValue = (SValueNode*)pNew;

    if (pValue->node.resType.type == TSDB_DATA_TYPE_NULL || pValue->isNull) {
      isNull[index++] = 1;
      continue;
    } else {
      isNull[index++] = 0;
      char* data = nodesGetValueFromNode(pValue);
      if (pValue->node.resType.type == TSDB_DATA_TYPE_JSON) {
        if (tTagIsJson(data)) {
          terrno = TSDB_CODE_QRY_JSON_IN_GROUP_ERROR;
          nodesDestroyList(groupNew);
1232
          pAPI->metaReaderFn.clearReader(&mr);
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
          return terrno;
        }
        int32_t len = getJsonValueLen(data);
        memcpy(pStart, data, len);
        pStart += len;
      } else if (IS_VAR_DATA_TYPE(pValue->node.resType.type)) {
        memcpy(pStart, data, varDataTLen(data));
        pStart += varDataTLen(data);
      } else {
        memcpy(pStart, data, pValue->node.resType.bytes);
        pStart += pValue->node.resType.bytes;
      }
    }
  }

M
Minglei Jin 已提交
1248
  int32_t len = (int32_t)(pStart - (char*)keyBuf);
1249 1250 1251
  *pGroupId = calcGroupId(keyBuf, len);

  nodesDestroyList(groupNew);
1252
  pAPI->metaReaderFn.clearReader(&mr);
1253 1254 1255
  return TSDB_CODE_SUCCESS;
}

1256
SArray* extractPartitionColInfo(SNodeList* pNodeList) {
dengyihao's avatar
dengyihao 已提交
1257
  if (!pNodeList) {
1258 1259
    return NULL;
  }
H
Haojun Liao 已提交
1260

1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
  size_t  numOfCols = LIST_LENGTH(pNodeList);
  SArray* pList = taosArrayInit(numOfCols, sizeof(SColumn));
  if (pList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  for (int32_t i = 0; i < numOfCols; ++i) {
    SColumnNode* pColNode = (SColumnNode*)nodesListGetNode(pNodeList, i);

    // todo extract method
    SColumn c = {0};
    c.slotId = pColNode->slotId;
    c.colId = pColNode->colId;
    c.type = pColNode->node.resType.type;
    c.bytes = pColNode->node.resType.bytes;
    c.precision = pColNode->node.resType.precision;
    c.scale = pColNode->node.resType.scale;

    taosArrayPush(pList, &c);
  }
H
Haojun Liao 已提交
1282

1283
  return pList;
H
Haojun Liao 已提交
1284 1285
}

H
Haojun Liao 已提交
1286 1287
int32_t extractColMatchInfo(SNodeList* pNodeList, SDataBlockDescNode* pOutputNodeList, int32_t* numOfOutputCols,
                            int32_t type, SColMatchInfo* pMatchInfo) {
H
Haojun Liao 已提交
1288
  size_t  numOfCols = LIST_LENGTH(pNodeList);
H
Haojun Liao 已提交
1289 1290 1291 1292
  int32_t code = 0;

  pMatchInfo->matchType = type;

1293
  SArray* pList = taosArrayInit(numOfCols, sizeof(SColMatchItem));
1294
  if (pList == NULL) {
H
Haojun Liao 已提交
1295 1296
    code = TSDB_CODE_OUT_OF_MEMORY;
    return code;
1297 1298 1299 1300
  }

  for (int32_t i = 0; i < numOfCols; ++i) {
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pNodeList, i);
1301 1302 1303
    if (nodeType(pNode->pExpr) == QUERY_NODE_COLUMN) {
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;

H
Haojun Liao 已提交
1304
      SColMatchItem c = {.needOutput = true};
1305 1306
      c.colId = pColNode->colId;
      c.srcSlotId = pColNode->slotId;
H
Haojun Liao 已提交
1307
      c.dstSlotId = pNode->slotId;
1308 1309
      taosArrayPush(pList, &c);
    }
1310 1311
  }

H
Haojun Liao 已提交
1312
  // set the output flag for each column in SColMatchInfo, according to the
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
  *numOfOutputCols = 0;
  int32_t num = LIST_LENGTH(pOutputNodeList->pSlots);
  for (int32_t i = 0; i < num; ++i) {
    SSlotDescNode* pNode = (SSlotDescNode*)nodesListGetNode(pOutputNodeList->pSlots, i);

    // todo: add reserve flag check
    // it is a column reserved for the arithmetic expression calculation
    if (pNode->slotId >= numOfCols) {
      (*numOfOutputCols) += 1;
      continue;
    }

H
Haojun Liao 已提交
1325
    SColMatchItem* info = NULL;
1326 1327
    for (int32_t j = 0; j < taosArrayGetSize(pList); ++j) {
      info = taosArrayGet(pList, j);
H
Haojun Liao 已提交
1328
      if (info->dstSlotId == pNode->slotId) {
1329 1330 1331
        break;
      }
    }
1332

1333 1334
    if (pNode->output) {
      (*numOfOutputCols) += 1;
H
Haojun Liao 已提交
1335 1336
    } else if (info != NULL) {
      // select distinct tbname from stb where tbname='abc';
H
Haojun Liao 已提交
1337
      info->needOutput = false;
1338
    }
1339
  }
1340

H
Haojun Liao 已提交
1341
  pMatchInfo->pList = pList;
H
Haojun Liao 已提交
1342
  return code;
1343 1344
}

1345 1346 1347 1348 1349 1350 1351 1352
static SResSchema createResSchema(int32_t type, int32_t bytes, int32_t slotId, int32_t scale, int32_t precision,
                                  const char* name) {
  SResSchema s = {0};
  s.scale = scale;
  s.type = type;
  s.bytes = bytes;
  s.slotId = slotId;
  s.precision = precision;
H
Haojun Liao 已提交
1353
  tstrncpy(s.name, name, tListLen(s.name));
1354 1355 1356

  return s;
}
1357

H
Haojun Liao 已提交
1358
static SColumn* createColumn(int32_t blockId, int32_t slotId, int32_t colId, SDataType* pType, EColumnType colType) {
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
  SColumn* pCol = taosMemoryCalloc(1, sizeof(SColumn));
  if (pCol == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  pCol->slotId = slotId;
  pCol->colId = colId;
  pCol->bytes = pType->bytes;
  pCol->type = pType->type;
  pCol->scale = pType->scale;
  pCol->precision = pType->precision;
  pCol->dataBlockId = blockId;
H
Haojun Liao 已提交
1372
  pCol->colType = colType;
1373 1374 1375
  return pCol;
}

1376
void createExprFromOneNode(SExprInfo* pExp, SNode* pNode, int16_t slotId) {
1377 1378 1379 1380
  pExp->pExpr = taosMemoryCalloc(1, sizeof(tExprNode));
  pExp->pExpr->_function.num = 1;
  pExp->pExpr->_function.functionId = -1;

1381
  int32_t type = nodeType(pNode);
1382 1383 1384
  // it is a project query, or group by column
  if (type == QUERY_NODE_COLUMN) {
    pExp->pExpr->nodeType = QUERY_NODE_COLUMN;
1385
    SColumnNode* pColNode = (SColumnNode*)pNode;
1386 1387 1388 1389 1390

    pExp->base.pParam = taosMemoryCalloc(1, sizeof(SFunctParam));
    pExp->base.numOfParams = 1;

    SDataType* pType = &pColNode->node.resType;
1391 1392
    pExp->base.resSchema =
        createResSchema(pType->type, pType->bytes, slotId, pType->scale, pType->precision, pColNode->colName);
1393 1394 1395 1396 1397
    pExp->base.pParam[0].pCol =
        createColumn(pColNode->dataBlockId, pColNode->slotId, pColNode->colId, pType, pColNode->colType);
    pExp->base.pParam[0].type = FUNC_PARAM_TYPE_COLUMN;
  } else if (type == QUERY_NODE_VALUE) {
    pExp->pExpr->nodeType = QUERY_NODE_VALUE;
1398
    SValueNode* pValNode = (SValueNode*)pNode;
1399 1400 1401 1402 1403

    pExp->base.pParam = taosMemoryCalloc(1, sizeof(SFunctParam));
    pExp->base.numOfParams = 1;

    SDataType* pType = &pValNode->node.resType;
1404 1405
    pExp->base.resSchema =
        createResSchema(pType->type, pType->bytes, slotId, pType->scale, pType->precision, pValNode->node.aliasName);
1406 1407 1408 1409
    pExp->base.pParam[0].type = FUNC_PARAM_TYPE_VALUE;
    nodesValueNodeToVariant(pValNode, &pExp->base.pParam[0].param);
  } else if (type == QUERY_NODE_FUNCTION) {
    pExp->pExpr->nodeType = QUERY_NODE_FUNCTION;
1410
    SFunctionNode* pFuncNode = (SFunctionNode*)pNode;
1411 1412

    SDataType* pType = &pFuncNode->node.resType;
1413 1414
    pExp->base.resSchema =
        createResSchema(pType->type, pType->bytes, slotId, pType->scale, pType->precision, pFuncNode->node.aliasName);
1415

H
Haojun Liao 已提交
1416 1417 1418 1419
    tExprNode* pExprNode = pExp->pExpr;

    pExprNode->_function.functionId = pFuncNode->funcId;
    pExprNode->_function.pFunctNode = pFuncNode;
S
shenglian zhou 已提交
1420
    pExprNode->_function.functionType = pFuncNode->funcType;
H
Haojun Liao 已提交
1421 1422

    tstrncpy(pExprNode->_function.functionName, pFuncNode->functionName, tListLen(pExprNode->_function.functionName));
1423 1424 1425

#if 1
    // todo refactor: add the parameter for tbname function
H
Haojun Liao 已提交
1426
    const char* name = "tbname";
dengyihao's avatar
dengyihao 已提交
1427
    int32_t     len = strlen(name);
H
Haojun Liao 已提交
1428 1429 1430

    if (!pFuncNode->pParameterList && (memcmp(pExprNode->_function.functionName, name, len) == 0) &&
        pExprNode->_function.functionName[len] == 0) {
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
      pFuncNode->pParameterList = nodesMakeList();
      SValueNode* res = (SValueNode*)nodesMakeNode(QUERY_NODE_VALUE);
      if (NULL == res) {  // todo handle error
      } else {
        res->node.resType = (SDataType){.bytes = sizeof(int64_t), .type = TSDB_DATA_TYPE_BIGINT};
        nodesListAppend(pFuncNode->pParameterList, (SNode*)res);
      }
    }
#endif

    int32_t numOfParam = LIST_LENGTH(pFuncNode->pParameterList);

    pExp->base.pParam = taosMemoryCalloc(numOfParam, sizeof(SFunctParam));
    pExp->base.numOfParams = numOfParam;

    for (int32_t j = 0; j < numOfParam; ++j) {
      SNode* p1 = nodesListGetNode(pFuncNode->pParameterList, j);
      if (p1->type == QUERY_NODE_COLUMN) {
        SColumnNode* pcn = (SColumnNode*)p1;

        pExp->base.pParam[j].type = FUNC_PARAM_TYPE_COLUMN;
        pExp->base.pParam[j].pCol =
            createColumn(pcn->dataBlockId, pcn->slotId, pcn->colId, &pcn->node.resType, pcn->colType);
      } else if (p1->type == QUERY_NODE_VALUE) {
        SValueNode* pvn = (SValueNode*)p1;
        pExp->base.pParam[j].type = FUNC_PARAM_TYPE_VALUE;
        nodesValueNodeToVariant(pvn, &pExp->base.pParam[j].param);
      }
    }
  } else if (type == QUERY_NODE_OPERATOR) {
    pExp->pExpr->nodeType = QUERY_NODE_OPERATOR;
1462
    SOperatorNode* pOpNode = (SOperatorNode*)pNode;
1463 1464 1465 1466

    pExp->base.pParam = taosMemoryCalloc(1, sizeof(SFunctParam));
    pExp->base.numOfParams = 1;

1467 1468 1469 1470
    SDataType* pType = &pOpNode->node.resType;
    pExp->base.resSchema =
        createResSchema(pType->type, pType->bytes, slotId, pType->scale, pType->precision, pOpNode->node.aliasName);
    pExp->pExpr->_optrRoot.pRootNode = pNode;
D
dapan1121 已提交
1471 1472
  } else if (type == QUERY_NODE_CASE_WHEN) {
    pExp->pExpr->nodeType = QUERY_NODE_OPERATOR;
D
dapan1121 已提交
1473
    SCaseWhenNode* pCaseNode = (SCaseWhenNode*)pNode;
dengyihao's avatar
dengyihao 已提交
1474

D
dapan1121 已提交
1475 1476
    pExp->base.pParam = taosMemoryCalloc(1, sizeof(SFunctParam));
    pExp->base.numOfParams = 1;
dengyihao's avatar
dengyihao 已提交
1477

D
dapan1121 已提交
1478
    SDataType* pType = &pCaseNode->node.resType;
dengyihao's avatar
dengyihao 已提交
1479 1480
    pExp->base.resSchema =
        createResSchema(pType->type, pType->bytes, slotId, pType->scale, pType->precision, pCaseNode->node.aliasName);
D
dapan1121 已提交
1481
    pExp->pExpr->_optrRoot.pRootNode = pNode;
1482
  } else {
1483
    ASSERT(0);
1484 1485 1486
  }
}

1487 1488 1489 1490
void createExprFromTargetNode(SExprInfo* pExp, STargetNode* pTargetNode) {
  createExprFromOneNode(pExp, pTargetNode->pExpr, pTargetNode->slotId);
}

5
54liuyao 已提交
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
SExprInfo* createExpr(SNodeList* pNodeList, int32_t* numOfExprs) {
  *numOfExprs = LIST_LENGTH(pNodeList);
  SExprInfo* pExprs = taosMemoryCalloc(*numOfExprs, sizeof(SExprInfo));

  for (int32_t i = 0; i < (*numOfExprs); ++i) {
    SExprInfo* pExp = &pExprs[i];
    createExprFromOneNode(pExp, nodesListGetNode(pNodeList, i), i + UD_TAG_COLUMN_INDEX);
  }

  return pExprs;
}

1503 1504 1505 1506 1507 1508 1509 1510
SExprInfo* createExprInfo(SNodeList* pNodeList, SNodeList* pGroupKeys, int32_t* numOfExprs) {
  int32_t numOfFuncs = LIST_LENGTH(pNodeList);
  int32_t numOfGroupKeys = 0;
  if (pGroupKeys != NULL) {
    numOfGroupKeys = LIST_LENGTH(pGroupKeys);
  }

  *numOfExprs = numOfFuncs + numOfGroupKeys;
1511 1512 1513 1514
  if (*numOfExprs == 0) {
    return NULL;
  }

1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
  SExprInfo* pExprs = taosMemoryCalloc(*numOfExprs, sizeof(SExprInfo));

  for (int32_t i = 0; i < (*numOfExprs); ++i) {
    STargetNode* pTargetNode = NULL;
    if (i < numOfFuncs) {
      pTargetNode = (STargetNode*)nodesListGetNode(pNodeList, i);
    } else {
      pTargetNode = (STargetNode*)nodesListGetNode(pGroupKeys, i - numOfFuncs);
    }

    SExprInfo* pExp = &pExprs[i];
1526
    createExprFromTargetNode(pExp, pTargetNode);
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
  }

  return pExprs;
}

// set the output buffer for the selectivity + tag query
static int32_t setSelectValueColumnInfo(SqlFunctionCtx* pCtx, int32_t numOfOutput) {
  int32_t num = 0;

  SqlFunctionCtx*  p = NULL;
  SqlFunctionCtx** pValCtx = taosMemoryCalloc(numOfOutput, POINTER_BYTES);
  if (pValCtx == NULL) {
S
Shengliang Guan 已提交
1539
    return TSDB_CODE_OUT_OF_MEMORY;
1540 1541
  }

Y
yihaoDeng 已提交
1542
  SHashObj* pSelectFuncs = taosHashInit(8, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), false, HASH_ENTRY_LOCK);
1543
  for (int32_t i = 0; i < numOfOutput; ++i) {
H
Haojun Liao 已提交
1544
    const char* pName = pCtx[i].pExpr->pExpr->_function.functionName;
1545
    if ((strcmp(pName, "_select_value") == 0) || (strcmp(pName, "_group_key") == 0)) {
1546 1547
      pValCtx[num++] = &pCtx[i];
    } else if (fmIsSelectFunc(pCtx[i].functionId)) {
G
Ganlin Zhao 已提交
1548
      void* data = taosHashGet(pSelectFuncs, pName, strlen(pName));
G
fix  
Ganlin Zhao 已提交
1549 1550 1551 1552 1553 1554 1555
      if (taosHashGetSize(pSelectFuncs) != 0 && data == NULL) {
        p = NULL;
        break;
      } else {
        taosHashPut(pSelectFuncs, pName, strlen(pName), &num, sizeof(num));
        p = &pCtx[i];
      }
1556 1557
    }
  }
G
fix  
Ganlin Zhao 已提交
1558
  taosHashCleanup(pSelectFuncs);
H
Haojun Liao 已提交
1559

1560 1561 1562
  if (p != NULL) {
    p->subsidiaries.pCtx = pValCtx;
    p->subsidiaries.num = num;
1563
  } else {
1564
    taosMemoryFreeClear(pValCtx);
1565
  }
1566 1567

  return TSDB_CODE_SUCCESS;
1568 1569
}

dengyihao's avatar
dengyihao 已提交
1570 1571
SqlFunctionCtx* createSqlFunctionCtx(SExprInfo* pExprInfo, int32_t numOfOutput, int32_t** rowEntryInfoOffset,
                                     SFunctionStateStore* pStore) {
1572 1573 1574 1575
  SqlFunctionCtx* pFuncCtx = (SqlFunctionCtx*)taosMemoryCalloc(numOfOutput, sizeof(SqlFunctionCtx));
  if (pFuncCtx == NULL) {
    return NULL;
  }
1576

1577 1578
  *rowEntryInfoOffset = taosMemoryCalloc(numOfOutput, sizeof(int32_t));
  if (*rowEntryInfoOffset == 0) {
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
    taosMemoryFreeClear(pFuncCtx);
    return NULL;
  }

  for (int32_t i = 0; i < numOfOutput; ++i) {
    SExprInfo* pExpr = &pExprInfo[i];

    SExprBasicInfo* pFunct = &pExpr->base;
    SqlFunctionCtx* pCtx = &pFuncCtx[i];

    pCtx->functionId = -1;
    pCtx->pExpr = pExpr;

    if (pExpr->pExpr->nodeType == QUERY_NODE_FUNCTION) {
      SFuncExecEnv env = {0};
      pCtx->functionId = pExpr->pExpr->_function.pFunctNode->funcId;
1595
      pCtx->isPseudoFunc = fmIsWindowPseudoColumnFunc(pCtx->functionId);
1596
      pCtx->isNotNullFunc = fmIsNotNullOutputFunc(pCtx->functionId);
1597 1598 1599 1600 1601 1602 1603

      if (fmIsAggFunc(pCtx->functionId) || fmIsIndefiniteRowsFunc(pCtx->functionId)) {
        bool isUdaf = fmIsUserDefinedFunc(pCtx->functionId);
        if (!isUdaf) {
          fmGetFuncExecFuncs(pCtx->functionId, &pCtx->fpSet);
        } else {
          char* udfName = pExpr->pExpr->_function.pFunctNode->functionName;
1604
          pCtx->udfName = taosStrdup(udfName);
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
          fmGetUdafExecFuncs(pCtx->functionId, &pCtx->fpSet);
        }
        pCtx->fpSet.getEnv(pExpr->pExpr->_function.pFunctNode, &env);
      } else {
        fmGetScalarFuncExecFuncs(pCtx->functionId, &pCtx->sfp);
        if (pCtx->sfp.getEnv != NULL) {
          pCtx->sfp.getEnv(pExpr->pExpr->_function.pFunctNode, &env);
        }
      }
      pCtx->resDataInfo.interBufSize = env.calcMemSize;
    } else if (pExpr->pExpr->nodeType == QUERY_NODE_COLUMN || pExpr->pExpr->nodeType == QUERY_NODE_OPERATOR ||
               pExpr->pExpr->nodeType == QUERY_NODE_VALUE) {
      // for simple column, the result buffer needs to hold at least one element.
      pCtx->resDataInfo.interBufSize = pFunct->resSchema.bytes;
    }

    pCtx->input.numOfInputCols = pFunct->numOfParams;
    pCtx->input.pData = taosMemoryCalloc(pFunct->numOfParams, POINTER_BYTES);
    pCtx->input.pColumnDataAgg = taosMemoryCalloc(pFunct->numOfParams, POINTER_BYTES);

    pCtx->pTsOutput = NULL;
    pCtx->resDataInfo.bytes = pFunct->resSchema.bytes;
    pCtx->resDataInfo.type = pFunct->resSchema.type;
    pCtx->order = TSDB_ORDER_ASC;
    pCtx->start.key = INT64_MIN;
    pCtx->end.key = INT64_MIN;
    pCtx->numOfParams = pExpr->base.numOfParams;
    pCtx->param = pFunct->pParam;
1633
    pCtx->saveHandle.currentPage = -1;
1634
    pCtx->pStore = pStore;
1635 1636 1637
  }

  for (int32_t i = 1; i < numOfOutput; ++i) {
dengyihao's avatar
dengyihao 已提交
1638 1639
    (*rowEntryInfoOffset)[i] = (int32_t)((*rowEntryInfoOffset)[i - 1] + sizeof(SResultRowEntryInfo) +
                                         pFuncCtx[i - 1].resDataInfo.interBufSize);
1640 1641 1642 1643
  }

  setSelectValueColumnInfo(pFuncCtx, numOfOutput);
  return pFuncCtx;
1644
}
1645 1646

// NOTE: sources columns are more than the destination SSDatablock columns.
1647 1648
// doFilter in table scan needs every column even its output is false
void relocateColumnData(SSDataBlock* pBlock, const SArray* pColMatchInfo, SArray* pCols, bool outputEveryColumn) {
1649 1650 1651 1652 1653
  size_t numOfSrcCols = taosArrayGetSize(pCols);

  int32_t i = 0, j = 0;
  while (i < numOfSrcCols && j < taosArrayGetSize(pColMatchInfo)) {
    SColumnInfoData* p = taosArrayGet(pCols, i);
H
Haojun Liao 已提交
1654
    SColMatchItem*   pmInfo = taosArrayGet(pColMatchInfo, j);
1655 1656

    if (p->info.colId == pmInfo->colId) {
H
Haojun Liao 已提交
1657
      SColumnInfoData* pDst = taosArrayGet(pBlock->pDataBlock, pmInfo->dstSlotId);
1658
      colDataAssign(pDst, p, pBlock->info.rows, &pBlock->info);
1659 1660 1661 1662 1663
      i++;
      j++;
    } else if (p->info.colId < pmInfo->colId) {
      i++;
    } else {
1664
      ASSERT(0);
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
    }
  }
}

SInterval extractIntervalInfo(const STableScanPhysiNode* pTableScanNode) {
  SInterval interval = {
      .interval = pTableScanNode->interval,
      .sliding = pTableScanNode->sliding,
      .intervalUnit = pTableScanNode->intervalUnit,
      .slidingUnit = pTableScanNode->slidingUnit,
      .offset = pTableScanNode->offset,
  };

  return interval;
}

SColumn extractColumnFromColumnNode(SColumnNode* pColNode) {
  SColumn c = {0};
H
Haojun Liao 已提交
1683

1684 1685 1686 1687 1688
  c.slotId = pColNode->slotId;
  c.colId = pColNode->colId;
  c.type = pColNode->node.resType.type;
  c.bytes = pColNode->node.resType.bytes;
  c.scale = pColNode->node.resType.scale;
1689 1690 1691 1692 1693 1694 1695
  c.precision = pColNode->node.resType.precision;
  return c;
}

int32_t initQueryTableDataCond(SQueryTableDataCond* pCond, const STableScanPhysiNode* pTableScanNode) {
  pCond->order = pTableScanNode->scanSeq[0] > 0 ? TSDB_ORDER_ASC : TSDB_ORDER_DESC;
  pCond->numOfCols = LIST_LENGTH(pTableScanNode->scan.pScanCols);
H
Haojun Liao 已提交
1696

1697
  pCond->colList = taosMemoryCalloc(pCond->numOfCols, sizeof(SColumnInfo));
dengyihao's avatar
dengyihao 已提交
1698
  pCond->pSlotList = taosMemoryMalloc(sizeof(int32_t) * pCond->numOfCols);
H
Haojun Liao 已提交
1699
  if (pCond->colList == NULL || pCond->pSlotList == NULL) {
S
Shengliang Guan 已提交
1700
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Haojun Liao 已提交
1701 1702
    taosMemoryFreeClear(pCond->colList);
    taosMemoryFreeClear(pCond->pSlotList);
1703 1704 1705 1706
    return terrno;
  }

  // TODO: get it from stable scan node
H
Haojun Liao 已提交
1707
  pCond->twindows = pTableScanNode->scanRange;
1708
  pCond->suid = pTableScanNode->scan.suid;
1709
  pCond->type = TIMEWINDOW_RANGE_CONTAINED;
H
Haojun Liao 已提交
1710
  pCond->startVersion = -1;
1711
  pCond->endVersion = -1;
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723

  int32_t j = 0;
  for (int32_t i = 0; i < pCond->numOfCols; ++i) {
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pTableScanNode->scan.pScanCols, i);
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
    if (pColNode->colType == COLUMN_TYPE_TAG) {
      continue;
    }

    pCond->colList[j].type = pColNode->node.resType.type;
    pCond->colList[j].bytes = pColNode->node.resType.bytes;
    pCond->colList[j].colId = pColNode->colId;
H
Haojun Liao 已提交
1724 1725

    pCond->pSlotList[j] = pNode->slotId;
1726 1727 1728 1729 1730 1731 1732
    j += 1;
  }

  pCond->numOfCols = j;
  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
1733 1734 1735 1736
void cleanupQueryTableDataCond(SQueryTableDataCond* pCond) {
  taosMemoryFreeClear(pCond->colList);
  taosMemoryFreeClear(pCond->pSlotList);
}
1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749

int32_t convertFillType(int32_t mode) {
  int32_t type = TSDB_FILL_NONE;
  switch (mode) {
    case FILL_MODE_PREV:
      type = TSDB_FILL_PREV;
      break;
    case FILL_MODE_NONE:
      type = TSDB_FILL_NONE;
      break;
    case FILL_MODE_NULL:
      type = TSDB_FILL_NULL;
      break;
D
dapan1121 已提交
1750 1751 1752
    case FILL_MODE_NULL_F:
      type = TSDB_FILL_NULL_F;
      break;
1753 1754 1755 1756 1757 1758
    case FILL_MODE_NEXT:
      type = TSDB_FILL_NEXT;
      break;
    case FILL_MODE_VALUE:
      type = TSDB_FILL_SET_VALUE;
      break;
D
dapan1121 已提交
1759 1760 1761
    case FILL_MODE_VALUE_F:
      type = TSDB_FILL_SET_VALUE_F;
      break;
1762 1763 1764 1765 1766 1767 1768 1769 1770
    case FILL_MODE_LINEAR:
      type = TSDB_FILL_LINEAR;
      break;
    default:
      type = TSDB_FILL_NONE;
  }

  return type;
}
H
Haojun Liao 已提交
1771

1772
void getInitialStartTimeWindow(SInterval* pInterval, TSKEY ts, STimeWindow* w, bool ascQuery) {
H
Haojun Liao 已提交
1773
  if (ascQuery) {
1774
    *w = getAlignQueryTimeWindow(pInterval, ts);
H
Haojun Liao 已提交
1775 1776
  } else {
    // the start position of the first time window in the endpoint that spreads beyond the queried last timestamp
1777
    *w = getAlignQueryTimeWindow(pInterval, ts);
H
Haojun Liao 已提交
1778 1779 1780 1781

    int64_t key = w->skey;
    while (key < ts) {  // moving towards end
      key = taosTimeAdd(key, pInterval->sliding, pInterval->slidingUnit, pInterval->precision);
D
dapan1121 已提交
1782
      if (key > ts) {
H
Haojun Liao 已提交
1783 1784 1785 1786 1787 1788 1789 1790 1791
        break;
      }

      w->skey = key;
    }
  }
}

static STimeWindow doCalculateTimeWindow(int64_t ts, SInterval* pInterval) {
1792
  STimeWindow w = {0};
H
Haojun Liao 已提交
1793

1794
  w.skey = taosTimeTruncate(ts, pInterval);
1795
  w.ekey = taosTimeAdd(w.skey, pInterval->interval, pInterval->intervalUnit, pInterval->precision) - 1;
H
Haojun Liao 已提交
1796 1797 1798
  return w;
}

1799
STimeWindow getFirstQualifiedTimeWindow(int64_t ts, STimeWindow* pWindow, SInterval* pInterval, int32_t order) {
1800
  int32_t factor = (order == TSDB_ORDER_ASC) ? -1 : 1;
H
Haojun Liao 已提交
1801 1802 1803

  STimeWindow win = *pWindow;
  STimeWindow save = win;
1804
  while (win.skey <= ts && win.ekey >= ts) {
H
Haojun Liao 已提交
1805 1806 1807 1808 1809 1810 1811 1812 1813
    save = win;
    win.skey = taosTimeAdd(win.skey, factor * pInterval->sliding, pInterval->slidingUnit, pInterval->precision);
    win.ekey = taosTimeAdd(win.ekey, factor * pInterval->sliding, pInterval->slidingUnit, pInterval->precision);
  }

  return save;
}

// get the correct time window according to the handled timestamp
1814
// todo refactor
H
Haojun Liao 已提交
1815 1816 1817 1818 1819 1820 1821 1822 1823
STimeWindow getActiveTimeWindow(SDiskbasedBuf* pBuf, SResultRowInfo* pResultRowInfo, int64_t ts, SInterval* pInterval,
                                int32_t order) {
  STimeWindow w = {0};
  if (pResultRowInfo->cur.pageId == -1) {  // the first window, from the previous stored value
    getInitialStartTimeWindow(pInterval, ts, &w, (order == TSDB_ORDER_ASC));
    w.ekey = taosTimeAdd(w.skey, pInterval->interval, pInterval->intervalUnit, pInterval->precision) - 1;
    return w;
  }

1824 1825 1826 1827
  SResultRow* pRow = getResultRowByPos(pBuf, &pResultRowInfo->cur, false);
  if (pRow) {
    w = pRow->win;
  }
1828

H
Haojun Liao 已提交
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840
  // in case of typical time window, we can calculate time window directly.
  if (w.skey > ts || w.ekey < ts) {
    w = doCalculateTimeWindow(ts, pInterval);
  }

  if (pInterval->interval != pInterval->sliding) {
    // it is an sliding window query, in which sliding value is not equalled to
    // interval value, and we need to find the first qualified time window.
    w = getFirstQualifiedTimeWindow(ts, &w, pInterval, order);
  }

  return w;
1841 1842
}

1843 1844
void getNextTimeWindow(const SInterval* pInterval, STimeWindow* tw, int32_t order) {
  int32_t factor = GET_FORWARD_DIRECTION_FACTOR(order);
H
Haojun Liao 已提交
1845
  if (!IS_CALENDAR_TIME_DURATION(pInterval->slidingUnit)) {
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859
    tw->skey += pInterval->sliding * factor;
    tw->ekey = taosTimeAdd(tw->skey, pInterval->interval, pInterval->intervalUnit, pInterval->precision) - 1;
    return;
  }

  // convert key to second
  int64_t key = convertTimePrecision(tw->skey, pInterval->precision, TSDB_TIME_PRECISION_MILLI) / 1000;

  int64_t duration = pInterval->sliding;
  if (pInterval->slidingUnit == 'y') {
    duration *= 12;
  }

  struct tm tm;
dengyihao's avatar
dengyihao 已提交
1860
  time_t    t = (time_t)key;
H
Haojun Liao 已提交
1861
  taosLocalTime(&t, &tm, NULL);
1862 1863 1864 1865 1866 1867 1868 1869 1870

  int mon = (int)(tm.tm_year * 12 + tm.tm_mon + duration * factor);
  tm.tm_year = mon / 12;
  tm.tm_mon = mon % 12;
  tw->skey = convertTimePrecision((int64_t)taosMktime(&tm) * 1000LL, TSDB_TIME_PRECISION_MILLI, pInterval->precision);

  tw->ekey = taosTimeAdd(tw->skey, pInterval->interval, pInterval->intervalUnit, pInterval->precision) - 1;
}

1871 1872 1873 1874 1875
bool hasLimitOffsetInfo(SLimitInfo* pLimitInfo) {
  return (pLimitInfo->limit.limit != -1 || pLimitInfo->limit.offset != -1 || pLimitInfo->slimit.limit != -1 ||
          pLimitInfo->slimit.offset != -1);
}

1876 1877 1878 1879
bool hasSlimitOffsetInfo(SLimitInfo* pLimitInfo) {
  return (pLimitInfo->slimit.limit != -1 || pLimitInfo->slimit.offset != -1);
}

1880 1881 1882 1883 1884
void initLimitInfo(const SNode* pLimit, const SNode* pSLimit, SLimitInfo* pLimitInfo) {
  SLimit limit = {.limit = getLimit(pLimit), .offset = getOffset(pLimit)};
  SLimit slimit = {.limit = getLimit(pSLimit), .offset = getOffset(pSLimit)};

  pLimitInfo->limit = limit;
1885
  pLimitInfo->slimit = slimit;
1886 1887
  pLimitInfo->remainOffset = limit.offset;
  pLimitInfo->remainGroupOffset = slimit.offset;
1888
}
H
Haojun Liao 已提交
1889

1890 1891 1892 1893 1894
void resetLimitInfoForNextGroup(SLimitInfo* pLimitInfo) {
  pLimitInfo->numOfOutputRows = 0;
  pLimitInfo->remainOffset = pLimitInfo->limit.offset;
}

H
Haojun Liao 已提交
1895
uint64_t tableListGetSize(const STableListInfo* pTableList) {
1896
  ASSERT(taosArrayGetSize(pTableList->pTableList) == taosHashGetSize(pTableList->map));
H
Haojun Liao 已提交
1897 1898 1899
  return taosArrayGetSize(pTableList->pTableList);
}

Y
yihaoDeng 已提交
1900
uint64_t tableListGetSuid(const STableListInfo* pTableList) { return pTableList->idInfo.suid; }
H
Haojun Liao 已提交
1901 1902 1903 1904 1905 1906 1907 1908 1909

STableKeyInfo* tableListGetInfo(const STableListInfo* pTableList, int32_t index) {
  if (taosArrayGetSize(pTableList->pTableList) == 0) {
    return NULL;
  }

  return taosArrayGet(pTableList->pTableList, index);
}

1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924
int32_t tableListFind(const STableListInfo* pTableList, uint64_t uid, int32_t startIndex) {
  int32_t numOfTables = taosArrayGetSize(pTableList->pTableList);
  if (startIndex >= numOfTables) {
    return -1;
  }

  for (int32_t i = startIndex; i < numOfTables; ++i) {
    STableKeyInfo* p = taosArrayGet(pTableList->pTableList, i);
    if (p->uid == uid) {
      return i;
    }
  }
  return -1;
}

1925 1926 1927 1928
void tableListGetSourceTableInfo(const STableListInfo* pTableList, uint64_t* psuid, uint64_t* uid, int32_t* type) {
  *psuid = pTableList->idInfo.suid;
  *uid = pTableList->idInfo.uid;
  *type = pTableList->idInfo.tableType;
1929 1930
}

H
Haojun Liao 已提交
1931 1932
uint64_t getTableGroupId(const STableListInfo* pTableList, uint64_t tableUid) {
  int32_t* slot = taosHashGet(pTableList->map, &tableUid, sizeof(tableUid));
1933
  ASSERT(pTableList->map != NULL && slot != NULL);
H
Haojun Liao 已提交
1934 1935

  STableKeyInfo* pKeyInfo = taosArrayGet(pTableList->pTableList, *slot);
1936
  ASSERT(pKeyInfo->uid == tableUid);
H
Haojun Liao 已提交
1937 1938 1939 1940

  return pKeyInfo->groupId;
}

H
Haojun Liao 已提交
1941
// TODO handle the group offset info, fix it, the rule of group output will be broken by this function
H
Haojun Liao 已提交
1942
int32_t tableListAddTableInfo(STableListInfo* pTableList, uint64_t uid, uint64_t gid) {
H
Haojun Liao 已提交
1943
  if (pTableList->map == NULL) {
1944
    pTableList->map = taosHashInit(32, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), false, HASH_ENTRY_LOCK);
H
Haojun Liao 已提交
1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956
  }

  STableKeyInfo keyInfo = {.uid = uid, .groupId = gid};
  taosArrayPush(pTableList->pTableList, &keyInfo);

  int32_t slot = (int32_t)taosArrayGetSize(pTableList->pTableList) - 1;
  taosHashPut(pTableList->map, &uid, sizeof(uid), &slot, sizeof(slot));

  qDebug("uid:%" PRIu64 ", groupId:%" PRIu64 " added into table list, slot:%d, total:%d", uid, gid, slot, slot + 1);
  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
1957
int32_t tableListGetGroupList(const STableListInfo* pTableList, int32_t ordinalGroupIndex, STableKeyInfo** pKeyInfo,
dengyihao's avatar
dengyihao 已提交
1958
                              int32_t* size) {
1959
  int32_t totalGroups = tableListGetOutputGroups(pTableList);
X
Xiaoyu Wang 已提交
1960
  int32_t numOfTables = tableListGetSize(pTableList);
1961 1962

  if (ordinalGroupIndex < 0 || ordinalGroupIndex >= totalGroups) {
H
Haojun Liao 已提交
1963 1964 1965 1966 1967
    return TSDB_CODE_INVALID_PARA;
  }

  // here handle two special cases:
  // 1. only one group exists, and 2. one table exists for each group.
1968 1969
  if (totalGroups == 1) {
    *size = numOfTables;
dengyihao's avatar
dengyihao 已提交
1970
    *pKeyInfo = (*size == 0) ? NULL : taosArrayGet(pTableList->pTableList, 0);
H
Haojun Liao 已提交
1971
    return TSDB_CODE_SUCCESS;
1972
  } else if (totalGroups == numOfTables) {
H
Haojun Liao 已提交
1973 1974 1975 1976 1977 1978
    *size = 1;
    *pKeyInfo = taosArrayGet(pTableList->pTableList, ordinalGroupIndex);
    return TSDB_CODE_SUCCESS;
  }

  int32_t offset = pTableList->groupOffset[ordinalGroupIndex];
1979
  if (ordinalGroupIndex < totalGroups - 1) {
1980
    *size = pTableList->groupOffset[ordinalGroupIndex + 1] - offset;
H
Haojun Liao 已提交
1981
  } else {
1982
    *size = numOfTables - offset;
H
Haojun Liao 已提交
1983 1984 1985 1986 1987 1988
  }

  *pKeyInfo = taosArrayGet(pTableList->pTableList, offset);
  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
1989
int32_t tableListGetOutputGroups(const STableListInfo* pTableList) { return pTableList->numOfOuputGroups; }
H
Haojun Liao 已提交
1990 1991 1992

bool oneTableForEachGroup(const STableListInfo* pTableList) { return pTableList->oneTableForEachGroup; }

H
Haojun Liao 已提交
1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
STableListInfo* tableListCreate() {
  STableListInfo* pListInfo = taosMemoryCalloc(1, sizeof(STableListInfo));
  if (pListInfo == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  pListInfo->pTableList = taosArrayInit(4, sizeof(STableKeyInfo));
  if (pListInfo->pTableList == NULL) {
    goto _error;
  }

2005
  pListInfo->map = taosHashInit(1024, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_ENTRY_LOCK);
H
Haojun Liao 已提交
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
  if (pListInfo->map == NULL) {
    goto _error;
  }

  pListInfo->numOfOuputGroups = 1;
  return pListInfo;

_error:
  tableListDestroy(pListInfo);
  terrno = TSDB_CODE_OUT_OF_MEMORY;
  return NULL;
}

void* tableListDestroy(STableListInfo* pTableListInfo) {
2020 2021 2022
  if (pTableListInfo == NULL) {
    return NULL;
  }
H
Haojun Liao 已提交
2023

H
Haojun Liao 已提交
2024 2025
  pTableListInfo->pTableList = taosArrayDestroy(pTableListInfo->pTableList);
  taosMemoryFreeClear(pTableListInfo->groupOffset);
H
Haojun Liao 已提交
2026

H
Haojun Liao 已提交
2027 2028 2029 2030 2031 2032 2033 2034 2035
  taosHashCleanup(pTableListInfo->map);

  pTableListInfo->pTableList = NULL;
  pTableListInfo->map = NULL;
  taosMemoryFree(pTableListInfo);
  return NULL;
}

void tableListClear(STableListInfo* pTableListInfo) {
H
Haojun Liao 已提交
2036 2037 2038 2039
  if (pTableListInfo == NULL) {
    return;
  }

H
Haojun Liao 已提交
2040 2041 2042 2043 2044 2045 2046 2047
  taosArrayClear(pTableListInfo->pTableList);
  taosHashClear(pTableListInfo->map);
  taosMemoryFree(pTableListInfo->groupOffset);
  pTableListInfo->numOfOuputGroups = 1;
  pTableListInfo->oneTableForEachGroup = false;
}

static int32_t orderbyGroupIdComparFn(const void* p1, const void* p2) {
dengyihao's avatar
dengyihao 已提交
2048 2049
  STableKeyInfo* pInfo1 = (STableKeyInfo*)p1;
  STableKeyInfo* pInfo2 = (STableKeyInfo*)p2;
H
Haojun Liao 已提交
2050 2051 2052 2053

  if (pInfo1->groupId == pInfo2->groupId) {
    return 0;
  } else {
dengyihao's avatar
dengyihao 已提交
2054
    return pInfo1->groupId < pInfo2->groupId ? -1 : 1;
H
Haojun Liao 已提交
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
  }
}

static int32_t sortTableGroup(STableListInfo* pTableListInfo) {
  taosArraySort(pTableListInfo->pTableList, orderbyGroupIdComparFn);
  int32_t size = taosArrayGetSize(pTableListInfo->pTableList);

  SArray* pList = taosArrayInit(4, sizeof(int32_t));

  STableKeyInfo* pInfo = taosArrayGet(pTableListInfo->pTableList, 0);
dengyihao's avatar
dengyihao 已提交
2065
  uint64_t       gid = pInfo->groupId;
2066

H
Haojun Liao 已提交
2067 2068
  int32_t start = 0;
  taosArrayPush(pList, &start);
2069

dengyihao's avatar
dengyihao 已提交
2070
  for (int32_t i = 1; i < size; ++i) {
H
Haojun Liao 已提交
2071 2072 2073 2074 2075 2076 2077 2078 2079
    pInfo = taosArrayGet(pTableListInfo->pTableList, i);
    if (pInfo->groupId != gid) {
      taosArrayPush(pList, &i);
      gid = pInfo->groupId;
    }
  }

  pTableListInfo->numOfOuputGroups = taosArrayGetSize(pList);
  pTableListInfo->groupOffset = taosMemoryMalloc(sizeof(int32_t) * pTableListInfo->numOfOuputGroups);
H
Haojun Liao 已提交
2080 2081 2082 2083 2084
  if (pTableListInfo->groupOffset == NULL) {
    taosArrayDestroy(pList);
    return TSDB_CODE_OUT_OF_MEMORY;
  }

H
Haojun Liao 已提交
2085 2086
  memcpy(pTableListInfo->groupOffset, taosArrayGet(pList, 0), sizeof(int32_t) * pTableListInfo->numOfOuputGroups);
  taosArrayDestroy(pList);
2087
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
2088 2089
}

dengyihao's avatar
dengyihao 已提交
2090 2091
int32_t buildGroupIdMapForAllTables(STableListInfo* pTableListInfo, SReadHandle* pHandle, SScanPhysiNode* pScanNode,
                                    SNodeList* group, bool groupSort, uint8_t* digest, SStorageAPI* pAPI) {
H
Haojun Liao 已提交
2092 2093
  int32_t code = TSDB_CODE_SUCCESS;

dengyihao's avatar
dengyihao 已提交
2094
  bool   groupByTbname = groupbyTbname(group);
H
Haojun Liao 已提交
2095 2096 2097 2098
  size_t numOfTables = taosArrayGetSize(pTableListInfo->pTableList);
  if (group == NULL || groupByTbname) {
    for (int32_t i = 0; i < numOfTables; i++) {
      STableKeyInfo* info = taosArrayGet(pTableListInfo->pTableList, i);
dengyihao's avatar
dengyihao 已提交
2099
      info->groupId = groupByTbname ? info->uid : 0;
H
Haojun Liao 已提交
2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110
    }

    pTableListInfo->oneTableForEachGroup = groupByTbname;

    if (groupSort && groupByTbname) {
      taosArraySort(pTableListInfo->pTableList, orderbyGroupIdComparFn);
      pTableListInfo->numOfOuputGroups = numOfTables;
    } else {
      pTableListInfo->numOfOuputGroups = 1;
    }
  } else {
2111
    code = getColInfoResultForGroupby(pHandle->vnode, group, pTableListInfo, digest, pAPI);
H
Haojun Liao 已提交
2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122
    if (code != TSDB_CODE_SUCCESS) {
      return code;
    }

    if (groupSort) {
      code = sortTableGroup(pTableListInfo);
    }
  }

  // add all table entry in the hash map
  size_t size = taosArrayGetSize(pTableListInfo->pTableList);
dengyihao's avatar
dengyihao 已提交
2123
  for (int32_t i = 0; i < size; ++i) {
H
Haojun Liao 已提交
2124 2125 2126 2127 2128 2129 2130 2131 2132
    STableKeyInfo* p = taosArrayGet(pTableListInfo->pTableList, i);
    taosHashPut(pTableListInfo->map, &p->uid, sizeof(uint64_t), &i, sizeof(int32_t));
  }

  return code;
}

int32_t createScanTableListInfo(SScanPhysiNode* pScanNode, SNodeList* pGroupTags, bool groupSort, SReadHandle* pHandle,
                                STableListInfo* pTableListInfo, SNode* pTagCond, SNode* pTagIndexCond,
H
Haojun Liao 已提交
2133
                                SExecTaskInfo* pTaskInfo) {
dengyihao's avatar
dengyihao 已提交
2134
  int64_t     st = taosGetTimestampUs();
H
Haojun Liao 已提交
2135
  const char* idStr = GET_TASKID(pTaskInfo);
H
Haojun Liao 已提交
2136 2137 2138 2139 2140 2141

  if (pHandle == NULL) {
    qError("invalid handle, in creating operator tree, %s", idStr);
    return TSDB_CODE_INVALID_PARA;
  }

D
dapan1121 已提交
2142
  uint8_t digest[17] = {0};
dengyihao's avatar
dengyihao 已提交
2143 2144
  int32_t code = getTableList(pHandle->vnode, pScanNode, pTagCond, pTagIndexCond, pTableListInfo, digest, idStr,
                              &pTaskInfo->storageAPI);
H
Haojun Liao 已提交
2145 2146 2147 2148 2149
  if (code != TSDB_CODE_SUCCESS) {
    qError("failed to getTableList, code: %s", tstrerror(code));
    return code;
  }

H
Haojun Liao 已提交
2150
  int32_t numOfTables = taosArrayGetSize(pTableListInfo->pTableList);
H
Haojun Liao 已提交
2151 2152

  int64_t st1 = taosGetTimestampUs();
H
Haojun Liao 已提交
2153
  pTaskInfo->cost.extractListTime = (st1 - st) / 1000.0;
H
Haojun Liao 已提交
2154 2155
  qDebug("extract queried table list completed, %d tables, elapsed time:%.2f ms %s", numOfTables,
         pTaskInfo->cost.extractListTime, idStr);
H
Haojun Liao 已提交
2156

H
Haojun Liao 已提交
2157
  if (numOfTables == 0) {
H
Haojun Liao 已提交
2158 2159 2160 2161
    qDebug("no table qualified for query, %s" PRIx64, idStr);
    return TSDB_CODE_SUCCESS;
  }

dengyihao's avatar
dengyihao 已提交
2162 2163
  code = buildGroupIdMapForAllTables(pTableListInfo, pHandle, pScanNode, pGroupTags, groupSort, digest,
                                     &pTaskInfo->storageAPI);
H
Haojun Liao 已提交
2164 2165 2166 2167
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

dengyihao's avatar
dengyihao 已提交
2168
  pTaskInfo->cost.groupIdMapTime = (taosGetTimestampUs() - st1) / 1000.0;
H
Haojun Liao 已提交
2169
  qDebug("generate group id map completed, elapsed time:%.2f ms %s", pTaskInfo->cost.groupIdMapTime, idStr);
H
Haojun Liao 已提交
2170 2171

  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
2172
}
H
Haojun Liao 已提交
2173 2174 2175

void printDataBlock(SSDataBlock* pBlock, const char* flag) {
  if (!pBlock || pBlock->info.rows == 0) {
2176
    qDebug("===stream===%s: Block is Null or Empty", flag);
H
Haojun Liao 已提交
2177 2178 2179 2180 2181
    return;
  }
  char* pBuf = NULL;
  qDebug("%s", dumpBlockData(pBlock, flag, &pBuf));
  taosMemoryFree(pBuf);
dengyihao's avatar
dengyihao 已提交
2182
}