parserInt.h 2.9 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _TD_PARSER_INT_H_
#define _TD_PARSER_INT_H_

#ifdef __cplusplus
extern "C" {
#endif

H
Haojun Liao 已提交
23 24
#include "catalog.h"
#include "tname.h"
25
#include "astGenerator.h"
H
Haojun Liao 已提交
26

27
struct SSqlNode;
H
Haojun Liao 已提交
28 29


30 31 32 33 34 35
typedef struct SInternalField {
  TAOS_FIELD      field;
  bool            visible;
  SExprInfo      *pExpr;
} SInternalField;

36 37 38 39 40
typedef struct SMsgBuf {
  int32_t len;
  char   *buf;
} SMsgBuf;

41 42 43 44 45 46 47 48
// create table operation type
enum TSQL_CREATE_TABLE_TYPE {
  TSQL_CREATE_TABLE  = 0x1,
  TSQL_CREATE_STABLE = 0x2,
  TSQL_CREATE_CTABLE = 0x3,
  TSQL_CREATE_STREAM = 0x4,
};

49 50 51 52
void clearTableMetaInfo(STableMetaInfo* pTableMetaInfo);

void clearAllTableMetaInfo(SQueryStmtInfo* pQueryInfo, bool removeMeta, uint64_t id);

H
Haojun Liao 已提交
53
/**
54 55 56 57 58 59 60
 * Validate the sql info, according to the corresponding metadata info from catalog.
 * @param pCatalog
 * @param pSqlInfo
 * @param pQueryInfo a bounded AST with essential meta data from local buffer or mgmt node
 * @param id
 * @param msg
 * @return
H
Haojun Liao 已提交
61
 */
62
int32_t qParserValidateSqlNode(struct SCatalog* pCatalog, SSqlInfo* pSqlInfo, SQueryStmtInfo* pQueryInfo, int64_t id, char* msg, int32_t msgLen);
H
Haojun Liao 已提交
63

64 65 66 67 68 69 70
/**
 * validate the ddl ast, and convert the ast to the corresponding message format
 * @param pSqlInfo
 * @param output
 * @param type
 * @return
 */
X
Xiaoyu Wang 已提交
71
int32_t qParserValidateDclSqlNode(SSqlInfo* pInfo, SParseBasicCtx* pCtx, SDclStmtInfo* pDcl, char* msgBuf, int32_t msgBufLen);
72

73
/**
74
 * Evaluate the numeric and timestamp arithmetic expression in the WHERE clause.
75 76 77 78 79 80
 * @param pNode
 * @param tsPrecision
 * @param msg
 * @param msgBufLen
 * @return
 */
81
int32_t evaluateSqlNode(SSqlNode* pNode, int32_t tsPrecision, SMsgBuf* pMsgBuf);
82

83
int32_t validateSqlNode(SSqlNode* pSqlNode, SQueryStmtInfo* pQueryInfo, SMsgBuf* pMsgBuf);
84

85 86 87
SQueryStmtInfo* createQueryInfo();

void destroyQueryInfo(SQueryStmtInfo* pQueryInfo);
88

89 90
int32_t checkForInvalidExpr(SQueryStmtInfo* pQueryInfo, SMsgBuf* pMsgBuf);

H
Haojun Liao 已提交
91
/**
92 93
 * Extract request meta info from the sql statement
 * @param pSqlInfo
H
Haojun Liao 已提交
94
 * @param pMetaInfo
95 96
 * @param msg
 * @param msgBufLen
H
Haojun Liao 已提交
97 98
 * @return
 */
D
dapan1121 已提交
99
int32_t qParserExtractRequestedMetaInfo(const SSqlInfo* pSqlInfo, SCatalogReq* pMetaInfo, char* msg, int32_t msgBufLen);
H
Haojun Liao 已提交
100

101 102 103 104
/**
 * Destroy the meta data request structure.
 * @param pMetaInfo
 */
105
void qParserCleanupMetaRequestInfo(SCatalogReq* pMetaInfo);
106

H
refact  
Hongze Cheng 已提交
107 108 109 110 111
#ifdef __cplusplus
}
#endif

#endif /*_TD_PARSER_INT_H_*/