package ext
import "github.com/google/cel-go/ext"
Package ext contains CEL extension libraries where each library defines a related set of constants, functions, macros, or other configuration settings which may not be covered by the core CEL spec.
Index ¶
- func Encoders() cel.EnvOption
- func Math() cel.EnvOption
- func NativeTypes(refTypes ...any) cel.EnvOption
- func Protos() cel.EnvOption
- func Strings() cel.EnvOption
Functions ¶
func Encoders ¶
Encoders returns a cel.EnvOption to configure extended functions for string, byte, and object encodings.
Base64.Decode
Decodes base64-encoded string to bytes.
This function will return an error if the string input is not base64-encoded.
base64.decode(<string>) -> <bytes>
Examples:
base64.decode('aGVsbG8=') // return b'hello' base64.decode('aGVsbG8') // error
Base64.Encode
Encodes bytes to a base64-encoded string.
base64.encode(<bytes>) -> <string>
Examples:
base64.encode(b'hello') // return b'aGVsbG8='
func Math ¶
Math returns a cel.EnvOption to configure namespaced math helper macros and functions.
Note, all macros use the 'math' namespace; however, at the time of macro expansion the namespace looks just like any other identifier. If you are currently using a variable named 'math', the macro will likely work just as intended; however, there is some chance for collision.
Math.Greatest
Returns the greatest valued number present in the arguments to the macro.
Greatest is a variable argument count macro which must take at least one argument. Simple numeric and list literals are supported as valid argument types; however, other literals will be flagged as errors during macro expansion. If the argument expression does not resolve to a numeric or list(numeric) type during type-checking, or during runtime then an error will be produced. If a list argument is empty, this too will produce an error.
math.greatest(<arg>, ...) -> <double|int|uint>
Examples:
math.greatest(1) // 1 math.greatest(1u, 2u) // 2u math.greatest(-42.0, -21.5, -100.0) // -21.5 math.greatest([-42.0, -21.5, -100.0]) // -21.5 math.greatest(numbers) // numbers must be list(numeric) math.greatest() // parse error math.greatest('string') // parse error math.greatest(a, b) // check-time error if a or b is non-numeric math.greatest(dyn('string')) // runtime error
Math.Least
Returns the least valued number present in the arguments to the macro.
Least is a variable argument count macro which must take at least one argument. Simple numeric and list literals are supported as valid argument types; however, other literals will be flagged as errors during macro expansion. If the argument expression does not resolve to a numeric or list(numeric) type during type-checking, or during runtime then an error will be produced. If a list argument is empty, this too will produce an error.
math.least(<arg>, ...) -> <double|int|uint>
Examples:
math.least(1) // 1 math.least(1u, 2u) // 1u math.least(-42.0, -21.5, -100.0) // -100.0 math.least([-42.0, -21.5, -100.0]) // -100.0 math.least(numbers) // numbers must be list(numeric) math.least() // parse error math.least('string') // parse error math.least(a, b) // check-time error if a or b is non-numeric math.least(dyn('string')) // runtime error
func NativeTypes ¶
NativeTypes creates a type provider which uses reflect.Type and reflect.Value instances to produce type definitions that can be used within CEL.
All struct types in Go are exposed to CEL via their simple package name and struct type name:
```go package identity
type Account struct { ID int }
```
The type `identity.Account` would be exported to CEL using the same qualified name, e.g. `identity.Account{ID: 1234}` would create a new `Account` instance with the `ID` field populated.
Only exported fields are exposed via NativeTypes, and the type-mapping between Go and CEL is as follows:
| Go type | CEL type | |-------------------------------------|-----------| | bool | bool | | []byte | bytes | | float32, float64 | double | | int, int8, int16, int32, int64 | int | | string | string | | uint, uint8, uint16, uint32, uint64 | uint | | time.Duration | duration | | time.Time | timestamp | | array, slice | list | | map | map |
Please note, if you intend to configure support for proto messages in addition to native types, you will need to provide the protobuf types before the golang native types. The same advice holds if you are using custom type adapters and type providers. The native type provider composes over whichever type adapter and provider is configured in the cel.Env at the time that it is invoked.
func Protos ¶
Protos returns a cel.EnvOption to configure extended macros and functions for proto manipulation.
Note, all macros use the 'proto' namespace; however, at the time of macro expansion the namespace looks just like any other identifier. If you are currently using a variable named 'proto', the macro will likely work just as intended; however, there is some chance for collision.
Protos.GetExt
Macro which generates a select expression that retrieves an extension field from the input proto2 syntax message. If the field is not set, the default value forthe extension field is returned according to safe-traversal semantics.
proto.getExt(<msg>, <fully.qualified.extension.name>) -> <field-type>
Examples:
proto.getExt(msg, google.expr.proto2.test.int32_ext) // returns int value
Protos.HasExt
Macro which generates a test-only select expression that determines whether an extension field is set on a proto2 syntax message.
proto.hasExt(<msg>, <fully.qualified.extension.name>) -> <bool>
Examples:
proto.hasExt(msg, google.expr.proto2.test.int32_ext) // returns true || false
func Strings ¶
Strings returns a cel.EnvOption to configure extended functions for string manipulation. As a general note, all indices are zero-based.
CharAt
Returns the character at the given position. If the position is negative, or greater than the length of the string, the function will produce an error:
<string>.charAt(<int>) -> <string>
Examples:
'hello'.charAt(4) // return 'o' 'hello'.charAt(5) // return '' 'hello'.charAt(-1) // error
IndexOf
Returns the integer index of the first occurrence of the search string. If the search string is not found the function returns -1.
The function also accepts an optional position from which to begin the substring search. If the substring is the empty string, the index where the search starts is returned (zero or custom).
<string>.indexOf(<string>) -> <int> <string>.indexOf(<string>, <int>) -> <int>
Examples:
'hello mellow'.indexOf('') // returns 0 'hello mellow'.indexOf('ello') // returns 1 'hello mellow'.indexOf('jello') // returns -1 'hello mellow'.indexOf('', 2) // returns 2 'hello mellow'.indexOf('ello', 2) // returns 7 'hello mellow'.indexOf('ello', 20) // error
Join
Returns a new string where the elements of string list are concatenated.
The function also accepts an optional separator which is placed between elements in the resulting string.
<list<string>>.join() -> <string> <list<string>>.join(<string>) -> <string>
Examples:
['hello', 'mellow'].join() // returns 'hellomellow' ['hello', 'mellow'].join(' ') // returns 'hello mellow' [].join() // returns '' [].join('/') // returns ''
LastIndexOf
Returns the integer index at the start of the last occurrence of the search string. If the search string is not found the function returns -1.
The function also accepts an optional position which represents the last index to be considered as the beginning of the substring match. If the substring is the empty string, the index where the search starts is returned (string length or custom).
<string>.lastIndexOf(<string>) -> <int> <string>.lastIndexOf(<string>, <int>) -> <int>
Examples:
'hello mellow'.lastIndexOf('') // returns 12 'hello mellow'.lastIndexOf('ello') // returns 7 'hello mellow'.lastIndexOf('jello') // returns -1 'hello mellow'.lastIndexOf('ello', 6) // returns 1 'hello mellow'.lastIndexOf('ello', -1) // error
LowerAscii
Returns a new string where all ASCII characters are lower-cased.
This function does not perform Unicode case-mapping for characters outside the ASCII range.
<string>.lowerAscii() -> <string>
Examples:
'TacoCat'.lowerAscii() // returns 'tacocat' 'TacoCÆt Xii'.lowerAscii() // returns 'tacocÆt xii'
Replace
Returns a new string based on the target, which replaces the occurrences of a search string with a replacement string if present. The function accepts an optional limit on the number of substring replacements to be made.
When the replacement limit is 0, the result is the original string. When the limit is a negative number, the function behaves the same as replace all.
<string>.replace(<string>, <string>) -> <string> <string>.replace(<string>, <string>, <int>) -> <string>
Examples:
'hello hello'.replace('he', 'we') // returns 'wello wello' 'hello hello'.replace('he', 'we', -1) // returns 'wello wello' 'hello hello'.replace('he', 'we', 1) // returns 'wello hello' 'hello hello'.replace('he', 'we', 0) // returns 'hello hello'
Split
Returns a list of strings split from the input by the given separator. The function accepts an optional argument specifying a limit on the number of substrings produced by the split.
When the split limit is 0, the result is an empty list. When the limit is 1, the result is the target string to split. When the limit is a negative number, the function behaves the same as split all.
<string>.split(<string>) -> <list<string>> <string>.split(<string>, <int>) -> <list<string>>
Examples:
'hello hello hello'.split(' ') // returns ['hello', 'hello', 'hello'] 'hello hello hello'.split(' ', 0) // returns [] 'hello hello hello'.split(' ', 1) // returns ['hello hello hello'] 'hello hello hello'.split(' ', 2) // returns ['hello', 'hello hello'] 'hello hello hello'.split(' ', -1) // returns ['hello', 'hello', 'hello']
Substring
Returns the substring given a numeric range corresponding to character positions. Optionally may omit the trailing range for a substring from a given character position until the end of a string.
Character offsets are 0-based with an inclusive start range and exclusive end range. It is an error to specify an end range that is lower than the start range, or for either the start or end index to be negative or exceed the string length.
<string>.substring(<int>) -> <string> <string>.substring(<int>, <int>) -> <string>
Examples:
'tacocat'.substring(4) // returns 'cat' 'tacocat'.substring(0, 4) // returns 'taco' 'tacocat'.substring(-1) // error 'tacocat'.substring(2, 1) // error
Trim
Returns a new string which removes the leading and trailing whitespace in the target string. The trim function uses the Unicode definition of whitespace which does not include the zero-width spaces. See: https://en.wikipedia.org/wiki/Whitespace_character#Unicode
<string>.trim() -> <string>
Examples:
' \ttrim\n '.trim() // returns 'trim'
UpperAscii
Returns a new string where all ASCII characters are upper-cased.
This function does not perform Unicode case-mapping for characters outside the ASCII range.
<string>.upperAscii() -> <string>
Examples:
'TacoCat'.upperAscii() // returns 'TACOCAT' 'TacoCÆt Xii'.upperAscii() // returns 'TACOCÆT XII'
Source Files ¶
encoders.go guards.go math.go native.go protos.go strings.go
- Version
- v0.13.0
- Published
- Dec 6, 2022
- Platform
- js/wasm
- Imports
- 16 packages
- Last checked
- 1 second ago –
Tools for package owners.