|
- /*
- * The Apache Software License, Version 1.1
- *
- * Copyright (c) 1999 The Apache Software Foundation. All rights
- * reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- *
- * 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
- * "This product includes software developed by the
- * Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
- *
- * 4. The names "The Jakarta Project", "Ant", and "Apache Software
- * Foundation" must not be used to endorse or promote products derived
- * from this software without prior written permission. For written
- * permission, please contact apache@apache.org.
- *
- * 5. Products derived from this software may not be called "Apache"
- * nor may "Apache" appear in their names without prior written
- * permission of the Apache Group.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * ====================================================================
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the Apache Software Foundation. For more
- * information on the Apache Software Foundation, please see
- * <http://www.apache.org/>.
- */
-
- package org.apache.tools.ant.taskdefs;
-
- import org.apache.tools.ant.Task;
- import org.apache.tools.ant.BuildException;
- import org.apache.tools.ant.Project;
- import org.apache.tools.ant.types.Commandline;
- import org.apache.tools.ant.types.Environment;
-
- import java.io.File;
- import java.io.FileOutputStream;
- import java.io.ByteArrayOutputStream;
- import java.io.IOException;
- import java.io.BufferedReader;
- import java.io.StringReader;
- import java.io.FileNotFoundException;
-
- /**
- * Executes a given command if the os platform is appropriate.
- *
- * @author duncan@x180.com
- * @author rubys@us.ibm.com
- * @author thomas.haas@softwired-inc.com
- * @author <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
- * @author <a href="mailto:mariusz@rakiura.org">Mariusz Nowostawski</a>
- */
- public class ExecTask extends Task {
-
- private static String lSep = System.getProperty("line.separator");
-
- private String os;
- private File out;
- private File dir;
- protected boolean failOnError = false;
- protected boolean newEnvironment = false;
- private Integer timeout = null;
- private Environment env = new Environment();
- protected Commandline cmdl = new Commandline();
- private FileOutputStream fos = null;
- private ByteArrayOutputStream baos = null;
- private String outputprop;
- private String resultProperty;
-
- /** Controls whether the VM (1.3 and above) is used to execute the command */
- private boolean vmLauncher = true;
-
- /**
- * Timeout in milliseconds after which the process will be killed.
- */
- public void setTimeout(Integer value) {
- timeout = value;
- }
-
- /**
- * The command to execute.
- */
- public void setExecutable(String value) {
- cmdl.setExecutable(value);
- }
-
- /**
- * The working directory of the process
- */
- public void setDir(File d) {
- this.dir = d;
- }
-
- /**
- * Only execute the process if <code>os.name</code> is included in this string.
- */
- public void setOs(String os) {
- this.os = os;
- }
-
- /**
- * The full commandline to execute, executable + arguments.
- */
- public void setCommand(Commandline cmdl) {
- log("The command attribute is deprecated. " +
- "Please use the executable attribute and nested arg elements.",
- Project.MSG_WARN);
- this.cmdl = cmdl;
- }
-
- /**
- * File the output of the process is redirected to.
- */
- public void setOutput(File out) {
- this.out = out;
- }
-
- /**
- * Property name whose value should be set to the output of
- * the process
- */
- public void setOutputproperty(String outputprop) {
- this.outputprop = outputprop;
- }
-
- /**
- * Throw a BuildException if process returns non 0.
- */
- public void setFailonerror(boolean fail) {
- failOnError = fail;
- }
-
- /**
- * Use a completely new environment
- */
- public void setNewenvironment(boolean newenv) {
- newEnvironment = newenv;
- }
-
- /**
- * Add a nested env element - an environment variable.
- */
- public void addEnv(Environment.Variable var) {
- env.addVariable(var);
- }
-
- /**
- * Add a nested arg element - a command line argument.
- */
- public Commandline.Argument createArg() {
- return cmdl.createArgument();
- }
-
- /**
- * fill a property in with a result.
- * when no property is defined: failure to execute
- * @since 1.5
- */
- public void setResultProperty(String resultProperty) {
- this.resultProperty=resultProperty;
- }
-
- /**
- * helper method to set result property to the
- * passed in value if appropriate
- */
- protected void maybeSetResultPropertyValue(int result) {
- String res=Integer.toString(result);
- if(resultProperty!=null
- && project.getProperty(resultProperty) == null) {
- project.setProperty(resultProperty,res);
- }
- }
-
- /**
- * Do the work.
- */
- public void execute() throws BuildException {
- checkConfiguration();
- if (isValidOs()) {
- runExec(prepareExec());
- }
- }
-
- /**
- * Has the user set all necessary attributes?
- */
- protected void checkConfiguration() throws BuildException {
- if (cmdl.getExecutable() == null) {
- throw new BuildException("no executable specified", location);
- }
- if (dir != null && !dir.exists()) {
- throw new BuildException("The directory you specified does not exist");
- }
- if (dir != null && !dir.isDirectory()) {
- throw new BuildException("The directory you specified is not a directory");
- }
- }
-
- /**
- * Is this the OS the user wanted?
- */
- protected boolean isValidOs() {
- // test if os match
- String myos = System.getProperty("os.name");
- log("Current OS is " + myos, Project.MSG_VERBOSE);
- if ((os != null) && (os.indexOf(myos) < 0)){
- // this command will be executed only on the specified OS
- log("This OS, " + myos + " was not found in the specified list of valid OSes: " + os, Project.MSG_VERBOSE);
- return false;
- }
- return true;
- }
-
- /**
- * Control whether the VM is used to launch the new process or
- * whether the OS's shell is used.
- */
- public void setVMLauncher(boolean vmLauncher) {
- this.vmLauncher = vmLauncher;
- }
-
- /**
- * Create an Execute instance with the correct working directory set.
- */
- protected Execute prepareExec() throws BuildException {
- // default directory to the project's base directory
- if (dir == null) dir = project.getBaseDir();
- // show the command
- log(cmdl.toString(), Project.MSG_VERBOSE);
-
- Execute exe = new Execute(createHandler(), createWatchdog());
- exe.setAntRun(project);
- exe.setWorkingDirectory(dir);
- exe.setVMLauncher(vmLauncher);
- String[] environment = env.getVariables();
- if (environment != null) {
- for (int i=0; i<environment.length; i++) {
- log("Setting environment variable: "+environment[i],
- Project.MSG_VERBOSE);
- }
- }
- exe.setNewenvironment(newEnvironment);
- exe.setEnvironment(environment);
- return exe;
- }
-
- /**
- * A Utility method for this classes and subclasses to run an Execute instance (an external command).
- */
- protected final void runExecute(Execute exe) throws IOException {
- int err = -1; // assume the worst
-
- err = exe.execute();
- maybeSetResultPropertyValue(err);
- if (err != 0) {
- if (failOnError) {
- throw new BuildException(taskType + " returned: "+err, location);
- } else {
- log("Result: " + err, Project.MSG_ERR);
- }
- }
- if (baos != null) {
- BufferedReader in =
- new BufferedReader(new StringReader(baos.toString()));
- String line = null;
- StringBuffer val = new StringBuffer();
- while ((line = in.readLine()) != null) {
- if (val.length() != 0) {
- val.append(lSep);
- }
- val.append(line);
- }
- project.setProperty(outputprop, val.toString());
- }
- }
-
- /**
- * Run the command using the given Execute instance. This may be overidden by subclasses
- */
- protected void runExec(Execute exe) throws BuildException {
- exe.setCommandline(cmdl.getCommandline());
- try {
- runExecute(exe);
- } catch (IOException e) {
- if (failOnError) {
- throw new BuildException("Execute failed: ",e, location);
- } else {
- log("Execute failed: "+e.toString(), Project.MSG_ERR);
- }
- } finally {
- // close the output file if required
- logFlush();
- }
- }
-
- /**
- * Create the StreamHandler to use with our Execute instance.
- */
- protected ExecuteStreamHandler createHandler() throws BuildException {
- if(out!=null) {
- try {
- fos = new FileOutputStream(out);
- log("Output redirected to " + out, Project.MSG_VERBOSE);
- return new PumpStreamHandler(fos);
- } catch (FileNotFoundException fne) {
- throw new BuildException("Cannot write to "+out, fne, location);
- } catch (IOException ioe) {
- throw new BuildException("Cannot write to "+out, ioe, location);
- }
- } else if (outputprop != null) {
- baos = new ByteArrayOutputStream();
- log("Output redirected to ByteArray", Project.MSG_VERBOSE);
- return new PumpStreamHandler(baos);
- } else {
- return new LogStreamHandler(this,
- Project.MSG_INFO, Project.MSG_WARN);
- }
- }
-
- /**
- * Create the Watchdog to kill a runaway process.
- */
- protected ExecuteWatchdog createWatchdog() throws BuildException {
- if (timeout == null) return null;
- return new ExecuteWatchdog(timeout.intValue());
- }
-
- /**
- * Flush the output stream - if there is one.
- */
- protected void logFlush() {
- try {
- if (fos != null) fos.close();
- if (baos != null) baos.close();
- } catch (IOException io) {}
- }
-
- }
|