-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCelFunctionOverload.java
More file actions
103 lines (90 loc) · 3.21 KB
/
Copy pathCelFunctionOverload.java
File metadata and controls
103 lines (90 loc) · 3.21 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 2024 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;
import com.google.common.collect.ImmutableList;
import com.google.errorprone.annotations.Immutable;
import java.util.Map;
/** Interface describing the general signature of all CEL custom function implementations. */
@Immutable
@FunctionalInterface
public interface CelFunctionOverload {
/** Evaluate a set of arguments throwing a {@code CelException} on error. */
Object apply(Object[] args) throws CelEvaluationException;
/**
* Helper interface for describing unary functions where the type-parameter is used to improve
* compile-time correctness of function bindings.
*/
@Immutable
@FunctionalInterface
interface Unary<T> {
Object apply(T arg) throws CelEvaluationException;
}
/**
* Helper interface for describing binary functions where the type parameters are used to improve
* compile-time correctness of function bindings.
*/
@Immutable
@FunctionalInterface
interface Binary<T1, T2> {
Object apply(T1 arg1, T2 arg2) throws CelEvaluationException;
}
/**
* Returns true if the overload's expected argument types match the types of the given arguments.
*/
static boolean canHandle(
Object[] arguments, ImmutableList<Class<?>> parameterTypes, boolean isStrict) {
if (parameterTypes.size() != arguments.length) {
return false;
}
for (int i = 0; i < parameterTypes.size(); i++) {
Class<?> paramType = parameterTypes.get(i);
Object arg = arguments[i];
boolean result = canHandleArg(arg, paramType, isStrict);
if (!result) {
return false;
}
}
return true;
}
static boolean canHandle(Object arg, ImmutableList<Class<?>> parameterTypes, boolean isStrict) {
if (parameterTypes.size() != 1) {
return false;
}
return canHandleArg(arg, parameterTypes.get(0), isStrict);
}
static boolean canHandle(
Object arg1, Object arg2, ImmutableList<Class<?>> parameterTypes, boolean isStrict) {
if (parameterTypes.size() != 2) {
return false;
}
return canHandleArg(arg1, parameterTypes.get(0), isStrict)
&& canHandleArg(arg2, parameterTypes.get(1), isStrict);
}
static boolean canHandleArg(Object arg, Class<?> paramType, boolean isStrict) {
// null can be assigned to messages, maps, and to objects.
// TODO: Remove null special casing
if (arg == null) {
if (paramType != Object.class && !Map.class.isAssignableFrom(paramType)) {
return false;
}
return true;
}
if (arg instanceof Exception || arg instanceof CelUnknownSet) {
if (!isStrict) {
return true;
}
}
return paramType.isAssignableFrom(arg.getClass());
}
}