parser.c 6.8 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
 */

16
#include "astGenerator.h"
17
#include "parserInt.h"
18
#include "parserUtil.h"
19
#include "ttoken.h"
20
#include "function.h"
21
#include "insertParser.h"
22

X
Xiaoyu Wang 已提交
23
bool isInsertSql(const char* pStr, size_t length) {
24 25 26
  int32_t index = 0;

  do {
27
    SToken t0 = tStrGetToken((char*) pStr, &index, false);
28 29 30 31
    if (t0.type != TK_LP) {
      return t0.type == TK_INSERT || t0.type == TK_IMPORT;
    }
  } while (1);
32 33
}

X
Xiaoyu Wang 已提交
34
bool qIsDdlQuery(const SQueryNode* pQuery) {
X
Xiaoyu Wang 已提交
35
  return TSDB_SQL_INSERT != pQuery->type && TSDB_SQL_SELECT != pQuery->type;
X
Xiaoyu Wang 已提交
36 37 38 39
}

int32_t parseQuerySql(SParseContext* pCxt, SQueryNode** pQuery) {
  SSqlInfo info = doGenerateAST(pCxt->pSql);
40
  if (!info.valid) {
X
Xiaoyu Wang 已提交
41
    strncpy(pCxt->pMsg, info.msg, pCxt->msgLen);
42
    terrno = TSDB_CODE_TSC_SQL_SYNTAX_ERROR;
43
    return terrno;
44 45
  }

46
  if (!isDqlSqlStatement(&info)) {
47
    SDclStmtInfo* pDcl = calloc(1, sizeof(SDclStmtInfo));
X
Xiaoyu Wang 已提交
48 49 50 51
    if (NULL == pDcl) {
      terrno = TSDB_CODE_TSC_OUT_OF_MEMORY; // set correct error code.
      return terrno;
    }
52

X
Xiaoyu Wang 已提交
53
    pDcl->nodeType = info.type;
X
Xiaoyu Wang 已提交
54
    int32_t code = qParserValidateDclSqlNode(&info, &pCxt->ctx, pDcl, pCxt->pMsg, pCxt->msgLen);
55
    if (code == TSDB_CODE_SUCCESS) {
X
Xiaoyu Wang 已提交
56
      *pQuery = (SQueryNode*)pDcl;
57 58
    }
  } else {
H
Haojun Liao 已提交
59 60
    SQueryStmtInfo* pQueryInfo = calloc(1, sizeof(SQueryStmtInfo));
    if (pQueryInfo == NULL) {
61
      terrno = TSDB_CODE_QRY_OUT_OF_MEMORY; // set correct error code.
H
Haojun Liao 已提交
62 63 64
      return terrno;
    }

65
    int32_t code = qParserValidateSqlNode(pCxt->ctx.pCatalog, &info, pQueryInfo, pCxt->ctx.requestId, pCxt->pMsg, pCxt->msgLen);
66
    if (code == TSDB_CODE_SUCCESS) {
X
Xiaoyu Wang 已提交
67
      *pQuery = (SQueryNode*)pQueryInfo;
68
    }
69 70
  }

H
Haojun Liao 已提交
71
  destroySqlInfo(&info);
72
  return TSDB_CODE_SUCCESS;
73 74
}

X
Xiaoyu Wang 已提交
75 76 77 78 79 80
int32_t qParseQuerySql(SParseContext* pCxt, SQueryNode** pQuery) {
  if (isInsertSql(pCxt->pSql, pCxt->sqlLen)) {
    return parseInsertSql(pCxt, (SInsertStmtInfo**)pQuery);
  } else {
    return parseQuerySql(pCxt, pQuery);
  }
81 82 83 84 85 86
}

int32_t qParserConvertSql(const char* pStr, size_t length, char** pConvertSql) {
  return 0;
}

87
static int32_t getTableNameFromSqlNode(SSqlNode* pSqlNode, SArray* tableNameList, SMsgBuf* pMsgBuf);
88 89 90 91 92

static int32_t tnameComparFn(const void* p1, const void* p2) {
  SName* pn1 = (SName*)p1;
  SName* pn2 = (SName*)p2;

H
Haojun Liao 已提交
93
  int32_t ret = pn1->acctId - pn2->acctId;
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  if (ret != 0) {
    return ret > 0? 1:-1;
  } else {
    ret = strncmp(pn1->dbname, pn2->dbname, tListLen(pn1->dbname));
    if (ret != 0) {
      return ret > 0? 1:-1;
    } else {
      ret = strncmp(pn1->tname, pn2->tname, tListLen(pn1->tname));
      if (ret != 0) {
        return ret > 0? 1:-1;
      } else {
        return 0;
      }
    }
  }
}

111
static int32_t getTableNameFromSubquery(SSqlNode* pSqlNode, SArray* tableNameList, SMsgBuf* pMsgBuf) {
112 113 114
  int32_t numOfSub = (int32_t)taosArrayGetSize(pSqlNode->from->list);

  for (int32_t j = 0; j < numOfSub; ++j) {
115
    SRelElement* sub = taosArrayGet(pSqlNode->from->list, j);
116

117
    int32_t num = (int32_t)taosArrayGetSize(sub->pSubquery->node);
118
    for (int32_t i = 0; i < num; ++i) {
119 120
      SSqlNode* p = taosArrayGetP(sub->pSubquery->node, i);
      if (p->from->type == SQL_FROM_NODE_TABLES) {
121
        int32_t code = getTableNameFromSqlNode(p, tableNameList, pMsgBuf);
122 123 124 125
        if (code != TSDB_CODE_SUCCESS) {
          return code;
        }
      } else {
126
        getTableNameFromSubquery(p, tableNameList, pMsgBuf);
127 128 129 130 131 132 133
      }
    }
  }

  return TSDB_CODE_SUCCESS;
}

134
int32_t getTableNameFromSqlNode(SSqlNode* pSqlNode, SArray* tableNameList, SMsgBuf* pMsgBuf) {
135 136 137
  const char* msg1 = "invalid table name";

  int32_t numOfTables = (int32_t) taosArrayGetSize(pSqlNode->from->list);
138
  assert(pSqlNode->from->type == SQL_FROM_NODE_TABLES);
139 140

  for(int32_t j = 0; j < numOfTables; ++j) {
141
    SRelElement* item = taosArrayGet(pSqlNode->from->list, j);
142 143

    SToken* t = &item->tableName;
144
    if (t->type == TK_INTEGER || t->type == TK_FLOAT || t->type == TK_STRING) {
145
      return buildInvalidOperationMsg(pMsgBuf, msg1);
146 147 148
    }

    if (parserValidateIdToken(t) != TSDB_CODE_SUCCESS) {
149
      return buildInvalidOperationMsg(pMsgBuf, msg1);
150 151 152
    }

    SName name = {0};
153
    strndequote(name.tname, t->z, t->n);
154 155 156 157 158 159
    taosArrayPush(tableNameList, &name);
  }

  return TSDB_CODE_SUCCESS;
}

160 161 162
static void freePtrElem(void* p) {
  tfree(*(char**)p);
}
163

D
dapan1121 已提交
164
int32_t qParserExtractRequestedMetaInfo(const SSqlInfo* pSqlInfo, SCatalogReq* pMetaInfo, char* msg, int32_t msgBufLen) {
165
  int32_t code  = TSDB_CODE_SUCCESS;
166
  SMsgBuf msgBuf = {.buf = msg, .len = msgBufLen};
167

168 169
  pMetaInfo->pTableName = taosArrayInit(4, sizeof(SName));
  pMetaInfo->pUdf = taosArrayInit(4, POINTER_BYTES);
170

171
  size_t size = taosArrayGetSize(pSqlInfo->sub.node);
172
  for (int32_t i = 0; i < size; ++i) {
173
    SSqlNode* pSqlNode = taosArrayGetP(pSqlInfo->sub.node, i);
174
    if (pSqlNode->from == NULL) {
175
      return buildInvalidOperationMsg(&msgBuf, "invalid from clause");
176 177
    }

178
    // load the table meta in the FROM clause
179
    if (pSqlNode->from->type == SQL_FROM_NODE_TABLES) {
180
      code = getTableNameFromSqlNode(pSqlNode, pMetaInfo->pTableName, &msgBuf);
181
      if (code != TSDB_CODE_SUCCESS) {
182
        return code;
183 184
      }
    } else {
185
      code = getTableNameFromSubquery(pSqlNode, pMetaInfo->pTableName, &msgBuf);
186
      if (code != TSDB_CODE_SUCCESS) {
187
        return code;
188 189 190 191
      }
    }
  }

192 193
  taosArraySort(pMetaInfo->pTableName, tnameComparFn);
  taosArrayRemoveDuplicate(pMetaInfo->pTableName, tnameComparFn, NULL);
194 195

  size_t funcSize = 0;
196 197
  if (pSqlInfo->funcs) {
    funcSize = taosArrayGetSize(pSqlInfo->funcs);
198 199 200 201
  }

  if (funcSize > 0) {
    for (size_t i = 0; i < funcSize; ++i) {
202 203
      SToken* t = taosArrayGet(pSqlInfo->funcs, i);
      assert(t != NULL);
204 205

      if (t->n >= TSDB_FUNC_NAME_LEN) {
206
        return buildSyntaxErrMsg(&msgBuf, "too long function name", t->z);
207 208
      }

209
      // Let's assume that it is an UDF/UDAF, if it is not a built-in function.
210 211
      bool scalarFunc = false;
      if (qIsBuiltinFunction(t->z, t->n, &scalarFunc) < 0) {
212 213
        char* fname = strndup(t->z, t->n);
        taosArrayPush(pMetaInfo->pUdf, &fname);
214 215 216
      }
    }
  }
217 218

  return code;
219 220
}

221
void qParserCleanupMetaRequestInfo(SCatalogReq* pMetaReq) {
222 223 224 225 226 227 228
  if (pMetaReq == NULL) {
    return;
  }

  taosArrayDestroy(pMetaReq->pTableName);
  taosArrayDestroy(pMetaReq->pUdf);
}
X
Xiaoyu Wang 已提交
229

L
Liu Jicong 已提交
230
void qDestroyQuery(SQueryNode* pQuery) {
X
Xiaoyu Wang 已提交
231 232
  // todo
}