Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EMFIncQuery/DeveloperDocumentation/DevEnvironment

Prerequisites

  • Eclipse Modeling Tools 3.7, 3.8, 4.2 or 4.3 distribution
    • Other Eclipse distributions might work as well, but this contains EMF-related plug-ins
    • Newer Eclipse versions should also work (we regularly test and develop with Eclipse 4.3 Kepler and 4.4 Luna)
  • Xtext SDK 2.7
    • Xtext update site http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/
    • This also requires a current version of EMF (2.10)
  • Xcore SDK 1.2
  • EGit (and JGit) - required components for downloading source from Git
    • Available from Eclipse Juno update site: http://download.eclipse.org/releases/juno

Editor Settings

Code style: slightly modified built-in Eclipse style

  • line width: 120 characters both for code and comments
  • using spaces for indentation

Downloadable style available from File:IncQueryFormatter.xml.zip

Downloading IncQuery source projects from Git

The project is available in the from the Eclipse repository at http://git.eclipse.org/c/incquery/org.eclipse.incquery.git/. To download it, you can select either clone URLs listed. However, if you want to use the committer account, you have to use the ssh url.

After obtaining a local git repository on your hard disk, import the Eclipse plug-in projects under the plugins/ subfolder into your Eclipse workspace.

For details, see the Eclipse EGit help and the Git tutorial from Lars Vogel.

Important: Do not forget to set up your name and email address in your local Git repository - Git identifies your commits using your email address.

Generating the Editor Components

The projects contain both manually written and generated code. They are placed in different source folders: all src folders contain only manually written code, all src-gen and xtend-gen folders contain generated code. Generated code is not committed into Git; they are to generated in the workspace after cloning and after changes of the grammar or workflow files.

  • The src-gen folders contain code generated by the Xtext code generation workflows.
  • The xtend-gen files contain code generated from Xtend files. These files do have dependencies of the Xtext workflow-generated files: before the workflow was executed, it is normal for these files to be erroneous.

Xtext code generation workflows

The org.eclipse.incquery.patternlanguage, org.eclipse.incquery.patternlanguage.emf and org.eclipse.incquery.tooling.generator.model projects all contain a code generation workflow file (found in the top-level package in each project, with a mwe2 extension). All workflows need to run to generate the editor and parser code in the workspace: first the core, then the emf, finally the tooling.generator.model workflow needs to be executed. You can run these workflows by selecting Run as/MWE2 Workflow from the context menu of the .mwe2 file in the corresponding project. In case of the tooling.generator.model project, you may be required to create the folder "src-gen" manually the first time.

All workflow files require about 30-60 seconds to run - be patient.

Important: In case of future language changes, the corresponding languages are to be regenerated. Until that happens, the codebase might or might not have compile errors. However, if the language is not changed, this regeneration step is not necessary.

Important: The workflow of the patternlanguage.emf project might require a large amount of heap/permgen memory. If such issues occur, add extra memory to the workflow using the Run configurations dialog.

Optional dependencies

Zest, GMF and Graphiti are marked as dependencies of optional supplementary components. You can either install GMF and Graphiti from the Juno update site, while Zest uses the GEF4 version. Alternatively you can just close the projects depending on them (as they are non-essential).

As the GEF4 Zest component is under heavy refactoring, the extra update site of EMF-IncQuery also contains a Zest version known working with the current version.

Back to the top