まず、複数の XML ファイルをマージするためのヒントをたくさん読んで楽しんできました。また、それらのかなりの数を実装することを楽しんでいます。しかし、私はまだ目標を達成していません。
XML ファイルを単純にマージして、結果の XML ファイルで次々と繰り返されるようにしたくありません。それぞれをマージする必要がある繰り返し要素を持つグループがあります。
<SAN>
<EQLHosts>
<WindowsHosts>
<WindowsHost>
more data and structures down here...
</WindowsHost>
</WindowsHosts>
<LinuxHosts>
<LinuxHost>
...and here...
</LinuxHost>
</LinuxHosts>
</EQLHosts>
</SAN>
個々の XML ファイルには、Windows や Linux のホストが含まれている場合があります。したがって、XML ファイル 1 に Windows ホストA、B、およびCのデータがあり、XML ファイル 2 に Windows ホストD、E、およびFのデータがある場合、結果の XML は次のようになります。
<SAN>
<EQLHosts>
<WindowsHosts>
<WindowsHost>
<Name>A</Name>
</WindowsHost>
<WindowsHost>
<Name>B</Name>
</WindowsHost>
<WindowsHost>
<Name>C</Name>
</WindowsHost>
<WindowsHost>
<Name>D</Name>
</WindowsHost>
<WindowsHost>
<Name>E</Name>
</WindowsHost>
<WindowsHost>
<Name>F</Name>
</WindowsHost>
</WindowsHosts>
<LinuxHosts>
<LinuxHost/>
</LinuxHosts>
</EQLHosts>
</SAN>
これを機能させるために、特にこの XSLT を使用しました。
<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="file1" select="document('CorralData1.xml')"/>
<xsl:variable name="file2" select="document('CorralData2.xml')"/>
<xsl:variable name="file3" select="document('CorralData3.xml')"/>
<xsl:template match="/">
<SAN>
<xsl:copy-of select="/SAN/*"/>
<xsl:copy-of select="$file1/SAN/*"/>
<xsl:copy-of select="$file2/SAN/*"/>
<xsl:copy-of select="$file3/SAN/*"/>
</SAN>
</xsl:template>
</xsl:stylesheet>
このファイルは結合された XSLT を生成し、ツリーの下にあるすべてのデータが正しく含まれていますが、WindowsHosts の複数のインスタンスが含まれています。それはしたくない。
最小限の構文でこれを行う方法を XSLT に伝える方法はありますか、それとも XSLT ファイルに各要素とサブ要素を具体的に追加する必要がありますか?
チェックするべきでした。しかし、私は先に進んで collection() を使用し、Saxon HE XSLT プロセッサを使用して完全に機能するソリューションを得ました。
しかし、InfoPath 環境で実行していて、XSLT 1.0 プロセッサしかありません。XSLT 1.0 環境で collection() コマンドを置き換えるための推奨事項はありますか? 何らかの方法で document() の使用に戻ることはできますか?
だから私は今このファイルを持っています...
<?xml version="1.0" encoding="windows-1252"?>
<files>
<file name="CorralData1.xml"/>
<file name="CorralData2.xml"/>
</files>
...を含むスタイルシートで使用します...
<xsl:variable name="windowsHosts" select="/SAN/WindowsHosts/WindowsHost"/>
<xsl:variable name="vmwareHosts" select="/SAN/VMwareHosts/VMwareHost"/>
<xsl:variable name="linuxHosts" select="/SAN/LinuxHosts/LinuxHost"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/">
<xsl:for-each select="/files/file">
<xsl:apply-templates select="document(@name)/SAN"/>
</xsl:for-each>
<SAN>
<EQLHosts>
<WindowsHosts>
<xsl:for-each select="$windowsHosts">
<xsl:copy-of select="."/>
</xsl:for-each>
</WindowsHosts>
<VMwareHosts>
<xsl:for-each select="$vmwareHosts">
<xsl:copy-of select="."/>
</xsl:for-each>
</VMwareHosts>
<LinuxHosts>
<xsl:for-each select="$linuxHosts">
<xsl:copy-of select="."/>
</xsl:for-each>
</LinuxHosts>
</EQLHosts>
</SAN>
</xsl:template>
...しかし、これにより複数の /SAN ルートが取得されます。私は近くにいますが、何かがまだ少しずれています。