qast.h 2.8 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 "os.h"
H
hzcheng 已提交
24

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

H
hjxilinx 已提交
31
struct tExprNode;
H
hzcheng 已提交
32 33 34
struct SSchema;

enum {
H
hjxilinx 已提交
35 36
  TSQL_NODE_EXPR  = 0x1,
  TSQL_NODE_COL   = 0x2,
H
hzcheng 已提交
37 38 39
  TSQL_NODE_VALUE = 0x4,
};

S
slguan 已提交
40 41 42 43 44 45 46 47 48
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 {
  uint8_t       optr;     // expression operator
H
hjxilinx 已提交
49
  SSchema       sch;      // schema of tags
H
hjxilinx 已提交
50
  char*         q;
S
slguan 已提交
51
  __compar_fn_t compare;  // filter function
52
  void*         param;    // STSchema
S
slguan 已提交
53 54
} tQueryInfo;

H
hjxilinx 已提交
55
typedef struct SExprTraverseSupp {
56
  __result_filter_fn_t   nodeFilterFn;
S
slguan 已提交
57 58
  __do_filter_suppl_fn_t setupInfoFn;
  void *                 pExtInfo;
H
hjxilinx 已提交
59
} SExprTraverseSupp;
S
slguan 已提交
60

H
hjxilinx 已提交
61
typedef struct tExprNode {
H
hzcheng 已提交
62 63
  uint8_t nodeType;
  union {
H
[td-32]  
hjxilinx 已提交
64
    struct {
65 66 67
      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
H
[td-32]  
hjxilinx 已提交
68
      
H
hjxilinx 已提交
69 70
      struct tExprNode *pLeft;  // left child pointer
      struct tExprNode *pRight; // right child pointer
H
[td-32]  
hjxilinx 已提交
71 72 73
    } _node;
    struct SSchema *pSchema;
    tVariant *      pVal;
H
hzcheng 已提交
74
  };
H
hjxilinx 已提交
75
} tExprNode;
H
hzcheng 已提交
76

77
void tExprTreeDestroy(tExprNode **pExprs, void (*fp)(void*));
H
hzcheng 已提交
78

H
hjxilinx 已提交
79
void tExprTreeTraverse(tExprNode *pExpr, SSkipList *pSkipList, SArray *result, SExprTraverseSupp *param);
H
hzcheng 已提交
80

81 82
void tExprTreeCalcTraverse(tExprNode *pExprs, int32_t numOfRows, char *pOutput, void *param, int32_t order,
                                char *(*cb)(void *, const char*, int32_t));
H
hzcheng 已提交
83

H
hjxilinx 已提交
84 85
uint8_t getBinaryExprOptr(SSQLToken *pToken);

86
void tExprNodeDestroy(tExprNode *pNode, void (*fp)(void *));
87
void exprTreeToBinary(SBufferWriter* bw, tExprNode* pExprTree);
88

89
tExprNode* exprTreeFromBinary(const void* data, size_t size);
weixin_48148422's avatar
weixin_48148422 已提交
90
tExprNode* exprTreeFromTableName(const char* tbnameCond);
91

H
hzcheng 已提交
92 93 94 95 96
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_TAST_H