// Location identifies uniquely SVGHMI instance
// HMI Tree computed from VARIABLES.CSV in svghmi.py
const "hmitree", "ns:GetHMITree()";
noindex > HMI_CURRENT_PAGE
const "categories", "exsl:node-set($_categories)";
const "_indexed_hmitree" apply "$hmitree", mode="index";
const "indexed_hmitree", "exsl:node-set($_indexed_hmitree)";
emit "preamble:hmi-tree" {
| var hmi_hash = [«$hmitree/@hash»];
| var heartbeat_index = «$indexed_hmitree/*[@hmipath = '/HEARTBEAT']/@index»;
| var current_page_var_index = «$indexed_hmitree/*[@hmipath = concat('/CURRENT_PAGE_', $instance_name)]/@index»;
foreach "$indexed_hmitree/*"
| "«substring(local-name(), 5)»"`if "position()!=last()" > ,`
foreach "$indexed_hmitree/*"
| "«@hmipath»"`if "position()!=last()" > ,`
foreach "$indexed_hmitree/*[local-name() = 'HMI_NODE']"
| "«@hmipath»" : [«@index», "«@class»"]`if "position()!=last()" > ,`
template "*", mode="index" {
param "parentpath", "''";
when "count(ancestor::*)=0" > /
when "count(ancestor::*)=1" > /«@name»
otherwise > «$parentpath»/«@name»
when "not(local-name() = $categories/noindex)" {
attrib "index" > «$index»
attrib "hmipath" > «$path»
apply "*[1]", mode="index"{
with "index", "$index + 1";
with "parentpath" > «$path»
apply "*[1]", mode="index"{
with "parentpath" > «$path»
apply "following-sibling::*[1]", mode="index" {
with "index", "$index + count(exsl:node-set($content)/*)";
with "parentpath" > «$parentpath»
include parse_labels.ysl2
const "_parsed_widgets" {
widget type="VarInitPersistent" {
apply "$hmi_elements", mode="parselabel";
const "parsed_widgets","exsl:node-set($_parsed_widgets)";
result "$parsed_widgets/widget[@id = $id]";
def "func:is_descendant_path" {
// TODO : use HMI tree to answer more accurately
result "string-length($ancest) > 0 and starts-with($descend,$ancest)";
def "func:same_class_paths" {
const "class_a", "$indexed_hmitree/*[@hmipath = $a]/@class";
const "class_b", "$indexed_hmitree/*[@hmipath = $b]/@class";
result "$class_a and $class_b and $class_a = $class_b";
template "*", mode="testtree"{
> «$indent» «local-name()»
foreach "@*" > «local-name()»="«.»"
apply "*", mode="testtree" {
with "indent" value "concat($indent,'>')"
apply "$hmitree", mode="testtree";
apply "$indexed_hmitree", mode="testtree";
apply "$parsed_widgets", mode="testtree";