-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathProgramPlanner.java
More file actions
220 lines (189 loc) · 7.68 KB
/
ProgramPlanner.java
File metadata and controls
220 lines (189 loc) · 7.68 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
// Copyright 2025 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.runtime.planner;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import javax.annotation.concurrent.ThreadSafe;
import dev.cel.common.CelAbstractSyntaxTree;
import dev.cel.common.CelContainer;
import dev.cel.common.annotations.Internal;
import dev.cel.common.ast.CelConstant;
import dev.cel.common.ast.CelExpr;
import dev.cel.common.ast.CelExpr.CelList;
import dev.cel.common.ast.CelExpr.CelMap;
import dev.cel.common.ast.CelExpr.CelStruct;
import dev.cel.common.ast.CelExpr.CelStruct.Entry;
import dev.cel.common.ast.CelReference;
import dev.cel.common.types.CelKind;
import dev.cel.common.types.CelType;
import dev.cel.common.types.CelTypeProvider;
import dev.cel.common.types.StructType;
import dev.cel.common.types.TypeType;
import dev.cel.common.values.CelValueProvider;
import dev.cel.runtime.CelEvaluationException;
import dev.cel.runtime.CelEvaluationExceptionBuilder;
import dev.cel.runtime.Interpretable;
import dev.cel.runtime.Program;
import java.util.NoSuchElementException;
/**
* {@code ProgramPlanner} resolves functions, types, and identifiers at plan time given a
* parsed-only or a type-checked expression.
*/
@ThreadSafe
@Internal
public final class ProgramPlanner {
private final CelTypeProvider typeProvider;
private final CelValueProvider valueProvider;
private final AttributeFactory attributeFactory;
/**
* Plans a {@link Program} from the provided parsed-only or type-checked {@link
* CelAbstractSyntaxTree}.
*/
public Program plan(CelAbstractSyntaxTree ast) throws CelEvaluationException {
Interpretable plannedInterpretable;
try {
plannedInterpretable = plan(ast.getExpr(), PlannerContext.create(ast));
} catch (RuntimeException e) {
throw CelEvaluationExceptionBuilder.newBuilder(e.getMessage()).setCause(e).build();
}
return PlannedProgram.create(plannedInterpretable);
}
private Interpretable plan(CelExpr celExpr, PlannerContext ctx) {
switch (celExpr.getKind()) {
case CONSTANT:
return planConstant(celExpr.constant());
case IDENT:
return planIdent(celExpr, ctx);
case LIST:
return planCreateList(celExpr, ctx);
case STRUCT:
return planCreateStruct(celExpr, ctx);
case MAP:
return planCreateMap(celExpr, ctx);
case NOT_SET:
throw new UnsupportedOperationException("Unsupported kind: " + celExpr.getKind());
default:
throw new IllegalArgumentException("Not yet implemented kind: " + celExpr.getKind());
}
}
private Interpretable planConstant(CelConstant celConstant) {
switch (celConstant.getKind()) {
case NULL_VALUE:
return EvalConstant.create(celConstant.nullValue());
case BOOLEAN_VALUE:
return EvalConstant.create(celConstant.booleanValue());
case INT64_VALUE:
return EvalConstant.create(celConstant.int64Value());
case UINT64_VALUE:
return EvalConstant.create(celConstant.uint64Value());
case DOUBLE_VALUE:
return EvalConstant.create(celConstant.doubleValue());
case STRING_VALUE:
return EvalConstant.create(celConstant.stringValue());
case BYTES_VALUE:
return EvalConstant.create(celConstant.bytesValue());
default:
throw new IllegalStateException("Unsupported kind: " + celConstant.getKind());
}
}
private Interpretable planIdent(CelExpr celExpr, PlannerContext ctx) {
CelReference ref = ctx.referenceMap().get(celExpr.id());
if (ref != null) {
return planCheckedIdent(celExpr.id(), ref, ctx.typeMap());
}
return EvalAttribute.create(attributeFactory.newMaybeAttribute(celExpr.ident().name()));
}
private Interpretable planCheckedIdent(
long id, CelReference identRef, ImmutableMap<Long, CelType> typeMap) {
if (identRef.value().isPresent()) {
return planConstant(identRef.value().get());
}
CelType type = typeMap.get(id);
if (type.kind().equals(CelKind.TYPE)) {
TypeType identType =
typeProvider
.findType(identRef.name())
.map(TypeType::create)
.orElseThrow(
() ->
new NoSuchElementException(
"Reference to an undefined type: " + identRef.name()));
return EvalConstant.create(identType);
}
return EvalAttribute.create(attributeFactory.newAbsoluteAttribute(identRef.name()));
}
private Interpretable planCreateStruct(CelExpr celExpr, PlannerContext ctx) {
CelStruct struct = celExpr.struct();
CelType structType =
typeProvider
.findType(struct.messageName())
.orElseThrow(
() -> new IllegalArgumentException("Undefined type name: " + struct.messageName()));
if (!structType.kind().equals(CelKind.STRUCT)) {
throw new IllegalArgumentException(
String.format(
"Expected struct type for %s, got %s", structType.name(), structType.kind()));
}
ImmutableList<Entry> entries = struct.entries();
String[] keys = new String[entries.size()];
Interpretable[] values = new Interpretable[entries.size()];
for (int i = 0; i < entries.size(); i++) {
Entry entry = entries.get(i);
keys[i] = entry.fieldKey();
values[i] = plan(entry.value(), ctx);
}
return EvalCreateStruct.create(valueProvider, (StructType) structType, keys, values);
}
private Interpretable planCreateList(CelExpr celExpr, PlannerContext ctx) {
CelList list = celExpr.list();
ImmutableList<CelExpr> elements = list.elements();
Interpretable[] values = new Interpretable[elements.size()];
for (int i = 0; i < elements.size(); i++) {
values[i] = plan(elements.get(i), ctx);
}
return EvalCreateList.create(values);
}
private Interpretable planCreateMap(CelExpr celExpr, PlannerContext ctx) {
CelMap map = celExpr.map();
ImmutableList<CelMap.Entry> entries = map.entries();
Interpretable[] keys = new Interpretable[entries.size()];
Interpretable[] values = new Interpretable[entries.size()];
for (int i = 0; i < entries.size(); i++) {
CelMap.Entry entry = entries.get(i);
keys[i] = plan(entry.key(), ctx);
values[i] = plan(entry.value(), ctx);
}
return EvalCreateMap.create(keys, values);
}
@AutoValue
abstract static class PlannerContext {
abstract ImmutableMap<Long, CelReference> referenceMap();
abstract ImmutableMap<Long, CelType> typeMap();
private static PlannerContext create(CelAbstractSyntaxTree ast) {
return new AutoValue_ProgramPlanner_PlannerContext(ast.getReferenceMap(), ast.getTypeMap());
}
}
public static ProgramPlanner newPlanner(
CelTypeProvider typeProvider, CelValueProvider valueProvider) {
return new ProgramPlanner(typeProvider, valueProvider);
}
private ProgramPlanner(CelTypeProvider typeProvider, CelValueProvider valueProvider) {
this.typeProvider = typeProvider;
this.valueProvider = valueProvider;
// TODO: Container support
this.attributeFactory =
AttributeFactory.newAttributeFactory(CelContainer.newBuilder().build(), typeProvider);
}
}