91 lines
3.3 KiB
C
91 lines
3.3 KiB
C
/*
|
|
* 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 TDENGINE_PARSERUTIL_H
|
|
#define TDENGINE_PARSERUTIL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "os.h"
|
|
#include "ttoken.h"
|
|
#include "parserInt.h"
|
|
|
|
#define UTIL_TABLE_IS_SUPER_TABLE(metaInfo) \
|
|
(((metaInfo)->pTableMeta != NULL) && ((metaInfo)->pTableMeta->tableType == TSDB_SUPER_TABLE))
|
|
|
|
#define UTIL_TABLE_IS_CHILD_TABLE(metaInfo) \
|
|
(((metaInfo)->pTableMeta != NULL) && ((metaInfo)->pTableMeta->tableType == TSDB_CHILD_TABLE))
|
|
|
|
#define UTIL_TABLE_IS_NORMAL_TABLE(metaInfo) \
|
|
(!(UTIL_TABLE_IS_SUPER_TABLE(metaInfo) || UTIL_TABLE_IS_CHILD_TABLE(metaInfo)))
|
|
|
|
#define UTIL_TABLE_IS_TMP_TABLE(metaInfo) \
|
|
(((metaInfo)->pTableMeta != NULL) && ((metaInfo)->pTableMeta->tableType == TSDB_TEMP_TABLE))
|
|
|
|
TAOS_FIELD createField(const SSchema* pSchema);
|
|
void setColumn(SColumn* pColumn, uint64_t uid, const char* tableName, int8_t flag, const SSchema* pSchema);
|
|
SColumn createColumn(uint64_t uid, const char* tableName, int8_t flag, const SSchema* pSchema);
|
|
|
|
SInternalField* insertFieldInfo(SFieldInfo* pFieldInfo, int32_t index, SSchema* field);
|
|
int32_t getNumOfFields(SFieldInfo* pFieldInfo);
|
|
SInternalField* getInternalField(SFieldInfo* pFieldInfo, int32_t index);
|
|
|
|
int32_t parserValidateIdToken(SToken* pToken);
|
|
int32_t parserValidatePassword(SToken* pToken, SMsgBuf* pMsgBuf);
|
|
int32_t parserValidateNameToken(SToken* pToken);
|
|
|
|
int32_t buildInvalidOperationMsg(SMsgBuf* pMsgBuf, const char* msg);
|
|
int32_t buildSyntaxErrMsg(SMsgBuf* pBuf, const char* additionalInfo, const char* sourceStr);
|
|
|
|
STableMetaInfo* addEmptyMetaInfo(SQueryStmtInfo* pQueryInfo);
|
|
|
|
void columnListCopyAll(SArray* dst, const SArray* src);
|
|
|
|
SColumn* columnListInsert(SArray* pColumnList, uint64_t uid, SSchema* pSchema, int32_t flag);
|
|
SColumn* insertPrimaryTsColumn(SArray* pColumnList, const char* colName, uint64_t tableUid);
|
|
|
|
void cleanupTagCond(STagCond* pTagCond);
|
|
void cleanupColumnCond(SArray** pCond);
|
|
|
|
uint32_t convertRelationalOperator(SToken *pToken);
|
|
int32_t getExprFunctionId(SExprInfo *pExprInfo);
|
|
|
|
STableMeta* tableMetaDup(const STableMeta* pTableMeta);
|
|
|
|
bool isDclSqlStatement(SSqlInfo* pSqlInfo);
|
|
bool isDdlSqlStatement(SSqlInfo* pSqlInfo);
|
|
bool isDqlSqlStatement(SSqlInfo* pSqlInfo);
|
|
|
|
typedef struct SKvParam {
|
|
SKVRowBuilder *builder;
|
|
SSchema *schema;
|
|
char buf[TSDB_MAX_TAGS_LEN];
|
|
} SKvParam;
|
|
|
|
int32_t KvRowAppend(const void *value, int32_t len, void *param);
|
|
|
|
typedef int32_t (*_row_append_fn_t)(const void *value, int32_t len, void *param);
|
|
int32_t parseValueToken(char** end, SToken* pToken, SSchema* pSchema, int16_t timePrec, char* tmpTokenBuf, _row_append_fn_t func, void* param, SMsgBuf* pMsgBuf);
|
|
|
|
int32_t createSName(SName* pName, SToken* pTableName, SParseContext* pParseCtx, SMsgBuf* pMsgBuf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TDENGINE_PARSERUTIL_H
|