Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XText programmatically parse a DSL script into an Ecore model

I need to programmatically turn a text conform to an XText grammar into an AST conform to an Ecore meta-model generated by XText from the same grammar.

I know XText also generate the Java classes implementing such parser but I don't know either where they are and how to use it.

like image 697
Andrea Sindico Avatar asked Aug 08 '12 15:08

Andrea Sindico


2 Answers

A complete answer to this question can be found on the Xtext page of the Eclipse wiki.

 new org.eclipse.emf.mwe.utils.StandaloneSetup().setPlatformUri("../");
 Injector injector = new MyDslStandaloneSetup().createInjectorAndDoEMFRegistration();
 XtextResourceSet resourceSet = injector.getInstance(XtextResourceSet.class);
 resourceSet.addLoadOption(XtextResource.OPTION_RESOLVE_ALL, Boolean.TRUE);
 Resource resource = resourceSet.createResource(URI.createURI("dummy:/example.mydsl"));
 InputStream in = new ByteArrayInputStream("type foo type bar".getBytes());
 resource.load(in, resourceSet.getLoadOptions());
 Model model = (Model) resource.getContents().get(0);

Change the file extension (mydsl) to your own language extension.

like image 136
Andrea Sindico Avatar answered Jan 04 '23 15:01

Andrea Sindico


Here's the code:

@Inject
ParseHelper<Domainmodel> parser

def void parseDomainmodel() {
  // When in a vanilla Java application (i.e. not within Eclipse),
  // you need to run a global setup:
  val injector = new MyDslStandaloneSetup().createInjectorAndDoEMFRegistration
  injector.injectMembers(this) // sets the field 'parser'

  // this is how you can use it:
  val model = parser.parse(
    "entity MyEntity {
      parent: MyEntity
    }")
  val entity = model.elements.head as Entity
  assertSame(entity, entity.features.head.type)
}

See also http://www.eclipse.org/Xtext/documentation.html#TutorialUnitTests.

like image 45
Sven Efftinge Avatar answered Jan 04 '23 15:01

Sven Efftinge