Element reference syntax¶
Element reference syntax is used by Momotor checklets to allow recipes and config bundles to easily and consistently refer to elements of a bundle using a standardized syntax. Usually these references are used in the recipe and config bundle options.
Reference¶
A reference refers to one or more
Result
,
Property
,
File
or
Option
elements in bundles.
The syntax for a reference is:
typed_reference ::=type
"["reference
[ ","reference
]* "]" type ::= "file" | "prop" | "opt" | "result" |outcome
|not_outcome
reference ::= [ "@"provider
] [ "#" id ( "," id )* ] [ ":"ref
] outcome ::= "pass" | "fail" | "error" | "skip" not_outcome ::= "not-"outcome
provider ::= "recipe" | "config" | "product" | "step" | "result" ref ::= name | class "#" name | name "@" domain
The type
defines the element type which is referenced. Choices are
element referenced |
|
---|---|
One or more
|
|
One or more
|
|
One or more
|
|
One or more
|
|
All |
|
All |
The provider
selects the bundle from which these elements are referenced. Choices are
element referenced |
|
---|---|
The |
|
The |
|
The |
|
|
|
The current |
Not all type
/ provider
combinations are valid.
For the prop
, result
, outcome
and not_outcome
types, only the @result
provider is valid.
Since there is only one provider valid for these types, specifying the provider is optional in this case.
For the opt
and file
types, all providers are valid.
Since ResultsBundle
bundles contain multiple results, one or more id
tokens
can be specified to limit the list of results. If no id
is given, all results in the bundle are referenced.
id
is not used with other providers. The id
can contain task id placeholders and these
will be expanded with the task numbers for the currently active task.
The prop
, file
and opt
types
require an additional name and a class (for file
types) or a domain
(for opt
types).
For file
types, the name can contain glob-like wildcards and can be quoted if it
contains space or any other special characters.
For opt
types, if domain is not provided it defaults to checklet
.
Similar to id
, task id placeholders will be expanded in references too.
Examples of references are:
reference |
result |
|
Selects properties with name |
|
Selects properties with name |
|
Same as above ( |
|
Selects the file with class |
|
Selects all files with class |
|
Selects all files with class |
|
Selects the option with name |
|
Selects the option with name |
|
Select all results from the results bundle |
|
Select result with id |
|
Select all passed results from the results bundle |
|
Select results with result id |
|
Same as above ( |
|
Select results with result id |
Reference value¶
A reference value is a single value generated from a Reference. Checklets can use reference values in options to resolve those options into values. References are also used as part of the Placeholder syntax.
A reference value is a Reference optionally prefixed with a modifier:
value_reference ::= [ "%"mod
]typed_reference
mod ::= "all" | "any" | "sum" | "max" | "min" | "cat" | "join" | "joinc" | "joins" | "joincs" | "json" | "first" | "last"
What value is produced by a reference is determined by the reference type
:
value |
|
---|---|
The |
|
The |
|
The mod
modifier indicates how the list of values produced by the reference is converted
into a single value. The default modifier is join
, but this can be changed by the
caller of the resolve_value_reference()
method.
result |
|
---|---|
True if all values are considered True [2] |
|
True if at least one value is considered True [2] |
|
False if all values are considered True [2] |
|
False if at least one value is considered True [2] |
|
Alias for |
|
The sum of the values [3] |
|
The sum of the values, rounded down to int [3] |
|
The sum of the values, rounded to the nearest int [3] |
|
The maximum of the values [3] |
|
The minimum of the values [3] |
|
All values concatenated without any separator |
|
All values concatenated with a single comma, without spaces |
|
Alias for |
|
All values concatenated with a space character |
|
All values concatenated with a comma followed by a space |
|
The values converted into a json list [4] |
|
The first value [5] |
|
The last value [5] |
All other modifiers convert the values to a string before joining.
Selector¶
A Selector filters references on the referenced value. The value is one of the attributes of the referenced elements, the same attribute as used for value references.
A selector has the following syntax:
selector ::=typed_reference
[selection
] selection ::=unary_oper
|binary_oper
value unary_oper ::= "?" | "!" binary_oper ::= "==" | "!=" | ">" | ">=" | "<" | "<="
operator |
action |
---|---|
(no selector) |
Selects all elements (i.e. same as the reference) |
Unary operator which selects the elements whose value is considered True [6] |
|
Unary operator which selects the elements whose value is considered False [6] |
|
Binary operators. Selects the elements whose value matches the equation. String values to compare with need to be quoted. |
Example selectors:
selector |
|
---|---|
|
Selects all passed results |
|
Also selects all passed results |
|
Selects all results containing a score property |
|
Selects all results with a score property greater than 1 |
Match¶
match ::= [ "%"mod
]selector
mod ::= "all" | "any" | "not" | "notall" | "notany"
A Match takes a Selector and collapses it into a boolean, depending on the mod
modifier.
match |
|
---|---|
No modifier or |
Matches if the selector is “true” for all referenced elements |
Matches if there is at least one selected element “true” |
|
Matches if not all or the selected elements are “true” |
|
Matches if not any of the selected elements is “true” |
elements |
no modifier or
|
|||
---|---|---|---|---|
all true |
true |
true |
false |
false |
all false |
false |
false |
true |
true |
mixed |
false |
true |
true |
false |
Example matches:
match |
|
---|---|
|
Matches if all results passed |
|
Matches if at least one result passed |
|
Matches if not all results passed |
|
Matches if at least one result did not pass |
|
Matches if all results contain a score property |
|
Matches if at least one result contains a score property |
|
Matches if all results contain a score or more than 1 |
Placeholder¶
Placeholders can be used inside a longer string. The placeholder will be replaced by the value produced by the Reference value
placeholder ::= "${" value_reference
"}"
Placeholders are reference values wrapped inside a ${...}
. To include a literal ${
in the string, use
$${
to escape the placeholder syntax.