1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#pragma once
#include <yql/essentials/core/yql_graph_transformer.h>
#include <yql/essentials/core/yql_expr_optimize.h>
#include <yql/essentials/core/expr_nodes/yql_expr_nodes.h>
#include <yql/essentials/ast/yql_expr.h>
#include <yql/essentials/utils/log/log_component.h>
#include <util/generic/vector.h>
#include <util/generic/strbuf.h>
#include <util/generic/ptr.h>
#include <util/generic/set.h>
#include <util/generic/string.h>
#include <functional>
#include <initializer_list>
namespace NYql {
class TOptimizeTransformerBase: public TSyncTransformerBase {
public:
using TGetParents = std::function<const TParentsMap*()>;
using THandler = std::function<NNodes::TMaybeNode<NNodes::TExprBase>(NNodes::TExprBase, TExprContext&, IOptimizationContext&, const TGetParents&)>;
using TFilter = std::function<bool(const TExprNode*)>;
TOptimizeTransformerBase(TTypeAnnotationContext* types, NLog::EComponent logComponent, const TSet<TString>& disabledOpts);
TStatus DoTransform(TExprNode::TPtr input, TExprNode::TPtr& output, TExprContext& ctx) override;
void Rewind() override;
protected:
class TIgnoreOptimizationContext;
class TRemapOptimizationContext;
static TFilter Any();
static TFilter Names(std::initializer_list<TStringBuf> names);
static TFilter Or(std::initializer_list<TFilter> filters);
void AddHandler(size_t step, TFilter filter, TStringBuf optName, THandler handler);
void SetGlobal(size_t step);
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&, const TGetParents&)) {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& /*optCtx*/, const TGetParents& parents) {
return (static_cast<TDerived*>(this)->*handler)(node, ctx, parents);
};
}
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&, const TGetParents&) const) const {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& /*optCtx*/, const TGetParents& parents) {
return (static_cast<const TDerived*>(this)->*handler)(node, ctx, parents);
};
}
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&, IOptimizationContext&, const TGetParents&)) {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& optCtx, const TGetParents& parents) {
return (static_cast<TDerived*>(this)->*handler)(node, ctx, optCtx, parents);
};
}
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&, IOptimizationContext&, const TGetParents&) const) const {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& optCtx, const TGetParents& parents) {
return (static_cast<const TDerived*>(this)->*handler)(node, ctx, optCtx, parents);
};
}
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&, IOptimizationContext&)) {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& optCtx, const TGetParents& /*parents*/) {
return (static_cast<TDerived*>(this)->*handler)(node, ctx, optCtx);
};
}
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&, IOptimizationContext&) const) const {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& optCtx, const TGetParents& /*parents*/) {
return (static_cast<const TDerived*>(this)->*handler)(node, ctx, optCtx);
};
}
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&)) {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& /*optCtx*/, const TGetParents& /*parents*/) {
return (static_cast<TDerived*>(this)->*handler)(node, ctx);
};
}
template <class TDerived>
THandler Hndl(NNodes::TMaybeNode<NNodes::TExprBase>(TDerived::* handler)(NNodes::TExprBase, TExprContext&) const) const {
return [this, handler] (NNodes::TExprBase node, TExprContext& ctx, IOptimizationContext& /*optCtx*/, const TGetParents& /*parents*/) {
return (static_cast<const TDerived*>(this)->*handler)(node, ctx);
};
}
protected:
struct TOptInfo {
TString OptName;
TFilter Filter;
THandler Handler;
};
struct TStep {
TProcessedNodesSet ProcessedNodes;
TVector<TOptInfo> Optimizers;
bool Global = false;
};
TTypeAnnotationContext* Types;
const NLog::EComponent LogComponent;
TSet<TString> DisabledOpts;
TVector<TStep> Steps;
};
} // NYql
|