-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathProgramPlanner.java
More file actions
103 lines (90 loc) · 3.51 KB
/
ProgramPlanner.java
File metadata and controls
103 lines (90 loc) · 3.51 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
// 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.ImmutableMap;
import javax.annotation.concurrent.ThreadSafe;
import dev.cel.common.CelAbstractSyntaxTree;
import dev.cel.common.annotations.Internal;
import dev.cel.common.ast.CelConstant;
import dev.cel.common.ast.CelExpr;
import dev.cel.common.ast.CelReference;
import dev.cel.common.types.CelType;
import dev.cel.runtime.CelEvaluationException;
import dev.cel.runtime.CelEvaluationExceptionBuilder;
import dev.cel.runtime.Interpretable;
import dev.cel.runtime.Program;
/**
* {@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 {
/**
* 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 unused) {
switch (celExpr.getKind()) {
case CONSTANT:
return planConstant(celExpr.constant());
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());
}
}
@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() {
return new ProgramPlanner();
}
private ProgramPlanner() {}
}