如何将xpath与当前节点进行比较

时间:2020-07-24 01:12:09

标签: xml compare xsl-fo saxon

我正在使用saxon将xml转换为xsl-fo。每个文件都有一个伴随文件,该文件包含指向已更改元素的xpath。我需要将伴随文件中的xpath与当前节点进行比较。例如,如果当前正在处理的节点是item8,则根据伴随文件,它应该获得一个更改栏:

xml文件

<body>
    <unlist bulltype="NDASH" code="00019292.0001001.007" layer="1" lid="N.00019292.0001001.014">
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.015">item1</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.018">item2</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.019">item3</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.020">item4</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.021">item5</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.022">item6</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.023">item7</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.024">item8</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.025">item9</para>
        </item>
        <item layer="1">
            <para layer="1" lid="N.00019292.0001001.026">item10</para>
        </item>
    </unlist>
</body>

伴侣文件

<rev-marks>
    <rev anchor="false" chg="R" origin="airbus"
      path="//*[@lid='N.00019292.0001001.014']/item[9]/para[1]"/>
    <rev anchor="false" chg="R" origin="airbus"
      path="//*[@lid='N.00019292.0001001.014']/item[8]/para[1]">
      <hl-ref ref="hl_1"/>
    </rev>
    <rev anchor="true" chg="R" origin="airbus" path="//*[@lid='N.00019292.0001001.014']"/>
  </rev-marks>

基本上,如果当前节点的路径与伴随文件中的rev / @ path相匹配,则基本上需要放置一个fo更改栏。任何帮助将不胜感激。

编辑以显示我到目前为止所拥有的

<xsl:template match="para">
<!-- path of the current node -->
<xsl:variable name="curPath" select="saxon:path()"/> 
<!-- path of the companion file --> 
<xsl:variable name="mdata">../MU/<xsl:value-of select="ancestor::description/@code"/>_mdata.xml</xsl:variable>
        
<xsl:for-each select="document($mdata,.)//rev">
    <!-- value of //rev/@path in the companion file -->
    <xsl:variable name="revPath" select="@path"/>
                
    <xsl:if test="$revPath = $curPath">
        <fo:change-bar-begin change-bar-class="cbpara" change-bar-color="black" change-bar-style="solid" change-bar-offset="15pt"/>
    </xsl:if>
            
</xsl:for-each>
<fo:block>
    <xsl:apply-templates/>
</fo:block>
<!-- add fo:change-bar-end here -->
</xsl:template>

这句话是我无法比较两个xpath表达式

希望这可以澄清

2 个答案:

答案 0 :(得分:2)

有两种通用方法。

一种方法是使用xsl:evaluate评估伴随文件中的XPath表达式。确切的解决方案取决于需求的细节:例如,我不确定是否所有的<rev>元素都被相同地对待,或者@anchor@rev的意义是什么?和@origin属性是。

第二种方法是编写一个转换,将您的伴随文件转换为可以完成实际工作的XSLT样式表(通常,每个<rev>元素都会转换为具有匹配模式的xsl:template)。这听起来有些令人生畏,但这可能是更优雅的方法。

答案 1 :(得分:1)

使用xsl:evaluate(在Saxon 9.8以及更高版本的PE和EE版本,Saxon 10所有版本以及Saxon-JS 2中受支持)的示例是:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:mf="http://example.com/mf"
    exclude-result-prefixes="#all"
    version="3.0">
    
    <xsl:param name="rev-doc-uri" as="xs:string">evaluate-key-ref-marks.xml</xsl:param>
    
    <xsl:param name="rev-doc" select="doc($rev-doc-uri)"/>
    
    <xsl:function name="mf:select-node" as="node()*">
        <xsl:param name="path" as="xs:string"/>
        <xsl:param name="context-doc" as="node()"/>
        <xsl:evaluate context-item="$context-doc" xpath="$path"/>
    </xsl:function>
    
    <xsl:mode on-no-match="shallow-copy"/>
    
    <xsl:template match="*[some $rev in $rev-doc//rev[@path] satisfies (. is mf:select-node($rev/@path, /))]">
        <xsl:comment>marked</xsl:comment>
        <xsl:next-match/>
    </xsl:template>
    
</xsl:stylesheet>

Online sample using Saxon-JS 2 in the browser (second XML is inlined there for self-completeness of the example)