-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathchecker_options.h
More file actions
70 lines (59 loc) · 2.45 KB
/
checker_options.h
File metadata and controls
70 lines (59 loc) · 2.45 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
// 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.
#ifndef THIRD_PARTY_CEL_CPP_CHECKER_CHECKER_OPTIONS_H_
#define THIRD_PARTY_CEL_CPP_CHECKER_CHECKER_OPTIONS_H_
namespace cel {
enum class CheckerAnnotationSupport { kStrip, kRetain, kCheck };
// Options for enabling core type checker features.
struct CheckerOptions {
// Enable overloads for numeric comparisons across types.
// For example, 1.0 < 2 will resolve to lt_double_int.
//
// By default, this is disabled and expressions must explicitly cast to dyn or
// the same type to compare.
bool enable_cross_numeric_comparisons = false;
// Enable legacy behavior for null assignment.
//
// Historically, CEL has allowed null to be assigned to structs, abstract
// types, durations, timestamps, and any types. This is inconsistent with
// CEL's usual interpretation of null as a literal JSON null.
//
// TODO: Need a concrete plan for updating existing CEL
// expressions that depend on the old behavior.
bool enable_legacy_null_assignment = true;
// Enable updating parsed struct type names to the fully qualified type name
// when resolved.
//
// Enabled by default, but can be disabled to preserve the original type name
// as parsed.
bool update_struct_type_names = true;
// Maximum number (inclusive) of expression nodes to check for an input
// expression.
//
// If exceeded, the checker should return a status with code InvalidArgument.
int max_expression_node_count = 100000;
// Maximum number (inclusive) of error-level issues to tolerate for an input
// ast.
//
// If exceeded, the checker will stop processing the ast and return
// the current set of issues.
int max_error_issues = 20;
// Annotation support level.
//
// Default behavior is to strip annotations.
CheckerAnnotationSupport annotation_support =
CheckerAnnotationSupport::kStrip;
};
} // namespace cel
#endif // THIRD_PARTY_CEL_CPP_CHECKER_CHECKER_OPTIONS_H_