123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <?php
- /*
- * $Id: ExecTask.php 905 2010-10-05 16:28:03Z mrook $
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS 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 COPYRIGHT
- * OWNER OR 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
- * and is licensed under the LGPL. For more information please see
- * <http://phing.info>.
- */
- require_once 'phing/Task.php';
- /**
- * Executes a command on the shell.
- *
- * @author Andreas Aderhold <andi@binarycloud.com>
- * @author Hans Lellelid <hans@xmpl.org>
- * @version $Revision: 905 $
- * @package phing.tasks.system
- */
- class ExecTask extends Task {
- /**
- * Command to execute.
- * @var string
- */
- protected $command;
- /**
- * Working directory.
- * @var File
- */
- protected $dir;
- /**
- * Operating system.
- * @var string
- */
- protected $os;
- /**
- * Whether to escape shell command using escapeshellcmd().
- * @var boolean
- */
- protected $escape = false;
- /**
- * Where to direct output.
- * @var File
- */
- protected $output;
- /**
- * Whether to use PHP's passthru() function instead of exec()
- * @var boolean
- */
- protected $passthru = false;
- /**
- * Whether to log returned output as MSG_INFO instead of MSG_VERBOSE
- * @var boolean
- */
- protected $logOutput = false;
- /**
- * Where to direct error output.
- * @var File
- */
- protected $error;
- /**
- * If spawn is set then [unix] programs will redirect stdout and add '&'.
- * @var boolean
- */
- protected $spawn = false;
- /**
- * Property name to set with return value from exec call.
- *
- * @var string
- */
- protected $returnProperty;
- /**
- * Property name to set with output value from exec call.
- *
- * @var string
- */
- protected $outputProperty;
- /**
- * Whether to check the return code.
- * @var boolean
- */
- protected $checkreturn = false;
- /**
- * Main method: wraps execute() command.
- * @return void
- */
- public function main() {
- $this->execute();
- }
- /**
- * Executes a program and returns the return code.
- * Output from command is logged at INFO level.
- * @return int Return code from execution.
- */
- public function execute() {
- // test if os match
- $myos = Phing::getProperty("os.name");
- $this->log("Myos = " . $myos, Project::MSG_VERBOSE);
- if (($this->os !== null) && (strpos($this->os, $myos) === false)) {
- // this command will be executed only on the specified OS
- $this->log("Not found in " . $this->os, Project::MSG_VERBOSE);
- return 0;
- }
- if ($this->dir !== null) {
- if ($this->dir->isDirectory()) {
- $currdir = getcwd();
- @chdir($this->dir->getPath());
- } else {
- throw new BuildException("Can't chdir to:" . $this->dir->__toString());
- }
- }
- if ($this->escape == true) {
- // FIXME - figure out whether this is correct behavior
- $this->command = escapeshellcmd($this->command);
- }
- if ($this->error !== null) {
- $this->command .= ' 2> ' . $this->error->getPath();
- $this->log("Writing error output to: " . $this->error->getPath());
- }
- if ($this->output !== null) {
- $this->command .= ' 1> ' . $this->output->getPath();
- $this->log("Writing standard output to: " . $this->output->getPath());
- } elseif ($this->spawn) {
- $this->command .= ' 1>/dev/null';
- $this->log("Sending ouptut to /dev/null");
- }
- // If neither output nor error are being written to file
- // then we'll redirect error to stdout so that we can dump
- // it to screen below.
- if ($this->output === null && $this->error === null) {
- $this->command .= ' 2>&1';
- }
- // we ignore the spawn boolean for windows
- if ($this->spawn) {
- $this->command .= ' &';
- }
- $this->log("Executing command: " . $this->command);
- $output = array();
- $return = null;
-
- if ($this->passthru)
- {
- passthru($this->command, $return);
- }
- else
- {
- exec($this->command, $output, $return);
- }
- if ($this->dir !== null) {
- @chdir($currdir);
- }
- foreach($output as $line) {
- $this->log($line, ($this->logOutput ? Project::MSG_INFO : Project::MSG_VERBOSE));
- }
- if ($this->returnProperty) {
- $this->project->setProperty($this->returnProperty, $return);
- }
- if ($this->outputProperty) {
- $this->project->setProperty($this->outputProperty, implode("\n", $output));
- }
- if($return != 0 && $this->checkreturn) {
- throw new BuildException("Task exited with code $return");
- }
- return $return;
- }
- /**
- * The command to use.
- * @param mixed $command String or string-compatible (e.g. w/ __toString()).
- */
- function setCommand($command) {
- $this->command = "" . $command;
- }
- /**
- * Whether to use escapeshellcmd() to escape command.
- * @param boolean $escape
- */
- function setEscape($escape) {
- $this->escape = (bool) $escape;
- }
- /**
- * Specify the working directory for executing this command.
- * @param PhingFile $dir
- */
- function setDir(PhingFile $dir) {
- $this->dir = $dir;
- }
- /**
- * Specify OS (or muliple OS) that must match in order to execute this command.
- * @param string $os
- */
- function setOs($os) {
- $this->os = (string) $os;
- }
- /**
- * File to which output should be written.
- * @param PhingFile $output
- */
- function setOutput(PhingFile $f) {
- $this->output = $f;
- }
- /**
- * File to which error output should be written.
- * @param PhingFile $output
- */
- function setError(PhingFile $f) {
- $this->error = $f;
- }
- /**
- * Whether to use PHP's passthru() function instead of exec()
- * @param boolean $passthru
- */
- function setPassthru($passthru) {
- $this->passthru = (bool) $passthru;
- }
- /**
- * Whether to log returned output as MSG_INFO instead of MSG_VERBOSE
- * @param boolean $passthru
- */
- function setLogoutput($logOutput) {
- $this->logOutput = (bool) $logOutput;
- }
- /**
- * Whether to suppress all output and run in the background.
- * @param boolean $spawn
- */
- function setSpawn($spawn) {
- $this->spawn = (bool) $spawn;
- }
- /**
- * Whether to check the return code.
- * @param boolean $checkreturn
- */
- function setCheckreturn($checkreturn) {
- $this->checkreturn = (bool) $checkreturn;
- }
-
- /**
- * The name of property to set to return value from exec() call.
- * @param string $prop
- */
- function setReturnProperty($prop) {
- $this->returnProperty = $prop;
- }
- /**
- * The name of property to set to output value from exec() call.
- * @param string $prop
- */
- function setOutputProperty($prop) {
- $this->outputProperty = $prop;
- }
- }
|