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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
|
<?php
/*
* $Id: Commandline.php 557 2009-08-29 13:54:38Z 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>.
*/
/**
* Commandline objects help handling command lines specifying processes to
* execute.
*
* The class can be used to define a command line as nested elements or as a
* helper to define a command line by an application.
* <p>
* <code>
* <someelement><br>
* <acommandline executable="/executable/to/run"><br>
* <argument value="argument 1" /><br>
* <argument line="argument_1 argument_2 argument_3" /><br>
* <argument value="argument 4" /><br>
* </acommandline><br>
* </someelement><br>
* </code>
* The element <code>someelement</code> must provide a method
* <code>createAcommandline</code> which returns an instance of this class.
*
* @author thomas.haas@softwired-inc.com
* @author <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
* @package phing.types
*/
class Commandline {
/**
* @var array CommandlineArguments[]
*/
public $arguments = array(); // public so "inner" class can access
/**
* Full path (if not on %PATH% env var) to executable program.
* @var string
*/
public $executable; // public so "inner" class can access
const DISCLAIMER = "The ' characters around the executable and arguments are not part of the command.";
public function __construct($to_process = null) {
if ($to_process !== null) {
$tmp = $this->translateCommandline($to_process);
if ($tmp) {
$this->setExecutable(array_shift($tmp)); // removes first el
foreach($tmp as $arg) { // iterate through remaining elements
$this->createArgument()->setValue($arg);
}
}
}
}
/**
* Creates an argument object and adds it to our list of args.
*
* <p>Each commandline object has at most one instance of the
* argument class.</p>
*
* @param boolean $insertAtStart if true, the argument is inserted at the
* beginning of the list of args, otherwise it is appended.
* @return CommandlineArgument
*/
public function createArgument($insertAtStart = false) {
$argument = new CommandlineArgument($this);
if ($insertAtStart) {
array_unshift($this->arguments, $argument);
} else {
array_push($this->arguments, $argument);
}
return $argument;
}
/**
* Sets the executable to run.
*/
public function setExecutable($executable) {
if (!$executable) {
return;
}
$this->executable = $executable;
$this->executable = strtr($this->executable, '/', DIRECTORY_SEPARATOR);
$this->executable = strtr($this->executable, '\\', DIRECTORY_SEPARATOR);
}
public function getExecutable() {
return $this->executable;
}
public function addArguments($line) {
foreach($line as $arg) {
$this->createArgument()->setValue($arg);
}
}
/**
* Returns the executable and all defined arguments.
* @return array
*/
public function getCommandline() {
$args = $this->getArguments();
if ($this->executable === null) {
return $args;
}
return array_merge(array($this->executable), $args);
}
/**
* Returns all arguments defined by <code>addLine</code>,
* <code>addValue</code> or the argument object.
*/
public function getArguments() {
$result = array();
foreach($this->arguments as $arg) {
$parts = $arg->getParts();
if ($parts !== null) {
foreach($parts as $part) {
$result[] = $part;
}
}
}
return $result;
}
public function __toString() {
return self::toString($this->getCommandline());
}
/**
* Put quotes around the given String if necessary.
*
* <p>If the argument doesn't include spaces or quotes, return it
* as is. If it contains double quotes, use single quotes - else
* surround the argument by double quotes.</p>
*
* @exception BuildException if the argument contains both, single
* and double quotes.
*/
public static function quoteArgument($argument) {
if (strpos($argument, "\"") !== false) {
if (strpos($argument, "'") !== false) {
throw new BuildException("Can't handle single and double quotes in same argument");
} else {
return escapeshellarg($argument);
}
} elseif (strpos($argument, "'") !== false || strpos($argument, " ") !== false) {
return escapeshellarg($argument);
//return '\"' . $argument . '\"';
} else {
return $argument;
}
}
/**
* Quotes the parts of the given array in way that makes them
* usable as command line arguments.
*/
public static function toString($lines) {
// empty path return empty string
if (!$lines) {
return "";
}
// path containing one or more elements
$result = "";
for ($i = 0, $len=count($lines); $i < $len; $i++) {
if ($i > 0) {
$result .= ' ';
}
$result .= self::quoteArgument($lines[$i]);
}
return $result;
}
/**
*
* @param string $to_process
* @return array
*/
public static function translateCommandline($to_process) {
if (!$to_process) {
return array();
}
// parse with a simple finite state machine
$normal = 0;
$inQuote = 1;
$inDoubleQuote = 2;
$state = $normal;
$args = array();
$current = "";
$lastTokenHasBeenQuoted = false;
$tok = strtok($to_process, "");
$tokens = preg_split('/(["\' ])/', $to_process, -1, PREG_SPLIT_DELIM_CAPTURE);
while(($nextTok = array_shift($tokens)) !== null) {
switch ($state) {
case $inQuote:
if ("'" == $nextTok) {
$lastTokenHasBeenQuoted = true;
$state = $normal;
} else {
$current .= $nextTok;
}
break;
case $inDoubleQuote:
if ("\"" == $nextTok) {
$lastTokenHasBeenQuoted = true;
$state = $normal;
} else {
$current .= $nextTok;
}
break;
default:
if ("'" == $nextTok) {
$state = $inQuote;
} elseif ("\"" == $nextTok) {
$state = $inDoubleQuote;
} elseif (" " == $nextTok) {
if ($lastTokenHasBeenQuoted || strlen($current) != 0) {
$args[] = $current;
$current = "";
}
} else {
$current .= $nextTok;
}
$lastTokenHasBeenQuoted = false;
break;
}
}
if ($lastTokenHasBeenQuoted || strlen($current) != 0) {
$args[] = $current;
}
if ($state == $inQuote || $state == $inDoubleQuote) {
throw new BuildException("unbalanced quotes in " . $to_process);
}
return $args;
}
/**
* @return int Number of components in current commandline.
*/
public function size() {
return count($this->getCommandline());
}
public function __copy() {
$c = new Commandline();
$c->setExecutable($this->executable);
$c->addArguments($this->getArguments());
return $c;
}
/**
* Clear out the whole command line. */
public function clear() {
$this->executable = null;
$this->arguments->removeAllElements();
}
/**
* Clear out the arguments but leave the executable in place for
* another operation.
*/
public function clearArgs() {
$this->arguments = array();
}
/**
* Return a marker.
*
* <p>This marker can be used to locate a position on the
* commandline - to insert something for example - when all
* parameters have been set.</p>
* @return CommandlineMarker
*/
public function createMarker() {
return new CommandlineMarker($this, count($this->arguments));
}
/**
* Returns a String that describes the command and arguments
* suitable for verbose output before a call to
* <code>Runtime.exec(String[])<code>.
*
* <p>This method assumes that the first entry in the array is the
* executable to run.</p>
* @param array $args CommandlineArgument[] to use
* @return string
*/
public function describeCommand($args = null) {
if ($args === null) {
$args = $this->getCommandline();
}
if (!$args) {
return "";
}
$buf = "Executing '";
$buf .= $args[0];
$buf .= "'";
if (count($args) > 0) {
$buf .= " with ";
$buf .= $this->describeArguments($args, 1);
} else {
$buf .= self::DISCLAIMER;
}
return $buf;
}
/**
* Returns a String that describes the arguments suitable for
* verbose output before a call to
* <code>Runtime.exec(String[])<code>
* @param $args arguments to use (default is to use current class args)
* @param $offset ignore entries before this index
* @return string
*/
protected function describeArguments($args = null, $offset = 0) {
if ($args === null) {
$args = $this->getArguments();
}
if ($args === null || count($args) <= $offset) {
return "";
}
$buf = "argument";
if (count($args) > $offset) {
$buf .= "s";
}
$buf .= ":" . PHP_EOL;
for ($i = $offset, $alen=count($args); $i < $alen; $i++) {
$buf .= "'" . $args[$i] . "'" . PHP_EOL;
}
$buf .= self::DISCLAIMER;
return $buf;
}
}
/**
* "Inner" class used for nested xml command line definitions.
*/
class CommandlineArgument {
private $parts = array();
private $outer;
public function __construct(Commandline $outer) {
$this->outer = $outer;
}
/**
* Sets a single commandline argument.
*
* @param string $value a single commandline argument.
*/
public function setValue($value) {
$this->parts = array($value);
}
/**
* Line to split into several commandline arguments.
*
* @param line line to split into several commandline arguments
*/
public function setLine($line) {
if ($line === null) {
return;
}
$this->parts = $this->outer->translateCommandline($line);
}
/**
* Sets a single commandline argument and treats it like a
* PATH - ensures the right separator for the local platform
* is used.
*
* @param value a single commandline argument.
*/
public function setPath($value) {
$this->parts = array( (string) $value );
}
/**
* Sets a single commandline argument to the absolute filename
* of the given file.
*
* @param value a single commandline argument.
*/
public function setFile(PhingFile $value) {
$this->parts = array($value->getAbsolutePath());
}
/**
* Returns the parts this Argument consists of.
* @return array string[]
*/
public function getParts() {
return $this->parts;
}
}
/**
* Class to keep track of the position of an Argument.
*/
// <p>This class is there to support the srcfile and targetfile
// elements of <execon> and <transform> - don't know
// whether there might be additional use cases.</p> --SB
class CommandlineMarker {
private $position;
private $realPos = -1;
private $outer;
public function __construct(Comandline $outer, $position) {
$this->outer = $outer;
$this->position = $position;
}
/**
* Return the number of arguments that preceeded this marker.
*
* <p>The name of the executable - if set - is counted as the
* very first argument.</p>
*/
public function getPosition() {
if ($this->realPos == -1) {
$realPos = ($this->outer->executable === null ? 0 : 1);
for ($i = 0; $i < $position; $i++) {
$arg = $this->arguments[$i];
$realPos += count($arg->getParts());
}
}
return $this->realPos;
}
}
|