xslt 提取节点并删除某些属性

xslt extract node and remove certain attributes

我正在尝试从 XMI 模型文档中提取 UML 配置文件定义,然后使用 XSLT

删除 unwanted/illegal 属性

源 XMI 如下所示:

<?xml version="1.0" encoding="utf-8"?>
<xmi:XMI xmlns:uml="http://www.omg.org/spec/UML/20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:umldi="http://www.omg.org/spec/UML/20131001/UMLDI" xmlns:dc="http://www.omg.org/spec/UML/20131001/UMLDC" xmlns:thecustomprofile="http://www.sparxsystems.com/profiles/thecustomprofile/1.0" xmlns:Plusprofil="http://www.sparxsystems.com/profiles/Plusprofil/0.9.1">
<uml:Model xmi:type="uml:Model" name="EA_Model">
<...>

</uml:Model>
<xmi:Extension extender="Enterprise Architect" extenderID="6.5">
<...>
    <profiles>
            <uml:Profile xmlns:uml="http://www.omg.org/spec/UML/20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmi:id="FF44B996-D" nsPrefix="Plusprofil" name="Plusprofil" metamodelReference="mmref01">

                <packagedElement xmi:type="uml:Extension" xmi:id="Property_RdfsProperty" name="A_Property_RdfsProperty" memberEnd="extension_RdfsProperty RdfsProperty-base_Property">
                <ownedEnd xmi:id="extension_RdfsProperty" name="extension_RdfsProperty" type="RdfsProperty" isComposite="true" lower="0" upper="1" memberEnd="extension_RdfsProperty RdfsProperty-base_Property"/>
            </packagedElement>
<...>
        </uml:Profile>
    </profiles>
</xmi:Extension>

</xmi:XMI>

预期的输出如下所示 - 模型的配置文件部分,删除了属性 nsPrefix、lower、upper 和 isComposite:

<?xml version="1.0" encoding="utf-8"?>
<uml:Profile xmlns:uml="http://www.omg.org/spec/UML/20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmi:id="FF44B996-D" name="Plusprofil" metamodelReference="mmref01">
<packagedElement xmi:type="uml:Extension" xmi:id="Property_RdfsProperty" name="A_Property_RdfsProperty" memberEnd="extension_RdfsProperty RdfsProperty-base_Property">
<ownedEnd xmi:id="extension_RdfsProperty" name="extension_RdfsProperty" type="RdfsProperty" memberEnd="extension_RdfsProperty RdfsProperty-base_Property"/>
</packagedElement>
<...>
</uml:Profile>

我可以使用副本轻松提取配置文件部分,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:uml="http://www.omg.org/spec/UML/20131001">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/" >
<xsl:copy-of select="/xmi:XMI/xmi:Extension/profiles/uml:Profile[@name='Plusprofil']" >
</xsl:copy-of>
</xsl:template>
</xsl:stylesheet>

我可以使用生成的文件,使用另一种样式的身份转换模式 sheet 来删除属性:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:uml="http://www.omg.org/spec/UML/20131001">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
   <xsl:apply-templates select="@* | node()"/>  
</xsl:copy>
</xsl:template>
<xsl:template match="@nsPrefix"/>
<xsl:template match="@memberEnd"/>
<xsl:template match="ownedEnd/@lower[../@lower='0']"/>
<xsl:template match="ownedEnd/@upper[../@upper='1']"/>
<xsl:template match="ownedEnd/@isComposite[../@isComposite='true']"/>
</xsl:stylesheet>

但是我如何将这两项工作合并到一个文件中呢? 我想,这会起作用,但它不会删除非法属性:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:uml="http://www.omg.org/spec/UML/20131001">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/" >
    <xsl:copy-of select="/xmi:XMI/xmi:Extension/profiles/uml:Profile[@name='Plusprofil']" >
        <xsl:call-template name="modify" select="@* | node()"/>  
    </xsl:copy-of>
</xsl:template>
<xsl:template name="modify" match="@* | node()" >
    <xsl:copy>
        <xsl:apply-templates select="@* | node()"/>  
    </xsl:copy>
 </xsl:template>
<xsl:template match="@nsPrefix"/>
<xsl:template match="@memberEnd"/>
<xsl:template match="ownedEnd/@lower[../@lower='0']"/>
<xsl:template match="ownedEnd/@upper[../@upper='1']"/>
<xsl:template match="ownedEnd/@isComposite[../@isComposite='true']"/>
</xsl:stylesheet>

相反,如果在匹配 / 的主模板中使用 xsl:copy-of(这将不起作用,因为您不能在其中嵌套任何其他 xslt 命令),请使用 xsl:apply-templates

<xsl:template match="/" >
    <xsl:apply-templates select="xmi:XMI/xmi:Extension/profiles/uml:Profile[@name='Plusprofil']" />
</xsl:template>

这样可以使用身份模板,或者如果匹配则使用您的覆盖模板之一。