parser.c 2.1 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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/>.
H
Haojun Liao 已提交
14 15
 */

X
Xiaoyu Wang 已提交
16
#include "parser.h"
X
Xiaoyu Wang 已提交
17
#include "os.h"
X
Xiaoyu Wang 已提交
18

X
Xiaoyu Wang 已提交
19 20
#include "parInt.h"
#include "parToken.h"
X
Xiaoyu Wang 已提交
21

D
stmt  
dapan1121 已提交
22 23 24 25
bool isInsertSql(const char* pStr, size_t length) {
  if (NULL == pStr) {
    return false;
  }
X
Xiaoyu Wang 已提交
26

X
Xiaoyu Wang 已提交
27 28 29
  int32_t index = 0;

  do {
X
Xiaoyu Wang 已提交
30
    SToken t0 = tStrGetToken((char*)pStr, &index, false);
31
    if (t0.type != TK_NK_LP) {
X
Xiaoyu Wang 已提交
32 33 34 35 36
      return t0.type == TK_INSERT || t0.type == TK_IMPORT;
    }
  } while (1);
}

X
Xiaoyu Wang 已提交
37
static int32_t parseSqlIntoAst(SParseContext* pCxt, SQuery** pQuery) {
X
Xiaoyu Wang 已提交
38
  int32_t code = parse(pCxt, pQuery);
X
Xiaoyu Wang 已提交
39
  if (TSDB_CODE_SUCCESS == code) {
X
Xiaoyu Wang 已提交
40 41 42 43
    code = translate(pCxt, *pQuery);
  }
  if (TSDB_CODE_SUCCESS == code) {
    code = calculateConstant(pCxt, *pQuery);
X
Xiaoyu Wang 已提交
44 45 46 47
  }
  return code;
}

X
Xiaoyu Wang 已提交
48
int32_t qParseQuerySql(SParseContext* pCxt, SQuery** pQuery) {
X
Xiaoyu Wang 已提交
49
  int32_t code = TSDB_CODE_SUCCESS;
X
Xiaoyu Wang 已提交
50
  if (isInsertSql(pCxt->pSql, pCxt->sqlLen)) {
X
Xiaoyu Wang 已提交
51
    code = parseInsertSql(pCxt, pQuery);
X
Xiaoyu Wang 已提交
52
  } else {
X
Xiaoyu Wang 已提交
53
    code = parseSqlIntoAst(pCxt, pQuery);
X
Xiaoyu Wang 已提交
54
  }
X
Xiaoyu Wang 已提交
55 56
  terrno = code;
  return code;
X
Xiaoyu Wang 已提交
57 58 59
}

void qDestroyQuery(SQuery* pQueryNode) {
X
Xiaoyu Wang 已提交
60 61 62 63
  if (NULL == pQueryNode) {
    return;
  }
  nodesDestroyNode(pQueryNode->pRoot);
wafwerar's avatar
wafwerar 已提交
64
  taosMemoryFreeClear(pQueryNode->pResSchema);
X
Xiaoyu Wang 已提交
65
  if (NULL != pQueryNode->pCmdMsg) {
wafwerar's avatar
wafwerar 已提交
66 67
    taosMemoryFreeClear(pQueryNode->pCmdMsg->pMsg);
    taosMemoryFreeClear(pQueryNode->pCmdMsg);
X
Xiaoyu Wang 已提交
68
  }
X
Xiaoyu Wang 已提交
69 70
  taosArrayDestroy(pQueryNode->pDbList);
  taosArrayDestroy(pQueryNode->pTableList);
wafwerar's avatar
wafwerar 已提交
71
  taosMemoryFreeClear(pQueryNode);
X
Xiaoyu Wang 已提交
72
}
73 74 75

int32_t qExtractResultSchema(const SNode* pRoot, int32_t* numOfCols, SSchema** pSchema) {
  return extractResultSchema(pRoot, numOfCols, pSchema);
D
stmt  
dapan1121 已提交
76
}