我已经使用Xtext定义了一个DSL。让我们说它看起来像这样:
Model:
components+=Component*
;
Component:
House | Car
;
House:
'House' name=ID
('height' hubRadius=DOUBLE)? &
('width' hubRadius=DOUBLE)?
'end' 'House'
;
Car:
'Car' name=ID
('maxSpeed' hubRadius=INT)? &
('brand' hubRadius=STRING)?
'end' 'Car'
;
在生成的基于我的DSL的Eclipse IDE中,我实现了一个模型。让我们说它看起来如下:
House MyHouse
height 102.5
width 30.56
end House
Car MyCar
maxSpeed 190
brand "mercedes"
end Car
我现在想将该模型导出为XMI或XML文件。
我想要这样做的原因是,我有另一个工作流程,它允许我使用XMI / XML文件动态更改模型参数。因此,我可以将XML / XMI文件传递给工作流,而不是重新定义我的模型,工作流自动执行此操作。
简短示例:DSL允许定义组件House
和Car
。 House
允许参数width
和height
,Car
允许参数maxSpeed
和brand
(参见上面的语法)。
因此,在我讨论的工作流程中,参数将使用不同的值进行更改。例如,我正在寻找的生成的XML将如下所示:
<model>
<component name='House'>
<param name='height'>102.5</param>
<param name='width'>30.56</param>
</component>
<component name='Car'>
<param name='maxSpeed'>190</param>
<param name='brand'>mercedes</param>
</component>
</model>
如何将模型导出为XMI / XML?
答案 0 :(得分:1)
我最终找到了解决方案。以下代码导出了一个* .xmi文件,就像我在开场帖中所要求的那样:
private void exportXMI(String absuloteTargetFolderPath) {
// change MyLanguage with your language name
Injector injector = new MyLanguageStandaloneSetup()
.createInjectorAndDoEMFRegistration();
XtextResourceSet resourceSet = injector
.getInstance(XtextResourceSet.class);
// .ext ist the extension of the model file
String inputURI = "file:///" + absuloteTargetFolderPath + "/MyFile.ext";
String outputURI = "file:///" + absuloteTargetFolderPath + "/MyFile.xmi";
URI uri = URI.createURI(inputURI);
Resource xtextResource = resourceSet.getResource(uri, true);
EcoreUtil.resolveAll(xtextResource);
Resource xmiResource = resourceSet
.createResource(URI.createURI(outputURI));
xmiResource.getContents().add(xtextResource.getContents().get(0));
try {
xmiResource.save(null);
} catch (IOException e) {
e.printStackTrace();
}
}
答案 1 :(得分:1)
只是评论约翰的回答: 在Eclipse IDE中,从不使用MyLanguageStandaloneSetup,必须通过UI插件的Activator访问注入器的实例:MyLanguageActivator.getInstance()。getInjector(MyLanguageActivator.COM_MYCOMPANY_MYLANGUAGE)。
调用MyLanguageStandaloneSetup.createInjectorAndDoEMFRegistration将创建一个与Eclipse使用的实例不同的Injector实例。它也可以打破EMF注册管理机构的状态。