/usr/share/php/pkgtools/base/command.php is in pkg-php-tools 1.28.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?php
/*
* Copyright (c) 2014 Mathieu Parent <sathieu@debian.org>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
namespace Pkgtools\Base;
use \Pkgtools\Base\Logger;
/**
* This class parses command-line
*
* @copyright Copyright (c) 2014 Mathieu Parent <sathieu@debian.org>
* @author Mathieu Parent <sathieu@debian.org>
* @license Expat http://www.jclark.com/xml/copying.txt
*/
abstract class Command {
/**
* Parent command
*
* @var BaseCommand
*/
private $_parentCommand;
/**
* Sub-command
*
* @var BaseCommand
*/
private $_subCommand = NULL;
/**
* Options
*
* @var Array
*/
private $_options = Array();
/**
* Available actions
*
* @var Array
*/
public $ACTIONS = array(
'store',
// Not implemented: 'store_const',
'store_true',
'store_false',
// Not implemented: 'append',
// Not implemented: 'append_const',
'count',
'callback',
'help',
// Not implemented: 'version',
);
/**
* Constructor
*
* @param BaseCommand $parentCommand
*/
final public function __construct($parentCommand = NULL) {
$this->_parentCommand = $parentCommand;
$this->addOptions();
}
/**
* Add an option to the parser
*
* @param string $opt1
* @param string ...
* @param Array $attributes
*/
final public function addOption() {
$opts = func_get_args();
if (count($opts) < 2) {
throw new \InvalidArgumentException('addOption() used with unsufficient argument');
}
$attributes = array_pop($opts);
if (empty($attributes['action'])) {
$attributes['action'] = 'store';
} elseif (!in_array($attributes['action'], $this->ACTIONS)) {
throw new \InvalidArgumentException(sprintf("invalid action: '%s'", $attributes['action']));
}
if (!array_key_exists('dest', $attributes)) {
if (substr($opts[0], 0, 2) == '--') {
$attributes['dest'] = '_'.substr($opts[0], 2);
} elseif ($opts[0][0] == '-') {
$attributes['dest'] = '_'.substr($opts[0], 1);
} else {
throw new \InvalidArgumentException('Option should begin with a dash');
}
}
foreach ($opts as $opt) {
$this->_options[$opt] = $attributes;
}
}
/**
* Parse arguments and run
*/
final public function parseArgs($args = NULL) {
if (is_null($args)) {
$args = $_SERVER['argv'];
// Remove script name
array_shift($args);
}
while ($arg = array_shift($args)) {
if (array_key_exists($arg, $this->_options)) {
switch ($this->_options[$arg]['action']) {
case 'store':
$this->{$this->_options[$arg]['dest']} = array_shift($args);
continue 2;
case 'store_true':
$this->{$this->_options[$arg]['dest']} = true;
continue 2;
case 'store_false':
$this->{$this->_options[$arg]['dest']} = false;
continue 2;
case 'count':
$this->{$this->_options[$arg]['dest']}++;
continue 2;
case 'callback':
call_user_func_array($this->_options[$arg]['callback'], Array(
$this->_options[$arg],
$arg,
NULL, // value
$this,
Array(), // $args
Array(), // $kwargs
));
continue 2;
case 'help':
$this->help();
continue 2;
default:
throw new \InvalidArgumentException(sprintf("invalid action: '%s'", $this->_options[$arg]['action']));
}
}
if (strlen($arg) && ($arg[0] == '-')) {
throw new \InvalidArgumentException("Unknown option $arg");
}
$class = preg_replace('/Command$/', ucfirst($arg).'\\Command', get_class($this));
// Try to load \Pkgtools\...\$Arg\Command class
try {
if (class_exists($class)) {
$this->_subCommand = new $class($this);
return $this->_subCommand->parseArgs($args);
}
} catch (\LogicException $e) {
// spl_autoload thrown an LogicException
// "Class $class could not be loaded"
if ($e->getTrace()[0]['function'] != 'spl_autoload') {
throw $e;
}
}
// Try to use $this->run$Arg()
if (method_exists($this, 'run'.ucfirst($arg))) {
Logger::debug('Launching %s::%s().', get_class($this), 'run'.ucfirst($arg));
return call_user_func_array(Array($this, 'run'.ucfirst($arg)), $args);
}
throw new \InvalidArgumentException("Unknown sub-command $arg");
}
// Try to use $this->run()
if (method_exists($this, 'run')) {
Logger::debug('Launching %s::%s().', get_class($this), 'run');
return call_user_func(Array($this, 'run'));
}
throw new \InvalidArgumentException("Missing sub-command name");
}
/**
* Recursively get option value
*/
final public function getProperty($name) {
if (property_exists($this,$name)) {
return $this->{$name};
}
if (!is_null($this->_parentCommand)) {
return $this->_parentCommand->getProperty($name);
}
throw new \InvalidArgumentException("Unknown property: '$name'");
}
/**
* Print command help
*/
final public function help() {
throw new \LogicException('Automatic help not implemented yet'); // FIXME
}
// **********************************************************************
// Overridables methods
// **********************************************************************
/**
* Add command options
*/
public function addOptions() {
$this->addOption('--help', '-h',
Array('action' => 'help'));
}
}
|