parUtil.h 3.6 KB
Newer Older
H
Haojun Liao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

X
Xiaoyu Wang 已提交
16 17
#ifndef TDENGINE_PARSER_UTIL_H
#define TDENGINE_PARSER_UTIL_H
H
Haojun Liao 已提交
18 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

23
#include "catalog.h"
24
#include "os.h"
X
Xiaoyu Wang 已提交
25
#include "query.h"
26

27 28 29 30 31 32
#define parserFatal(param, ...) qFatal("PARSER: " param, ##__VA_ARGS__)
#define parserError(param, ...) qError("PARSER: " param, ##__VA_ARGS__)
#define parserWarn(param, ...)  qWarn("PARSER: " param, ##__VA_ARGS__)
#define parserInfo(param, ...)  qInfo("PARSER: " param, ##__VA_ARGS__)
#define parserDebug(param, ...) qDebug("PARSER: " param, ##__VA_ARGS__)
#define parserTrace(param, ...) qTrace("PARSER: " param, ##__VA_ARGS__)
X
Xiaoyu Wang 已提交
33

X
bugfix  
Xiaoyu Wang 已提交
34 35
#define PK_TS_COL_INTERNAL_NAME "_rowts"

X
Xiaoyu Wang 已提交
36 37
typedef struct SMsgBuf {
  int32_t len;
X
Xiaoyu Wang 已提交
38
  char*   buf;
X
Xiaoyu Wang 已提交
39
} SMsgBuf;
40

41 42 43 44 45 46 47
typedef struct SParseMetaCache {
  SHashObj* pTableMeta;    // key is tbFName, element is STableMeta*
  SHashObj* pDbVgroup;     // key is dbFName, element is SArray<SVgroupInfo>*
  SHashObj* pTableVgroup;  // key is tbFName, element is SVgroupInfo*
  SHashObj* pDbCfg;        // key is tbFName, element is SDbCfgInfo
} SParseMetaCache;

48
int32_t generateSyntaxErrMsg(SMsgBuf* pBuf, int32_t errCode, ...);
49
int32_t buildInvalidOperationMsg(SMsgBuf* pMsgBuf, const char* msg);
X
Xiaoyu Wang 已提交
50
int32_t buildSyntaxErrMsg(SMsgBuf* pBuf, const char* additionalInfo, const char* sourceStr);
H
Haojun Liao 已提交
51

X
Xiaoyu Wang 已提交
52 53 54 55
SSchema*      getTableColumnSchema(const STableMeta* pTableMeta);
SSchema*      getTableTagSchema(const STableMeta* pTableMeta);
int32_t       getNumOfColumns(const STableMeta* pTableMeta);
int32_t       getNumOfTags(const STableMeta* pTableMeta);
X
Xiaoyu Wang 已提交
56
STableComInfo getTableInfo(const STableMeta* pTableMeta);
X
Xiaoyu Wang 已提交
57
STableMeta*   tableMetaDup(const STableMeta* pTableMeta);
58
int32_t       parseJsontoTagData(const char* json, SKVRowBuilder* kvRowBuilder, SMsgBuf* errMsg, int16_t startColId);
H
Haojun Liao 已提交
59

60 61
int32_t trimString(const char* src, int32_t len, char* dst, int32_t dlen);

62 63 64
int32_t buildCatalogReq(const SParseMetaCache* pMetaCache, SCatalogReq* pCatalogReq);
int32_t putMetaDataToCache(const SCatalogReq* pCatalogReq, const SMetaData* pMetaData, SParseMetaCache* pMetaCache);
int32_t reserveTableMetaInCache(int32_t acctId, const char* pDb, const char* pTable, SParseMetaCache* pMetaCache);
65 66 67
int32_t reserveDbVgInfoInCache(int32_t acctId, const char* pDb, SParseMetaCache* pMetaCache);
int32_t reserveTableVgroupInCache(int32_t acctId, const char* pDb, const char* pTable, SParseMetaCache* pMetaCache);
int32_t reserveDbCfgInCache(int32_t acctId, const char* pDb, SParseMetaCache* pMetaCache);
68
int32_t getTableMetaFromCache(SParseMetaCache* pMetaCache, const SName* pName, STableMeta** pMeta);
69 70 71
int32_t getDbVgInfoFromCache(SParseMetaCache* pMetaCache, const char* pDbFName, SArray** pVgInfo);
int32_t getTableVgroupFromCache(SParseMetaCache* pMetaCache, const SName* pName, SVgroupInfo* pVgroup);
int32_t getDbVgVersionFromCache(SParseMetaCache* pMetaCache, const char* pDbFName, int32_t* pVersion, int64_t* pDbId,
72
                                int32_t* pTableNum);
73
int32_t getDbCfgFromCache(SParseMetaCache* pMetaCache, const char* pDbFName, SDbCfgInfo* pInfo);
74

H
Haojun Liao 已提交
75 76 77 78
#ifdef __cplusplus
}
#endif

X
Xiaoyu Wang 已提交
79
#endif  // TDENGINE_PARSER_UTIL_H