-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathresolver.cc
More file actions
235 lines (214 loc) · 8.62 KB
/
resolver.cc
File metadata and controls
235 lines (214 loc) · 8.62 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
// 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 "eval/compiler/resolver.h"
#include <cstddef>
#include <cstdint>
#include <cstdio>
#include <string>
#include <utility>
#include <vector>
#include "absl/base/no_destructor.h"
#include "absl/container/flat_hash_map.h"
#include "absl/status/statusor.h"
#include "absl/strings/match.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/str_split.h"
#include "absl/strings/string_view.h"
#include "absl/strings/strip.h"
#include "absl/types/optional.h"
#include "absl/types/span.h"
#include "common/kind.h"
#include "common/type.h"
#include "common/type_reflector.h"
#include "common/value.h"
#include "internal/status_macros.h"
#include "runtime/function_overload_reference.h"
#include "runtime/function_registry.h"
#include "runtime/type_registry.h"
namespace google::api::expr::runtime {
using ::cel::IntValue;
using ::cel::TypeValue;
using ::cel::Value;
Resolver::Resolver(
absl::string_view container, const cel::FunctionRegistry& function_registry,
const cel::TypeRegistry&, const cel::TypeReflector& type_reflector,
const absl::flat_hash_map<std::string, cel::TypeRegistry::Enumeration>&
resolveable_enums,
bool resolve_qualified_type_identifiers)
: namespace_prefixes_(),
enum_value_map_(),
function_registry_(function_registry),
type_reflector_(type_reflector),
resolveable_enums_(resolveable_enums),
resolve_qualified_type_identifiers_(resolve_qualified_type_identifiers) {
// The constructor for the registry determines the set of possible namespace
// prefixes which may appear within the given expression container, and also
// eagerly maps possible enum names to enum values.
auto container_elements = absl::StrSplit(container, '.');
std::string prefix = "";
namespace_prefixes_.push_back(prefix);
for (const auto& elem : container_elements) {
// Tolerate trailing / leading '.'.
if (elem.empty()) {
continue;
}
absl::StrAppend(&prefix, elem, ".");
namespace_prefixes_.insert(namespace_prefixes_.begin(), prefix);
}
for (const auto& prefix : namespace_prefixes_) {
for (auto iter = resolveable_enums_.begin();
iter != resolveable_enums_.end(); ++iter) {
absl::string_view enum_name = iter->first;
if (!absl::StartsWith(enum_name, prefix)) {
continue;
}
auto remainder = absl::StripPrefix(enum_name, prefix);
const auto& enum_type = iter->second;
for (const auto& enumerator : enum_type.enumerators) {
auto key = absl::StrCat(remainder, !remainder.empty() ? "." : "",
enumerator.name);
enum_value_map_[key] = IntValue(enumerator.number);
}
}
}
}
std::vector<std::string> Resolver::FullyQualifiedNames(absl::string_view name,
int64_t expr_id) const {
// TODO: refactor the reference resolution into this method.
// and handle the case where this id is in the reference map as either a
// function name or identifier name.
std::vector<std::string> names;
auto prefixes = GetPrefixesFor(name);
for (const auto& prefix : prefixes) {
std::string fully_qualified_name = absl::StrCat(prefix, name);
names.push_back(fully_qualified_name);
}
return names;
}
absl::Span<const std::string> Resolver::GetPrefixesFor(
absl::string_view& name) const {
static const absl::NoDestructor<std::string> kEmptyPrefix("");
if (absl::StartsWith(name, ".")) {
name = name.substr(1);
return absl::MakeConstSpan(kEmptyPrefix.get(), 1);
}
return namespace_prefixes_;
}
absl::optional<cel::Value> Resolver::FindConstant(absl::string_view name,
int64_t expr_id) const {
auto prefixes = GetPrefixesFor(name);
for (const auto& prefix : prefixes) {
std::string qualified_name = absl::StrCat(prefix, name);
// Attempt to resolve the fully qualified name to a known enum.
auto enum_entry = enum_value_map_.find(qualified_name);
if (enum_entry != enum_value_map_.end()) {
return enum_entry->second;
}
// Conditionally resolve fully qualified names as type values if the option
// to do so is configured in the expression builder. If the type name is
// not qualified, then it too may be returned as a constant value.
if (resolve_qualified_type_identifiers_ ||
!absl::StrContains(qualified_name, ".")) {
auto type_value = type_reflector_.FindType(qualified_name);
if (type_value.ok() && type_value->has_value()) {
return TypeValue(**type_value);
}
}
}
return absl::nullopt;
}
std::vector<cel::FunctionOverloadReference> Resolver::FindOverloads(
absl::string_view name, bool receiver_style,
const std::vector<cel::Kind>& types, int64_t expr_id) const {
// Resolve the fully qualified names and then search the function registry
// for possible matches.
std::vector<cel::FunctionOverloadReference> funcs;
auto names = FullyQualifiedNames(name, expr_id);
for (auto it = names.begin(); it != names.end(); it++) {
// Only one set of overloads is returned along the namespace hierarchy as
// the function name resolution follows the same behavior as variable name
// resolution, meaning the most specific definition wins. This is different
// from how C++ namespaces work, as they will accumulate the overload set
// over the namespace hierarchy.
funcs = function_registry_.FindStaticOverloads(*it, receiver_style, types);
if (!funcs.empty()) {
return funcs;
}
}
return funcs;
}
std::vector<cel::FunctionOverloadReference> Resolver::FindOverloads(
absl::string_view name, bool receiver_style, size_t arity,
int64_t expr_id) const {
std::vector<cel::FunctionOverloadReference> funcs;
auto prefixes = GetPrefixesFor(name);
for (const auto& prefix : prefixes) {
std::string qualified_name = absl::StrCat(prefix, name);
// Only one set of overloads is returned along the namespace hierarchy as
// the function name resolution follows the same behavior as variable name
// resolution, meaning the most specific definition wins. This is different
// from how C++ namespaces work, as they will accumulate the overload set
// over the namespace hierarchy.
funcs = function_registry_.FindStaticOverloadsByArity(
qualified_name, receiver_style, arity);
if (!funcs.empty()) {
return funcs;
}
}
return funcs;
}
std::vector<cel::FunctionRegistry::LazyOverload> Resolver::FindLazyOverloads(
absl::string_view name, bool receiver_style,
const std::vector<cel::Kind>& types, int64_t expr_id) const {
// Resolve the fully qualified names and then search the function registry
// for possible matches.
std::vector<cel::FunctionRegistry::LazyOverload> funcs;
auto names = FullyQualifiedNames(name, expr_id);
for (const auto& name : names) {
funcs = function_registry_.FindLazyOverloads(name, receiver_style, types);
if (!funcs.empty()) {
return funcs;
}
}
return funcs;
}
std::vector<cel::FunctionRegistry::LazyOverload> Resolver::FindLazyOverloads(
absl::string_view name, bool receiver_style, size_t arity,
int64_t expr_id) const {
std::vector<cel::FunctionRegistry::LazyOverload> funcs;
auto prefixes = GetPrefixesFor(name);
for (const auto& prefix : prefixes) {
std::string qualified_name = absl::StrCat(prefix, name);
funcs = function_registry_.FindLazyOverloadsByArity(name, receiver_style,
arity);
if (!funcs.empty()) {
return funcs;
}
}
return funcs;
}
absl::StatusOr<absl::optional<std::pair<std::string, cel::Type>>>
Resolver::FindType(absl::string_view name, int64_t expr_id) const {
auto prefixes = GetPrefixesFor(name);
for (auto& prefix : prefixes) {
std::string qualified_name = absl::StrCat(prefix, name);
CEL_ASSIGN_OR_RETURN(auto maybe_type,
type_reflector_.FindType(qualified_name));
if (maybe_type.has_value()) {
return std::make_pair(std::move(qualified_name), std::move(*maybe_type));
}
}
return absl::nullopt;
}
} // namespace google::api::expr::runtime