Package npanday.plugin.wix

Source Code of npanday.plugin.wix.CandleMojo

package npanday.plugin.wix;

/*
* Copyright ---
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import org.apache.commons.exec.CommandLine;
import org.apache.commons.exec.DefaultExecutor;
import org.apache.commons.exec.ExecuteException;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;

import java.io.File;
import java.io.IOException;

/**
* Goal which executes WiX candle to create a .wixobj file.
*
* @goal candle
*
* @phase package
*/
public class CandleMojo
    extends AbstractWixMojo
{
    /**
     * Location of the WiX source files.
     * @parameter expression="${sourceFiles}"
     * @required
     */
    private File[] sourceFiles;
   
    /**
     * Definitions to be passed on before pre Compilation
     * @parameter expression="${definitions}"
     */
    private String[] definitions;

    /**
     * x86, intel, x64, intel64, or ia64 (default: x86)
     * @parameter expression="${arch}"
     */
    private String arch;


    /**
     * Output file
     * @parameter expression="${outputDirectory}"
     */
    private File outputDirectory;

    public void execute()
        throws MojoExecutionException
    {
        String paths = "";
        for (int x = 0; x < sourceFiles.length; x++) {
          File f = sourceFiles[x];
          if ( !f.exists() )
          {
             throw new MojoExecutionException( "Source file does not exist " + sourceFiles[x] );
          } else {
            paths = paths + sourceFiles[x].getAbsolutePath() + " ";
          }
        }

        try {
          String line = "candle -nologo -sw ";
          String dftns = "";
         
          if(definitions.length>0)
          {
            for (int x = 0; x < definitions.length; x++)
            {
                    dftns=dftns+"-d"+definitions[x]+" ";               
            }
            line += dftns;
          }
         
          if(outputDirectory != null)
          {
            if (!outputDirectory.exists())
            {
              outputDirectory.mkdir();
              line = line + "-out " + outputDirectory.getAbsolutePath() + "\\";
            }
            else
            {
              line = line + "-out " + outputDirectory.getAbsolutePath() + "\\";
            }
          }
          if ( arch != null ) {
            line += " -arch " + arch;
          }
          if ( extensions != null ) {
            for ( String ext : extensions ) {
              line += " -ext " + ext;
            }
          }

          if ( arguments != null ) {
            line += " " + arguments;
          }

          line += " " + paths;
         
          CommandLine commandLine = CommandLine.parse(line);
          DefaultExecutor executor = new DefaultExecutor();
          int exitValue = executor.execute(commandLine);
         
          if ( exitValue != 0 ) {
              throw new MojoExecutionException( "Problem executing candle, return code " + exitValue );
          }
        
        } catch (ExecuteException e) {
          throw new MojoExecutionException( "Problem executing candle", e );
        } catch (IOException e ) {
          throw new MojoExecutionException( "Problem executing candle", e );
        }
    }
}
TOP

Related Classes of npanday.plugin.wix.CandleMojo

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.