nodes.h 5.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * 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 _TD_NODES_H_
#define _TD_NODES_H_

#ifdef __cplusplus
extern "C" {
#endif

#include "tdef.h"

25 26 27 28 29 30 31 32
#define nodeType(nodeptr) (((const SNode*)(nodeptr))->type)
#define setNodeType(nodeptr, type) (((SNode*)(nodeptr))->type = (type))

#define LIST_LENGTH(l) (NULL != (l) ? (l)->length : 0)

#define FOREACH(node, list)	\
  for (SListCell* cell = (NULL != (list) ? (list)->pHead : NULL); (NULL != cell ? (node = cell->pNode, true) : (node = NULL, false)); cell = cell->pNext)

33
// only be use in FOREACH
34
#define ERASE_NODE(list) cell = nodesListErase(list, cell);
35 36 37

#define REPLACE_NODE(newNode) cell->pNode = (SNode*)(newNode)

38 39 40 41 42
#define FORBOTH(node1, list1, node2, list2) \
  for (SListCell* cell1 = (NULL != (list1) ? (list1)->pHead : NULL), *cell2 = (NULL != (list2) ? (list2)->pHead : NULL); \
    (NULL == cell1 ? (node1 = NULL, false) : (node1 = cell1->pNode, true)), (NULL == cell2 ? (node2 = NULL, false) : (node2 = cell2->pNode, true)), (node1 != NULL && node2 != NULL); \
    cell1 = cell1->pNext, cell2 = cell2->pNext)

43 44 45
#define FOREACH_FOR_REWRITE(node, list)	\
  for (SListCell* cell = (NULL != (list) ? (list)->pHead : NULL); (NULL != cell ? (node = &(cell->pNode), true) : (node = NULL, false)); cell = cell->pNext)

46
typedef enum ENodeType {
47
  // Syntax nodes are used in parser and planner module, and some are also used in executor module, such as COLUMN, VALUE, OPERATOR, FUNCTION and so on.
48 49 50 51 52 53 54 55 56 57
  QUERY_NODE_COLUMN = 1,
  QUERY_NODE_VALUE,
  QUERY_NODE_OPERATOR,
  QUERY_NODE_LOGIC_CONDITION,
  QUERY_NODE_FUNCTION,
  QUERY_NODE_REAL_TABLE,
  QUERY_NODE_TEMP_TABLE,
  QUERY_NODE_JOIN_TABLE,
  QUERY_NODE_GROUPING_SET,
  QUERY_NODE_ORDER_BY_EXPR,
58
  QUERY_NODE_LIMIT,
59 60 61
  QUERY_NODE_STATE_WINDOW,
  QUERY_NODE_SESSION_WINDOW,
  QUERY_NODE_INTERVAL_WINDOW,
62 63
  QUERY_NODE_NODE_LIST,
  QUERY_NODE_FILL,
X
Xiaoyu Wang 已提交
64
  QUERY_NODE_RAW_EXPR, // Only be used in parser module.
X
Xiaoyu Wang 已提交
65
  QUERY_NODE_TARGET,
X
Xiaoyu Wang 已提交
66
  QUERY_NODE_DATABLOCK_DESC,
X
Xiaoyu Wang 已提交
67
  QUERY_NODE_SLOT_DESC,
X
Xiaoyu Wang 已提交
68
  QUERY_NODE_COLUMN_DEF,
69

70
  // Statement nodes are used in parser and planner module.
71
  QUERY_NODE_SET_OPERATOR,
72
  QUERY_NODE_SELECT_STMT,
X
Xiaoyu Wang 已提交
73
  QUERY_NODE_SHOW_STMT,
X
Xiaoyu Wang 已提交
74
  QUERY_NODE_VNODE_MODIF_STMT,
75
  QUERY_NODE_CREATE_DATABASE_STMT,
X
Xiaoyu Wang 已提交
76
  QUERY_NODE_CREATE_TABLE_STMT,
X
Xiaoyu Wang 已提交
77

X
Xiaoyu Wang 已提交
78
  // logic plan node
X
Xiaoyu Wang 已提交
79
  QUERY_NODE_LOGIC_PLAN_SCAN,
X
Xiaoyu Wang 已提交
80 81
  QUERY_NODE_LOGIC_PLAN_JOIN,
  QUERY_NODE_LOGIC_PLAN_AGG,
X
Xiaoyu Wang 已提交
82
  QUERY_NODE_LOGIC_PLAN_PROJECT,
X
Xiaoyu Wang 已提交
83 84
  QUERY_NODE_LOGIC_SUBPLAN,
  QUERY_NODE_LOGIC_PLAN,
X
Xiaoyu Wang 已提交
85 86 87 88

  // physical plan node
  QUERY_NODE_PHYSICAL_PLAN_TAG_SCAN,
  QUERY_NODE_PHYSICAL_PLAN_TABLE_SCAN,
X
Xiaoyu Wang 已提交
89 90
  QUERY_NODE_PHYSICAL_PLAN_TABLE_SEQ_SCAN,
  QUERY_NODE_PHYSICAL_PLAN_STREAM_SCAN,
X
Xiaoyu Wang 已提交
91 92
  QUERY_NODE_PHYSICAL_PLAN_PROJECT,
  QUERY_NODE_PHYSICAL_PLAN_JOIN,
X
Xiaoyu Wang 已提交
93 94 95
  QUERY_NODE_PHYSICAL_PLAN_AGG,
  QUERY_NODE_PHYSICAL_PLAN_EXCHANGE,
  QUERY_NODE_PHYSICAL_PLAN_SORT,
X
Xiaoyu Wang 已提交
96 97 98
  QUERY_NODE_PHYSICAL_PLAN_DISPATCH,
  QUERY_NODE_PHYSICAL_SUBPLAN,
  QUERY_NODE_PHYSICAL_PLAN
99 100 101 102 103 104 105 106 107 108
} ENodeType;

/**
 * The first field of a node of any type is guaranteed to be the ENodeType.
 * Hence the type of any node can be gotten by casting it to SNode. 
 */
typedef struct SNode {
  ENodeType type;
} SNode;

109
typedef struct SListCell {
110
  struct SListCell* pPrev;
111
  struct SListCell* pNext;
112
  SNode* pNode;
113 114 115
} SListCell;

typedef struct SNodeList {
X
Xiaoyu Wang 已提交
116
  int32_t length;
117 118
  SListCell* pHead;
  SListCell* pTail;
119 120
} SNodeList;

X
Xiaoyu Wang 已提交
121 122 123 124
#define SNodeptr void*  

SNodeptr nodesMakeNode(ENodeType type);
void nodesDestroyNode(SNodeptr pNode);
125 126

SNodeList* nodesMakeList();
X
Xiaoyu Wang 已提交
127
int32_t nodesListAppend(SNodeList* pList, SNodeptr pNode);
X
Xiaoyu Wang 已提交
128
int32_t nodesListAppendList(SNodeList* pTarget, SNodeList* pSrc);
129
SListCell* nodesListErase(SNodeList* pList, SListCell* pCell);
X
Xiaoyu Wang 已提交
130
SNodeptr nodesListGetNode(SNodeList* pList, int32_t index);
131 132
void nodesDestroyList(SNodeList* pList);

133 134 135 136 137
typedef enum EDealRes {
  DEAL_RES_CONTINUE = 1,
  DEAL_RES_IGNORE_CHILD,
  DEAL_RES_ERROR,
} EDealRes;
138

139
typedef EDealRes (*FNodeWalker)(SNode* pNode, void* pContext);
X
Xiaoyu Wang 已提交
140
void nodesWalkNode(SNodeptr pNode, FNodeWalker walker, void* pContext);
141
void nodesWalkList(SNodeList* pList, FNodeWalker walker, void* pContext);
X
Xiaoyu Wang 已提交
142
void nodesWalkNodePostOrder(SNodeptr pNode, FNodeWalker walker, void* pContext);
143 144 145 146 147 148 149
void nodesWalkListPostOrder(SNodeList* pList, FNodeWalker walker, void* pContext);

typedef EDealRes (*FNodeRewriter)(SNode** pNode, void* pContext);
void nodesRewriteNode(SNode** pNode, FNodeRewriter rewriter, void* pContext);
void nodesRewriteList(SNodeList* pList, FNodeRewriter rewriter, void* pContext);
void nodesRewriteNodePostOrder(SNode** pNode, FNodeRewriter rewriter, void* pContext);
void nodesRewriteListPostOrder(SNodeList* pList, FNodeRewriter rewriter, void* pContext);
150

X
Xiaoyu Wang 已提交
151
bool nodesEqualNode(const SNodeptr a, const SNodeptr b);
152

X
Xiaoyu Wang 已提交
153
SNodeptr nodesCloneNode(const SNodeptr pNode);
X
Xiaoyu Wang 已提交
154
SNodeList* nodesCloneList(const SNodeList* pList);
155

X
Xiaoyu Wang 已提交
156
int32_t nodesNodeToString(const SNodeptr pNode, bool format, char** pStr, int32_t* pLen);
157
int32_t nodesStringToNode(const char* pStr, SNode** pNode);
158 159 160 161 162 163

#ifdef __cplusplus
}
#endif

#endif /*_TD_NODES_H_*/