taco-db  0.1.0
PlanNode.h
Go to the documentation of this file.
1 #ifndef PLAN_PLANNODE_H
2 #define PLAN_PLANNODE_H
3 
4 #include "tdb.h"
5 
6 #include <memory>
7 #include <vector>
8 
9 #include "catalog/Schema.h"
10 #include "utils/tree/TreeNode.h"
12 
13 namespace taco {
14 
15 class PlanExecState;
16 
26 class PlanNode: public TreeNode {
27 public:
39  template<class ...UniquePtrs>
40  PlanNode(NodeTag tag, UniquePtrs&& ...input):
41  TreeNode(tag, std::forward<UniquePtrs>(input)...) {}
42 
44  virtual ~PlanNode() {}
45 
52  virtual std::unique_ptr<PlanExecState> create_exec_state() const = 0;
53 
63  virtual const Schema* get_output_schema() const = 0;
64 
65 protected:
70  PlanNode* get_child(size_t i) const {
71  return get_input_as<PlanNode>(i);
72  }
73 };
74 
75 } // namespace taco
76 
77 #endif
PlanNode is an abstract interface representing physical query plan that does not bound with any parti...
Definition: PlanNode.h:26
virtual const Schema * get_output_schema() const =0
Each physical plan should link a schema for its output relation, incidating what fields are included ...
PlanNode(NodeTag tag, UniquePtrs &&...input)
Base constructor for all physical plan node.
Definition: PlanNode.h:40
virtual ~PlanNode()
Deconstructor of PlanExecState.
Definition: PlanNode.h:44
PlanNode * get_child(size_t i) const
Utility function to get the raw pointer of i-th child of this physical plan.
Definition: PlanNode.h:70
virtual std::unique_ptr< PlanExecState > create_exec_state() const =0
Create the corresponding execution state for the physical plan so that it can be used as physical sca...
A Schema object stores the information for accessing an ordered set of typed fields either from a dis...
Definition: Schema.h:39
TreeNode is the base class of all tree structures in TDB (e.g., parsing tree, logical plan,...
Definition: TreeNode.h:40
Definition: Record.h:148
Definition: datum.h:28
NodeTag
Definition: NodeTag.h:12