2010-10-10 18:37:22 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ConsoleInputOption file
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.console
|
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An object to represent a single option used in the command line.
|
|
|
|
* ConsoleOptionParser creates these when you use addOption()
|
|
|
|
*
|
|
|
|
* @see ConsoleOptionParser::addOption()
|
|
|
|
* @package cake.console
|
|
|
|
*/
|
|
|
|
class ConsoleInputOption {
|
|
|
|
|
2010-10-10 18:55:15 +00:00
|
|
|
protected $_name, $_short, $_help, $_boolean, $_default, $_choices;
|
|
|
|
|
2010-10-10 18:37:22 +00:00
|
|
|
/**
|
|
|
|
* Make a new Input Option
|
|
|
|
*
|
|
|
|
* @param mixed $name The long name of the option, or an array with all the properites.
|
|
|
|
* @param string $short The short alias for this option
|
|
|
|
* @param string $help The help text for this option
|
|
|
|
* @param boolean $boolean Whether this option is a boolean option. Boolean options don't consume extra tokens
|
|
|
|
* @param string $default The default value for this option.
|
|
|
|
* @param arraty $choices Valid choices for this option.
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($name, $short = null, $help = '', $boolean = false, $default = '', $choices = array()) {
|
|
|
|
if (is_array($name) && isset($name['name'])) {
|
|
|
|
foreach ($name as $key => $value) {
|
2010-10-10 18:55:15 +00:00
|
|
|
$this->{'_' . $key} = $value;
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
|
|
|
} else {
|
2010-10-10 18:55:15 +00:00
|
|
|
$this->_name = $name;
|
|
|
|
$this->_short = $short;
|
|
|
|
$this->_help = $help;
|
|
|
|
$this->_boolean = $boolean;
|
|
|
|
$this->_default = $default;
|
|
|
|
$this->_choices = $choices;
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-10 18:41:08 +00:00
|
|
|
/**
|
|
|
|
* Get the name of the argument
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function name() {
|
2010-10-10 18:55:15 +00:00
|
|
|
return $this->_name;
|
2010-10-10 18:41:08 +00:00
|
|
|
}
|
|
|
|
|
2010-10-10 18:37:22 +00:00
|
|
|
/**
|
|
|
|
* Generate the help for this this option.
|
|
|
|
*
|
|
|
|
* @param int $width The width to make the name of the option.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function help($width = 0) {
|
|
|
|
$default = $short = '';
|
2010-10-10 18:55:15 +00:00
|
|
|
if (!empty($this->_default) && $this->_default !== true) {
|
|
|
|
$default = sprintf(__(' <comment>(default: %s)</comment>'), $this->_default);
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
2010-10-10 20:07:41 +00:00
|
|
|
if (!empty($this->_choices)) {
|
2010-10-10 20:19:34 +00:00
|
|
|
$default .= sprintf(__(' <comment>(choices: %s)</comment>'), implode('|', $this->_choices));
|
2010-10-10 20:07:41 +00:00
|
|
|
}
|
2010-10-10 18:55:15 +00:00
|
|
|
if (!empty($this->_short)) {
|
|
|
|
$short = ', -' . $this->_short;
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
2010-10-10 18:55:15 +00:00
|
|
|
$name = sprintf('--%s%s', $this->_name, $short);
|
2010-10-10 18:37:22 +00:00
|
|
|
if (strlen($name) < $width) {
|
|
|
|
$name = str_pad($name, $width, ' ');
|
|
|
|
}
|
2010-10-10 18:55:15 +00:00
|
|
|
return sprintf('%s%s%s', $name, $this->_help, $default);
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the usage value for this option
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function usage() {
|
2010-10-10 18:55:15 +00:00
|
|
|
$name = empty($this->_short) ? '--' . $this->_name : '-' . $this->_short;
|
2010-10-10 18:37:22 +00:00
|
|
|
$default = '';
|
2010-10-10 18:55:15 +00:00
|
|
|
if (!empty($this->_default) && $this->_default !== true) {
|
|
|
|
$default = ' ' . $this->_default;
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
2010-10-10 20:07:41 +00:00
|
|
|
if (!empty($this->_choices)) {
|
|
|
|
$default = ' ' . implode('|', $this->_choices);
|
|
|
|
}
|
2010-10-10 18:37:22 +00:00
|
|
|
return sprintf('[%s%s]', $name, $default);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the default value for this option
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function defaultValue() {
|
2010-10-10 18:55:15 +00:00
|
|
|
return $this->_default;
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this option is a boolean option
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isBoolean() {
|
2010-10-10 18:55:15 +00:00
|
|
|
return (bool) $this->_boolean;
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|
2010-10-10 19:04:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that a value is a valid choice for this option.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function validChoice($value) {
|
|
|
|
if (empty($this->_choices)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!in_array($value, $this->_choices)) {
|
2010-10-11 17:04:23 +00:00
|
|
|
throw new InvalidArgumentException(sprintf(
|
|
|
|
__('"%s" is not a valid value for --%s. Please use one of "%s"'),
|
|
|
|
$value, $this->_name, implode(', ', $this->_choices)
|
|
|
|
));
|
2010-10-10 19:04:16 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2010-10-10 18:37:22 +00:00
|
|
|
}
|