根据另一个孩子移除节点或子节点

时间:2018-04-23 21:21:38

标签: xslt wix xslt-2.0

我使用Wix Head来收集带有某些第三方依赖项的输出目录,但仍然试图绕过XSLT转换。

我大致有:

<Wix>
  <Fragment>
    <DirectoryRef Id="INSTALLFOLDER">
      <Component Id="1">
        <File Source="Valid.dll"/>
        <RegistryValue />
      </Component>
      <Component Id="2">
        <File Source="Valid.pdb"/>
      </Component>
      <Component Id="3">
        <File Source="XML.dll"/>
        <RegistryValue />
        <RegistryValue />
        <RegistryValue />
      </Component>
    </DirectoryRef> 
  </Fragment>
  <Fragment>
    <ComponentGroup Id="Published">
      <Component Id="1" />
      <Component Id="2" />
      <Component Id="3" />
    </ComponentGroup>
  </Fragment>
</Wix>

我想要的是什么:

<Wix>
  <Fragment>
    <DirectoryRef Id="INSTALLFOLDER>
      <Component Id="1">
        <File Source="Valid.dll"/>
        <RegistryValue />
      </Component>
      <Component Id="3">
        <File Source="XML.dll"/>
      </Component>
    <DirectoryRef> 
  </Fragment>
  <Fragment>
    <ComponentGroup Id="Published">
      <Component Id="1" />
      <Component Id="3" />
    </ComponentGroup>
  </Fragment>
</Wix>

我的XSLT到目前为止,但模板并不适用于彼此。他们做自己的事情。它们位于wix命名空间中,但我为此问题简化了它。

<xsl:stylesheet version="1.0">

    <xsl:output method="xml" indent="yes" omit-xml-declaration="yes" />

    <xsl:strip-space elements="*"/>

    <xsl:key name="pdbs" match="Component[contains(File/@Source, 'pdb')]" use="@Id"/>
    <xsl:key name="unneededRegistry" match="Component[not(contains(File/@Source, 'Valid'))]" use="@Id"/>

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

    <!-- Remove PDBs -->
    <xsl:template match="*[self::Component or self::ComponentRef][key('pdbs',@Id']"/>

    <!-- Remove everything but file in non-core dlls -->
    <xsl:template match="Component[key('unneededRegistry',@Id)]">
        <xsl:copy>
            <xsl:apply-template select="@*|File"/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

我觉得我已经接近了,但是我已经尝试过这么多无济于事。 我需要在文件中删除所有带有pdb的组件,并删除所有不在有效文件上的文件。

1 个答案:

答案 0 :(得分:1)

以下是经过修改的样式表。

<xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">

    <xsl:output method="xml" indent="yes" omit-xml-declaration="yes" />

    <xsl:strip-space elements="*"/>

    <xsl:key name="pdbs" match="Component[contains(File/@Source, 'pdb')]" use="@Id"/>
    <!-- I have removed this key
    <xsl:key name="unneededRegistry" match="Component[not(contains(File/@Source, 'Valid'))]" use="@Id"/>
    -->

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

    <!-- Remove PDBs,
         have included a predicate here instead of a key
    -->
    <xsl:template match="*[self::Component or self::ComponentRef]
        [contains(File/@Source, 'pdb')]"/>

    <!-- Remove everything but file in non-core dlls,
         have included a predicate here instead of a key
    -->
    <xsl:template match="DirectoryRef/Component[not(contains(File/@Source, 'Valid'))]">
        <xsl:copy>
            <xsl:apply-templates select="@*|File"/>
        </xsl:copy>
    </xsl:template>

    <!-- added a rule here to delete target Component nodes -->
    <xsl:template match="ComponentGroup/Component[key('pdbs', @Id)]"/>
</xsl:stylesheet>

在行动here中查看。