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

时间:2018-01-17 16:08:06

标签: xml xslt attributes profile xmi

我正在尝试从XMI模型文档中提取UML配置文件定义,然后使用XSLT删除不需要的/非法的属性

源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>

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

<?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>

我可以使用生成的文件,使用另一个样式表中的标识转换模式来删除属性:

<?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>

1 个答案:

答案 0 :(得分:0)

相反,如果在匹配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>

这样可以使用身份模板,也可以使用其中一个覆盖模板。