まず、ルートとしてマークされているモデルを計算したいと思います
<xsl:apply-templates select="model[@root='true']" />
次に、モデル要素に一致するテンプレートがありますが、親モデルへの現在の「パス」を含むパラメーターを受け取るテンプレートがあります
<xsl:template match="model">
<xsl:param name="path" />
あなたはそのようにフルパスを出力することができます
<xsl:variable name="newpath" select="concat($path, '/', @name)" />
<xsl:value-of select="concat($newpath, ' ')" />
次に、アイテムを出力できますが、新しいパスをパラメーターとして渡します
<xsl:apply-templates select="items/item|item">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
サブモデルを一致させるために、理想的にはキーを使用できます
<xsl:key name="models" match="model" use="@name" />
次に、そのようにサブモデルを一致させることができます
<xsl:apply-templates select="key('models', submodels/submodel/@ref)">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
これは、同じモデルテンプレートと再帰的に一致します。
これが完全なXSLTです
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes"/>
<xsl:key name="models" match="model" use="@name" />
<xsl:template match="/models">
<xsl:apply-templates select="model[@root='true']" />
</xsl:template>
<xsl:template match="model">
<xsl:param name="path" />
<xsl:variable name="newpath" select="concat($path, '/', @name)" />
<xsl:value-of select="concat($newpath, ' ')" />
<xsl:apply-templates select="items/item|item">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
<xsl:apply-templates select="key('models', submodels/submodel/@ref)">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
</xsl:template>
<xsl:template match="item">
<xsl:param name="path" />
<xsl:value-of select="concat($path, '/', @name, ' ')" />
</xsl:template>
</xsl:stylesheet>
サンプルXMLに適用すると、次のように出力されます。
/AAA
/AAA/a
/AAA/b
/AAA/BBB
/AAA/BBB/c
/AAA/BBB/d
/AAA/BBB/CCC
/AAA/BBB/CCC/e
/AAA/CCC
/AAA/CCC/e