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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
#include "list_builtin.h"
using namespace NYql;
namespace NSQLTranslationV1 {
TAstNode* TListBuiltin::Translate(TContext& ctx) const {
Y_DEBUG_ABORT_UNLESS(Node_);
return Node_->Translate(ctx);
}
TNodePtr TListBuiltin::GetIdentityLambda() {
return BuildLambda(Pos_, Y("arg"), Y(), "arg");
}
bool TListSortBuiltin::DoInit(TContext& ctx, ISource* src) {
if (Args_.size() < 1 || Args_.size() > 2) {
ctx.Error(Pos_) << OpName_ << " requires one or two parameters.";
return false;
}
if (!Args_[0]->Init(ctx, src)) {
return false;
}
if (Args_.size() == 2) {
if (!Args_[1]->Init(ctx, src)) {
return false;
}
} else {
Args_.push_back(GetIdentityLambda());
}
Node_ = Y(OpName_, Args_[0], Y("Bool", Q(Asc_ ? "true" : "false")), Args_[1]);
return true;
}
bool TListExtractBuiltin::DoInit(TContext& ctx, ISource* src) {
if (Args_.size() != 2) {
ctx.Error(Pos_) << OpName_ << " requires exactly two parameters.";
return false;
}
for (const auto& arg : Args_) {
if (!arg->Init(ctx, src)) {
return false;
}
}
Args_[1] = MakeAtomFromExpression(Pos_, ctx, Args_[1]).Build();
Node_ = Y(OpName_, Args_[0], Args_[1]);
return true;
}
bool TListProcessBuiltin::CheckArgs(TContext& ctx, ISource* src) {
if (Args_.size() != 2) {
ctx.Error(Pos_) << OpName_ << " requires exactly two parameters";
return false;
}
for (const auto& arg : Args_) {
if (!arg->Init(ctx, src)) {
return false;
}
}
return true;
}
bool TListMapBuiltin::DoInit(TContext& ctx, ISource* src) {
if (!CheckArgs(ctx, src)) {
return false;
};
Node_ = Y(OpName_, Args_[0], Args_[1]);
return true;
}
bool TListFilterBuiltin::DoInit(TContext& ctx, ISource* src) {
if (!CheckArgs(ctx, src)) {
return false;
};
Node_ = Y(OpName_, Args_[0], GetFilterLambda());
return true;
}
TNodePtr TListFilterBuiltin::GetFilterLambda() {
return BuildLambda(Pos_, Y("item"), Y("Coalesce", Y("Apply", Args_[1], "item"), Y("Bool", Q("false"))));
}
bool TListCreateBuiltin::DoInit(TContext& ctx, ISource* src) {
if (Args_.size() != 1) {
ctx.Error(Pos_) << OpName_ << " requires only one parameter";
return false;
}
if (!Args_[0]->Init(ctx, src)) {
return false;
}
Node_ = Y("List", Y("ListType", Args_[0]));
return true;
}
void TListCreateBuiltin::DoUpdateState() const {
State_.Set(ENodeState::Const);
}
bool TDictCreateBuiltin::DoInit(TContext& ctx, ISource* src) {
if (Args_.size() != 2) {
ctx.Error(Pos_) << OpName_ << " requires two parameters";
return false;
}
for (ui32 i = 0; i < 2; ++i) {
if (!Args_[i]->Init(ctx, src)) {
return false;
}
}
Node_ = Y("Dict", Y("DictType", Args_[0], Args_[1]));
return true;
}
void TDictCreateBuiltin::DoUpdateState() const {
State_.Set(ENodeState::Const);
}
bool TSetCreateBuiltin::DoInit(TContext& ctx, ISource* src) {
if (Args_.size() != 1) {
ctx.Error(Pos_) << OpName_ << " requires one parameter";
return false;
}
if (!Args_[0]->Init(ctx, src)) {
return false;
}
Node_ = Y("Dict", Y("DictType", Args_[0], Y("VoidType")));
return true;
}
void TSetCreateBuiltin::DoUpdateState() const {
State_.Set(ENodeState::Const);
}
bool TMutDictCreateBuiltin::DoInit(TContext& ctx, ISource* src) {
if (Args_.size() < 3) {
ctx.Error(Pos_) << OpName_ << " requires at least 3 parameters";
return false;
}
for (ui32 i = 0; i < Args_.size(); ++i) {
if (!Args_[i]->Init(ctx, src)) {
return false;
}
}
Node_ = Y("MutDictCreate", Y("DictType", Args_[0], Args_[1]));
for (ui32 i = 2; i < Args_.size(); ++i) {
Node_ = L(Node_, Y("DependsOn", Args_[i]));
}
return true;
}
void TMutDictCreateBuiltin::DoUpdateState() const {
State_.Set(ENodeState::Const);
}
bool TToMutDictBuiltin::DoInit(TContext& ctx, ISource* src) {
if (Args_.size() < 2) {
ctx.Error(Pos_) << OpName_ << " requires at least 2 parameters";
return false;
}
for (ui32 i = 0; i < Args_.size(); ++i) {
if (!Args_[i]->Init(ctx, src)) {
return false;
}
}
Node_ = Y("ToMutDict", Args_[0]);
for (ui32 i = 1; i < Args_.size(); ++i) {
Node_ = L(Node_, Y("DependsOn", Args_[i]));
}
return true;
}
} // namespace NSQLTranslationV1
|