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

Difference between revisions of "M2E/Extension Development"

< M2E
(AntlrProjectConfigurator and corresponding metadata)
(Testing m2e/antlr code generation support)
Line 103: Line 103:
  
 
=== Testing m2e/antlr code generation support ===
 
=== Testing m2e/antlr code generation support ===
 +
 +
[https://github.com/sonatype/m2eclipse-extras/tree/0.13.0.20110622-1538/org.sonatype.m2e.antlr.tests/projects/antlr/antlr-v3-p001 Test project] is setup to fail java compilation if workspace project source folders were not properly configured or ANTLR code generation did not succeed for whatever reason. [https://github.com/sonatype/m2eclipse-extras/blob/0.13.0.20110622-1538/org.sonatype.m2e.antlr.tests/src/org/sonatype/m2e/antlr/tests/AntlrGenerationTest.java AntlrGenerationTest.java] performs very basic tests to make sure that m2e/antlrv3 integration is not obviously broken.
 +
 +
 +
Import the test project and wait for all background processing triggered by the new project to finish. Even though the test does not assert this, the workspace project should be fully configured at this point
 +
 +
        ResolverConfiguration configuration = new ResolverConfiguration();
 +
        IProject project1 = importProject( "projects/antlr/antlr-v3-p001/pom.xml", configuration );
 +
        waitForJobsToComplete();
 +
 +
: To make sure no state is retained from one test run to the next, #importProject always creates new/fresh copy of the test project under target/test workspace location; the copy is removed by the test tearDown logic.
 +
 +
Automatic workspace build is disable during m2e extensions tests by default, so the build needs to be run explicitly from the test code.
 +
 +
        project1.build( IncrementalProjectBuilder.FULL_BUILD, monitor );
 +
        project1.build( IncrementalProjectBuilder.INCREMENTAL_BUILD, monitor );
 +
        waitForJobsToComplete();
 +
 +
: Note that there are two calls to IProject.build. First, full, build will generate the code. Second, incremental, build will give JDT Java builder the chance to compile the generated code. This matches how java code generation is handled by a "real" eclipse workspace, so it is therefore important that AntlrBuildParticipant performs code generation only when source grammar files change, otherwise workspace build will keep restarting itself forever.
 +
 +
At this point the project should be fully configured, the code should be generated and both generated code should be compiled without errors. Lets assert all that
 +
 +
        assertNoErrors( project1 );
 +
 +
        IJavaProject javaProject1 = JavaCore.create( project1 );
 +
        IClasspathEntry[] cp1 = javaProject1.getRawClasspath();
 +
 +
        assertEquals( new Path( "/antlr-p001/target/generated-sources/antlr" ), cp1[3].getPath() );
 +
 +
        assertTrue( project1.getFile( "target/generated-sources/antlr/test/SampleParser.java" ).isSynchronized( IResource.DEPTH_ZERO ) );
 +
        assertTrue( project1.getFile( "target/generated-sources/antlr/test/SampleParser.java" ).isAccessible() );
 +
 +
TODO add code to assert that expected .class files were created
  
 
== Building the code and generating p2 repository ==
 
== Building the code and generating p2 repository ==

Revision as of 10:11, 28 June 2011

Prerequisites

Some OSGi bundle development and PDE knowledge is assumed. TODO link to some PDE documentation and tutorials


Java code generation overview

Although there are no strict rules, usually maven java code generation plugins like antlr3-maven-plugin or maven-jaxb-plugin take one or more input files from project source tree and generate a number java source files in a subdirectory of target/generated-sources/ directory. These generated sources are usually required to compile and/or run project tests.

To properly support code generation inside Eclipse IDE workspace, the IDE generally needs to perform some configuration (semi) statically during project import and then do actually code generation either on request or automatically as part of workspace build.

m2e extension that provides support for generation will typically need to

  • implement a subclass of org.eclipse.m2e.jdt.AbstractJavaProjectConfigurator to perform necessary project configuration
  • implement subclass of MojoExecutionBuildParticipant to delegate actual code generation to underlying maven plugin goal
  • provide metadata to metadata to register the project configurator with m2e and to map maven plugin execution to the project configurator

m2e/antlr3 code generation support explained

As an example, here is explanation of how different parts of m2e/antlr fit together

On command line, antlr3-maven-plugin, reads ANTLR grammar files from directory specified by ${sourceDirectory} plugin configuration parameter (defaults to src/main/antlr3) and generates output files in directory specified by ${outputDirectory} plugin configuration parameter (defaults to target/generated-sources/antlr3).

AntlrProjectConfigurator and corresponding metadata

AbstractJavaProjectConfigurator is a convenience abstract implementation of AbstractProjectConfigurator that provides default behaviour common to many java code generation m2e extensions. AbstractJavaProjectConfigurator assumes single additional java source folder needs to be configured for the project and the source folder location is defined by ${outputDirectory} maven plugin configuration parameter. This allows very simple ANTLR project configurator implementation (is explained below)

   public class AntlrProjectConfigurator
       extends AbstractJavaProjectConfigurator
   {
       @Override
       public AbstractBuildParticipant getBuildParticipant( IMavenProjectFacade projectFacade,
                                                            MojoExecution execution,
                                                            IPluginExecutionMetadata executionMetadata )
       {
           return new AntlrBuildParticipant( execution );
       }
   }

The follow extension in plugin.xml registers ANTLR project configurator with m2e

  <extension
        point="org.eclipse.m2e.core.projectConfigurators">
     <configurator
           class="org.sonatype.m2e.antlr.internal.AntlrProjectConfigurator"
           id="org.sonatype.m2e.antlr.antlrConfigurator"
           name="ANTLR Project Configurator">
     </configurator>
  </extension>

lifecycle-mapping-metadata.xml located at the root of the project (and at the root of OSGi bundle jar at runtime) maps antlr3-maven-plugin antlr goal to ANTLR project configurator. Note that configurator id in the mapping matches configurator id defined in the extension point above.

  <lifecycleMappingMetaData>
     <plugineExecutions>
       <pluginExecution>
         <pluginExecutionFilter>
           <groupId>org.antlr</groupId>
           <artifactId>antlr3-maven-plugin</artifactId>
           <versionRange>[3.1.1,)</versionRange>
            <goals>
              <goal>antlr</goal>
            </goals>
         </pluginExecutionFilter>
         <action>
           <configurator>
             <id>org.sonatype.m2e.antlr.antlrConfigurator</id>
           </configurator>
         </action>
       </pluginExecution>
     </pluginExecutions>
  </lifecycleMappingMetaData>

And finally, the following extension in plugin.xml registers m2e extension as lifecycle mapping metadata source with m2e. This is mostly needed as performance optimization, because without this extension m2e would have to search lifecycle-mapping-metadata.xml file in all installed eclipse plugins.

  <extension
        point="org.eclipse.m2e.core.lifecycleMappingMetadataSource">
  </extension>

AntlrBuildParticipant

AntlrBuildParticipant generates java source files (any resources generated by ANTLR, to be precise) during eclipse incremental and full builds.

First AntlrBuildParticipant checks if any of the grammar files have changed and short-cuts code generation if there were no changes.

       File source = maven.getMojoParameterValue(getSession(), getMojoExecution(), "sourceDirectory", File.class);
       Scanner ds = buildContext.newScanner( source ); // delta or full scanner
       ds.scan();
       String[] includedFiles = ds.getIncludedFiles();
       if (includedFiles == null || includedFiles.length <= 0 )
       {
           return null;
       }

Then, AntlrBuildParticipant delegates to MojoExecutionBuildParticipant.build to execute antlr3-maven-plugin antlr goal. This generates resources on filesystem, but does not update eclipse workspace

       Set<IProject> result = super.build( kind, monitor );

Finally, AntlrBuildParticipant refreshes generation output folder in workspace

       File generated = maven.getMojoParameterValue(getSession(), getMojoExecution(), "outputDirectory", File.class);
       if (generated != null) {
           buildContext.refresh( generated );
       }

Testing m2e/antlr code generation support

Test project is setup to fail java compilation if workspace project source folders were not properly configured or ANTLR code generation did not succeed for whatever reason. AntlrGenerationTest.java performs very basic tests to make sure that m2e/antlrv3 integration is not obviously broken.


Import the test project and wait for all background processing triggered by the new project to finish. Even though the test does not assert this, the workspace project should be fully configured at this point

       ResolverConfiguration configuration = new ResolverConfiguration();
       IProject project1 = importProject( "projects/antlr/antlr-v3-p001/pom.xml", configuration );
       waitForJobsToComplete();
To make sure no state is retained from one test run to the next, #importProject always creates new/fresh copy of the test project under target/test workspace location; the copy is removed by the test tearDown logic.

Automatic workspace build is disable during m2e extensions tests by default, so the build needs to be run explicitly from the test code.

       project1.build( IncrementalProjectBuilder.FULL_BUILD, monitor );
       project1.build( IncrementalProjectBuilder.INCREMENTAL_BUILD, monitor );
       waitForJobsToComplete();
Note that there are two calls to IProject.build. First, full, build will generate the code. Second, incremental, build will give JDT Java builder the chance to compile the generated code. This matches how java code generation is handled by a "real" eclipse workspace, so it is therefore important that AntlrBuildParticipant performs code generation only when source grammar files change, otherwise workspace build will keep restarting itself forever.

At this point the project should be fully configured, the code should be generated and both generated code should be compiled without errors. Lets assert all that

       assertNoErrors( project1 );
       IJavaProject javaProject1 = JavaCore.create( project1 );
       IClasspathEntry[] cp1 = javaProject1.getRawClasspath();
       assertEquals( new Path( "/antlr-p001/target/generated-sources/antlr" ), cp1[3].getPath() );
       assertTrue( project1.getFile( "target/generated-sources/antlr/test/SampleParser.java" ).isSynchronized( IResource.DEPTH_ZERO ) );
       assertTrue( project1.getFile( "target/generated-sources/antlr/test/SampleParser.java" ).isAccessible() );

TODO add code to assert that expected .class files were created

Building the code and generating p2 repository

Project directory structure overview

 org.somecatchyname/                   <= project basedir, all project files are under this directory
   org.somecatchyname.m2e/             <= main bundle project
     src/
     pom.xml
   org.somecatchyname.m2e.tests/       <= automated tests (optional, but highly recommended)
     src/
     pom.xml
   org.somecatchyname.m2e.feature/     <= eclipse feature project
     feature.xml
     pom.xml
   pom.xml                             <= aggregator pom.xml
 



Submitting M2E marketplace entries

M2E extension development environment

Back to the top