addOption()` * you can define new options. The name of the option is used as its long form, and you * can supply an additional short form, with the `short` option. * * Calling options can be done using syntax similar to most *nix command line tools. Long options * cane either include an `=` or leave it out. * * `cake myshell command --connection default --name=something` * * Short options can be defined singally or in groups. * * `cake myshell command -cn` * * ### Positional arguments * * ### Providing Help text * * By providing help text for your positional arguments and named arguments, the ConsoleOptionParser * can generate a help display for you. You can view the help for shells by using the `--help` or `-h` switch. * */ public function __construct() { } /** * Get or set the description text for shell/task * * @param string $text The text to set, or null if you want to read * @return mixed If reading, the value of the description. If setting $this will be returned */ public function description($text = null) { if ($text !== null) { $this->_description = $text; return $this; } return $this->_description; } /** * Get or set an epilog to the parser. The epilog is added to the end of * the options and arguments listing when help is generated. * * @param string $text Text when setting or null when reading. * @return mixed If reading, the value of the epilog. If setting $this will be returned. */ public function epilog($text = null) { if ($text !== null) { $this->_epilog = $text; return $this; } return $this->_epilog; } /** * Add an option to the option parser. Options allow you to define optional or required * parameters for your console application. Options are defined by the parameters they use. * * ### Params * * - `short` - The single letter variant for this option, leave undefined for none. * - `description` - Description for this option. Used when generating help for the option. * - `default` - The default value for this option. If not defined the default will be true. * * @param string $name The long name you want to the value to be parsed out as when options are parsed. * @param array $params An array of parameters that define the behavior of the option * @return returns $this. */ public function addOption($name, $params = array()) { $defaults = array( 'name' => $name, 'short' => null, 'description' => '', 'default' => true ); $options = array_merge($defaults, $params); $this->_options[$name] = $options; if (!empty($options['short'])) { $this->_options[$options['short']] = $options; } return $this; } /** * Parse the argv array into a set of params and args. * * @param array $argv Array of args (argv) to parse * @return Array array($params, $args) */ public function parse($argv) { $params = $args = array(); $this->_tokens = $argv; while ($token = array_shift($this->_tokens)) { if (substr($token, 0, 2) == '--') { $params = $this->_parseLongOption($token, $params); } elseif (substr($token, 0, 1) == '-') { $params = $this->_parseShortOption($token, $params); } } return array($params, $args); } /** * Parse the value for a long option out of $this->_tokens * * @param string $option The option to parse. * @param array $params The params to append the parsed value into * @return array Params with $option added in. */ protected function _parseLongOption($option, $params) { $name = substr($option, 2); if (strpos($name, '=') !== false) { list($name, $value) = explode('=', $name, 2); array_unshift($this->_tokens, $value); } return $this->_parseOptionName($name, $params); } /** * Parse the value for a short option out of $this->_tokens * If the $option is a combination of multiple shortcuts like -otf * they will be shifted onto the token stack and parsed individually. * * @param string $option The option to parse. * @param array $params The params to append the parsed value into * @return array Params with $option added in. */ protected function _parseShortOption($option, $params) { $key = substr($option, 1); if (strlen($key) > 1) { $flags = str_split($key); $key = $flags[0]; for ($i = 1, $len = count($flags); $i < $len; $i++) { array_unshift($this->_tokens, '-' . $flags[$i]); } } $name = $this->_options[$key]['name']; return $this->_parseOptionName($name, $params); } /** * Parse an option by its name index. * * @param string $option The option to parse. * @param array $params The params to append the parsed value into * @return array Params with $option added in. */ protected function _parseOptionName($name, $params) { $definition = $this->_options[$name]; $nextValue = $this->_nextToken(); if (!empty($nextValue) && $nextValue{0} != '-') { $value = $nextValue; } else { $value = $definition['default']; } $params[$name] = $value; return $params; } /** * Find the next token in the argv set. * * @param string * @return next token or '' */ protected function _nextToken() { return isset($this->_tokens[0]) ? $this->_tokens[0] : ''; } }