qast.h 3.1 KB
Newer Older
H
hzcheng 已提交
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 TDENGINE_TAST_H
#define TDENGINE_TAST_H

#ifdef __cplusplus
extern "C" {
#endif

23
#include <tskiplist.h>
24
#include "os.h"
H
hzcheng 已提交
25

S
slguan 已提交
26
#include "taosmsg.h"
H
hzcheng 已提交
27
#include "taosdef.h"
28
#include "tvariant.h"
H
hzcheng 已提交
29

H
[td-32]  
hjxilinx 已提交
30
struct tSQLSyntaxNode;
H
hzcheng 已提交
31 32 33 34 35 36 37 38 39 40
struct SSchema;
struct tSkipList;
struct tSkipListNode;

enum {
  TSQL_NODE_EXPR = 0x1,
  TSQL_NODE_COL = 0x2,
  TSQL_NODE_VALUE = 0x4,
};

S
slguan 已提交
41 42 43 44 45 46 47 48 49 50 51
typedef bool (*__result_filter_fn_t)(const void *, void *);
typedef void (*__do_filter_suppl_fn_t)(void *, void *);

/**
 * this structure is used to filter data in tags, so the offset of filtered tag column in tagdata string is required
 *
 */
typedef struct tQueryInfo {
  int32_t       offset;   // offset value in tags
  int32_t       colIdx;   // index of column in schema
  uint8_t       optr;     // expression operator
H
hjxilinx 已提交
52
  SSchema       sch;      // schema of tags
S
slguan 已提交
53 54 55 56 57 58 59 60 61 62
  tVariant      q;        // query condition value on the specific schema, filter expression
  __compar_fn_t compare;  // filter function
} tQueryInfo;

typedef struct SBinaryFilterSupp {
  __result_filter_fn_t   fp;
  __do_filter_suppl_fn_t setupInfoFn;
  void *                 pExtInfo;
} SBinaryFilterSupp;

H
hzcheng 已提交
63 64 65
typedef struct tSQLSyntaxNode {
  uint8_t nodeType;
  union {
H
[td-32]  
hjxilinx 已提交
66 67 68 69 70 71 72 73 74 75
    struct {
      uint8_t optr;  // filter operator
      uint8_t hasPK; // 0: do not contain primary filter, 1: contain
      void *  info;  // support filter operation on this expression only available for leaf node
      
      struct tSQLSyntaxNode *pLeft;  // left child pointer
      struct tSQLSyntaxNode *pRight; // right child pointer
    } _node;
    struct SSchema *pSchema;
    tVariant *      pVal;
H
hzcheng 已提交
76 77 78 79 80 81 82 83 84
  };
} tSQLSyntaxNode;


typedef struct tQueryResultset {
  void ** pRes;
  int64_t num;
} tQueryResultset;

H
[td-32]  
hjxilinx 已提交
85
void tSQLBinaryExprFromString(tSQLSyntaxNode **pExpr, SSchema *pSchema, int32_t numOfCols, char *src, int32_t len);
H
hzcheng 已提交
86

H
[td-32]  
hjxilinx 已提交
87
void tSQLBinaryExprToString(tSQLSyntaxNode *pExpr, char *dst, int32_t *len);
H
hzcheng 已提交
88

H
[td-32]  
hjxilinx 已提交
89
void tSQLBinaryExprDestroy(tSQLSyntaxNode **pExprs, void (*fp)(void*));
H
hzcheng 已提交
90

H
[td-32]  
hjxilinx 已提交
91
void tSQLBinaryExprTraverse(tSQLSyntaxNode *pExpr, SSkipList *pSkipList, SArray *result, SBinaryFilterSupp *param);
H
hzcheng 已提交
92

H
[td-32]  
hjxilinx 已提交
93
void tSQLBinaryExprCalcTraverse(tSQLSyntaxNode *pExprs, int32_t numOfRows, char *pOutput, void *param, int32_t order,
H
hzcheng 已提交
94 95
                                char *(*cb)(void *, char *, int32_t));

H
[td-32]  
hjxilinx 已提交
96
void tSQLBinaryExprTrv(tSQLSyntaxNode *pExprs, int32_t *val, int16_t *ids);
S
slguan 已提交
97
void tQueryResultClean(tQueryResultset *pRes);
H
hzcheng 已提交
98

H
hjxilinx 已提交
99 100
uint8_t getBinaryExprOptr(SSQLToken *pToken);

H
hzcheng 已提交
101 102 103 104 105
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_TAST_H