在Ant脚本中创建XSLT以更改xml文件中的fileref值

时间:2012-08-03 11:41:40

标签: xml xslt ant xslt-1.0

我有xml文档,如下所示,

<chapter xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="chapter1">
<title>First chapter</title>
<section xml:id="section1">
                <imageobject>
                    <image fileref="images/image1.jpg"/>
                </imageobject>
                <imageobject>
                    <image fileref="images/image2.jpg"/>
                </imageobject>
</section>
    <section xml:id="section2" xml:base="../other/section1.xml">  
                    <imageobject>
                        <image fileref="images/image1.jpg"/>
                    </imageobject>
                    <imageobject>
                        <image fileref="images/image2.jpg"/>
                    </imageobject>

<section xml:id="section3" xml:base="../some-other/more/section3.xml">
                    <imageobject>
                        <image fileref="images/image1.jpg"/>
                    </imageobject>
    </section>
    </section>
    <section xml:id="section4" xml:base="../some-other/section4.xml">
                    <imageobject>
                        <image fileref="images/image2.jpg"/>
                    </imageobject>
    </section>
 </chapter>

由于相同的图像名称在不同的部分重复,我使用java类重命名除第一部分以外的所有图像名称。然后我可以生成一个重命名的图像名称列表。

现在我想在上面的xml文件中反映这些更改。例如,当我在第2部分中将“image1.jpg”重命名为“aaa.jpg”时,我需要通过生成具有新重命名图像名称的新xml来反映我的初始xml中的更改。

为此,我使用的是使用XSLT 1.0的Ant脚本,并将我的第一个xml和重命名的图像列表作为输入,并使用新的fileref值生成一个新的xml文档。我如何制作XSLT并在我的Ant脚本中使用它。

这是我的新重命名图像列表。

<Imagedata>
  <section>
    <sectionID>section2</sectionID>
    <relativepath>images/aaa.jpg</relativepath>
    <relativepath>images/bbb.jpg</relativepath>
  </section>
  <section>
    <sectionID>section3</sectionID>
    <relativepath>images/ccc.jpg</relativepath>
  </section>
   <section>
    <sectionID>section4</sectionID>
    <relativepath>images/ddd.jpg</relativepath>
  </section>
</Imagedata>

我的新的最终xml将是一些类似的东西,

<chapter xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="chapter1">
    <title>First chapter</title>
    <section xml:id="section1">
                    <imageobject>
                        <image fileref="images/image1.jpg"/>
                    </imageobject>
                    <imageobject>
                        <image fileref="images/image2.jpg"/>
                    </imageobject>
    </section>
        <section xml:id="section2" xml:base="../other/section1.xml">  
                        <imageobject>
                            <image fileref="images/aaa.jpg"/>
                        </imageobject>
                        <imageobject>
                            <image fileref="images/bbb.jpg"/>
                        </imageobject>

    <section xml:id="section3" xml:base="../some-other/more/section3.xml">
                        <imageobject>
                            <image fileref="images/ccc.jpg"/>
                        </imageobject>
        </section>
        </section>
        <section xml:id="section4" xml:base="../some-other/section4.xml">
                        <imageobject>
                            <image fileref="images/ddd.jpg"/>
                        </imageobject>
        </section>
     </chapter>

谢谢.. !!

1 个答案:

答案 0 :(得分:1)

为了快速演示,我已将Imagedata文档放入下面样式表中的变量中。在实际使用中,您将传入一个参数,该参数是图像数据文档的URI,如此...

<xsl:param name="ImageDataURI" />
<xsl:variable name="ImageData" select="document($ImageDataURI)" />

除此之外,这个XSLT 1.0样式表...

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<xsl:output method="xml" indent="yes"/>

<xsl:variable name="ImageData">
<Imagedata>
  <section>
    <sectionID>section2</sectionID>
    <relativepath>images/aaa.jpg</relativepath>
    <relativepath>images/bbb.jpg</relativepath>
  </section>
  <section>
    <sectionID>section3</sectionID>
    <relativepath>images/ccc.jpg</relativepath>
  </section>
   <section>
    <sectionID>section4</sectionID>
    <relativepath>images/ddd.jpg</relativepath>
  </section>
</Imagedata>
</xsl:variable>

<xsl:template match="@*|node()">
  <xsl:copy>
   <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="image/@fileref">
  <xsl:attribute name="fileref">
    <xsl:value-of select="
    (msxsl:node-set($ImageData)/Imagedata/section/
    sectionID[.=current()/../../../self::section/@xml:id]/
    following-sibling::relativepath[
     count( current()/../../preceding-sibling::imageobject) + 1
      ] | .)[1]"/>
  </xsl:attribute>  
</xsl:template>

</xsl:stylesheet>

...会将提供的输入文档转换为预期的输出文档。

说明

考虑最后一个模板中的表达式值。从我们匹配的fileref属性开始,我们向上导航,直到我们到达section并获取其id。这是由表达式......

给出的
current()/../../../self::section/@xml:id

然后我们获取查找数据并找到sectionID。这由表达式给出......

msxsl:node-set($ImageData)/Imagedata/section/sectionID

我们需要按部分名称交叉链接这些部分。我们通过对sectionID应用谓词来实现这一点,该谓词的值必须是焦点项的节值。谓词就在这里......

[.=current()/../../../self::section/@xml:id]

现在我们找到了正确的查找部分,我们需要通过文档部分中焦点项的当前位置来索引它。我们通过计算前面的兄弟姐妹并加上一个来计算我们的位置,就像这样......

count( current()/../../preceding-sibling::imageobject) + 1

因此,查找替换节点(如果存在)由......提供。

msxsl:node-set($ImageData)/Imagedata/section/
sectionID[.=current()/../../../self::section/@xml:id]/
following-sibling::relativepath[
 count( current()/../../preceding-sibling::imageobject) + 1

当替换有序时,这一切都很好,但有些情况下没有共同响应的查找。在这种情况下,我们的属性需要保留其原始值。我们通过形式表达来实现这一点......

( $something | .)[1]

如果$ something不存在(意思是它; s值是空序列),那么上面的表达式只返回焦点项。如果确实存在,那么将返回$ something的第一项或焦点项。通常,union运算符按文档顺序连接两个序列,重复数据删除和排序。但是这两个操作数来自不同的文档,所以没有排序或重复删除。因此,表达式在存在时返回替换节点,如果不存在则返回焦点项。