使用XSLT进行UML-XMI到XML的转换

时间:2015-08-14 11:42:17

标签: xml xslt uml xmi

我试图通过编写xslt代码将.UML(XMI格式)文件转换为XML文件。我是新手,如果能帮助我更好地理解,我会很高兴。目前我只是尝试读取输入的1或2个元素,并使用这些元素打印XML输出。

XMI-UML输入文件

<?xml version="1.0" encoding="UTF-8"?> 
<uml:Model xmi:version="20110701" xmlns:xmi="http://www.omg.org/spec/XMI/20110701" xmlns:uml="http://www.eclipse.org/uml2/4.0.0/UML" xmi:id="_OlYJkC9-EeWyX7UKkcyxiw" name="model">
<packagedElement xmi:type="uml:Activity" xmi:id="_OlYJkS9-EeWyX7UKkcyxiw" name="Activity1" node="_XjLyEC9-EeWyX7UKkcyxiw _ZfIhYC9-EeWyX7UKkcyxiw _cK4V8C9-EeWyX7UKkcyxiw _fE2zwC9-EeWyX7UKkcyxiw _F67sgC9_EeWyX7UKkcyxiw">
<edge xmi:type="uml:ControlFlow" xmi:id="_jzMLIC9-EeWyX7UKkcyxiw" name="ControlFlow" source="_XjLyEC9-EeWyX7UKkcyxiw" target="_ZfIhYC9-EeWyX7UKkcyxiw"/>
<edge xmi:type="uml:ControlFlow" xmi:id="_lieXcC9-EeWyX7UKkcyxiw" name="ControlFlow1" source="_ZfIhYC9-EeWyX7UKkcyxiw" target="_cK4V8C9-EeWyX7UKkcyxiw"/>
<node xmi:type="uml:InitialNode" xmi:id="_XjLyEC9-EeWyX7UKkcyxiw" name="Start" outgoing="_jzMLIC9-EeWyX7UKkcyxiw"/>
<node xmi:type="uml:OpaqueAction" xmi:id="_ZfIhYC9-EeWyX7UKkcyxiw" name="Load and Enable Timer" visibility="package" outgoing="_lieXcC9-EeWyX7UKkcyxiw" incoming="_jzMLIC9-EeWyX7UKkcyxiw"/>
  <inputValue xmi:type="uml:ActionInputPin" xmi:id="_82lIMDRBEeWdiarL2UAMaQ" name="interrupt">
    <upperBound xmi:type="uml:LiteralInteger" xmi:id="_82lIMTRBEeWdiarL2UAMaQ" value="1"/>
  </inputValue>
</node>
<node xmi:type="uml:ActivityFinalNode" xmi:id="_F67sgC9_EeWyX7UKkcyxiw" name="ActivityFinalNode" incoming="_Hcj3UC9_EeWyX7UKkcyxiw"/>
 </packagedElement>
</uml:Model>

XSLT代码

<xsl:stylesheet version="1.0" xmlns:UML="org.omg.xmi.namespace.UML" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8" indent="yes" />

<xsl:template match="/">
    <root>
        <xsl:apply-templates />
    </root>
</xsl:template>

<xsl:template match="/uml:Model/packagedElement/edge/">
  <xsl:element name="uml:ControlFlow">
      <xsl:apply-templates />
  </xsl:element>
</xsl:template>

预期输出(仅一个示例..它还可以包含&#34;节点&#34;来自输入)

<?xml version='1.0' encoding='UTF-8'?>
<sdf3 type='sadf' version='1.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns='uri:sadf' xsi:schemaLocation='some_random_location'>
<sadf name='RandomGraphName'>
<structure>
<edge name='ControlFlow1' source='_ZfIhYC9-EeWyX7UKkcyxiw' target='_cK4V8C9-EeWyX7UKkcyxiw' />
</structure>
</sadf>
</sdf3>

1 个答案:

答案 0 :(得分:1)

从它的外观来看,“UML-XMI”仍然是一个XML文档,但正如评论中所提到的,它的格式不正确。问题在于此node元素

<node xmi:type="uml:OpaqueAction" xmi:id="_ZfIhYC9-EeWyX7UKkcyxiw" name="Load and Enable Timer" visibility="package" outgoing="_lieXcC9-EeWyX7UKkcyxiw" incoming="_jzMLIC9-EeWyX7UKkcyxiw"/>
  <inputValue xmi:type="uml:ActionInputPin" xmi:id="_82lIMDRBEeWdiarL2UAMaQ" name="interrupt">
    <upperBound xmi:type="uml:LiteralInteger" xmi:id="_82lIMTRBEeWdiarL2UAMaQ" value="1"/>
  </inputValue>
</node>

如果您向右滚动,node标记会自动关闭(即以/>结尾),这意味着结束</node>标记实际上并不匹配任何内容

但假设它格式正确,那么XSLT的第一个问题就是名称空间。在XML中,命名空间的定义如下:

xmlns:uml="http://www.eclipse.org/uml2/4.0.0/UML"

但是在你的XSLT中你已经像这样定义了它

xmlns:UML="org.omg.xmi.namespace.UML"

前缀不必在XML和XSLT之间匹配,但名称空间URI可以匹配。此外,如果您使用命名空间前缀时的XSLT,则以小写

使用它
<xsl:template match="/uml:Model/packagedElement/edge/">

虽然区分大小写,但uml与您定义的UML不对应。前缀不需要与XML匹配,但它确实需要匹配XSLT中定义的前缀。

此外,该模板匹配在语法上也不正确,因为它以/符号结尾。这需要删除。

虽然我不太清楚你真正想要的输出,但试试这个XSLT可以帮助你:

<xsl:stylesheet version="1.0" xmlns:UML="http://www.eclipse.org/uml2/4.0.0/UML" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns='uri:sadf' exclude-result-prefixes="UML">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8" indent="yes" />

<xsl:template match="/UML:Model">
    <sdf3 xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='some_random_location' type='sadf'>
    <sadf name='RandomGraphName'>
        <xsl:apply-templates />
    </sadf>
    </sdf3>
</xsl:template>

<xsl:template match="packagedElement">
  <structure>
      <xsl:apply-templates select="edge" />
  </structure>
</xsl:template>

<xsl:template match="edge">
  <edge name="{@name}" source="{@source}" />
</xsl:template>
</xsl:stylesheet>

请注意在XSLT xmlns='uri:sadf'中使用默认命名空间。这意味着所有没有命名空间的元素都将在该命名空间中输出。

另请注意,您不一定需要编写packagedElementedge等子元素的完整路径。

但考虑到以下结构良好的输入:

<uml:Model xmi:version="20110701" xmlns:xmi="http://www.omg.org/spec/XMI/20110701" xmlns:uml="http://www.eclipse.org/uml2/4.0.0/UML" xmi:id="_OlYJkC9-EeWyX7UKkcyxiw" name="model">
<packagedElement xmi:type="uml:Activity" xmi:id="_OlYJkS9-EeWyX7UKkcyxiw" name="Activity1" node="_XjLyEC9-EeWyX7UKkcyxiw _ZfIhYC9-EeWyX7UKkcyxiw _cK4V8C9-EeWyX7UKkcyxiw _fE2zwC9-EeWyX7UKkcyxiw _F67sgC9_EeWyX7UKkcyxiw">
<edge xmi:type="uml:ControlFlow" xmi:id="_jzMLIC9-EeWyX7UKkcyxiw" name="ControlFlow" source="_XjLyEC9-EeWyX7UKkcyxiw" target="_ZfIhYC9-EeWyX7UKkcyxiw"/>
<edge xmi:type="uml:ControlFlow" xmi:id="_lieXcC9-EeWyX7UKkcyxiw" name="ControlFlow1" source="_ZfIhYC9-EeWyX7UKkcyxiw" target="_cK4V8C9-EeWyX7UKkcyxiw"/>
<node xmi:type="uml:InitialNode" xmi:id="_XjLyEC9-EeWyX7UKkcyxiw" name="Start" outgoing="_jzMLIC9-EeWyX7UKkcyxiw"/>
<node xmi:type="uml:OpaqueAction" xmi:id="_ZfIhYC9-EeWyX7UKkcyxiw" name="Load and Enable Timer" visibility="package" outgoing="_lieXcC9-EeWyX7UKkcyxiw" incoming="_jzMLIC9-EeWyX7UKkcyxiw">
  <inputValue xmi:type="uml:ActionInputPin" xmi:id="_82lIMDRBEeWdiarL2UAMaQ" name="interrupt">
    <upperBound xmi:type="uml:LiteralInteger" xmi:id="_82lIMTRBEeWdiarL2UAMaQ" value="1"/>
  </inputValue>
</node>
<node xmi:type="uml:ActivityFinalNode" xmi:id="_F67sgC9_EeWyX7UKkcyxiw" name="ActivityFinalNode" incoming="_Hcj3UC9_EeWyX7UKkcyxiw"/>
 </packagedElement>
</uml:Model>

以下是输出

<sdf3 xmlns="uri:sadf" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="some_random_location"
      type="sadf">
   <sadf name="RandomGraphName">
      <structure>
         <edge name="ControlFlow" source="_XjLyEC9-EeWyX7UKkcyxiw"/>
         <edge name="ControlFlow1" source="_ZfIhYC9-EeWyX7UKkcyxiw"/>
      </structure>
   </sadf>
</sdf3>