scalar.c 36.6 KB
Newer Older
D
dapan1121 已提交
1 2
#include "function.h"
#include "functionMgt.h"
H
Haojun Liao 已提交
3 4
#include "nodes.h"
#include "querynodes.h"
D
dapan1121 已提交
5
#include "sclInt.h"
H
Haojun Liao 已提交
6 7 8
#include "sclvector.h"
#include "tcommon.h"
#include "tdatablock.h"
9
#include "scalar.h"
S
slzhou 已提交
10
#include "tudf.h"
D
fix bug  
dapan1121 已提交
11
#include "ttime.h"
D
dapan1121 已提交
12

D
dapan1121 已提交
13
int32_t scalarGetOperatorParamNum(EOperatorType type) {
G
Ganlin Zhao 已提交
14
  if (OP_TYPE_IS_NULL == type || OP_TYPE_IS_NOT_NULL == type || OP_TYPE_IS_TRUE == type || OP_TYPE_IS_NOT_TRUE == type
D
dapan1121 已提交
15 16
   || OP_TYPE_IS_FALSE == type || OP_TYPE_IS_NOT_FALSE == type || OP_TYPE_IS_UNKNOWN == type || OP_TYPE_IS_NOT_UNKNOWN == type
   || OP_TYPE_MINUS == type) {
D
dapan1121 已提交
17 18 19 20 21 22
    return 1;
  }

  return 2;
}

D
dapan1121 已提交
23
int32_t sclConvertToTsValueNode(int8_t precision, SValueNode* valueNode) {
D
dapan 已提交
24
  char *timeStr = valueNode->datum.p;
D
dapan1121 已提交
25 26 27
  int32_t code = convertStringToTimestamp(valueNode->node.resType.type, valueNode->datum.p, precision, &valueNode->datum.i);
  if (code != TSDB_CODE_SUCCESS) {
    return code;
D
dapan 已提交
28 29
  }
  taosMemoryFree(timeStr);
D
dapan1121 已提交
30
  valueNode->typeData = valueNode->datum.i;
G
Ganlin Zhao 已提交
31

D
dapan 已提交
32 33
  valueNode->node.resType.type = TSDB_DATA_TYPE_TIMESTAMP;
  valueNode->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_TIMESTAMP].bytes;
D
dapan1121 已提交
34 35

  return TSDB_CODE_SUCCESS;
D
dapan 已提交
36 37
}

H
Haojun Liao 已提交
38
int32_t sclCreateColumnInfoData(SDataType* pType, int32_t numOfRows, SScalarParam* pParam) {
H
Haojun Liao 已提交
39
  SColumnInfoData* pColumnData = taosMemoryCalloc(1, sizeof(SColumnInfoData));
40 41
  if (pColumnData == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Haojun Liao 已提交
42
    return terrno;
43 44 45 46 47 48 49
  }

  pColumnData->info.type      = pType->type;
  pColumnData->info.bytes     = pType->bytes;
  pColumnData->info.scale     = pType->scale;
  pColumnData->info.precision = pType->precision;

50
  int32_t code = colInfoDataEnsureCapacity(pColumnData, numOfRows);
51 52
  if (code != TSDB_CODE_SUCCESS) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Haojun Liao 已提交
53
    taosMemoryFree(pColumnData);
H
Haojun Liao 已提交
54
    return terrno;
55
  }
H
Haojun Liao 已提交
56 57

  pParam->columnData = pColumnData;
58
  pParam->type = SHOULD_FREE_COLDATA;
H
Haojun Liao 已提交
59
  return TSDB_CODE_SUCCESS;
60 61
}

D
dapan1121 已提交
62
int32_t doConvertDataType(SValueNode* pValueNode, SScalarParam* out, int32_t* overflow) {
63
  SScalarParam in = {.numOfRows = 1};
H
Haojun Liao 已提交
64 65 66 67 68
  int32_t code = sclCreateColumnInfoData(&pValueNode->node.resType, 1, &in);
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

69
  colDataAppend(in.columnData, 0, nodesGetValueFromNode(pValueNode), false);
70

71
  colInfoDataEnsureCapacity(out->columnData, 1);
D
dapan1121 已提交
72
  code = vectorConvertImpl(&in, out, overflow);
73 74 75
  sclFreeParam(&in);

  return code;
76 77
}

D
dapan1121 已提交
78 79 80 81 82 83 84
int32_t scalarGenerateSetFromList(void **data, void *pNode, uint32_t type) {
  SHashObj *pObj = taosHashInit(256, taosGetDefaultHashFunction(type), true, false);
  if (NULL == pObj) {
    sclError("taosHashInit failed, size:%d", 256);
    SCL_ERR_RET(TSDB_CODE_QRY_OUT_OF_MEMORY);
  }

G
Ganlin Zhao 已提交
85
  taosHashSetEqualFp(pObj, taosGetDefaultEqualFunction(type));
D
dapan1121 已提交
86 87 88 89

  int32_t code = 0;
  SNodeListNode *nodeList = (SNodeListNode *)pNode;
  SListCell *cell = nodeList->pNodeList->pHead;
H
Haojun Liao 已提交
90
  SScalarParam out = {.columnData = taosMemoryCalloc(1, sizeof(SColumnInfoData))};
91

D
dapan1121 已提交
92 93
  int32_t len = 0;
  void *buf = NULL;
G
Ganlin Zhao 已提交
94

D
dapan1121 已提交
95 96
  for (int32_t i = 0; i < nodeList->pNodeList->length; ++i) {
    SValueNode *valueNode = (SValueNode *)cell->pNode;
G
Ganlin Zhao 已提交
97

D
dapan1121 已提交
98
    if (valueNode->node.resType.type != type) {
99
      out.columnData->info.type = type;
D
dapan1121 已提交
100 101 102 103 104 105 106 107 108
      if (IS_VAR_DATA_TYPE(type)) {
        if (IS_VAR_DATA_TYPE(valueNode->node.resType.type)) {
          out.columnData->info.bytes = valueNode->node.resType.bytes * TSDB_NCHAR_SIZE;
        } else {
          out.columnData->info.bytes = 64 * TSDB_NCHAR_SIZE;
        }
      } else {
        out.columnData->info.bytes = tDataTypes[type].bytes;
      }
109

D
dapan1121 已提交
110 111
      int32_t overflow = 0;
      code = doConvertDataType(valueNode, &out, &overflow);
112
      if (code != TSDB_CODE_SUCCESS) {
113
//        sclError("convert data from %d to %d failed", in.type, out.type);
D
dapan1121 已提交
114 115 116
        SCL_ERR_JRET(code);
      }

D
dapan1121 已提交
117 118 119 120 121
      if (overflow) {
        cell = cell->pNext;
        continue;
      }

D
dapan1121 已提交
122
      if (IS_VAR_DATA_TYPE(type)) {
123
        buf = colDataGetVarData(out.columnData, 0);
D
dapan1121 已提交
124
        len = varDataTLen(buf);
D
dapan1121 已提交
125 126
      } else {
        len = tDataTypes[type].bytes;
127
        buf = out.columnData->pData;
D
dapan1121 已提交
128 129 130
      }
    } else {
      buf = nodesGetValueFromNode(valueNode);
D
dapan1121 已提交
131
      if (IS_VAR_DATA_TYPE(type)) {
132
        len = varDataTLen(buf);
D
dapan1121 已提交
133 134
      } else {
        len = valueNode->node.resType.bytes;
135
      }
D
dapan1121 已提交
136
    }
G
Ganlin Zhao 已提交
137

138
    if (taosHashPut(pObj, buf, (size_t)len, NULL, 0)) {
D
dapan1121 已提交
139
      sclError("taosHashPut to set failed");
D
dapan1121 已提交
140 141
      SCL_ERR_JRET(TSDB_CODE_QRY_OUT_OF_MEMORY);
    }
D
dapan1121 已提交
142 143

    cell = cell->pNext;
D
dapan1121 已提交
144 145 146 147 148 149 150 151 152 153
  }

  *data = pObj;
  return TSDB_CODE_SUCCESS;

_return:
  taosHashCleanup(pObj);
  SCL_RET(code);
}

D
dapan1121 已提交
154 155 156 157 158 159 160
void sclFreeRes(SHashObj *res) {
  SScalarParam *p = NULL;
  void *pIter = taosHashIterate(res, NULL);
  while (pIter) {
    p = (SScalarParam *)pIter;

    if (p) {
D
dapan 已提交
161
      sclFreeParam(p);
D
dapan1121 已提交
162 163 164 165 166 167
    }
    pIter = taosHashIterate(res, pIter);
  }
  taosHashCleanup(res);
}

D
dapan1121 已提交
168
void sclFreeParam(SScalarParam *param) {
169 170
  if (param->columnData != NULL) {
    colDataDestroy(param->columnData);
171
    taosMemoryFreeClear(param->columnData);
172 173 174 175 176
  }

  if (param->pHashFilter != NULL) {
    taosHashCleanup(param->pHashFilter);
  }
D
dapan1121 已提交
177 178
}

D
dapan1121 已提交
179 180 181 182
int32_t sclCopyValueNodeValue(SValueNode *pNode, void **res) {
  if (TSDB_DATA_TYPE_NULL == pNode->node.resType.type) {
    return TSDB_CODE_SUCCESS;
  }
G
Ganlin Zhao 已提交
183

wafwerar's avatar
wafwerar 已提交
184
  *res = taosMemoryMalloc(pNode->node.resType.bytes);
D
dapan1121 已提交
185 186 187 188 189 190 191 192 193
  if (NULL == (*res)) {
    sclError("malloc %d failed", pNode->node.resType.bytes);
    SCL_ERR_RET(TSDB_CODE_QRY_OUT_OF_MEMORY);
  }

  memcpy(*res, nodesGetValueFromNode(pNode), pNode->node.resType.bytes);
  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
194 195
int32_t sclInitParam(SNode* node, SScalarParam *param, SScalarCtx *ctx, int32_t *rowNum) {
  switch (nodeType(node)) {
D
dapan1121 已提交
196 197 198 199 200
    case QUERY_NODE_LEFT_VALUE: {
      SSDataBlock* pb = taosArrayGetP(ctx->pBlockList, 0);
      param->numOfRows = pb->info.rows;
      break;
    }
D
dapan1121 已提交
201 202
    case QUERY_NODE_VALUE: {
      SValueNode *valueNode = (SValueNode *)node;
203

H
Haojun Liao 已提交
204
      ASSERT(param->columnData == NULL);
205
      param->numOfRows = 1;
H
Haojun Liao 已提交
206
      /*int32_t code = */sclCreateColumnInfoData(&valueNode->node.resType, 1, param);
wmmhello's avatar
wmmhello 已提交
207
      if (TSDB_DATA_TYPE_NULL == valueNode->node.resType.type || valueNode->isNull) {
208
        colDataAppendNULL(param->columnData, 0);
209 210
      } else {
        colDataAppend(param->columnData, 0, nodesGetValueFromNode(valueNode), false);
D
dapan1121 已提交
211
      }
D
dapan1121 已提交
212 213
      break;
    }
D
dapan1121 已提交
214 215
    case QUERY_NODE_NODE_LIST: {
      SNodeListNode *nodeList = (SNodeListNode *)node;
216 217
      if (LIST_LENGTH(nodeList->pNodeList) <= 0) {
        sclError("invalid length in nodeList, length:%d", LIST_LENGTH(nodeList->pNodeList));
D
dapan1121 已提交
218 219 220
        SCL_RET(TSDB_CODE_QRY_INVALID_INPUT);
      }

D
dapan1121 已提交
221 222 223 224
      int32_t type = vectorGetConvertType(ctx->type.selfType, ctx->type.peerType);
      if (type == 0) {
        type = nodeList->dataType.type;
      }
G
Ganlin Zhao 已提交
225

D
dapan1121 已提交
226 227
      SCL_ERR_RET(scalarGenerateSetFromList((void **)&param->pHashFilter, node, type));
      param->hashValueType = type;
D
dapan 已提交
228
      if (taosHashPut(ctx->pRes, &node, POINTER_BYTES, param, sizeof(*param))) {
229
        taosHashCleanup(param->pHashFilter);
D
dapan 已提交
230 231
        sclError("taosHashPut nodeList failed, size:%d", (int32_t)sizeof(*param));
        return TSDB_CODE_QRY_OUT_OF_MEMORY;
G
Ganlin Zhao 已提交
232
      }
D
dapan1121 已提交
233 234
      break;
    }
X
Xiaoyu Wang 已提交
235
    case QUERY_NODE_COLUMN: {
D
dapan 已提交
236 237
      if (NULL == ctx->pBlockList) {
        sclError("invalid node type for constant calculating, type:%d, src:%p", nodeType(node), ctx->pBlockList);
D
dapan1121 已提交
238 239
        SCL_ERR_RET(TSDB_CODE_QRY_APP_ERROR);
      }
G
Ganlin Zhao 已提交
240

X
Xiaoyu Wang 已提交
241
      SColumnNode *ref = (SColumnNode *)node;
242 243 244 245 246 247 248 249 250 251 252

      int32_t index = -1;
      for(int32_t i = 0; i < taosArrayGetSize(ctx->pBlockList); ++i) {
        SSDataBlock* pb = taosArrayGetP(ctx->pBlockList, i);
        if (pb->info.blockId == ref->dataBlockId) {
          index = i;
          break;
        }
      }

      if (index == -1) {
D
dapan1121 已提交
253
        sclError("column tupleId is too big, tupleId:%d, dataBlockNum:%d", ref->dataBlockId, (int32_t)taosArrayGetSize(ctx->pBlockList));
D
dapan 已提交
254 255 256
        SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
      }

257
      SSDataBlock *block = *(SSDataBlock **)taosArrayGet(ctx->pBlockList, index);
258
      if (NULL == block || ref->slotId >= taosArrayGetSize(block->pDataBlock)) {
D
dapan 已提交
259
        sclError("column slotId is too big, slodId:%d, dataBlockSize:%d", ref->slotId, (int32_t)taosArrayGetSize(block->pDataBlock));
D
dapan1121 已提交
260 261 262
        SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
      }

D
dapan 已提交
263
      SColumnInfoData *columnData = (SColumnInfoData *)taosArrayGet(block->pDataBlock, ref->slotId);
264 265
      param->numOfRows = block->info.rows;
      param->columnData = columnData;
D
dapan1121 已提交
266 267
      break;
    }
268 269 270
    case QUERY_NODE_FUNCTION:
    case QUERY_NODE_OPERATOR:
    case QUERY_NODE_LOGIC_CONDITION: {
D
dapan1121 已提交
271 272 273 274 275 276 277 278
      SScalarParam *res = (SScalarParam *)taosHashGet(ctx->pRes, &node, POINTER_BYTES);
      if (NULL == res) {
        sclError("no result for node, type:%d, node:%p", nodeType(node), node);
        SCL_ERR_RET(TSDB_CODE_QRY_APP_ERROR);
      }
      *param = *res;
      break;
    }
279 280
    default:
      break;
D
dapan1121 已提交
281 282
  }

283 284 285
  if (param->numOfRows > *rowNum) {
    if ((1 != param->numOfRows) && (1 < *rowNum)) {
      sclError("different row nums, rowNum:%d, newRowNum:%d", *rowNum, param->numOfRows);
D
dapan1121 已提交
286 287
      SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
    }
G
Ganlin Zhao 已提交
288

289
    *rowNum = param->numOfRows;
D
dapan1121 已提交
290 291
  }

292
  param->param = ctx->param;
D
dapan1121 已提交
293 294 295
  return TSDB_CODE_SUCCESS;
}

G
Ganlin Zhao 已提交
296
int32_t sclInitParamList(SScalarParam **pParams, SNodeList* pParamList, SScalarCtx *ctx, int32_t *paramNum, int32_t *rowNum) {
D
dapan1121 已提交
297
  int32_t code = 0;
D
dapan1121 已提交
298 299
  if (NULL == pParamList) {
    if (ctx->pBlockList) {
D
dapan1121 已提交
300
      SSDataBlock *pBlock = taosArrayGetP(ctx->pBlockList, 0);
D
dapan1121 已提交
301 302 303 304 305
      *rowNum = pBlock->info.rows;
    } else {
      *rowNum = 1;
    }

D
dapan 已提交
306
    *paramNum = 1;
D
dapan1121 已提交
307
  } else {
D
dapan 已提交
308
    *paramNum = pParamList->length;
D
dapan1121 已提交
309 310
  }

D
dapan 已提交
311
  SScalarParam *paramList = taosMemoryCalloc(*paramNum, sizeof(SScalarParam));
D
dapan1121 已提交
312
  if (NULL == paramList) {
D
dapan 已提交
313
    sclError("calloc %d failed", (int32_t)((*paramNum) * sizeof(SScalarParam)));
D
dapan1121 已提交
314
    SCL_ERR_RET(TSDB_CODE_QRY_OUT_OF_MEMORY);
D
dapan1121 已提交
315 316
  }

D
dapan1121 已提交
317 318 319 320
  if (pParamList) {
    SNode *tnode = NULL;
    int32_t i = 0;
    if (SCL_IS_CONST_CALC(ctx)) {
G
Ganlin Zhao 已提交
321
      WHERE_EACH (tnode, pParamList) {
D
dapan1121 已提交
322
        if (!SCL_IS_CONST_NODE(tnode)) {
D
dapan 已提交
323
          WHERE_NEXT;
D
dapan1121 已提交
324 325 326 327
        } else {
          SCL_ERR_JRET(sclInitParam(tnode, &paramList[i], ctx, rowNum));
          ERASE_NODE(pParamList);
        }
G
Ganlin Zhao 已提交
328

D
dapan1121 已提交
329 330 331
        ++i;
      }
    } else {
G
Ganlin Zhao 已提交
332
      FOREACH(tnode, pParamList) {
D
dapan1121 已提交
333 334 335
        SCL_ERR_JRET(sclInitParam(tnode, &paramList[i], ctx, rowNum));
        ++i;
      }
D
dapan1121 已提交
336
    }
D
dapan1121 已提交
337 338 339
  } else {
    paramList[0].numOfRows = *rowNum;
  }
D
dapan1121 已提交
340

D
dapan1121 已提交
341
  if (0 == *rowNum) {
G
Ganlin Zhao 已提交
342
    taosMemoryFreeClear(paramList);
D
dapan1121 已提交
343
  }
D
dapan1121 已提交
344

D
dapan1121 已提交
345
  *pParams = paramList;
D
dapan1121 已提交
346
  return TSDB_CODE_SUCCESS;
D
dapan1121 已提交
347

D
dapan1121 已提交
348
_return:
wafwerar's avatar
wafwerar 已提交
349
  taosMemoryFreeClear(paramList);
D
dapan1121 已提交
350 351 352
  SCL_RET(code);
}

D
dapan1121 已提交
353 354 355 356
int32_t sclGetNodeType(SNode *pNode, SScalarCtx *ctx) {
  if (NULL == pNode) {
    return -1;
  }
G
Ganlin Zhao 已提交
357

wafwerar's avatar
wafwerar 已提交
358
  switch ((int)nodeType(pNode)) {
D
dapan1121 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
    case QUERY_NODE_VALUE: {
      SValueNode *valueNode = (SValueNode *)pNode;
      return valueNode->node.resType.type;
    }
    case QUERY_NODE_NODE_LIST: {
      SNodeListNode *nodeList = (SNodeListNode *)pNode;
      return nodeList->dataType.type;
    }
    case QUERY_NODE_COLUMN: {
      SColumnNode *colNode = (SColumnNode *)pNode;
      return colNode->node.resType.type;
    }
    case QUERY_NODE_FUNCTION:
    case QUERY_NODE_OPERATOR:
    case QUERY_NODE_LOGIC_CONDITION: {
      SScalarParam *res = (SScalarParam *)taosHashGet(ctx->pRes, &pNode, POINTER_BYTES);
      if (NULL == res) {
        sclError("no result for node, type:%d, node:%p", nodeType(pNode), pNode);
        return -1;
      }
      return res->columnData->info.type;
    }
  }

  return -1;
}


void sclSetOperatorValueType(SOperatorNode *node, SScalarCtx *ctx) {
  ctx->type.opResType = node->node.resType.type;
  ctx->type.selfType = sclGetNodeType(node->pLeft, ctx);
  ctx->type.peerType = sclGetNodeType(node->pRight, ctx);
}

D
dapan1121 已提交
393 394
int32_t sclInitOperatorParams(SScalarParam **pParams, SOperatorNode *node, SScalarCtx *ctx, int32_t *rowNum) {
  int32_t code = 0;
D
dapan1121 已提交
395
  int32_t paramNum = scalarGetOperatorParamNum(node->opType);
D
dapan1121 已提交
396 397 398 399
  if (NULL == node->pLeft || (paramNum == 2 && NULL == node->pRight)) {
    sclError("invalid operation node, left:%p, right:%p", node->pLeft, node->pRight);
    SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
  }
G
Ganlin Zhao 已提交
400

wafwerar's avatar
wafwerar 已提交
401
  SScalarParam *paramList = taosMemoryCalloc(paramNum, sizeof(SScalarParam));
D
dapan1121 已提交
402 403
  if (NULL == paramList) {
    sclError("calloc %d failed", (int32_t)(paramNum * sizeof(SScalarParam)));
D
dapan1121 已提交
404 405 406
    SCL_ERR_RET(TSDB_CODE_QRY_OUT_OF_MEMORY);
  }

D
dapan1121 已提交
407 408
  sclSetOperatorValueType(node, ctx);

D
dapan1121 已提交
409
  SCL_ERR_JRET(sclInitParam(node->pLeft, &paramList[0], ctx, rowNum));
D
dapan1121 已提交
410
  if (paramNum > 1) {
D
dapan1121 已提交
411
    TSWAP(ctx->type.selfType, ctx->type.peerType);
D
dapan1121 已提交
412
    SCL_ERR_JRET(sclInitParam(node->pRight, &paramList[1], ctx, rowNum));
D
dapan1121 已提交
413 414
  }

D
dapan1121 已提交
415
  *pParams = paramList;
D
dapan1121 已提交
416
  return TSDB_CODE_SUCCESS;
D
dapan1121 已提交
417 418

_return:
wafwerar's avatar
wafwerar 已提交
419
  taosMemoryFreeClear(paramList);
D
dapan1121 已提交
420
  SCL_RET(code);
D
dapan1121 已提交
421 422
}

423
int32_t sclExecFunction(SFunctionNode *node, SScalarCtx *ctx, SScalarParam *output) {
D
dapan1121 已提交
424 425
  SScalarParam *params = NULL;
  int32_t rowNum = 0;
D
dapan 已提交
426
  int32_t paramNum = 0;
D
dapan1121 已提交
427
  int32_t code = 0;
D
dapan 已提交
428
  SCL_ERR_RET(sclInitParamList(&params, node->pParameterList, ctx, &paramNum, &rowNum));
D
dapan1121 已提交
429

D
dapan1121 已提交
430
  if (fmIsUserDefinedFunc(node->funcId)) {
431
    code = callUdfScalarFunc(node->functionName, params, paramNum, output);
432 433 434 435
    if (code != 0) {
      sclError("fmExecFunction error. callUdfScalarFunc. function name: %s, udf code:%d", node->functionName, code);
      goto _return;
    }
D
dapan1121 已提交
436 437 438 439 440 441 442
  } else {
    SScalarFuncExecFuncs ffpSet = {0};
    code = fmGetScalarFuncExecFuncs(node->funcId, &ffpSet);
    if (code) {
      sclError("fmGetFuncExecFuncs failed, funcId:%d, code:%s", node->funcId, tstrerror(code));
      SCL_ERR_JRET(code);
    }
G
Ganlin Zhao 已提交
443

H
Haojun Liao 已提交
444 445 446
    code = sclCreateColumnInfoData(&node->node.resType, rowNum, output);
    if (code != TSDB_CODE_SUCCESS) {
      SCL_ERR_JRET(code);
D
dapan1121 已提交
447 448 449 450 451 452 453
    }

    code = (*ffpSet.process)(params, paramNum, output);
    if (code) {
      sclError("scalar function exec failed, funcId:%d, code:%s", node->funcId, tstrerror(code));
      SCL_ERR_JRET(code);
    }
D
dapan1121 已提交
454 455 456 457
  }

_return:

D
dapan 已提交
458
  for (int32_t i = 0; i < paramNum; ++i) {
H
Haojun Liao 已提交
459
//    sclFreeParamNoData(params + i);
D
dapan1121 已提交
460 461
  }

wafwerar's avatar
wafwerar 已提交
462
  taosMemoryFreeClear(params);
D
dapan1121 已提交
463 464 465 466 467 468 469 470 471 472 473 474
  SCL_RET(code);
}

int32_t sclExecLogic(SLogicConditionNode *node, SScalarCtx *ctx, SScalarParam *output) {
  if (NULL == node->pParameterList || node->pParameterList->length <= 0) {
    sclError("invalid logic parameter list, list:%p, paramNum:%d", node->pParameterList, node->pParameterList ? node->pParameterList->length : 0);
    SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
  }

  if (TSDB_DATA_TYPE_BOOL != node->node.resType.type) {
    sclError("invalid logic resType, type:%d", node->node.resType.type);
    SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
D
dapan1121 已提交
475 476
  }

D
dapan1121 已提交
477 478 479 480 481 482 483
  if (LOGIC_COND_TYPE_NOT == node->condType && node->pParameterList->length > 1) {
    sclError("invalid NOT operation parameter number, paramNum:%d", node->pParameterList->length);
    SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
  }

  SScalarParam *params = NULL;
  int32_t rowNum = 0;
D
dapan 已提交
484
  int32_t paramNum = 0;
D
dapan1121 已提交
485
  int32_t code = 0;
D
dapan 已提交
486
  SCL_ERR_RET(sclInitParamList(&params, node->pParameterList, ctx, &paramNum, &rowNum));
D
dapan1121 已提交
487 488 489 490
  if (NULL == params) {
    output->numOfRows = 0;
    return TSDB_CODE_SUCCESS;
  }
D
dapan1121 已提交
491

492 493 494 495
  int32_t type = node->node.resType.type;
  output->numOfRows = rowNum;

  SDataType t = {.type = type, .bytes = tDataTypes[type].bytes};
H
Haojun Liao 已提交
496 497 498
  code = sclCreateColumnInfoData(&t, rowNum, output);
  if (code != TSDB_CODE_SUCCESS) {
    SCL_ERR_JRET(code);
D
dapan1121 已提交
499
  }
D
dapan1121 已提交
500

D
dapan1121 已提交
501
  bool value = false;
D
dapan 已提交
502
  bool complete = true;
D
dapan1121 已提交
503
  for (int32_t i = 0; i < rowNum; ++i) {
D
dapan 已提交
504 505
    complete = true;
    for (int32_t m = 0; m < paramNum; ++m) {
D
dapan1121 已提交
506
      if (NULL == params[m].columnData) {
D
dapan 已提交
507
        complete = false;
D
dapan1121 已提交
508 509
        continue;
      }
510 511 512
      char* p = colDataGetData(params[m].columnData, i);
      GET_TYPED_DATA(value, bool, params[m].columnData->info.type, p);

D
dapan1121 已提交
513
      if (LOGIC_COND_TYPE_AND == node->condType && (false == value)) {
D
dapan1121 已提交
514
        complete = true;
D
dapan1121 已提交
515 516
        break;
      } else if (LOGIC_COND_TYPE_OR == node->condType && value) {
D
dapan1121 已提交
517
        complete = true;
D
dapan1121 已提交
518 519 520 521 522 523
        break;
      } else if (LOGIC_COND_TYPE_NOT == node->condType) {
        value = !value;
      }
    }

D
dapan 已提交
524 525 526
    if (complete) {
      colDataAppend(output->columnData, i, (char*) &value, false);
    }
D
dapan1121 已提交
527 528
  }

D
dapan1121 已提交
529 530 531 532 533
  if (SCL_IS_CONST_CALC(ctx) && (false == complete)) {
    sclFreeParam(output);
    output->numOfRows = 0;
  }

D
dapan1121 已提交
534
_return:
D
dapan1121 已提交
535

D
dapan 已提交
536
  for (int32_t i = 0; i < paramNum; ++i) {
H
Haojun Liao 已提交
537
//    sclFreeParamNoData(params + i);
D
dapan1121 已提交
538 539
  }

wafwerar's avatar
wafwerar 已提交
540
  taosMemoryFreeClear(params);
D
dapan1121 已提交
541
  SCL_RET(code);
D
dapan1121 已提交
542 543 544 545 546 547
}

int32_t sclExecOperator(SOperatorNode *node, SScalarCtx *ctx, SScalarParam *output) {
  SScalarParam *params = NULL;
  int32_t rowNum = 0;
  int32_t code = 0;
548

wmmhello's avatar
wmmhello 已提交
549
  // json not support in in operator
H
Haojun Liao 已提交
550
  if (nodeType(node->pLeft) == QUERY_NODE_VALUE) {
wmmhello's avatar
wmmhello 已提交
551
    SValueNode *valueNode = (SValueNode *)node->pLeft;
H
Haojun Liao 已提交
552
    if (valueNode->node.resType.type == TSDB_DATA_TYPE_JSON && (node->opType == OP_TYPE_IN || node->opType == OP_TYPE_NOT_IN)) {
wmmhello's avatar
wmmhello 已提交
553 554 555 556
      SCL_RET(TSDB_CODE_QRY_JSON_IN_ERROR);
    }
  }

D
dapan1121 已提交
557
  SCL_ERR_RET(sclInitOperatorParams(&params, node, ctx, &rowNum));
558
  if (output->columnData == NULL) {
H
Haojun Liao 已提交
559 560 561 562
    code = sclCreateColumnInfoData(&node->node.resType, rowNum, output);
    if (code != TSDB_CODE_SUCCESS) {
      SCL_ERR_JRET(code);
    }
D
dapan1121 已提交
563 564 565 566
  }

  _bin_scalar_fn_t OperatorFn = getBinScalarOperatorFn(node->opType);

D
dapan1121 已提交
567
  int32_t paramNum = scalarGetOperatorParamNum(node->opType);
D
dapan1121 已提交
568 569
  SScalarParam* pLeft = &params[0];
  SScalarParam* pRight = paramNum > 1 ? &params[1] : NULL;
570

wmmhello's avatar
wmmhello 已提交
571
  terrno = TSDB_CODE_SUCCESS;
D
dapan 已提交
572
  OperatorFn(pLeft, pRight, output, TSDB_ORDER_ASC);
wmmhello's avatar
wmmhello 已提交
573
  code = terrno;
D
dapan1121 已提交
574 575

_return:
D
dapan1121 已提交
576
  for (int32_t i = 0; i < paramNum; ++i) {
577
    if (params[i].type == SHOULD_FREE_COLDATA) {
H
Haojun Liao 已提交
578
      colDataDestroy(params[i].columnData);
579
      taosMemoryFreeClear(params[i].columnData);
H
Haojun Liao 已提交
580
    }
D
dapan1121 已提交
581 582
  }

wafwerar's avatar
wafwerar 已提交
583
  taosMemoryFreeClear(params);
D
dapan1121 已提交
584
  SCL_RET(code);
D
dapan1121 已提交
585 586
}

D
dapan1121 已提交
587
EDealRes sclRewriteNullInOptr(SNode** pNode, SScalarCtx *ctx, EOperatorType opType) {
D
dapan1121 已提交
588 589 590
  if (opType <= OP_TYPE_CALC_MAX) {
    SValueNode *res = (SValueNode *)nodesMakeNode(QUERY_NODE_VALUE);
    if (NULL == res) {
G
Ganlin Zhao 已提交
591
      sclError("make value node failed");
D
dapan1121 已提交
592 593 594
      ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
      return DEAL_RES_ERROR;
    }
G
Ganlin Zhao 已提交
595

D
dapan1121 已提交
596
    res->node.resType.type = TSDB_DATA_TYPE_NULL;
G
Ganlin Zhao 已提交
597

D
dapan1121 已提交
598 599 600 601 602
    nodesDestroyNode(*pNode);
    *pNode = (SNode*)res;
  } else {
    SValueNode *res = (SValueNode *)nodesMakeNode(QUERY_NODE_VALUE);
    if (NULL == res) {
G
Ganlin Zhao 已提交
603
      sclError("make value node failed");
D
dapan1121 已提交
604 605 606
      ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
      return DEAL_RES_ERROR;
    }
G
Ganlin Zhao 已提交
607

D
dapan1121 已提交
608
    res->node.resType.type = TSDB_DATA_TYPE_BOOL;
D
dapan1121 已提交
609
    res->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_BOOL].bytes;
D
dapan1121 已提交
610
    res->datum.b = false;
G
Ganlin Zhao 已提交
611

D
dapan1121 已提交
612 613 614 615 616 617 618
    nodesDestroyNode(*pNode);
    *pNode = (SNode*)res;
  }

  return DEAL_RES_CONTINUE;
}

D
dapan1121 已提交
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
EDealRes sclAggFuncWalker(SNode* pNode, void* pContext) {
  if (QUERY_NODE_FUNCTION == nodeType(pNode)) {
    SFunctionNode* pFunc = (SFunctionNode*)pNode;
    *(bool*)pContext = fmIsAggFunc(pFunc->funcId);
    if (*(bool*)pContext) {
      return DEAL_RES_END;
    }
  }

  return DEAL_RES_CONTINUE;
}


bool sclContainsAggFuncNode(SNode* pNode) {
  bool aggFunc = false;
  nodesWalkExpr(pNode, sclAggFuncWalker, (void *)&aggFunc);
  return aggFunc;
}
D
dapan1121 已提交
637

D
dapan 已提交
638
EDealRes sclRewriteNonConstOperator(SNode** pNode, SScalarCtx *ctx) {
D
dapan1121 已提交
639
  SOperatorNode *node = (SOperatorNode *)*pNode;
D
dapan1121 已提交
640
  int32_t code = 0;
D
dapan1121 已提交
641 642 643

  if (node->pLeft && (QUERY_NODE_VALUE == nodeType(node->pLeft))) {
    SValueNode *valueNode = (SValueNode *)node->pLeft;
G
Ganlin Zhao 已提交
644
    if (SCL_IS_NULL_VALUE_NODE(valueNode) && (node->opType != OP_TYPE_IS_NULL && node->opType != OP_TYPE_IS_NOT_NULL)
D
dapan1121 已提交
645 646
        && (!sclContainsAggFuncNode(node->pRight))) {
      return sclRewriteNullInOptr(pNode, ctx, node->opType);
D
dapan1121 已提交
647
    }
D
dapan 已提交
648

G
Ganlin Zhao 已提交
649
    if (IS_STR_DATA_TYPE(valueNode->node.resType.type) && node->pRight && nodesIsExprNode(node->pRight)
D
dapan 已提交
650
      && ((SExprNode*)node->pRight)->resType.type == TSDB_DATA_TYPE_TIMESTAMP) {
D
dapan1121 已提交
651 652 653 654 655
      code = sclConvertToTsValueNode(((SExprNode*)node->pRight)->resType.precision, valueNode);
      if (code) {
        ctx->code = code;
        return DEAL_RES_ERROR;
      }
D
dapan 已提交
656
    }
D
dapan1121 已提交
657 658 659 660
  }

  if (node->pRight && (QUERY_NODE_VALUE == nodeType(node->pRight))) {
    SValueNode *valueNode = (SValueNode *)node->pRight;
D
dapan1121 已提交
661 662 663
    if (SCL_IS_NULL_VALUE_NODE(valueNode) && (node->opType != OP_TYPE_IS_NULL && node->opType != OP_TYPE_IS_NOT_NULL)
       && (!sclContainsAggFuncNode(node->pLeft))) {
      return sclRewriteNullInOptr(pNode, ctx, node->opType);
D
dapan1121 已提交
664
    }
D
dapan 已提交
665

G
Ganlin Zhao 已提交
666
    if (IS_STR_DATA_TYPE(valueNode->node.resType.type) && node->pLeft && nodesIsExprNode(node->pLeft)
D
dapan 已提交
667
      && ((SExprNode*)node->pLeft)->resType.type == TSDB_DATA_TYPE_TIMESTAMP) {
D
dapan1121 已提交
668 669 670 671 672
      code = sclConvertToTsValueNode(((SExprNode*)node->pLeft)->resType.precision, valueNode);
      if (code) {
        ctx->code = code;
        return DEAL_RES_ERROR;
      }
D
dapan 已提交
673
    }
D
dapan1121 已提交
674 675 676 677 678 679 680 681 682 683 684
  }

  if (node->pRight && (QUERY_NODE_NODE_LIST == nodeType(node->pRight))) {
    SNodeListNode *listNode = (SNodeListNode *)node->pRight;
    SNode* tnode = NULL;
    WHERE_EACH(tnode, listNode->pNodeList) {
      if (SCL_IS_NULL_VALUE_NODE(tnode)) {
        if (node->opType == OP_TYPE_IN) {
          ERASE_NODE(listNode->pNodeList);
          continue;
        } else { //OP_TYPE_NOT_IN
D
dapan1121 已提交
685
          return sclRewriteNullInOptr(pNode, ctx, node->opType);
D
dapan1121 已提交
686 687 688 689 690 691 692
        }
      }

      WHERE_NEXT;
    }

    if (listNode->pNodeList->length <= 0) {
D
dapan1121 已提交
693
      return sclRewriteNullInOptr(pNode, ctx, node->opType);
D
dapan1121 已提交
694 695 696 697 698 699
    }
  }

  return DEAL_RES_CONTINUE;
}

D
dapan 已提交
700
EDealRes sclRewriteFunction(SNode** pNode, SScalarCtx *ctx) {
D
dapan1121 已提交
701
  SFunctionNode *node = (SFunctionNode *)*pNode;
D
dapan1121 已提交
702
  SNode* tnode = NULL;
703
  if (!fmIsScalarFunc(node->funcId) && (!ctx->dual)) {
G
Ganlin Zhao 已提交
704 705
    return DEAL_RES_CONTINUE;
  }
706

D
dapan1121 已提交
707 708 709 710 711 712
  FOREACH(tnode, node->pParameterList) {
    if (!SCL_IS_CONST_NODE(tnode)) {
      return DEAL_RES_CONTINUE;
    }
  }

D
dapan1121 已提交
713
  SScalarParam output = {0};
714

715
  ctx->code = sclExecFunction(node, ctx, &output);
D
dapan 已提交
716
  if (ctx->code) {
D
dapan1121 已提交
717 718 719
    return DEAL_RES_ERROR;
  }

D
dapan1121 已提交
720
  SValueNode *res = (SValueNode *)nodesMakeNode(QUERY_NODE_VALUE);
D
dapan1121 已提交
721 722
  if (NULL == res) {
    sclError("make value node failed");
D
dapan1121 已提交
723
    sclFreeParam(&output);
D
dapan 已提交
724
    ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
D
dapan1121 已提交
725 726 727
    return DEAL_RES_ERROR;
  }

728 729
  res->translate = true;

730
  if (colDataIsNull_s(output.columnData, 0)) {
731 732 733
    res->isNull = true;
    //res->node.resType.type = TSDB_DATA_TYPE_NULL;
    //res->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_NULL].bytes;
D
dapan1121 已提交
734
  } else {
D
dapan1121 已提交
735 736 737 738
    res->node.resType.type = output.columnData->info.type;
    res->node.resType.bytes = output.columnData->info.bytes;
    res->node.resType.scale = output.columnData->info.scale;
    res->node.resType.precision = output.columnData->info.precision;
739
    int32_t type = output.columnData->info.type;
wmmhello's avatar
wmmhello 已提交
740 741 742 743 744
    if (type == TSDB_DATA_TYPE_JSON){
      int32_t len = getJsonValueLen(output.columnData->pData);
      res->datum.p = taosMemoryCalloc(len, 1);
      memcpy(res->datum.p, output.columnData->pData, len);
    } else if (IS_VAR_DATA_TYPE(type)) {
745
      res->datum.p = taosMemoryCalloc(res->node.resType.bytes + VARSTR_HEADER_SIZE + 1, 1);
746
      memcpy(res->datum.p, output.columnData->pData, varDataTLen(output.columnData->pData));
747
    } else {
D
dapan1121 已提交
748
      nodesSetValueNodeValue(res, output.columnData->pData);
749
    }
D
dapan1121 已提交
750
  }
751

D
dapan1121 已提交
752 753 754
  nodesDestroyNode(*pNode);
  *pNode = (SNode*)res;

D
dapan1121 已提交
755
  sclFreeParam(&output);
D
dapan1121 已提交
756 757 758
  return DEAL_RES_CONTINUE;
}

D
dapan 已提交
759
EDealRes sclRewriteLogic(SNode** pNode, SScalarCtx *ctx) {
D
dapan1121 已提交
760 761
  SLogicConditionNode *node = (SLogicConditionNode *)*pNode;

H
Haojun Liao 已提交
762
  SScalarParam output = {0};
D
dapan 已提交
763 764
  ctx->code = sclExecLogic(node, ctx, &output);
  if (ctx->code) {
D
dapan1121 已提交
765 766 767
    return DEAL_RES_ERROR;
  }

D
dapan1121 已提交
768 769 770 771
  if (0 == output.numOfRows) {
    return DEAL_RES_CONTINUE;
  }

D
dapan1121 已提交
772
  SValueNode *res = (SValueNode *)nodesMakeNode(QUERY_NODE_VALUE);
D
dapan1121 已提交
773 774
  if (NULL == res) {
    sclError("make value node failed");
775
    sclFreeParam(&output);
D
dapan 已提交
776
    ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
D
dapan1121 已提交
777 778 779 780
    return DEAL_RES_ERROR;
  }

  res->node.resType = node->node.resType;
781
  res->translate = true;
D
dapan1121 已提交
782

783 784 785 786
  int32_t type = output.columnData->info.type;
  if (IS_VAR_DATA_TYPE(type)) {
    res->datum.p = output.columnData->pData;
    output.columnData->pData = NULL;
D
dapan1121 已提交
787
  } else {
D
dapan1121 已提交
788
    nodesSetValueNodeValue(res, output.columnData->pData);
D
dapan1121 已提交
789
  }
D
dapan1121 已提交
790 791 792 793

  nodesDestroyNode(*pNode);
  *pNode = (SNode*)res;

D
dapan1121 已提交
794
  sclFreeParam(&output);
D
dapan1121 已提交
795 796 797
  return DEAL_RES_CONTINUE;
}

D
dapan 已提交
798
EDealRes sclRewriteOperator(SNode** pNode, SScalarCtx *ctx) {
D
dapan1121 已提交
799
  SOperatorNode *node = (SOperatorNode *)*pNode;
D
dapan1121 已提交
800

D
dapan1121 已提交
801
  if ((!SCL_IS_CONST_NODE(node->pLeft)) || (!SCL_IS_CONST_NODE(node->pRight))) {
D
dapan 已提交
802
    return sclRewriteNonConstOperator(pNode, ctx);
D
dapan1121 已提交
803 804
  }

H
Haojun Liao 已提交
805
  SScalarParam output = {0};
D
dapan 已提交
806 807
  ctx->code = sclExecOperator(node, ctx, &output);
  if (ctx->code) {
D
dapan1121 已提交
808 809 810
    return DEAL_RES_ERROR;
  }

D
dapan1121 已提交
811
  SValueNode *res = (SValueNode *)nodesMakeNode(QUERY_NODE_VALUE);
D
dapan1121 已提交
812
  if (NULL == res) {
813 814
    sclError("make value node failed");
    sclFreeParam(&output);
D
dapan 已提交
815
    ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
D
dapan1121 已提交
816 817 818
    return DEAL_RES_ERROR;
  }

819
  res->translate = true;
D
dapan1121 已提交
820

821
  if (colDataIsNull_s(output.columnData, 0)) {
wmmhello's avatar
wmmhello 已提交
822 823
    if(node->node.resType.type != TSDB_DATA_TYPE_JSON){
      res->node.resType.type = TSDB_DATA_TYPE_NULL;
D
dapan1121 已提交
824
      res->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_NULL].bytes;
wmmhello's avatar
wmmhello 已提交
825 826 827 828
    }else{
      res->node.resType = node->node.resType;
      res->isNull = true;
    }
D
dapan1121 已提交
829
  } else {
830 831 832 833 834 835
    res->node.resType = node->node.resType;
    int32_t type = output.columnData->info.type;
    if (IS_VAR_DATA_TYPE(type)) {  // todo refactor
      res->datum.p = output.columnData->pData;
      output.columnData->pData = NULL;
    } else {
G
Ganlin Zhao 已提交
836
      nodesSetValueNodeValue(res, output.columnData->pData);
837
    }
D
dapan1121 已提交
838
  }
D
dapan1121 已提交
839 840 841 842

  nodesDestroyNode(*pNode);
  *pNode = (SNode*)res;

H
Haojun Liao 已提交
843
  sclFreeParam(&output);
D
dapan1121 已提交
844 845 846 847
  return DEAL_RES_CONTINUE;
}

EDealRes sclConstantsRewriter(SNode** pNode, void* pContext) {
D
dapan 已提交
848 849
  SScalarCtx *ctx = (SScalarCtx *)pContext;

D
dapan1121 已提交
850
  if (QUERY_NODE_FUNCTION == nodeType(*pNode)) {
D
dapan 已提交
851
    return sclRewriteFunction(pNode, ctx);
D
dapan1121 已提交
852 853 854
  }

  if (QUERY_NODE_LOGIC_CONDITION == nodeType(*pNode)) {
D
dapan 已提交
855
    return sclRewriteLogic(pNode, ctx);
D
dapan1121 已提交
856 857
  }

D
dapan1121 已提交
858
  if (QUERY_NODE_OPERATOR == nodeType(*pNode)) {
D
dapan 已提交
859
    return sclRewriteOperator(pNode, ctx);
860
  }
861 862

  return DEAL_RES_CONTINUE;
D
dapan1121 已提交
863 864
}

D
dapan 已提交
865
EDealRes sclWalkFunction(SNode* pNode, SScalarCtx *ctx) {
D
dapan1121 已提交
866
  SFunctionNode *node = (SFunctionNode *)pNode;
D
dapan1121 已提交
867
  SScalarParam output = {0};
868

869
  ctx->code = sclExecFunction(node, ctx, &output);
D
dapan1121 已提交
870 871
  if (ctx->code) {
    return DEAL_RES_ERROR;
D
dapan1121 已提交
872 873
  }

874
  output.type = DELEGATED_MGMT_COLDATA;
D
dapan1121 已提交
875
  if (taosHashPut(ctx->pRes, &pNode, POINTER_BYTES, &output, sizeof(output))) {
D
dapan1121 已提交
876 877
    ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
    return DEAL_RES_ERROR;
D
dapan1121 已提交
878 879
  }

D
dapan1121 已提交
880 881 882
  return DEAL_RES_CONTINUE;
}

D
dapan 已提交
883
EDealRes sclWalkLogic(SNode* pNode, SScalarCtx *ctx) {
D
dapan1121 已提交
884
  SLogicConditionNode *node = (SLogicConditionNode *)pNode;
D
dapan1121 已提交
885
  SScalarParam output = {0};
886

D
dapan1121 已提交
887 888 889
  ctx->code = sclExecLogic(node, ctx, &output);
  if (ctx->code) {
    return DEAL_RES_ERROR;
D
dapan1121 已提交
890 891
  }

D
dapan1121 已提交
892
  if (taosHashPut(ctx->pRes, &pNode, POINTER_BYTES, &output, sizeof(output))) {
D
dapan1121 已提交
893
    ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
D
dapan1121 已提交
894
    return DEAL_RES_ERROR;
D
dapan1121 已提交
895 896 897 898 899
  }

  return DEAL_RES_CONTINUE;
}

D
dapan 已提交
900
EDealRes sclWalkOperator(SNode* pNode, SScalarCtx *ctx) {
D
dapan1121 已提交
901
  SOperatorNode *node = (SOperatorNode *)pNode;
D
dapan1121 已提交
902
  SScalarParam output = {0};
G
Ganlin Zhao 已提交
903

D
dapan1121 已提交
904 905
  ctx->code = sclExecOperator(node, ctx, &output);
  if (ctx->code) {
D
dapan1121 已提交
906 907
    return DEAL_RES_ERROR;
  }
D
dapan1121 已提交
908

909
  output.type = DELEGATED_MGMT_COLDATA;
D
dapan1121 已提交
910
  if (taosHashPut(ctx->pRes, &pNode, POINTER_BYTES, &output, sizeof(output))) {
D
dapan1121 已提交
911
    ctx->code = TSDB_CODE_QRY_OUT_OF_MEMORY;
D
dapan1121 已提交
912 913 914
    return DEAL_RES_ERROR;
  }

D
dapan1121 已提交
915 916 917
  return DEAL_RES_CONTINUE;
}

918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
EDealRes sclWalkTarget(SNode* pNode, SScalarCtx *ctx) {
  STargetNode *target = (STargetNode *)pNode;

  if (target->dataBlockId >= taosArrayGetSize(ctx->pBlockList)) {
    sclError("target tupleId is too big, tupleId:%d, dataBlockNum:%d", target->dataBlockId, (int32_t)taosArrayGetSize(ctx->pBlockList));
    ctx->code = TSDB_CODE_QRY_INVALID_INPUT;
    return DEAL_RES_ERROR;
  }

  int32_t index = -1;
  for(int32_t i = 0; i < taosArrayGetSize(ctx->pBlockList); ++i) {
    SSDataBlock* pb = taosArrayGetP(ctx->pBlockList, i);
    if (pb->info.blockId == target->dataBlockId) {
      index = i;
      break;
    }
  }

  if (index == -1) {
    sclError("column tupleId is too big, tupleId:%d, dataBlockNum:%d", target->dataBlockId, (int32_t)taosArrayGetSize(ctx->pBlockList));
    ctx->code = TSDB_CODE_QRY_INVALID_INPUT;
    return DEAL_RES_ERROR;
  }

  SSDataBlock *block = *(SSDataBlock **)taosArrayGet(ctx->pBlockList, index);

  if (target->slotId >= taosArrayGetSize(block->pDataBlock)) {
    sclError("target slot not exist, dataBlockId:%d, slotId:%d, dataBlockNum:%d", target->dataBlockId, target->slotId, (int32_t)taosArrayGetSize(block->pDataBlock));
    ctx->code = TSDB_CODE_QRY_INVALID_INPUT;
    return DEAL_RES_ERROR;
  }

  // if block->pDataBlock is not enough, there are problems if target->slotId bigger than the size of block->pDataBlock,
  SColumnInfoData *col = taosArrayGet(block->pDataBlock, target->slotId);

  SScalarParam *res = (SScalarParam *)taosHashGet(ctx->pRes, (void *)&target->pExpr, POINTER_BYTES);
  if (NULL == res) {
    sclError("no valid res in hash, node:%p, type:%d", target->pExpr, nodeType(target->pExpr));
    ctx->code = TSDB_CODE_QRY_APP_ERROR;
    return DEAL_RES_ERROR;
  }

960
  colDataAssign(col, res->columnData, res->numOfRows, NULL);
961 962 963 964 965 966
  block->info.rows = res->numOfRows;

  sclFreeParam(res);
  taosHashRemove(ctx->pRes, (void *)&target->pExpr, POINTER_BYTES);
  return DEAL_RES_CONTINUE;
}
D
dapan 已提交
967

D
dapan1121 已提交
968
EDealRes sclCalcWalker(SNode* pNode, void* pContext) {
D
dapan1121 已提交
969
  if (QUERY_NODE_VALUE == nodeType(pNode) || QUERY_NODE_NODE_LIST == nodeType(pNode) || QUERY_NODE_COLUMN == nodeType(pNode)|| QUERY_NODE_LEFT_VALUE == nodeType(pNode)) {
D
dapan1121 已提交
970
    return DEAL_RES_CONTINUE;
D
dapan1121 已提交
971
  }
D
dapan 已提交
972 973

  SScalarCtx *ctx = (SScalarCtx *)pContext;
D
dapan1121 已提交
974
  if (QUERY_NODE_FUNCTION == nodeType(pNode)) {
D
dapan 已提交
975
    return sclWalkFunction(pNode, ctx);
D
dapan1121 已提交
976
  }
D
dapan1121 已提交
977

D
dapan1121 已提交
978
  if (QUERY_NODE_LOGIC_CONDITION == nodeType(pNode)) {
D
dapan 已提交
979
    return sclWalkLogic(pNode, ctx);
D
dapan1121 已提交
980
  }
D
dapan1121 已提交
981

D
dapan1121 已提交
982
  if (QUERY_NODE_OPERATOR == nodeType(pNode)) {
D
dapan 已提交
983
    return sclWalkOperator(pNode, ctx);
D
dapan1121 已提交
984
  }
D
dapan1121 已提交
985

986 987 988
  if (QUERY_NODE_TARGET == nodeType(pNode)) {
    return sclWalkTarget(pNode, ctx);
  }
D
dapan1121 已提交
989

D
dapan 已提交
990
  sclError("invalid node type for scalar calculating, type:%d", nodeType(pNode));
D
dapan1121 已提交
991 992
  ctx->code = TSDB_CODE_QRY_INVALID_INPUT;
  return DEAL_RES_ERROR;
D
dapan1121 已提交
993 994
}

D
dapan1121 已提交
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
int32_t sclExtendResRows(SScalarParam *pDst, SScalarParam *pSrc, SArray *pBlockList) {
  SSDataBlock* pb = taosArrayGetP(pBlockList, 0);
  SScalarParam *pLeft = taosMemoryCalloc(1, sizeof(SScalarParam));
  if (NULL == pLeft) {
    sclError("calloc %d failed", (int32_t)sizeof(SScalarParam));
    SCL_ERR_RET(TSDB_CODE_QRY_OUT_OF_MEMORY);
  }

  pLeft->numOfRows = pb->info.rows;
  colInfoDataEnsureCapacity(pDst->columnData, pb->info.rows);

  _bin_scalar_fn_t OperatorFn = getBinScalarOperatorFn(OP_TYPE_ASSIGN);
  OperatorFn(pLeft, pSrc, pDst, TSDB_ORDER_ASC);

  taosMemoryFree(pLeft);

  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
1014
int32_t sclCalcConstants(SNode *pNode, bool dual, SNode **pRes) {
D
dapan1121 已提交
1015 1016 1017 1018 1019
  if (NULL == pNode) {
    SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
  }

  int32_t code = 0;
D
dapan 已提交
1020
  SScalarCtx ctx = {0};
D
dapan1121 已提交
1021
  ctx.dual = dual;
1022
  ctx.pRes = taosHashInit(SCL_DEFAULT_OP_NUM, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_NO_LOCK);
D
dapan 已提交
1023
  if (NULL == ctx.pRes) {
1024
    sclError("taosHashInit failed, num:%d", SCL_DEFAULT_OP_NUM);
D
dapan 已提交
1025 1026
    SCL_ERR_RET(TSDB_CODE_QRY_OUT_OF_MEMORY);
  }
G
Ganlin Zhao 已提交
1027

X
Xiaoyu Wang 已提交
1028
  nodesRewriteExprPostOrder(&pNode, sclConstantsRewriter, (void *)&ctx);
D
dapan 已提交
1029
  SCL_ERR_JRET(ctx.code);
D
dapan1121 已提交
1030 1031
  *pRes = pNode;

D
dapan 已提交
1032
_return:
1033

D
dapan 已提交
1034 1035
  sclFreeRes(ctx.pRes);
  return code;
D
dapan1121 已提交
1036
}
D
dapan1121 已提交
1037

D
dapan1121 已提交
1038
static int32_t sclGetMinusOperatorResType(SOperatorNode* pOp) {
1039 1040 1041 1042 1043 1044 1045 1046
  if (!IS_MATHABLE_TYPE(((SExprNode*)(pOp->pLeft))->resType.type)) {
    return TSDB_CODE_TSC_INVALID_OPERATION;
  }
  pOp->node.resType.type = TSDB_DATA_TYPE_DOUBLE;
  pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_DOUBLE].bytes;
  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
1047
static int32_t sclGetMathOperatorResType(SOperatorNode* pOp) {
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
  SDataType ldt = ((SExprNode*)(pOp->pLeft))->resType;
  SDataType rdt = ((SExprNode*)(pOp->pRight))->resType;
  if ((TSDB_DATA_TYPE_TIMESTAMP == ldt.type && TSDB_DATA_TYPE_TIMESTAMP == rdt.type) ||
      (TSDB_DATA_TYPE_TIMESTAMP == ldt.type && (IS_VAR_DATA_TYPE(rdt.type) || IS_FLOAT_TYPE(rdt.type))) ||
      (TSDB_DATA_TYPE_TIMESTAMP == rdt.type && (IS_VAR_DATA_TYPE(ldt.type) || IS_FLOAT_TYPE(ldt.type)))) {
    return TSDB_CODE_TSC_INVALID_OPERATION;
  }

  if ((TSDB_DATA_TYPE_TIMESTAMP == ldt.type && IS_INTEGER_TYPE(rdt.type)) ||
      (TSDB_DATA_TYPE_TIMESTAMP == rdt.type && IS_INTEGER_TYPE(ldt.type)) ||
      (TSDB_DATA_TYPE_TIMESTAMP == ldt.type && TSDB_DATA_TYPE_BOOL == rdt.type) ||
      (TSDB_DATA_TYPE_TIMESTAMP == rdt.type && TSDB_DATA_TYPE_BOOL == ldt.type)) {
    pOp->node.resType.type = TSDB_DATA_TYPE_TIMESTAMP;
    pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_TIMESTAMP].bytes;
  } else {
    pOp->node.resType.type = TSDB_DATA_TYPE_DOUBLE;
    pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_DOUBLE].bytes;
  }
  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
1069
static int32_t sclGetCompOperatorResType(SOperatorNode* pOp) {
1070
  SDataType ldt = ((SExprNode*)(pOp->pLeft))->resType;
1071 1072 1073
  if (OP_TYPE_IN == pOp->opType || OP_TYPE_NOT_IN == pOp->opType) {
    ((SExprNode*)(pOp->pRight))->resType = ldt;
  } else if (nodesIsRegularOp(pOp)) {
1074
    SDataType rdt = ((SExprNode*)(pOp->pRight))->resType;
1075 1076 1077
    if (!IS_VAR_DATA_TYPE(ldt.type) || QUERY_NODE_VALUE != nodeType(pOp->pRight) ||
        (!IS_STR_DATA_TYPE(rdt.type) && (rdt.type != TSDB_DATA_TYPE_NULL))) {
      return TSDB_CODE_TSC_INVALID_OPERATION;
1078 1079 1080 1081 1082 1083 1084
    }
  }
  pOp->node.resType.type = TSDB_DATA_TYPE_BOOL;
  pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_BOOL].bytes;
  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
1085
static int32_t sclGetJsonOperatorResType(SOperatorNode* pOp) {
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
  SDataType ldt = ((SExprNode*)(pOp->pLeft))->resType;
  SDataType rdt = ((SExprNode*)(pOp->pRight))->resType;
  if (TSDB_DATA_TYPE_JSON != ldt.type || !IS_STR_DATA_TYPE(rdt.type)) {
    return TSDB_CODE_TSC_INVALID_OPERATION;
  }
  if (pOp->opType == OP_TYPE_JSON_GET_VALUE) {
    pOp->node.resType.type = TSDB_DATA_TYPE_JSON;
  } else if (pOp->opType == OP_TYPE_JSON_CONTAINS) {
    pOp->node.resType.type = TSDB_DATA_TYPE_BOOL;
  }
  pOp->node.resType.bytes = tDataTypes[pOp->node.resType.type].bytes;
  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
1100
static int32_t sclGetBitwiseOperatorResType(SOperatorNode* pOp) {
1101 1102 1103 1104 1105
  pOp->node.resType.type = TSDB_DATA_TYPE_BIGINT;
  pOp->node.resType.bytes = tDataTypes[TSDB_DATA_TYPE_BIGINT].bytes;
  return TSDB_CODE_SUCCESS;
}

D
dapan1121 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128

int32_t scalarCalculateConstants(SNode *pNode, SNode **pRes) {
  return sclCalcConstants(pNode, false, pRes);
}

int32_t scalarCalculateConstantsFromDual(SNode *pNode, SNode **pRes) {
  return sclCalcConstants(pNode, true, pRes);
}

int32_t scalarCalculate(SNode *pNode, SArray *pBlockList, SScalarParam *pDst) {
  if (NULL == pNode || NULL == pBlockList) {
    SCL_ERR_RET(TSDB_CODE_QRY_INVALID_INPUT);
  }

  int32_t code = 0;
  SScalarCtx ctx = {.code = 0, .pBlockList = pBlockList, .param = pDst ? pDst->param : NULL};

  // TODO: OPT performance
  ctx.pRes = taosHashInit(SCL_DEFAULT_OP_NUM, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_NO_LOCK);
  if (NULL == ctx.pRes) {
    sclError("taosHashInit failed, num:%d", SCL_DEFAULT_OP_NUM);
    SCL_ERR_RET(TSDB_CODE_QRY_OUT_OF_MEMORY);
  }
1129

D
dapan1121 已提交
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
  nodesWalkExprPostOrder(pNode, sclCalcWalker, (void *)&ctx);
  SCL_ERR_JRET(ctx.code);

  if (pDst) {
    SScalarParam *res = (SScalarParam *)taosHashGet(ctx.pRes, (void *)&pNode, POINTER_BYTES);
    if (NULL == res) {
      sclError("no valid res in hash, node:%p, type:%d", pNode, nodeType(pNode));
      SCL_ERR_JRET(TSDB_CODE_QRY_APP_ERROR);
    }

    if (1 == res->numOfRows) {
      SCL_ERR_JRET(sclExtendResRows(pDst, res, pBlockList));
    } else {
      colInfoDataEnsureCapacity(pDst->columnData, res->numOfRows);
      colDataAssign(pDst->columnData, res->columnData, res->numOfRows, NULL);
      pDst->numOfRows = res->numOfRows;
    }

    sclFreeParam(res);
    taosHashRemove(ctx.pRes, (void *)&pNode, POINTER_BYTES);
  }

_return:
  //nodesDestroyNode(pNode);
  sclFreeRes(ctx.pRes);
  return code;
}

1158 1159 1160 1161 1162 1163 1164 1165
int32_t scalarGetOperatorResultType(SOperatorNode* pOp) {
  if (TSDB_DATA_TYPE_BLOB == ((SExprNode*)(pOp->pLeft))->resType.type ||
      (NULL != pOp->pRight && TSDB_DATA_TYPE_BLOB == ((SExprNode*)(pOp->pRight))->resType.type)) {
    return TSDB_CODE_TSC_INVALID_OPERATION;
  }

  switch (pOp->opType) {
    case OP_TYPE_ADD:
D
dapan1121 已提交
1166 1167 1168 1169
    case OP_TYPE_SUB:
    case OP_TYPE_MULTI:
    case OP_TYPE_DIV:
    case OP_TYPE_REM:
D
dapan1121 已提交
1170
      return sclGetMathOperatorResType(pOp);
D
dapan1121 已提交
1171
    case OP_TYPE_MINUS:
D
dapan1121 已提交
1172
      return sclGetMinusOperatorResType(pOp);
1173 1174 1175 1176 1177
    case OP_TYPE_ASSIGN:
      pOp->node.resType = ((SExprNode*)(pOp->pLeft))->resType;
      break;
    case OP_TYPE_BIT_AND:
    case OP_TYPE_BIT_OR:
D
dapan1121 已提交
1178
      return sclGetBitwiseOperatorResType(pOp);
D
dapan1121 已提交
1179 1180 1181 1182 1183 1184
    case OP_TYPE_GREATER_THAN:
    case OP_TYPE_GREATER_EQUAL:
    case OP_TYPE_LOWER_THAN:
    case OP_TYPE_LOWER_EQUAL:
    case OP_TYPE_EQUAL:
    case OP_TYPE_NOT_EQUAL:
1185 1186 1187 1188 1189 1190 1191 1192
    case OP_TYPE_IS_NULL:
    case OP_TYPE_IS_NOT_NULL:
    case OP_TYPE_IS_TRUE:
    case OP_TYPE_IS_FALSE:
    case OP_TYPE_IS_UNKNOWN:
    case OP_TYPE_IS_NOT_TRUE:
    case OP_TYPE_IS_NOT_FALSE:
    case OP_TYPE_IS_NOT_UNKNOWN:
D
dapan1121 已提交
1193 1194 1195 1196
    case OP_TYPE_LIKE:
    case OP_TYPE_NOT_LIKE:
    case OP_TYPE_MATCH:
    case OP_TYPE_NMATCH:
1197 1198
    case OP_TYPE_IN:
    case OP_TYPE_NOT_IN:
D
dapan1121 已提交
1199
      return sclGetCompOperatorResType(pOp);
D
dapan1121 已提交
1200
    case OP_TYPE_JSON_GET_VALUE:
1201
    case OP_TYPE_JSON_CONTAINS:
D
dapan1121 已提交
1202
      return sclGetJsonOperatorResType(pOp);
D
dapan1121 已提交
1203
    default:
1204
      break;
D
dapan1121 已提交
1205 1206
  }

1207 1208
  return TSDB_CODE_SUCCESS;
}