Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
JET FAQ How do I run an individual JET template and get a string back?
Question
I've looked at the runTransformOnX() methods (x=Object,String, ...) in org.eclipse.jet.JET2Platform. Is there a JET2 class that does something like org.eclipse.emf.codegen.jet.JETEmitter in EMF: take a list of arguments, execute a template against them, and return a string?
Answer
Note: a more detailed FAQ has been added here M2T-JET-FAQ/How do I run a JET template from Java?
JET 0.8.0 has a class org.eclipse.jet.JET2TemplateManager. You use it something like this...
String[] jetTransformsToSearch = { "a.b.c", ... }; final String templatePath = "... project relative path of the template to run.jet ..."; final JET2Context context = new JET2Context( ... source model or null ...); //Set up a context extender... ??? //TransformContextExtender.getInstance(context); // optionally set any context variables via context.setVariable("name", ... value ...); final BufferedJET2Writer out = new BodyContentWriter(); JET2TemplateManager.run( jetTransformsToSearch, new JET2TemplateManager.ITemplateOperation() { public void run(JET2TemplateManager.ITemplateRunner templateRunner) { templateRunner.generate( templatePath, context, out ); } }); // do something with the result String output = out.getContent();
The reason for passing the runnable-like class is that the manager may have to dynamically load JET projects from the workspace. JET is very careful to make sure such things get unloaded again - using the ITemplateOperation helps identify that boundary. In real life, you would probably execute multiple templates in a single ITemplateOperation.
Lastly, I noticed the Javadoc for ITemplateRunner.generate() says it throughs IllegalAccessException. It does not. It throughs IllegalArgumentException of templatePath does not map to a know template. I have submitted bug 195523.
Back to the M2T-JET-FAQ