我试图将XML文件转换为另一种格式的xmi文件。我的工作描述如下: 1.首先,我建立XML文件的ecore模型和xmi文件的ecore模型。 2.然后,我编写了一个简单的ATL程序以在两个模型之间进行转换 我遇到的问题是: 当我进行简单转换时,我发现xmi格式文件中不需要生成任何内容,但是该程序未报告错误。我很惊讶,不知道问题出在哪里。
这是一个XML文件
<?xml version="1.0" encoding="UTF-8"?>
<StateChart>
<State StateName="DoorOpened" >
<Transition TransitionN**strong text**ame="2" FromState="S02" ToState="S03">
<Event EventName="e1" />
</Transition>
</State>
</StateChart>
这是xml的ecore模型
<?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="Excel" nsURI="http://www.example.org/Excel" nsPrefix="Excel">
<eClassifiers xsi:type="ecore:EClass" name="StateChart">
<eStructuralFeatures xsi:type="ecore:EReference" name="State" upperBound="-1"
eType="#//State"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="State">
<eStructuralFeatures xsi:type="ecore:EReference" name="Transition" eType="#//Transition"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="StateName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Transition">
<eStructuralFeatures xsi:type="ecore:EReference" name="Event" upperBound="-1"
eType="#//Event"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="FromState" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ToState" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TransitionName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Event">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="EventName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
这是ATL程序:
module Excel2sgraph;
create OUT: sgraph from IN: Excel;
rule Excel2sgraph {
from
s: Excel!State
to
t: sgraph!Statechart(
name <- s.StateName
)
}
我不知道出了什么问题,这是ecore模型还是ATL,我真的需要您的帮助。我真的很感激