-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathOperator.java
More file actions
218 lines (197 loc) · 7.82 KB
/
Copy pathOperator.java
File metadata and controls
218 lines (197 loc) · 7.82 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
// 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.parser;
import com.google.common.collect.ImmutableMap;
import dev.cel.common.ast.CelExpr;
import java.util.Objects;
import java.util.Optional;
/**
* Package-private enumeration of Common Expression Language operators.
*
* <p>Equivalent to https://pkg.go.dev/github.com/google/cel-go/common/operators.
*/
public enum Operator {
CONDITIONAL("_?_:_"),
LOGICAL_AND("_&&_", "&&"),
LOGICAL_OR("_||_", "||"),
LOGICAL_NOT("!_", "!"),
EQUALS("_==_", "=="),
NOT_EQUALS("_!=_", "!="),
LESS("_<_", "<"),
LESS_EQUALS("_<=_", "<="),
GREATER("_>_", ">"),
GREATER_EQUALS("_>=_", ">="),
ADD("_+_", "+"),
SUBTRACT("_-_", "-"),
MULTIPLY("_*_", "*"),
DIVIDE("_/_", "/"),
MODULO("_%_", "%"),
NEGATE("-_", "-"),
INDEX("_[_]"),
HAS("has"),
ALL("all"),
EXISTS("exists"),
EXISTS_ONE("exists_one"),
MAP("map"),
FILTER("filter"),
NOT_STRICTLY_FALSE("@not_strictly_false"),
IN("@in", "in"),
OPTIONAL_INDEX("_[?_]"),
OPTIONAL_SELECT("_?._"),
@Deprecated // Prefer NOT_STRICTLY_FALSE.
OLD_NOT_STRICTLY_FALSE("__not_strictly_false__"),
@Deprecated // Prefer IN.
OLD_IN("_in_");
private final String functionName;
private final String displayName;
Operator(String functionName) {
this(functionName, "");
}
Operator(String functionName, String displayName) {
this.functionName = functionName;
this.displayName = displayName;
}
/** Returns the mangled operator name, as used within the AST. */
public String getFunction() {
return functionName;
}
/** Returns the unmangled operator name, as used within the source text of an expression. */
String getSymbol() {
return displayName;
}
private static final ImmutableMap<String, Operator> OPERATORS =
ImmutableMap.<String, Operator>builder()
.put(ADD.getSymbol(), ADD)
.put(DIVIDE.getSymbol(), DIVIDE)
.put(EQUALS.getSymbol(), EQUALS)
.put(GREATER.getSymbol(), GREATER)
.put(GREATER_EQUALS.getSymbol(), GREATER_EQUALS)
.put(IN.getSymbol(), IN)
.put(LESS.getSymbol(), LESS)
.put(LESS_EQUALS.getSymbol(), LESS_EQUALS)
.put(MODULO.getSymbol(), MODULO)
.put(MULTIPLY.getSymbol(), MULTIPLY)
.put(NOT_EQUALS.getSymbol(), NOT_EQUALS)
.put(SUBTRACT.getSymbol(), SUBTRACT)
.buildOrThrow();
/** Lookup an operator by its unmangled name, as used with the source text of an expression. */
static Optional<Operator> find(String text) {
return Optional.ofNullable(OPERATORS.get(text));
}
private static final ImmutableMap<String, Operator> REVERSE_OPERATORS =
ImmutableMap.<String, Operator>builder()
.put(ADD.getFunction(), ADD)
.put(ALL.getFunction(), ALL)
.put(CONDITIONAL.getFunction(), CONDITIONAL)
.put(DIVIDE.getFunction(), DIVIDE)
.put(EQUALS.getFunction(), EQUALS)
.put(EXISTS.getFunction(), EXISTS)
.put(EXISTS_ONE.getFunction(), EXISTS_ONE)
.put(FILTER.getFunction(), FILTER)
.put(GREATER.getFunction(), GREATER)
.put(GREATER_EQUALS.getFunction(), GREATER_EQUALS)
.put(HAS.getFunction(), HAS)
.put(IN.getFunction(), IN)
.put(INDEX.getFunction(), INDEX)
.put(LESS.getFunction(), LESS)
.put(LESS_EQUALS.getFunction(), LESS_EQUALS)
.put(LOGICAL_AND.getFunction(), LOGICAL_AND)
.put(LOGICAL_NOT.getFunction(), LOGICAL_NOT)
.put(LOGICAL_OR.getFunction(), LOGICAL_OR)
.put(MAP.getFunction(), MAP)
.put(MODULO.getFunction(), MODULO)
.put(MULTIPLY.getFunction(), MULTIPLY)
.put(NEGATE.getFunction(), NEGATE)
.put(NOT_EQUALS.getFunction(), NOT_EQUALS)
.put(NOT_STRICTLY_FALSE.getFunction(), NOT_STRICTLY_FALSE)
.put(OLD_IN.getFunction(), OLD_IN)
.put(OLD_NOT_STRICTLY_FALSE.getFunction(), OLD_NOT_STRICTLY_FALSE)
.put(OPTIONAL_INDEX.getFunction(), OPTIONAL_INDEX)
.put(OPTIONAL_SELECT.getFunction(), OPTIONAL_SELECT)
.put(SUBTRACT.getFunction(), SUBTRACT)
.buildOrThrow();
// precedence of the operator, where the higher value means higher.
private static final ImmutableMap<String, Integer> PRECEDENCES =
ImmutableMap.<String, Integer>builder()
.put(CONDITIONAL.getFunction(), 8)
.put(LOGICAL_OR.getFunction(), 7)
.put(LOGICAL_AND.getFunction(), 6)
.put(EQUALS.getFunction(), 5)
.put(GREATER.getFunction(), 5)
.put(GREATER_EQUALS.getFunction(), 5)
.put(IN.getFunction(), 5)
.put(LESS.getFunction(), 5)
.put(LESS_EQUALS.getFunction(), 5)
.put(NOT_EQUALS.getFunction(), 5)
.put(ADD.getFunction(), 4)
.put(SUBTRACT.getFunction(), 4)
.put(DIVIDE.getFunction(), 3)
.put(MODULO.getFunction(), 3)
.put(MULTIPLY.getFunction(), 3)
.put(LOGICAL_NOT.getFunction(), 2)
.put(NEGATE.getFunction(), 2)
.put(INDEX.getFunction(), 1)
.buildOrThrow();
private static final ImmutableMap<String, String> UNARY_OPERATORS =
ImmutableMap.<String, String>builder()
.put(NEGATE.getFunction(), "-")
.put(LOGICAL_NOT.getFunction(), "!")
.buildOrThrow();
private static final ImmutableMap<String, String> BINARY_OPERATORS =
ImmutableMap.<String, String>builder()
.put(LOGICAL_OR.getFunction(), "||")
.put(LOGICAL_AND.getFunction(), "&&")
.put(LESS_EQUALS.getFunction(), "<=")
.put(LESS.getFunction(), "<")
.put(GREATER_EQUALS.getFunction(), ">=")
.put(GREATER.getFunction(), ">")
.put(EQUALS.getFunction(), "==")
.put(NOT_EQUALS.getFunction(), "!=")
.put(IN.getFunction(), "in")
.put(ADD.getFunction(), "+")
.put(SUBTRACT.getFunction(), "-")
.put(MULTIPLY.getFunction(), "*")
.put(DIVIDE.getFunction(), "/")
.put(MODULO.getFunction(), "%")
.buildOrThrow();
/** Lookup an operator by its mangled name (ex: _&&_), as used within the AST. */
public static Optional<Operator> findReverse(String op) {
return Optional.ofNullable(REVERSE_OPERATORS.get(op));
}
/** Lookup a binary operator by its mangled name, as used within the AST. */
static Optional<Operator> findReverseBinaryOperator(String op) {
if (Objects.equals(op, LOGICAL_NOT.getFunction()) || Objects.equals(op, NEGATE.getFunction())) {
return Optional.empty();
}
return Optional.ofNullable(REVERSE_OPERATORS.get(op));
}
static int lookupPrecedence(String op) {
return PRECEDENCES.getOrDefault(op, 0);
}
static Optional<String> lookupUnaryOperator(String op) {
return Optional.ofNullable(UNARY_OPERATORS.get(op));
}
static Optional<String> lookupBinaryOperator(String op) {
return Optional.ofNullable(BINARY_OPERATORS.get(op));
}
static boolean isOperatorLowerPrecedence(String op, CelExpr expr) {
if (!expr.exprKind().getKind().equals(CelExpr.ExprKind.Kind.CALL)) {
return false;
}
return lookupPrecedence(op) < lookupPrecedence(expr.call().function());
}
static boolean isOperatorLeftRecursive(String op) {
return !op.equals(LOGICAL_AND.getFunction()) && !op.equals(LOGICAL_OR.getFunction());
}
}