1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
<?php
/*
* $Id: 8c248a504d318df4ca1af576699f8c39b3bc261e $
*
* 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";
require_once dirname(__FILE__) . "/Arg.php";
/**
* Symfony Console Task
* @author nuno costa <nuno@francodacosta.com>
* @license GPL
* @version $Id: 8c248a504d318df4ca1af576699f8c39b3bc261e $
* @package phing.tasks.ext.symfony
*/
class SymfonyConsoleTask extends Task
{
/**
*
* @var Array of Arg a collection of Arg objects
*/
private $args = array();
/**
*
* @var string the Symfony console command to execute
*/
private $command = null;
/**
*
* @var string path to symfony console application
*/
private $console = 'php app/console';
/**
*
* @var string property to be set
*/
private $propertyName = null;
/**
* Whether to check the return code.
* @var boolean
*/
private $checkreturn = false;
/**
* sets the symfony console command to execute
* @param string $command
*/
public function setCommand($command)
{
$this->command = $command;
}
/**
* return the symfony console command to execute
* @return String
*/
public function getCommand()
{
return $this->command;
}
/**
* sets the path to symfony console application
* @param string $console
*/
public function setConsole($console)
{
$this->console = $console;
}
/**
* returns the path to symfony console application
* @return string
*/
public function getConsole()
{
return $this->console;
}
/**
* Set the name of the property to store the hash value in
* @param $property
* @return void
*/
public function setPropertyName($property)
{
$this->propertyName = $property;
}
/**
* Whether to check the return code.
*
* @param boolean $checkreturn If the return code shall be checked
*
* @return void
*/
public function setCheckreturn($checkreturn)
{
$this->checkreturn = (bool) $checkreturn;
}
/**
* appends an arg tag to the arguments stack
*
* @return Arg Argument object
*/
public function createArg()
{
$num = array_push($this->args, new Arg());
return $this->args[$num-1];
}
/**
* return the argumments passed to this task
* @return array of Arg()
*/
public function getArgs()
{
return $this->args;
}
/**
* Gets the command string to be executed
* @return string
*/
public function getCmdString() {
$cmd = array(
$this->console,
$this->command,
implode(' ', $this->args)
);
$cmd = implode(' ', $cmd);
return $cmd;
}
/**
* executes the synfony consile application
*/
public function main()
{
$cmd = $this->getCmdString();
$this->log("executing $cmd");
$return = null;
$output = array();
exec($cmd, $output, $return);
$lines = implode("\r\n", $output);
$this->log($lines, Project::MSG_INFO);
if ($this->propertyName != null) {
$this->project->setProperty($this->propertyName, $lines);
}
if ($return != 0 && $this->checkreturn) {
$this->log('Task exited with code: ' . $return, Project::MSG_ERR);
throw new BuildException("SymfonyConsole execution failed");
}
}
}
|