qSqlparser.h 11.0 KB
Newer Older
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/>.
 */

H
hjxilinx 已提交
16 17
#ifndef TDENGINE_QSQLPARSER_H
#define TDENGINE_QSQLPARSER_H
18 19 20 21 22 23 24 25

#ifdef __cplusplus
extern "C" {
#endif

#include "taos.h"
#include "taosmsg.h"
#include "tstoken.h"
H
Haojun Liao 已提交
26
#include "tstrbuild.h"
27 28
#include "tvariant.h"

H
Haojun Liao 已提交
29
#define ParseTOKENTYPE SStrToken
H
Haojun Liao 已提交
30 31 32 33 34 35 36 37 38 39 40 41

#define NON_ARITHMEIC_EXPR 0
#define NORMAL_ARITHMETIC  1
#define AGG_ARIGHTMEIC     2

enum SQL_NODE_TYPE {
  SQL_NODE_TABLE_COLUMN= 1,
  SQL_NODE_SQLFUNCTION = 2,
  SQL_NODE_VALUE       = 3,
  SQL_NODE_EXPR        = 4,
};

42 43 44 45 46 47 48 49 50 51 52
extern char tTokenTypeSwitcher[13];

#define toTSDBType(x)                          \
  do {                                         \
    if ((x) >= tListLen(tTokenTypeSwitcher)) { \
      (x) = TSDB_DATA_TYPE_BINARY;             \
    } else {                                   \
      (x) = tTokenTypeSwitcher[(x)];           \
    }                                          \
  } while (0)

H
Haojun Liao 已提交
53 54
#define TPARSER_HAS_TOKEN(_t)      ((_t).n > 0)
#define TPARSER_SET_NONE_TOKEN(_t) ((_t).n = 0)
H
Haojun Liao 已提交
55

56
typedef struct SLimitVal {
H
Haojun Liao 已提交
57 58
  int64_t            limit;
  int64_t            offset;
59 60 61
} SLimitVal;

typedef struct SOrderVal {
H
Haojun Liao 已提交
62 63
  uint32_t           order;
  int32_t            orderColId;
64 65 66
} SOrderVal;

typedef struct tVariantListItem {
H
Haojun Liao 已提交
67 68
  tVariant           pVar;
  uint8_t            sortOrder;
69 70
} tVariantListItem;

71
typedef struct SIntervalVal {
H
Haojun Liao 已提交
72 73
  SStrToken          interval;
  SStrToken          offset;
74 75
} SIntervalVal;

76
typedef struct SSessionWindowVal {
H
Haojun Liao 已提交
77 78
  SStrToken          col;
  SStrToken          gap;
79 80
} SSessionWindowVal;

H
Haojun Liao 已提交
81 82 83 84 85 86 87
typedef struct SQuerySqlNode {
  struct SArray     *pSelectList;  // select clause
  SArray            *from;         // from clause  SArray<SQuerySqlNode>
  struct tSqlExpr   *pWhere;       // where clause [optional]
  SArray            *pGroupby;     // groupby clause, only for tags[optional], SArray<tVariantListItem>
  SArray            *pSortOrder;   // orderby [optional], SArray<tVariantListItem>
  SArray            *fillType;     // fill type[optional], SArray<tVariantListItem>
H
Haojun Liao 已提交
88 89 90 91 92
  SIntervalVal       interval;     // (interval, interval_offset) [optional]
  SSessionWindowVal  sessionVal;   // session window [optional]
  SStrToken          sliding;      // sliding window [optional]
  SLimitVal          limit;        // limit offset [optional]
  SLimitVal          slimit;       // group limit offset [optional]
H
Haojun Liao 已提交
93 94
  SStrToken          sqlstr;       // sql string in select clause
} SQuerySqlNode;
95

96
typedef struct SCreatedTableInfo {
H
Haojun Liao 已提交
97 98 99 100 101 102 103
  SStrToken          name;        // table name token
  SStrToken          stableName;  // super table name token , for using clause
  SArray            *pTagNames;   // create by using super table, tag name
  SArray            *pTagVals;    // create by using super table, tag value
  char              *fullname;    // table full name
  STagData           tagdata;     // true tag data, super table full name is in STagData
  int8_t             igExist;     // ignore if exists
104 105
} SCreatedTableInfo;

H
Haojun Liao 已提交
106
typedef struct SCreateTableSql {
H
Haojun Liao 已提交
107 108 109
  SStrToken          name;  // table name, create table [name] xxx
  int8_t             type;  // create normal table/from super table/ stream
  bool               existCheck;
110

111
  struct {
H
Haojun Liao 已提交
112 113
    SArray          *pTagColumns; // SArray<TAOS_FIELD>
    SArray          *pColumns;    // SArray<TAOS_FIELD>
114
  } colInfo;
115

H
Haojun Liao 已提交
116 117
  SArray            *childTableInfo;        // SArray<SCreatedTableInfo>
  SQuerySqlNode     *pSelect;
H
Haojun Liao 已提交
118
} SCreateTableSql;
119

H
Haojun Liao 已提交
120
typedef struct SAlterTableInfo {
H
Haojun Liao 已提交
121 122 123 124 125 126
  SStrToken          name;
  int16_t            tableType;
  int16_t            type;
  STagData           tagData;
  SArray            *pAddColumns; // SArray<TAOS_FIELD>
  SArray            *varList;     // set t=val or: change src dst, SArray<tVariantListItem>
H
Haojun Liao 已提交
127
} SAlterTableInfo;
128

H
Haojun Liao 已提交
129
typedef struct SCreateDbInfo {
H
Haojun Liao 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
  SStrToken          dbname;
  int32_t            replica;
  int32_t            cacheBlockSize;
  int32_t            maxTablesPerVnode;
  int32_t            numOfBlocks;
  int32_t            daysPerFile;
  int32_t            minRowsPerBlock;
  int32_t            maxRowsPerBlock;
  int32_t            fsyncPeriod;
  int64_t            commitTime;
  int32_t            walLevel;
  int32_t            quorum;
  int32_t            compressionLevel;
  SStrToken          precision;
  bool               ignoreExists;
  int8_t             update;
  int8_t             cachelast;
  SArray            *keep;
  int8_t             dbType;
  int16_t            partitions;
H
Haojun Liao 已提交
150
} SCreateDbInfo;
151

H
Haojun Liao 已提交
152
typedef struct SCreateAcctInfo {
H
Haojun Liao 已提交
153 154 155 156 157 158 159 160 161
  int32_t            maxUsers;
  int32_t            maxDbs;
  int32_t            maxTimeSeries;
  int32_t            maxStreams;
  int32_t            maxPointsPerSecond;
  int64_t            maxStorage;
  int64_t            maxQueryTime;
  int32_t            maxConnections;
  SStrToken          stat;
H
Haojun Liao 已提交
162
} SCreateAcctInfo;
163 164

typedef struct SShowInfo {
H
Haojun Liao 已提交
165 166 167
  uint8_t            showType;
  SStrToken          prefix;
  SStrToken          pattern;
168 169 170
} SShowInfo;

typedef struct SUserInfo {
H
Haojun Liao 已提交
171 172 173 174
  SStrToken          user;
  SStrToken          passwd;
  SStrToken          privilege;
  int16_t            type;
175 176
} SUserInfo;

H
Haojun Liao 已提交
177
typedef struct SMiscInfo {
H
Haojun Liao 已提交
178 179 180 181 182
  SArray            *a;         // SArray<SStrToken>
  bool               existsCheck;
  int16_t            dbType;
  int16_t            tableType;
  SUserInfo          user;
183
  union {
H
Haojun Liao 已提交
184 185 186 187
    SCreateDbInfo    dbOpt;
    SCreateAcctInfo  acctOpt;
    SShowInfo        showOpt;
    SStrToken        id;
188
  };
H
Haojun Liao 已提交
189
} SMiscInfo;
190 191

typedef struct SSubclauseInfo {  // "UNION" multiple select sub-clause
H
Haojun Liao 已提交
192 193
  SQuerySqlNode    **pClause;
  int32_t            numOfClause;
194 195 196
} SSubclauseInfo;

typedef struct SSqlInfo {
H
Haojun Liao 已提交
197 198
  int32_t            type;
  bool               valid;
H
Haojun Liao 已提交
199 200
  SSubclauseInfo     subclauseInfo;
  char               msg[256];
201
  union {
H
Haojun Liao 已提交
202 203 204
    SCreateTableSql *pCreateTableInfo;
    SAlterTableInfo *pAlterInfo;
    SMiscInfo       *pMiscInfo;
205 206 207
  };
} SSqlInfo;

H
Haojun Liao 已提交
208
typedef struct tSqlExpr {
H
Haojun Liao 已提交
209 210
  uint16_t           type;       // sql node type
  uint32_t           tokenId;    // TK_LE: less than(binary expr)
H
Haojun Liao 已提交
211 212

  // the whole string of the function(col, param), while the function name is kept in token
H
Haojun Liao 已提交
213 214
  SStrToken          operand;
  uint32_t           functionId;  // function id
H
Haojun Liao 已提交
215

H
Haojun Liao 已提交
216 217 218
  SStrToken          colInfo;     // table column info
  tVariant           value;       // the use input value
  SStrToken          token;       // original sql expr string
H
Haojun Liao 已提交
219

H
Haojun Liao 已提交
220 221 222
  struct tSqlExpr   *pLeft;       // left child
  struct tSqlExpr   *pRight;      // right child
  struct SArray     *pParam;      // function parameters list
H
Haojun Liao 已提交
223
} tSqlExpr;
224

H
Haojun Liao 已提交
225
// used in select clause. select <SArray> from xxx
H
Haojun Liao 已提交
226
typedef struct tSqlExprItem {
H
Haojun Liao 已提交
227 228 229
  tSqlExpr          *pNode;      // The list of expressions
  char              *aliasName;  // alias name, null-terminated string
  bool               distinct;
H
Haojun Liao 已提交
230
} tSqlExprItem;
231

H
Haojun Liao 已提交
232 233 234
SArray *tVariantListAppend(SArray *pList, tVariant *pVar, uint8_t sortOrder);
SArray *tVariantListInsert(SArray *pList, tVariant *pVar, uint8_t sortOrder, int32_t index);
SArray *tVariantListAppendToken(SArray *pList, SStrToken *pAliasToken, uint8_t sortOrder);
235

H
Haojun Liao 已提交
236 237 238
// sql expr leaf node
tSqlExpr *tSqlExprCreateIdValue(SStrToken *pToken, int32_t optrType);
tSqlExpr *tSqlExprCreateFunction(SArray *pParam, SStrToken *pFuncToken, SStrToken *endToken, int32_t optType);
239

H
Haojun Liao 已提交
240 241
tSqlExpr *tSqlExprCreate(tSqlExpr *pLeft, tSqlExpr *pRight, int32_t optrType);
tSqlExpr *tSqlExprClone(tSqlExpr *pSrc);
H
Haojun Liao 已提交
242 243 244
void      tSqlExprCompact(tSqlExpr** pExpr);
bool      tSqlExprIsLeaf(tSqlExpr* pExpr);
bool      tSqlExprIsParentOfLeaf(tSqlExpr* pExpr);
H
Haojun Liao 已提交
245 246 247
void      tSqlExprDestroy(tSqlExpr *pExpr);
SArray   *tSqlExprListAppend(SArray *pList, tSqlExpr *pNode, SStrToken *pDistinct, SStrToken *pToken);
void      tSqlExprListDestroy(SArray *pList);
D
dapan1121 已提交
248

H
Haojun Liao 已提交
249
SQuerySqlNode *tSetQuerySqlNode(SStrToken *pSelectToken, SArray *pSelectList, SArray *pFrom, tSqlExpr *pWhere,
H
Haojun Liao 已提交
250 251
                                SArray *pGroupby, SArray *pSortOrder, SIntervalVal *pInterval, SSessionWindowVal *ps,
                                SStrToken *pSliding, SArray *pFill, SLimitVal *pLimit, SLimitVal *pgLimit);
252

H
Haojun Liao 已提交
253
SCreateTableSql *tSetCreateTableInfo(SArray *pCols, SArray *pTags, SQuerySqlNode *pSelect, int32_t type);
254

H
Haojun Liao 已提交
255
SAlterTableInfo *tSetAlterTableInfo(SStrToken *pTableName, SArray *pCols, SArray *pVals, int32_t type, int16_t tableTable);
256
SCreatedTableInfo createNewChildTableInfo(SStrToken *pTableName, SArray *pTagNames, SArray *pTagVals, SStrToken *pToken, SStrToken* igExists);
257 258

void destroyAllSelectClause(SSubclauseInfo *pSql);
H
Haojun Liao 已提交
259
void destroyQuerySqlNode(SQuerySqlNode *pSql);
260
void freeCreateTableInfo(void* p);
261

H
Haojun Liao 已提交
262
SSqlInfo       *setSqlInfo(SSqlInfo *pInfo, void *pSqlExprInfo, SStrToken *pTableName, int32_t type);
263 264 265 266
SSubclauseInfo *setSubclause(SSubclauseInfo *pClause, void *pSqlExprInfo);

SSubclauseInfo *appendSelectClause(SSubclauseInfo *pInfo, void *pSubclause);

267
void setCreatedTableName(SSqlInfo *pInfo, SStrToken *pTableNameToken, SStrToken *pIfNotExists);
268

H
Haojun Liao 已提交
269
void SqlInfoDestroy(SSqlInfo *pInfo);
270

H
Haojun Liao 已提交
271
void setDCLSqlElems(SSqlInfo *pInfo, int32_t type, int32_t nParams, ...);
D
dapan1121 已提交
272
void setDropDbTableInfo(SSqlInfo *pInfo, int32_t type, SStrToken* pToken, SStrToken* existsCheck,int16_t dbType,int16_t tableType);
H
Haojun Liao 已提交
273
void setShowOptions(SSqlInfo *pInfo, int32_t type, SStrToken* prefix, SStrToken* pPatterns);
274

H
Haojun Liao 已提交
275
void setCreateDbInfo(SSqlInfo *pInfo, int32_t type, SStrToken *pToken, SCreateDbInfo *pDB, SStrToken *pIgExists);
276

H
Haojun Liao 已提交
277
void setCreateAcctSql(SSqlInfo *pInfo, int32_t type, SStrToken *pName, SStrToken *pPwd, SCreateAcctInfo *pAcctInfo);
H
Haojun Liao 已提交
278 279 280
void setCreateUserSql(SSqlInfo *pInfo, SStrToken *pName, SStrToken *pPasswd);
void setKillSql(SSqlInfo *pInfo, int32_t type, SStrToken *ip);
void setAlterUserSql(SSqlInfo *pInfo, int16_t type, SStrToken *pName, SStrToken* pPwd, SStrToken *pPrivilege);
281

H
Haojun Liao 已提交
282
void setDefaultCreateDbOption(SCreateDbInfo *pDBInfo);
D
dapan1121 已提交
283
void setDefaultCreateTopicOption(SCreateDbInfo *pDBInfo);
284 285

// prefix show db.tables;
H
Haojun Liao 已提交
286
void tSetDbName(SStrToken *pCpxName, SStrToken *pDb);
287

H
Haojun Liao 已提交
288 289
void tSetColumnInfo(TAOS_FIELD *pField, SStrToken *pName, TAOS_FIELD *pType);
void tSetColumnType(TAOS_FIELD *pField, SStrToken *type);
290

H
Haojun Liao 已提交
291 292 293 294 295 296 297
/**
 *
 * @param yyp      The parser
 * @param yymajor  The major token code number
 * @param yyminor  The value for the token
 */
void Parse(void *yyp, int yymajor, ParseTOKENTYPE yyminor, SSqlInfo *);
298

H
Haojun Liao 已提交
299 300 301 302 303 304
/**
 *
 * @param p         The parser to be deleted
 * @param freeProc  Function used to reclaim memory
 */
void ParseFree(void *p, void (*freeProc)(void *));
305

H
Haojun Liao 已提交
306 307 308 309 310
/**
 *
 * @param mallocProc  The parser allocator
 * @return
 */
311 312
void *ParseAlloc(void *(*mallocProc)(size_t));

H
Haojun Liao 已提交
313 314 315 316 317 318
/**
 *
 * @param str sql string
 * @return sql ast
 */
SSqlInfo qSqlParse(const char *str);
319

320 321 322 323
#ifdef __cplusplus
}
#endif

H
hjxilinx 已提交
324
#endif  // TDENGINE_QSQLPARSER_H