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
|
#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);
}
} // namespace NSQLTranslationV1
|