-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathmacro.cc
More file actions
272 lines (247 loc) · 10.2 KB
/
Copy pathmacro.cc
File metadata and controls
272 lines (247 loc) · 10.2 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "parser/macro.h"
#include <cstddef>
#include <cstdint>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/string_view.h"
#include "common/operators.h"
#include "internal/lexis.h"
#include "internal/no_destructor.h"
#include "parser/source_factory.h"
namespace cel {
namespace {
using google::api::expr::v1alpha1::Expr;
using google::api::expr::common::CelOperator;
absl::StatusOr<Macro> MakeMacro(absl::string_view name, size_t argument_count,
MacroExpander expander,
bool is_receiver_style) {
if (!internal::LexisIsIdentifier(name)) {
return absl::InvalidArgumentError(absl::StrCat(
"Macro function name \"", name, "\" is not a valid identifier"));
}
if (!expander) {
return absl::InvalidArgumentError(
absl::StrCat("Macro expander for \"", name, "\" cannot be empty"));
}
return Macro(name, argument_count, std::move(expander), is_receiver_style);
}
absl::StatusOr<Macro> MakeMacro(absl::string_view name, MacroExpander expander,
bool is_receiver_style) {
if (!internal::LexisIsIdentifier(name)) {
return absl::InvalidArgumentError(absl::StrCat(
"Macro function name \"", name, "\" is not a valid identifier"));
}
if (!expander) {
return absl::InvalidArgumentError(
absl::StrCat("Macro expander for \"", name, "\" cannot be empty"));
}
return Macro(name, std::move(expander), is_receiver_style);
}
} // namespace
absl::StatusOr<Macro> Macro::Global(absl::string_view name,
size_t argument_count,
MacroExpander expander) {
return MakeMacro(name, argument_count, std::move(expander), false);
}
absl::StatusOr<Macro> Macro::GlobalVarArg(absl::string_view name,
MacroExpander expander) {
return MakeMacro(name, std::move(expander), false);
}
absl::StatusOr<Macro> Macro::Receiver(absl::string_view name,
size_t argument_count,
MacroExpander expander) {
return MakeMacro(name, argument_count, std::move(expander), true);
}
absl::StatusOr<Macro> Macro::ReceiverVarArg(absl::string_view name,
MacroExpander expander) {
return MakeMacro(name, std::move(expander), true);
}
std::vector<Macro> Macro::AllMacros() {
return {HasMacro(), AllMacro(), ExistsMacro(), ExistsOneMacro(),
Map2Macro(), Map3Macro(), FilterMacro()};
}
Macro HasMacro() {
// The macro "has(m.f)" which tests the presence of a field, avoiding the
// need to specify the field as a string.
static const internal::NoDestructor<Macro> macro(
CelOperator::HAS, 1,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) {
if (!args.empty() && args[0].has_select_expr()) {
const auto& sel_expr = args[0].select_expr();
return sf->NewPresenceTestForMacro(macro_id, sel_expr.operand(),
sel_expr.field());
} else {
// error
return Expr();
}
});
return macro.get();
}
Macro AllMacro() {
// The macro "range.all(var, predicate)", which is true if for all
// elements in range the predicate holds.
static const internal::NoDestructor<Macro> macro(
CelOperator::ALL, 2,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) {
return sf->NewQuantifierExprForMacro(SourceFactory::QUANTIFIER_ALL,
macro_id, target, args);
},
/* receiver style*/ true);
return macro.get();
}
Macro ExistsMacro() {
// The macro "range.exists(var, predicate)", which is true if for at least
// one element in range the predicate holds.
static const internal::NoDestructor<Macro> macro(
CelOperator::EXISTS, 2,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) {
return sf->NewQuantifierExprForMacro(SourceFactory::QUANTIFIER_EXISTS,
macro_id, target, args);
},
/* receiver style*/ true);
return macro.get();
}
Macro ExistsOneMacro() {
// The macro "range.exists_one(var, predicate)", which is true if for
// exactly one element in range the predicate holds.
static const internal::NoDestructor<Macro> macro(
CelOperator::EXISTS_ONE, 2,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) {
return sf->NewQuantifierExprForMacro(
SourceFactory::QUANTIFIER_EXISTS_ONE, macro_id, target, args);
},
/* receiver style*/ true);
return macro.get();
}
Macro Map2Macro() {
// The macro "range.map(var, function)", applies the function to the vars
// in the range.
static const internal::NoDestructor<Macro> macro(
CelOperator::MAP, 2,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) {
return sf->NewMapForMacro(macro_id, target, args);
},
/* receiver style*/ true);
return macro.get();
}
Macro Map3Macro() {
// The macro "range.map(var, predicate, function)", applies the function
// to the vars in the range for which the predicate holds true. The other
// variables are filtered out.
static const internal::NoDestructor<Macro> macro(
CelOperator::MAP, 3,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) {
return sf->NewMapForMacro(macro_id, target, args);
},
/* receiver style*/ true);
return macro.get();
}
Macro FilterMacro() {
// The macro "range.filter(var, predicate)", filters out the variables for
// which the predicate is false.
static const internal::NoDestructor<Macro> macro(
CelOperator::FILTER, 2,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) {
return sf->NewFilterExprForMacro(macro_id, target, args);
},
/* receiver style*/ true);
return macro.get();
}
Macro OptMapMacro() {
static const internal::NoDestructor<Macro> macro(
"optMap", 2,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) -> Expr {
if (args.size() != 2) {
return sf->ReportError(args[0].id(), "optMap() requires 2 arguments");
}
if (!args[0].has_ident_expr()) {
return sf->ReportError(
args[0].id(),
"optMap() variable name must be a simple identifier");
}
const auto& var_name = args[0].ident_expr().name();
const auto& map_expr = args[1];
std::vector<Expr> call_args;
call_args.resize(3);
call_args[0] =
sf->NewReceiverCallForMacro(macro_id, "hasValue", target, {});
auto iter_range = sf->NewListForMacro(macro_id, {});
auto accu_init =
sf->NewReceiverCallForMacro(macro_id, "value", target, {});
auto condition = sf->NewLiteralBoolForMacro(macro_id, false);
auto step = sf->NewIdentForMacro(macro_id, var_name);
const auto& result = map_expr;
auto fold = sf->FoldForMacro(macro_id, "#unused", iter_range, var_name,
accu_init, condition, step, result);
call_args[1] =
sf->NewGlobalCallForMacro(macro_id, "optional.of", {fold});
call_args[2] = sf->NewGlobalCallForMacro(macro_id, "optional.none", {});
return sf->NewGlobalCallForMacro(macro_id, CelOperator::CONDITIONAL,
call_args);
},
true);
return macro.get();
}
Macro OptFlatMapMacro() {
static const internal::NoDestructor<Macro> macro(
"optFlatMap", 2,
[](const std::shared_ptr<SourceFactory>& sf, int64_t macro_id,
const Expr& target, const std::vector<Expr>& args) -> Expr {
if (args.size() != 2) {
return sf->ReportError(args[0].id(),
"optFlatMap() requires 2 arguments");
}
if (!args[0].has_ident_expr()) {
return sf->ReportError(
args[0].id(),
"optFlatMap() variable name must be a simple identifier");
}
const auto& var_name = args[0].ident_expr().name();
const auto& map_expr = args[1];
std::vector<Expr> call_args;
call_args.resize(3);
call_args[0] =
sf->NewReceiverCallForMacro(macro_id, "hasValue", target, {});
auto iter_range = sf->NewListForMacro(macro_id, {});
auto accu_init =
sf->NewReceiverCallForMacro(macro_id, "value", target, {});
auto condition = sf->NewLiteralBoolForMacro(macro_id, false);
auto step = sf->NewIdentForMacro(macro_id, var_name);
const auto& result = map_expr;
call_args[1] =
sf->FoldForMacro(macro_id, "#unused", iter_range, var_name,
accu_init, condition, step, result);
call_args[2] = sf->NewGlobalCallForMacro(macro_id, "optional.none", {});
return sf->NewGlobalCallForMacro(macro_id, CelOperator::CONDITIONAL,
call_args);
},
true);
return macro.get();
}
} // namespace cel