InvokerMojo.java

  1. package com.soebes.maven.plugins.iterator;

  2. /*
  3.  * Licensed to the Apache Software Foundation (ASF) under one
  4.  * or more contributor license agreements.  See the NOTICE file
  5.  * distributed with this work for additional information
  6.  * regarding copyright ownership.  The ASF licenses this file
  7.  * to you under the Apache License, Version 2.0 (the
  8.  * "License"); you may not use this file except in compliance
  9.  * with the License.  You may obtain a copy of the License at
  10.  *
  11.  *   http://www.apache.org/licenses/LICENSE-2.0
  12.  *
  13.  * Unless required by applicable law or agreed to in writing,
  14.  * software distributed under the License is distributed on an
  15.  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16.  * KIND, either express or implied.  See the License for the
  17.  * specific language governing permissions and limitations
  18.  * under the License.
  19.  */

  20. import java.io.File;
  21. import java.util.ArrayList;
  22. import java.util.List;

  23. import org.apache.maven.plugin.BuildPluginManager;
  24. import org.apache.maven.plugin.MojoExecutionException;
  25. import org.apache.maven.plugin.MojoFailureException;
  26. import org.apache.maven.plugin.descriptor.PluginDescriptor;
  27. import org.apache.maven.plugins.annotations.Component;
  28. import org.apache.maven.plugins.annotations.LifecyclePhase;
  29. import org.apache.maven.plugins.annotations.Mojo;
  30. import org.apache.maven.plugins.annotations.Parameter;
  31. import org.apache.maven.shared.invoker.InvocationRequest;
  32. import org.apache.maven.shared.invoker.InvocationResult;
  33. import org.apache.maven.shared.invoker.Invoker;
  34. import org.apache.maven.shared.invoker.MavenInvocationException;

  35. /**
  36.  * Invoker will execute an Maven instance by iterating through the given items.
  37.  *
  38.  * @author Karl-Heinz Marbaise <a href="mailto:khmarbaise@apache.org">khmarbaise@apache.org</a>
  39.  */
  40. @Mojo( name = "invoker", defaultPhase = LifecyclePhase.PACKAGE, requiresProject = true, threadSafe = true )
  41. public class InvokerMojo
  42.     extends AbstractInvokerMojo
  43. {

  44.     /**
  45.      * The Maven BuildPluginManager component.
  46.      */
  47.     @Component
  48.     private BuildPluginManager pluginManager;

  49.     @Parameter( defaultValue = "${plugin}", required = true, readonly = true )
  50.     private PluginDescriptor pluginDescriptor;

  51.     @Parameter
  52.     private File workingDirectory;

  53.     @Component
  54.     private Invoker invoker;

  55.     /**
  56.      * Possibly to multithreading..
  57.      *
  58.      * @throws MojoFailureException in case of failure.
  59.      */
  60.     // private int numberOfThreads;

  61.     public void execute()
  62.         throws MojoExecutionException, MojoFailureException
  63.     {
  64.         if ( isSkip() )
  65.         {
  66.             getLog().info( "Skip by user request." );
  67.             return;
  68.         }

  69.         if ( isNoneSet() )
  70.         {
  71.             throw new MojoExecutionException( "You have to use at least one. " + "Either items, "
  72.                 + "itemsWithProperties, content or folder element!" );
  73.         }

  74.         if ( isMoreThanOneSet() )
  75.         {
  76.             throw new MojoExecutionException( "You can use only one element. "
  77.                 + "Either items, itemsWithProperties, content or folder element but not more than one of them." );
  78.         }

  79.         File localRepository = new File( getMavenSession().getSettings().getLocalRepository() );

  80.         invoker.setLocalRepositoryDirectory( localRepository );
  81.         // invoker.setOutputHandler(outputHandler);
  82.         // TODO: Check how it looks if we will use the invokerLogger?
  83.         // invoker.setLogger();

  84.         // getLog().info("local repository: " + localRepository);
  85.         // // getLog().isDebugEnabled()
  86.         // getLog().info("Invoker:" + invoker);

  87.         List<Exception> exceptions = new ArrayList<>();

  88.         for ( ItemWithProperties item : getItemsConverted() )
  89.         {
  90.             try
  91.             {
  92.                 createLogOutput( item );
  93.                 InvocationResult result = mavenCall( item );

  94.                 if ( result.getExitCode() == 0 )
  95.                 {
  96.                     getLog().info( "------ Maven call was Ok." );
  97.                     continue;
  98.                 }

  99.                 getLog().error( "------ Maven call was NOT Ok. for iteration " + item.getName() + " ( return code: " + result.getExitCode() + " )" );
  100.                 if ( result.getExecutionException() != null )
  101.                 {
  102.                     getLog().error( result.getExecutionException().getMessage(),
  103.                                     result.getExecutionException().getCause() );
  104.                 }

  105.                 String failureMessage =
  106.                     "Maven call failed with return code " + result.getExitCode() + " for iteration: " + item.getName();

  107.                 if ( isFailAtEnd() )
  108.                 {
  109.                     exceptions.add( new RuntimeException( failureMessage ) );
  110.                 }
  111.                 else
  112.                 {
  113.                     throw new MojoFailureException( failureMessage );
  114.                 }

  115.             }
  116.             catch ( MavenInvocationException e )
  117.             {
  118.                 // This will stop any iteration.
  119.                 getLog().error( "------ ***** Command line options are wrong:", e );
  120.                 throw new MojoExecutionException( "Command line options are wrong:", e );
  121.             }
  122.         }

  123.         if ( !exceptions.isEmpty() )
  124.         {
  125.             for ( Exception exception : exceptions )
  126.             {
  127.                 getLog().error( exception );
  128.             }
  129.             throw new MojoExecutionException( "Failures during iterations." );
  130.         }
  131.     }

  132.     private File getWorkingDirectoryAfterPlaceHolderIsReplaced( ItemWithProperties currentValue )
  133.     {
  134.         File baseDir = getWorkingDirectory();
  135.         if ( baseDir != null && baseDir.toString().contains( getPlaceHolder() ) )
  136.         {
  137.             baseDir = new File( baseDir.toString().replaceAll( getPlaceHolder(), currentValue.getName() ) );
  138.         }
  139.         return baseDir;
  140.     }

  141.     private InvocationResult mavenCall( ItemWithProperties item )
  142.         throws MavenInvocationException
  143.     {
  144.         InvocationRequest request = createAndConfigureAnInvocationRequest( item );

  145.         OutputConsumer output = new OutputConsumer( getLog() );
  146.         request.setOutputHandler( output );

  147.         invoker.setWorkingDirectory( getWorkingDirectoryAfterPlaceHolderIsReplaced( item ) );

  148.         return invoker.execute( request );
  149.     }

  150.     private void createLogOutput( ItemWithProperties item )
  151.     {
  152.         StringBuilder sb = new StringBuilder( "------ " );
  153.         sb.append( " iterator-maven-plugin " );
  154.         sb.append( "( iteration: " );
  155.         sb.append( item.getName() );
  156.         sb.append( " )" );
  157.         getLog().info( sb.toString() );
  158.     }

  159.     public void setThreads( String threads )
  160.     {
  161.         this.threads = threads;
  162.     }

  163.     public File getWorkingDirectory()
  164.     {
  165.         return workingDirectory;
  166.     }

  167.     public void setWorkingDirectory( File workingDirectory )
  168.     {
  169.         this.workingDirectory = workingDirectory;
  170.     }

  171. }