-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathCelOverloadDecl.java
More file actions
236 lines (199 loc) · 8.71 KB
/
Copy pathCelOverloadDecl.java
File metadata and controls
236 lines (199 loc) · 8.71 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
// Copyright 2022 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.
package dev.cel.common;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.errorprone.annotations.CheckReturnValue;
import com.google.errorprone.annotations.Immutable;
import dev.cel.common.types.CelKind;
import dev.cel.common.types.CelType;
import java.util.Arrays;
import java.util.List;
/**
* Abstract representation of a CEL function overload declaration.
*
* <p>An overload indicates a function's parameter types and return type, where types are specified
* via CEL native type representations (See: {@link CelType}.
*
* <p>An overload is declared in either a global function `Ex: f(x, ...)` or a method call style
* `Ex: x.f(...)`.
*/
// TODO: Port https://github.com/cel-expr/cel-go/pull/1483 to support first-class
// properties on declarations and bindings for late-bound and asynchronous functions.
@AutoValue
@Immutable
public abstract class CelOverloadDecl {
/** Required. Globally unique overload name. */
public abstract String overloadId();
/**
* List of function parameter type values.
*
* <p>Param types are disjoint after generic type parameters have been replaced with the type
* `DYN`. Since the `DYN` type is compatible with any other type, this means that if `A` is a type
* parameter, the function types `int<A>` and `int<int>` are not disjoint. Likewise, `map<string,
* string>` is not disjoint from `map<K, V>`.
*
* <p>When the {@link #resultType} of a function is a generic type param, the type param name also
* appears as the `type` of on at least one params.
*/
public abstract ImmutableList<CelType> parameterTypes();
/** The type param names associated with the function declaration. */
public abstract ImmutableSet<String> typeParameterNames();
/**
* Required. The result type of the function. For example, the operator `string.isEmpty()` would
* have `result_type` of `CelKind.BOOL`.
*/
public abstract CelType resultType();
/**
* Denotes whether the function is declared in a global function `Ex: f(x, ...)` or a method call
* style `Ex: x.f(...)`.
*/
public abstract boolean isInstanceFunction();
/** Documentation string for the overload. */
public abstract String doc();
public abstract Builder toBuilder();
/** Create a new builder to construct a {@link CelOverloadDecl} instance */
public static Builder newBuilder() {
return new AutoValue_CelOverloadDecl.Builder().setDoc("");
}
/** Builder for configuring the {@link CelOverloadDecl}. */
@AutoValue.Builder
public abstract static class Builder {
/** Sets the value for {@link #overloadId()} */
public abstract Builder setOverloadId(String overloadId);
/**
* Sets the parameter types {@link #parameterTypes()}. Note that this will override any
* parameter types added via the accumulator methods {@link #addParameterTypes}.
*/
public abstract Builder setParameterTypes(ImmutableList<CelType> value);
public abstract CelType resultType();
/** Sets the result type {@link #resultType()} */
public abstract Builder setResultType(CelType value);
/**
* Sets the function declaration style {@link #isInstanceFunction()}. False for global function
* style, true for member call style
*/
public abstract Builder setIsInstanceFunction(boolean value);
/** Sets the documentation for the overload */
public abstract Builder setDoc(String value);
public abstract boolean isInstanceFunction();
public abstract ImmutableList<CelType> parameterTypes();
/**
* Not public. This is collected in {@link #build()} by visiting all the parameter types and the
* expected result type.
*/
abstract Builder setTypeParameterNames(ImmutableSet<String> value);
abstract ImmutableList.Builder<CelType> parameterTypesBuilder();
/** Accumulates parameter types into {@link #parameterTypesBuilder()} */
@CanIgnoreReturnValue
public final Builder addParameterTypes(Iterable<CelType> parameterTypes) {
checkNotNull(parameterTypes);
parameterTypesBuilder().addAll(parameterTypes);
return this;
}
/** Accumulates parameter types into {@link #parameterTypesBuilder()} */
@CanIgnoreReturnValue
public Builder addParameterTypes(CelType... parameterTypes) {
checkNotNull(parameterTypes);
parameterTypesBuilder().add(parameterTypes);
return this;
}
@CheckReturnValue
abstract CelOverloadDecl autoBuild();
/** Build a new instance of the {@link CelOverloadDecl} */
@CheckReturnValue
public CelOverloadDecl build() {
ImmutableSet.Builder<String> typeParamNameBuilder = new ImmutableSet.Builder<>();
for (CelType type : parameterTypes()) {
collectParamNames(typeParamNameBuilder, type);
}
collectParamNames(typeParamNameBuilder, resultType());
setTypeParameterNames(typeParamNameBuilder.build());
return autoBuild();
}
}
/** Helper method for declaring a member function overload */
@CheckReturnValue
public static CelOverloadDecl newMemberOverload(
String overloadId, CelType resultType, CelType... paramTypes) {
return newMemberOverload(overloadId, resultType, Arrays.asList(paramTypes));
}
/** Helper method for declaring a member function overload */
@CheckReturnValue
public static CelOverloadDecl newMemberOverload(
String overloadId, CelType resultType, List<CelType> paramTypes) {
return newMemberOverload(overloadId, /* doc= */ "", resultType, paramTypes);
}
/** Helper method for declaring a member function overload */
@CheckReturnValue
public static CelOverloadDecl newMemberOverload(
String overloadId, String doc, CelType resultType, CelType... paramTypes) {
return newMemberOverload(overloadId, doc, resultType, Arrays.asList(paramTypes));
}
/** Helper method for declaring a member function overload */
@CheckReturnValue
public static CelOverloadDecl newMemberOverload(
String overloadId, String doc, CelType resultType, List<CelType> paramTypes) {
return newOverload(overloadId, doc, resultType, paramTypes, /* isInstanceFunction= */ true);
}
/** Helper method for declaring a global function overload */
@CheckReturnValue
public static CelOverloadDecl newGlobalOverload(
String overloadId, CelType resultType, CelType... paramTypes) {
return newGlobalOverload(overloadId, resultType, Arrays.asList(paramTypes));
}
/** Helper method for declaring a global function overload */
@CheckReturnValue
public static CelOverloadDecl newGlobalOverload(
String overloadId, CelType resultType, List<CelType> paramTypes) {
return newGlobalOverload(overloadId, /* doc= */ "", resultType, paramTypes);
}
/** Helper method for declaring a global function overload */
@CheckReturnValue
public static CelOverloadDecl newGlobalOverload(
String overloadId, String doc, CelType resultType, CelType... paramTypes) {
return newGlobalOverload(overloadId, doc, resultType, Arrays.asList(paramTypes));
}
/** Helper method for declaring a global function overload */
@CheckReturnValue
public static CelOverloadDecl newGlobalOverload(
String overloadId, String doc, CelType resultType, List<CelType> paramTypes) {
return newOverload(overloadId, doc, resultType, paramTypes, /* isInstanceFunction= */ false);
}
private static CelOverloadDecl newOverload(
String overloadId,
String doc,
CelType resultType,
List<CelType> paramTypes,
boolean isInstanceFunction) {
return CelOverloadDecl.newBuilder()
.setOverloadId(overloadId)
.setIsInstanceFunction(isInstanceFunction)
.setResultType(resultType)
.addParameterTypes(paramTypes)
.setDoc(doc)
.build();
}
private static void collectParamNames(ImmutableSet.Builder<String> typeParamNames, CelType type) {
if (type.kind().equals(CelKind.TYPE_PARAM)) {
typeParamNames.add(type.name());
}
for (CelType param : type.parameters()) {
collectParamNames(typeParamNames, param);
}
}
}