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_outcomereference ::= [ "@"provider] [ "#" id ( "," id )* ] [ ":"ref] outcome ::= "pass" | "fail" | "error" | "skip" not_outcome ::= "not-"outcomeprovider ::= "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 references, see Task ID.
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.
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_referencemod ::= "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 |
|
- 1(1,2)
The
resultandoutcome/not_outcometypes produce different values, although they both referenceResultelements.
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 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 |
- 2(1,2,3,4)
For the
all,any,not,notallandnotanythe values are interpreted as booleans in the same way Python does: a 0 (zero), None or empty string is considered to be False, and anything else is considered to be True. Empty sequences result in None.- 3(1,2,3)
For the
sum,maxandminmodifiers, string values will be cast into float or int if possible, or ignored otherwise. If all values resolve to integers, the result of these modifiers will be an integer. If at least one of the values is a floating point value, the result will be a float. Empty sequences result in None.- 4
The
jsonmodifier returns a json list with the values converted to equivalent JSON types.- 5(1,2)
The
firstandlastmodifiers return the first or last value and keep the type intact. Empty sequences result in None.
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_opervalue 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. |
- 6(1,2)
For the
?and!operators the values are interpreted as booleans in the same way Python does: a 0 (zero), None or empty string is considered to be False, and anything else is considered to be True.
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]selectormod ::= "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.