11
0
Fork 0
mirror of https://github.com/n3w/helpers-cli-input.git synced 2025-12-21 21:53:23 +00:00

Compare commits

..

No commits in common. "master" and "1.0.0" have entirely different histories.

24 changed files with 357 additions and 732 deletions

View file

@ -3,92 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [1.2.2][]
#### Changed
- Minor improvement to logic in `AbstractInputHandler::validateInput()`. Ensures that an input with a validator, but with a default value and no user suplied input, will have the default value used.
## [1.2.1][]
#### Changed
- Updated `InputHandlerFactory` and `InputTypeFactory` to work with changes in `pointybeard/helpers-foundation-factory` 1.0.2
## [1.2.0][]
#### Added
- Added `InputTypeFilterIterator` class
- Added `UnrecognisedInputException` exception
#### Changed
- `InputCollection` now implements `Iterator` and `Countable` (implementing required methods)
- Removed use of `$type` in `InputCollection`
- Added `InputCollection::getItemsExcludeByType()`
- `InputCollection::getItemsByType()` and `InputCollection::getItems()` now returns an `Iterator`
- Renamed `InputCollection::append()` to `add()` and added `$position` flag
- Added `POSITION_APPEND` and `POSITION_PREPEND` flags to `InputCollection`
- Made `getCollection()`, `getInput()`, `find()`, and `validate()` in `AbstractInputHandler` final
- Removed all categorisation of items by type in `AbstractInputHandler::$input`
- Abstracted most of `AbstractInputHandler::validate()` into it's own protected method called `validateInput()`
- Removed `$skipValidation` argument from `AbstractInputHandler::bind()` and relaced with `$flags`
- Added `FLAG_BIND_SKIP_VALIDATION`, `FLAG_VALIDATION_SKIP_REQUIRED`, `FLAG_VALIDATION_SKIP_CUSTOM`, and `FLAG_VALIDATION_SKIP_UNRECOGNISED` flags to `AbstractInputHandler`
- Added check in `AbstractInputHandler::validate()` to look for unrecognised options and arguments
- Removed `InputHandlerFactory::FLAG_SKIP_VALIDATION` from `InputHandlerFactory`
- Passing flags in call from `InputHandlerFactory::build()` to `AbstractInputHandler::bind()`
- Updated `InputHandlerInterface::bind()` and `validate()` methods to support flags
## [1.1.4][]
#### Fixed
- Fixed misnamed variable in `InputCollection::merge()`
## [1.1.3][]
#### Fixed
- Fixed logic bug that prevented `$index` and `$type` from being set in `InputCollection::append()`. This means replaceing items in an `InputCollection` now works as expected
## [1.1.2][]
#### Added
- Added `InputValidationFailedException` exception
- Added `InputTypeInterface::getDisplayName()` method to standardise how the name of an `InputTypeInterface` class wants to display it's name
#### Changed
- Updated validation logic for inputs that have a validator, no default, and are not set
- Throwing `InputValidationFailedException` exception when validation fails
- Updated `RequiredInputMissingException` and `RequiredInputMissingValueException` exceptions to use `InputTypeInterface::getDisplayName()` when producing their message
- Removed unused `RequiredArgumentMissingException` exception
## [1.1.1][]
#### Changed
- `AbstractInputHandler::find()` returns NULL if it cannot find any input with the supplied name. It is easier to test for NULL than it is to catch an exception
## [1.1.0][]
#### Added
- Expanded input types to include `Flag`, `IncrementingFlag`, and `LongOption`
- Added `InputTypeFactory` to help with loading input type classes
#### Changed
- Updated to work with more than just `Argument` and `Option` input types. Makes use of `InputTypeFactory` to allow addition of new types as needed
## [1.0.2][]
#### Changed
- Updated example to reflect changes to `manpage()` function in `pointybeard/helpers-functions-cli` package
- Refactoring and improvemnts to `Argument::__toString()` and `Option::__toString()`
## [1.0.2][]
#### Fixed
- Fixed `InputCollection::getArgumentsByIndex()` so it returns NULL if the index does not exist instead of throwing an E_NOTICE message
## [1.0.1][]
#### Changed
- Updated example to use `Cli\manpage()` provided by the `pointybeard/helpers-functions-cli` package
**View all [Unreleased][] changes here**
## 1.0.0
#### Added
- Initial release
[1.2.2]: https://github.com/pointybeard/helpers-functions-cli/compare/1.2.1...1.2.2
[1.2.1]: https://github.com/pointybeard/helpers-functions-cli/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/pointybeard/helpers-functions-cli/compare/1.1.4...1.2.0
[1.1.4]: https://github.com/pointybeard/helpers-functions-cli/compare/1.1.3...1.1.4
[1.1.3]: https://github.com/pointybeard/helpers-functions-cli/compare/1.1.2...1.1.3
[1.1.2]: https://github.com/pointybeard/helpers-functions-cli/compare/1.1.1...1.1.2
[1.1.1]: https://github.com/pointybeard/helpers-functions-cli/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.3...1.1.0
[1.0.3]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.2...1.0.3
[1.0.2]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.0...1.0.1
[Unreleased]: https://github.com/pointybeard/helpers-cli-input/compare/1.0.0...integration

View file

@ -1,7 +1,7 @@
# PHP Helpers: Command-line Input and Input Type Handlers
- Version: v1.2.2
- Date: Aug 06 2019
- Version: v1.0.0
- Date: May 20 2019
- [Release notes](https://github.com/pointybeard/helpers-cli-input/blob/master/CHANGELOG.md)
- [GitHub repository](https://github.com/pointybeard/helpers-cli-input)
@ -9,7 +9,7 @@ Collection of classes for handling argv (and other) input when calling command-l
## Installation
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/helpers-cli-input` or add `"pointybeard/helpers-cli-input": "~1.2.0"` to your `composer.json` file.
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/helpers-cli-input` or add `"pointybeard/helpers-cli-input": "~1.0"` to your `composer.json` file.
And run composer to update your dependencies:

View file

@ -1,5 +1,6 @@
{
"name": "pointybeard/helpers-cli-input",
"version": "1.0.0",
"description": "Collection of classes for handling argv (and other) input when calling command-line scripts. Helps with parsing, collecting and validating arguments, options, and flags.",
"homepage": "https://github.com/pointybeard/helpers-cli-input",
"license": "MIT",
@ -16,6 +17,11 @@
"pointybeard/helpers-foundation-factory": "~1.0",
"pointybeard/helpers-functions-flags": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"pointybeard/helpers-functions-strings": "~1.0",
"pointybeard/helpers-cli-colour": "~1.0"
},
"support": {
"issues": "https://github.com/pointybeard/helpers-cli-input/issues",
"wiki": "https://github.com/pointybeard/helpers-cli-input/wiki"

View file

@ -4,72 +4,146 @@ declare(strict_types=1);
include __DIR__.'/../vendor/autoload.php';
use pointybeard\Helpers\Cli\Input;
use pointybeard\Helpers\Functions\Cli;
use pointybeard\Helpers\Functions\Flags;
use pointybeard\Helpers\Functions\Strings;
use pointybeard\Helpers\Cli\Colour\Colour;
// Define what we are expecting to get from the command line
$collection = (new Input\InputCollection())
->add(
Input\InputTypeFactory::build('Argument')
->name('action')
->flags(Input\AbstractInputType::FLAG_REQUIRED)
->description('The name of the action to perform')
)
->add(
Input\InputTypeFactory::build('IncrementingFlag')
->name('v')
->flags(Input\AbstractInputType::FLAG_OPTIONAL | Input\AbstractInputType::FLAG_TYPE_INCREMENTING)
->description('verbosity level. -v (errors only), -vv (warnings and errors), -vvv (everything).')
->validator(new Input\Validator(
function (Input\AbstractInputType $input, Input\AbstractInputHandler $context) {
// Make sure verbosity level never goes above 3
return min(3, (int) $context->find('v'));
}
))
)
->add(
Input\InputTypeFactory::build('LongOption')
->name('data')
->short('d')
->flags(Input\AbstractInputType::FLAG_OPTIONAL | Input\AbstractInputType::FLAG_VALUE_REQUIRED)
->description('Path to the input JSON data')
->validator(new Input\Validator(
function (Input\AbstractInputType $input, Input\AbstractInputHandler $context) {
// Make sure -d (--data) is a valid file that can be read
$file = $context->find('data');
->append(new Input\Types\Argument(
'action',
Input\AbstractInputType::FLAG_REQUIRED,
'The name of the action to perform'
))
->append(new Input\Types\Option(
'v',
null,
Input\AbstractInputType::FLAG_OPTIONAL | Input\AbstractInputType::FLAG_TYPE_INCREMENTING,
'verbosity level. -v (errors only), -vv (warnings and errors), -vvv (everything).',
null,
0
))
->append(new Input\Types\Option(
'd',
'data',
Input\AbstractInputType::FLAG_OPTIONAL | Input\AbstractInputType::FLAG_VALUE_REQUIRED,
'Path to the input JSON data',
function (Input\AbstractInputType $input, Input\AbstractInputHandler $context) {
// Make sure -d (--data) is a valid file that can be read
$file = $context->getOption('d');
if (!is_readable($file)) {
throw new \Exception('The file specified via option --data does not exist or is not readable.');
}
if (!is_readable($file)) {
throw new \Exception('The file specified via option -d (--data) does not exist or is not readable.');
}
// Now make sure it is valid JSON
try {
$json = json_decode(file_get_contents($file), false, 512, JSON_THROW_ON_ERROR);
} catch (JsonException $ex) {
throw new \Exception(sprintf('The file specified via option --data does not appear to be a valid JSON ddocument. Returned: %s: %s', $ex->getCode(), $ex->getMessage()));
}
// Now make sure it is valid JSON
try {
$json = json_decode(file_get_contents($file), false, 512, JSON_THROW_ON_ERROR);
} catch (JsonException $ex) {
throw new \Exception(sprintf('The file specified via option -d (--data) does not appear to be a valid JSON ddocument. Returned: %s: %s', $ex->getCode(), $ex->getMessage()));
}
return $json;
}
))
)
return $json;
}
))
;
// Get the supplied input. Passing the collection will make the handler bind values
// and validate the input according to our collection
try {
$argv = Input\InputHandlerFactory::build('Argv', $collection);
} catch (\Exception $ex) {
echo 'Error when attempting to bind values to collection. Returned: '.$ex->getMessage().PHP_EOL;
exit;
$argv = Input\InputHandlerFactory::build('Argv', $collection);
// Example of using an input collection to generate a usage string
function usage(Input\InputCollection $collection): string {
$arguments = [];
foreach ($collection->getArguments() as $a) {
$arguments[] = strtoupper(
// Wrap with square brackets if it's not required
Flags\is_flag_set(Input\AbstractInputType::FLAG_OPTIONAL, $a->flags()) ||
!Flags\is_flag_set(Input\AbstractInputType::FLAG_REQUIRED, $a->flags())
? "[{$a->name()}]"
: $a->name()
);
}
$arguments = trim(implode($arguments, ' '));
return sprintf(
"Usage: php -f example.php -- [OPTIONS]... %s%s",
$arguments,
strlen($arguments) > 0 ? '...' : ''
);
}
var_dump($argv->find('action'));
// Example of using an input collection to generate a manual page
function manpage(Input\InputCollection $collection) : string {
$arguments = $options = [];
foreach ($collection->getArguments() as $a) {
$arguments[] = (string) $a;
}
foreach ($collection->getOptions() as $o) {
$options[] = (string) $o;
}
$arguments = implode($arguments, PHP_EOL.' ');
$options = implode($options, PHP_EOL.' ');
return sprintf('%s 1.0.0, %s
%s
Mandatory values for long options are mandatory for short options too.
Arguments:
%s
Options:
%s
Examples:
php -f example/example.php -- -vvv -d example/example.json import
',
basename(__FILE__),
Strings\utf8_wordwrap(
"An example script for the PHP Helpers: Command-line Input and Input Type Handlers composer library (pointybeard/helpers-cli-input)."
),
usage($collection),
$arguments,
$options
);
}
// Display the manual in green text
echo Colour::colourise(manpage($collection), Colour::FG_GREEN) . PHP_EOL . PHP_EOL;
/*
example.php 1.0.0, An example script for the PHP Helpers: Command-line Input and Input Type Handlers
composer library (pointybeard/helpers-cli-input).
Usage: php -f example.php -- [OPTIONS]... ACTION...
Mandatory values for long options are mandatory for short options too.
Arguments:
ACTION The name of the action to perform
Options:
-v verbosity level. -v (errors only), -vv (warnings
and errors), -vvv (everything).
-d, --data=VALUE Path to the input JSON data
Examples:
php -f example/example.php -- -vvv -d example/example.json import
*/
var_dump($argv->getArgument('action'));
// string(6) "import"
var_dump($argv->find('v'));
var_dump($argv->getOption('v'));
//int(3)
var_dump($argv->find('data'));
var_dump($argv->getOption('s'));
//bool(true)
var_dump($argv->getOption('d'));
// class stdClass#11 (1) {
// public $fruit =>
// array(2) {
@ -79,6 +153,3 @@ var_dump($argv->find('data'));
// string(6) "banana"
// }
// }
var_dump($argv->find('nope-doesnt-exist'));
// NULL

View file

@ -5,49 +5,26 @@ declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input;
use pointybeard\Helpers\Functions\Flags;
use pointybeard\Helpers\Functions\Debug;
abstract class AbstractInputHandler implements Interfaces\InputHandlerInterface
{
/**
* Will skip all validation when bind() is executed. Ignores all other flags
* @var integer
*/
const FLAG_BIND_SKIP_VALIDATION = 0x0001;
/**
* Will skip the required input and required values check
* @var integer
*/
const FLAG_VALIDATION_SKIP_REQUIRED = 0x0002;
/**
* Will skip running custom validators
* @var integer
*/
const FLAG_VALIDATION_SKIP_CUSTOM = 0x0004;
/**
* Will skip checking if an input is in the collection
* @var integer
*/
const FLAG_VALIDATION_SKIP_UNRECOGNISED = 0x0008;
protected $input = [];
protected $options = [];
protected $arguments = [];
protected $collection = null;
abstract protected function parse(): bool;
final public function bind(InputCollection $inputCollection, ?int $flags = null): bool
public function bind(InputCollection $inputCollection, bool $skipValidation = false): bool
{
// Do the binding stuff here
$this->input = [];
$this->options = [];
$this->arguments = [];
$this->collection = $inputCollection;
$this->parse();
if (!Flags\is_flag_set($flags, self::FLAG_BIND_SKIP_VALIDATION)) {
$this->validate($flags);
if (true !== $skipValidation) {
$this->validate();
}
return true;
@ -64,86 +41,76 @@ abstract class AbstractInputHandler implements Interfaces\InputHandlerInterface
}
}
protected function validateInput(AbstractInputType $input, ?int $flags) {
if(!Flags\is_flag_set($flags, self::FLAG_VALIDATION_SKIP_REQUIRED)) {
self::checkRequiredAndRequiredValue($input, $this->input);
}
// There is a default value and input has not been set. Assign the
// default value to the result.
if (
null !== $input->default() &&
null === $this->find($input->name())
) {
$result = $input->default();
// Input has been set AND it has a validator. Run the validator over the
// input. Note, this will be skipped if FLAG_VALIDATION_SKIP_CUSTOM is
// set
} elseif (null !== $this->find($input->name()) && null !== $input->validator() && !Flags\is_flag_set($flags, self::FLAG_VALIDATION_SKIP_CUSTOM)) {
$validator = $input->validator();
if ($validator instanceof \Closure) {
$validator = new Validator($validator);
} elseif (!($validator instanceof Validator)) {
throw new \Exception("Validator for '{$input->name()}' must be NULL or an instance of either Closure or Input\Validator.");
}
try {
$result = $validator->validate($input, $this);
} catch (\Exception $ex) {
throw new Exceptions\InputValidationFailedException($input, 0, $ex);
}
// No default, but may or may not have been set so assign whatever value
// it might have to the result
} else {
$result = $this->find($input->name());
}
return $result;
}
protected function isInputRecognised(string $name): bool {
return null === $this->collection->find($name) ? false : true;
}
final public function validate(?int $flags = null): void
public function validate(): void
{
if(!Flags\is_flag_set($flags, self::FLAG_VALIDATION_SKIP_UNRECOGNISED)) {
foreach($this->input as $name => $value) {
if(false == static::isInputRecognised((string)$name)) {
throw new Exceptions\UnrecognisedInputException("'{$name}' is not recognised");
// Do basic missing option and value checking here
foreach ($this->collection->getOptions() as $input) {
self::checkRequiredAndRequiredValue($input, $this->options);
}
// Option validation.
foreach ($this->collection->getoptions() as $o) {
$result = false;
if (!array_key_exists($o->name(), $this->options)) {
$result = $o->default();
} else {
if (null === $o->validator()) {
$result = $o->default();
continue;
} elseif ($o->validator() instanceof \Closure) {
$validator = new Validator($o->validator());
} elseif ($o->validator() instanceof Validator) {
$validator = $o->validator();
} else {
throw new \Exception("Validator for option {$o->name()} must be NULL or an instance of either Closure or Input\Validator.");
}
$result = $validator->validate($o, $this);
}
$this->options[$o->name()] = $result;
}
// Argument validation.
foreach ($this->collection->getArguments() as $a) {
self::checkRequiredAndRequiredValue($a, $this->arguments);
if (isset($this->arguments[$a->name()]) && null !== $a->validator()) {
if ($a->validator() instanceof \Closure) {
$validator = new Validator($a->validator());
} elseif ($a->validator() instanceof Validator) {
$validator = $a->validator();
} else {
throw new \Exception("Validator for argument {$a->name()} must be NULL or an instance of either Closure or Input\Validator.");
}
$validator->validate($a, $this);
}
}
foreach ($this->collection->getItems() as $input) {
$this->input[$input->name()] = static::validateInput($input, $flags);
}
}
final public function find(string $name)
public function getArgument(string $name): ?string
{
if (isset($this->input[$name])) {
return $this->input[$name];
}
// Check the collection to see if anything responds to $name
foreach ($this->collection->getItems() as $item) {
if ($item->respondsTo($name) && isset($this->input[$item->name()])) {
return $this->input[$item->name()];
}
}
return null;
return $this->arguments[$name] ?? null;
}
final public function getInput(): array
public function getOption(string $name)
{
return $this->input;
return $this->options[$name] ?? null;
}
final public function getCollection(): ?InputCollection
public function getArguments(): array
{
return $this->arguments;
}
public function getOptions(): array
{
return $this->options;
}
public function getCollection(): ?InputCollection
{
return $this->collection;
}

View file

@ -12,40 +12,22 @@ abstract class AbstractInputType implements Interfaces\InputTypeInterface
protected $flags;
protected $description;
protected $validator;
protected $default;
protected $value;
public function __construct(string $name = null, int $flags = null, string $description = null, object $validator = null, $default = null)
public function __construct($name, int $flags = null, string $description = null, object $validator = null)
{
$this->name = $name;
$this->flags = $flags;
$this->description = $description;
$this->validator = $validator;
$this->default = $default;
}
public function __call($name, array $args = [])
{
if (empty($args)) {
return $this->$name;
}
$this->$name = $args[0];
return $this;
}
public function __get($name)
{
return $this->$name;
}
public function respondsTo(string $name): bool
{
return $name == $this->name;
}
public function getType(): string
{
return strtolower((new \ReflectionClass(static::class))->getShortName());

View file

@ -4,10 +4,10 @@ declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Exceptions;
class InputNotFoundException extends \Exception
class InputHandlerNotFoundException extends \Exception
{
public function __construct(string $name, $code = 0, \Exception $previous = null)
public function __construct(string $handler, string $command, $code = 0, \Exception $previous = null)
{
return parent::__construct(sprintf('Input %s could not be found.', $name), $code, $previous);
return parent::__construct(sprintf('The input handler %s could not be located.', $handler), $code, $previous);
}
}

View file

@ -1,15 +0,0 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Exceptions;
use pointybeard\Helpers\Cli\Input\AbstractInputType;
class InputValidationFailedException extends \Exception
{
public function __construct(AbstractInputType $input, $code = 0, \Exception $previous = null)
{
return parent::__construct(sprintf('Validation failed for %s. Returned: %s', $input->getDisplayName(), $previous->getMessage()), $code, $previous);
}
}

View file

@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Exceptions;
class RequiredArgumentMissingException extends \Exception
{
private $argument;
public function __construct(string $argument, $code = 0, \Exception $previous = null)
{
$this->argument = strtoupper($argument);
return parent::__construct("missing argument {$this->argument}.", $code, $previous);
}
public function getArgumentName(): string
{
return $this->argument;
}
}

View file

@ -15,8 +15,10 @@ class RequiredInputMissingException extends \Exception
$this->input = $input;
return parent::__construct(sprintf(
'missing %s',
$input->getDisplayName()
'missing %s %s%s',
$input->getType(),
'option' == $input->getType() ? '-' : '',
'option' == $input->getType() ? $input->name() : strtoupper($input->name())
), $code, $previous);
}

View file

@ -15,8 +15,10 @@ class RequiredInputMissingValueException extends \Exception
$this->input = $input;
return parent::__construct(sprintf(
'a value is required for %s',
$input->getDisplayName()
'%s %s%s is missing a value',
$input->getType(),
'option' == $input->getType() ? '-' : '',
'option' == $input->getType() ? $input->name() : strtoupper($input->name())
), $code, $previous);
}

View file

@ -1,9 +0,0 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Exceptions;
class UnrecognisedInputException extends \Exception
{
}

View file

@ -3,10 +3,9 @@
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Handlers;
use pointybeard\Helpers\Cli\Input\Exceptions;
use pointybeard\Helpers\Cli\Input;
use pointybeard\Helpers\Functions\Flags;
use pointybeard\Helpers\Functions\Debug;
class Argv extends Input\AbstractInputHandler
{
@ -62,35 +61,12 @@ class Argv extends Input\AbstractInputHandler
return $result;
}
protected function findOptionInCollection(string $name): ?Input\AbstractInputType
{
$option = $this->collection->find($name);
if(!($option instanceof Input\AbstractInputType)) {
return null;
}
return $option;
}
protected function findArgumentInCollection(int $index, string $token): ?Input\AbstractInputType
{
$arguments = $this->collection->getItemsByType('Argument');
$position = 0;
foreach($arguments as $a) {
if($position == $index) {
return $a;
}
$position++;
}
return null;
}
protected function parse(): bool
{
// So some parsing here.
$it = new \ArrayIterator($this->argv);
$position = 0;
$argumentCount = 0;
while ($it->valid()) {
$token = $it->current();
@ -106,9 +82,9 @@ class Argv extends Input\AbstractInputHandler
$value = true;
}
$o = $this->findOptionInCollection($name);
$o = $this->collection->findOption($name);
$this->input[
$this->options[
$o instanceof Input\AbstractInputType
? $o->name()
: $name
@ -122,14 +98,14 @@ class Argv extends Input\AbstractInputHandler
// Determine if we're expecting a value.
// It also might have a long option equivalent, so we need
// to look for that too.
$o = $this->findOptionInCollection($name);
$o = $this->collection->findOption($name);
// This could also be an incrementing value
// and needs to be added up. E.g. e.g. -vvv or -v -v -v
// would be -v => 3
if ($o instanceof Input\AbstractInputType && Flags\is_flag_set($o->flags(), Input\AbstractInputType::FLAG_TYPE_INCREMENTING)) {
$value = isset($this->input[$name])
? $this->input[$name] + 1
$value = isset($this->options[$name])
? $this->options[$name] + 1
: 1
;
@ -152,7 +128,7 @@ class Argv extends Input\AbstractInputHandler
}
}
$this->input[
$this->options[
$o instanceof Input\AbstractInputType
? $o->name()
: $name
@ -165,14 +141,12 @@ class Argv extends Input\AbstractInputHandler
// Arguments are positional, so we need to keep a track
// of the index and look at the collection for an argument
// with the same index
$a = $this->findArgumentInCollection($argumentCount, $token);
$this->input[
$a = $this->collection->getArgumentsByIndex(count($this->arguments));
$this->arguments[
$a instanceof Input\AbstractInputType
? $a->name()
: $argumentCount
: count($this->arguments)
] = $token;
++$argumentCount;
break;
}
$it->next();

View file

@ -4,150 +4,116 @@ declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input;
class InputCollection implements \Iterator, \Countable
class InputCollection
{
private $items = [];
private $position = 0;
public const POSITION_APPEND = 0x0001;
public const POSITION_PREPEND = 0x0002;
private $arguments = [];
private $options = [];
// Prevents the class from being instanciated
public function __construct()
{
$this->position = 0;
}
public function current(): mixed
public function append(Interfaces\InputTypeInterface $input, bool $replace = false): self
{
return $this->items[$this->position];
}
public function key(): scalar
{
return $this->position;
}
public function next(): void
{
++$this->position;
}
public function rewind(): void
{
$this->position = 0;
}
public function valid(): bool
{
return isset($this->items[$this->position]);
}
public function count() : int {
return count($this->items);
}
public function exists(string $name, &$index=null): bool {
return (null !== $this->find($name, null, null, $index));
}
public function remove(string $name): self {
if(!$this->exists($name, $index)) {
throw new \Exception("Input '{$name}' does not exist in this collection");
}
unset($this->items[$index]);
return $this;
}
public function add(Interfaces\InputTypeInterface $input, bool $replace = false, int $position=self::POSITION_APPEND): self
{
if($this->exists($input->name(), $index) && !$replace) {
throw new \Exception(
(new \ReflectionClass($input))->getShortName()." '{$input->name()}' already exists in this collection"
);
}
if (true == $replace && null !== $index) {
$this->items[$index] = $input;
} else {
if($position == self::POSITION_PREPEND) {
array_unshift($this->items, $input);
} else {
array_push($this->items, $input);
}
}
$class = new \ReflectionClass($input);
$this->{'append'.$class->getShortName()}($input, $replace);
return $this;
}
public function find(string $name, array $restrictToType = null, array $excludeType = null, &$index = null): ?AbstractInputType
public function findArgument(string $name, ?int &$index = null): ?AbstractInputType
{
foreach ($this->items as $index => $input) {
// Check if we're restricting to or excluding specific types
if (null !== $restrictToType && !in_array($input->getType(), $restrictToType)) {
continue;
} elseif (null !== $excludeType && in_array($input->getType(), $excludeType)) {
continue;
foreach ($this->arguments as $index => $a) {
if ($a->name() == $name) {
return $a;
}
if ($input->respondsTo($name)) {
return $input;
}
}
$index = null;
return null;
}
public function getTypes(): array
public function findOption(string $name, ?int &$index = null): ?AbstractInputType
{
$types = [];
foreach($this->items as $input) {
$types[] = $input->getType();
$type = 1 == strlen($name) ? 'name' : 'long';
foreach ($this->options as $index => $o) {
if ($o->$type() == $name) {
return $o;
}
}
return array_unique($types);
$index = null;
return null;
}
public function getItems(): \Iterator
private function appendArgument(Interfaces\InputTypeInterface $argument, bool $replace = false): void
{
return (new \ArrayObject($this->items))->getIterator();
if (null !== $this->findArgument($argument->name(), $index) && !$replace) {
throw new \Exception("Argument {$argument->name()} already exists in collection");
}
if (true == $replace && null !== $index) {
$this->arguments[$index] = $argument;
} else {
$this->arguments[] = $argument;
}
}
public function getItemsByType(string $type): \Iterator
private function appendOption(Interfaces\InputTypeInterface $option, bool $replace = false): void
{
return new InputTypeFilterIterator(
$this->getItems(),
[$type],
InputTypeFilterIterator::FILTER_INCLUDE
);
if (null !== $this->findOption($option->name(), $index) && !$replace) {
throw new \Exception("Option -{$option->name()} already exists in collection");
}
if (true == $replace && null !== $index) {
$this->options[$index] = $option;
} else {
$this->options[] = $option;
}
}
public function getItemsExcludeByType(string $type): \Iterator
public function getArgumentsByIndex(int $index): ?AbstractInputType
{
return new InputTypeFilterIterator(
$this->getItems(),
[$type],
InputTypeFilterIterator::FILTER_EXCLUDE
);
return $this->arguments[$index];
}
public function getItemByIndex(int $index): ?AbstractInputType
public function getArguments(): array
{
return $this->items[$index] ?? null;
return $this->arguments;
}
public function getOptions(): array
{
return $this->options;
}
public static function merge(self ...$collections): self
{
$arguments = [];
$options = [];
$iterator = new \AppendIterator;
foreach ($collections as $c) {
$iterator->append($c->getItems());
$arguments = array_merge($arguments, $c->getArguments());
$options = array_merge($options, $c->getOptions());
}
$mergedCollection = new self();
foreach ($iterator as $input) {
$mergedCollection->add($input, true);
$it = new \AppendIterator();
$it->append(new \ArrayIterator($arguments));
$it->append(new \ArrayIterator($options));
foreach ($it as $input) {
try {
$mergedCollection->append($input, true);
} catch (\Exception $ex) {
// Already exists, so skip it.
}
}
return $mergedCollection;
}
}

View file

@ -9,37 +9,32 @@ use pointybeard\Helpers\Foundation\Factory;
final class InputHandlerFactory extends Factory\AbstractFactory
{
public function getTemplateNamespace(): string
const FLAG_SKIP_VALIDATION = 0x0001;
public static function getTemplateNamespace(): string
{
return __NAMESPACE__.'\\Handlers\\%s';
}
public function getExpectedClassType(): ?string
public static function getExpectedClassType(): ?string
{
return __NAMESPACE__.'\\Interfaces\\InputHandlerInterface';
}
public static function build(string $name, ...$arguments): object
public static function build(string $name, InputCollection $collection = null, int $flags = null): Interfaces\InputHandlerInterface
{
// Since passing flags is optional, we can use array_pad
// to ensure there are always at least 2 elements in $arguments
[$collection, $flags] = array_pad($arguments, 2, null);
$factory = new self;
try {
$handler = $factory->instanciate(
$factory->generateTargetClassName($name)
$handler = self::instanciate(
self::generateTargetClassName($name)
);
} catch (\Exception $ex) {
throw new Exceptions\UnableToLoadInputHandlerException($name, 0, $ex);
}
if (null !== $collection) {
if ($collection instanceof InputCollection) {
$handler->bind(
$collection,
$flags
Flags\is_flag_set($flags, self::FLAG_SKIP_VALIDATION)
);
}

View file

@ -1,20 +0,0 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input;
use pointybeard\Helpers\Foundation\Factory;
final class InputTypeFactory extends Factory\AbstractFactory
{
public function getTemplateNamespace(): string
{
return __NAMESPACE__.'\\Types\\%s';
}
public function getExpectedClassType(): ?string
{
return __NAMESPACE__.'\\Interfaces\\InputTypeInterface';
}
}

View file

@ -1,39 +0,0 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input;
class InputTypeFilterIterator extends \FilterIterator {
private $types;
private $mode;
public const FILTER_INCLUDE = 0x0001;
public const FILTER_EXCLUDE = 0x0002;
public function __construct(\Iterator $iterator, array $types=[], int $mode=self::FILTER_INCLUDE)
{
parent::__construct($iterator);
$this->types = array_map('strtolower', $types);
$this->mode = $mode;
}
public function accept()
{
$input = $this->getInnerIterator()->current();
switch($this->mode) {
case self::FILTER_EXCLUDE:
return !in_array($input->getType(), $this->types);
break;
case self::FILTER_INCLUDE:
default:
return in_array($input->getType(), $this->types);
break;
}
}
}

View file

@ -8,13 +8,19 @@ use pointybeard\Helpers\Cli\Input;
interface InputHandlerInterface
{
public function bind(Input\InputCollection $inputCollection, ?int $flags = null): bool;
public function bind(Input\InputCollection $inputCollection, bool $skipValidation = false): bool;
public function validate(?int $flags = null): void;
public function validate(): void;
public function find(string $name);
public function getArgument(string $name): ?string;
public function getInput(): array;
// note that the return value of getOption() isn't always going to be
// a string like getArgument()
public function getOption(string $name);
public function getArguments(): array;
public function getOptions(): array;
public function getCollection(): ?Input\InputCollection;
}

View file

@ -16,10 +16,4 @@ interface InputTypeInterface
const FLAG_TYPE_INCREMENTING = 0x0400;
public function getType(): string;
public function respondsTo(string $name): bool;
public function __toString(): string;
public function getDisplayName(): string;
}

View file

@ -6,72 +6,20 @@ namespace pointybeard\Helpers\Cli\Input\Types;
use pointybeard\Helpers\Cli\Input;
use pointybeard\Helpers\Functions\Strings;
use pointybeard\Helpers\Functions\Cli;
class Argument extends Input\AbstractInputType
{
public function __construct(string $name = null, int $flags = null, string $description = null, object $validator = null, $default = null)
public function __toString()
{
if (null === $validator) {
$validator = function (Input\AbstractInputType $input, Input\AbstractInputHandler $context) {
// This dummy validator is necessary otherwise the argument
// value is ALWAYS set to default (most often NULL) regardless
// of if the argument was set or not
return $context->find($input->name());
};
}
$name = strtoupper($this->name());
parent::__construct($name, $flags, $description, $validator, $default);
}
$first = str_pad(sprintf('%s ', $name), 20, ' ');
public function getDisplayName(): string
{
return strtoupper($this->name());
}
public function __toString(): string
{
// MAGIC VALUES!!! OH MY.....
$padCharacter = ' ';
$paddingBufferSize = 0.15; // 15%
$argumentNamePaddedWidth = 20;
$argumentNameMinimumPaddingWidth = 4;
$minimumWindowWidth = 80;
// Get the window dimensions but restrict width to minimum
// of $minimumWindowWidth
$window = Cli\get_window_size();
$window['cols'] = max($minimumWindowWidth, $window['cols']);
// This shrinks the total line length (derived by the window width) by
// $paddingBufferSize
$paddingBuffer = (int) ceil($window['cols'] * $paddingBufferSize);
// Create a string of $padCharacter which is prepended to each secondary
// line
$secondaryLineLeadPadding = str_pad(
'',
$argumentNamePaddedWidth,
$padCharacter,
STR_PAD_LEFT
);
$first = Strings\mb_str_pad(
$this->getDisplayName().str_repeat($padCharacter, $argumentNameMinimumPaddingWidth),
$argumentNamePaddedWidth,
$padCharacter
);
$second = Strings\utf8_wordwrap_array(
$this->description(),
$window['cols'] - $argumentNamePaddedWidth - $paddingBuffer
);
// Skip the first item (notice $ii starts at value of '1')
$second = Strings\utf8_wordwrap_array($this->description(), 40);
for ($ii = 1; $ii < count($second); ++$ii) {
$second[$ii] = $secondaryLineLeadPadding.$second[$ii];
$second[$ii] = str_pad('', 22, ' ', \STR_PAD_LEFT).$second[$ii];
}
return $first.implode(PHP_EOL, $second);
return $first.implode($second, PHP_EOL);
}
}

View file

@ -1,18 +0,0 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Types;
use pointybeard\Helpers\Functions\Flags;
class Flag extends Option
{
public function __construct(string $name = null, int $flags = null, string $description = null, object $validator = null, $default = false)
{
if (Flags\is_flag_set($flags, self::FLAG_VALUE_REQUIRED) || Flags\is_flag_set($flags, self::FLAG_VALUE_OPTIONAL)) {
throw new \Exception('The flags FLAG_VALUE_REQUIRED and FLAG_VALUE_OPTIONAL cannot be used on an input of type Flag');
}
parent::__construct($name, null, $flags, $description, $validator, $default);
}
}

View file

@ -1,18 +0,0 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Types;
use pointybeard\Helpers\Functions\Flags;
class IncrementingFlag extends Flag
{
public function __construct(string $name = null, int $flags = null, string $description = null, object $validator = null, $default = 0)
{
if (Flags\is_flag_set($flags, self::FLAG_TYPE_INCREMENTING)) {
$flags = $flags | self::FLAG_TYPE_INCREMENTING;
}
parent::__construct($name, null, $flags, $description, $validator, $default);
}
}

View file

@ -1,89 +0,0 @@
<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Types;
use pointybeard\Helpers\Functions\Flags;
use pointybeard\Helpers\Functions\Strings;
use pointybeard\Helpers\Functions\Cli;
use pointybeard\Helpers\Cli\Input;
class LongOption extends Input\AbstractInputType
{
protected $short;
public function __construct(string $name = null, string $short = null, int $flags = null, string $description = null, object $validator = null, $default = false)
{
$this->short = $short;
parent::__construct($name, $flags, $description, $validator, $default);
}
public function respondsTo(string $name): bool
{
return $name == $this->name || $name == $this->short;
}
public function getDisplayName(): string
{
$short =
null !== $this->short()
? '-'.$this->short().', '
: null
;
return sprintf('%s--%s', $short, $this->name());
}
public function __toString(): string
{
// MAGIC VALUES!!! OH MY.....
$padCharacter = ' ';
$paddingBufferSize = 0.15; // 15%
$optionNamePaddedWidth = 30;
$minimumWindowWidth = 80;
$secondaryLineIndentlength = 2;
// Get the window dimensions but restrict width to minimum
// of $minimumWindowWidth
$window = Cli\get_window_size();
$window['cols'] = max($minimumWindowWidth, $window['cols']);
// This shrinks the total line length (derived by the window width) by
// $paddingBufferSize
$paddingBuffer = (int) ceil($window['cols'] * $paddingBufferSize);
// Create a string of $padCharacter which is prepended to each secondary
// line
$secondaryLineLeadPadding = str_pad(
'',
$optionNamePaddedWidth,
$padCharacter,
STR_PAD_LEFT
);
$long = $this->getDisplayName();
if (Flags\is_flag_set($this->flags(), self::FLAG_VALUE_REQUIRED)) {
$long .= '=VALUE';
} elseif (Flags\is_flag_set($this->flags(), self::FLAG_VALUE_OPTIONAL)) {
$long .= '[=VALUE]';
}
$first = Strings\mb_str_pad(
$long, // -O, --LONG,
$optionNamePaddedWidth,
$padCharacter
);
$second = Strings\utf8_wordwrap_array(
$this->description(),
$window['cols'] - $optionNamePaddedWidth - $paddingBuffer
);
for ($ii = 1; $ii < count($second); ++$ii) {
$second[$ii] = $secondaryLineLeadPadding.$second[$ii];
}
return $first.implode(PHP_EOL, $second);
}
}

View file

@ -4,57 +4,37 @@ declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Types;
use pointybeard\Helpers\Functions\Flags;
use pointybeard\Helpers\Functions\Strings;
use pointybeard\Helpers\Functions\Cli;
use pointybeard\Helpers\Cli\Input;
class Option extends Input\AbstractInputType
{
public function getDisplayName(): string
protected $long;
protected $default;
public function __construct(string $name, string $long = null, int $flags = null, string $description = null, object $validator = null, $default = false)
{
return '-'.$this->name();
$this->default = $default;
$this->long = $long;
parent::__construct($name, $flags, $description, $validator);
}
public function __toString(): string
public function __toString()
{
// MAGIC VALUES!!! OH MY.....
$padCharacter = ' ';
$paddingBufferSize = 0.15; // 15%
$optionNamePaddedWidth = 30;
$minimumWindowWidth = 80;
$secondaryLineIndentlength = 2;
// Get the window dimensions but restrict width to minimum
// of $minimumWindowWidth
$window = Cli\get_window_size();
$window['cols'] = max($minimumWindowWidth, $window['cols']);
// This shrinks the total line length (derived by the window width) by
// $paddingBufferSize
$paddingBuffer = (int) ceil($window['cols'] * $paddingBufferSize);
// Create a string of $padCharacter which is prepended to each secondary
// line
$secondaryLineLeadPadding = str_pad(
'',
$optionNamePaddedWidth,
$padCharacter,
STR_PAD_LEFT
);
$first = Strings\mb_str_pad(
$this->getDisplayName(),
$optionNamePaddedWidth,
$padCharacter
);
$second = Strings\utf8_wordwrap_array(
$this->description(),
$window['cols'] - $optionNamePaddedWidth - $paddingBuffer
);
$long = null !== $this->long() ? ', --'.$this->long() : null;
if (null != $long) {
if (Flags\is_flag_set($this->flags(), self::FLAG_VALUE_REQUIRED)) {
$long .= '=VALUE';
} elseif (Flags\is_flag_set($this->flags(), self::FLAG_VALUE_OPTIONAL)) {
$long .= '[=VALUE]';
}
}
$first = str_pad(sprintf('-%s%s ', $this->name(), $long), 36, ' ');
$second = Strings\utf8_wordwrap_array($this->description(), 40);
for ($ii = 1; $ii < count($second); ++$ii) {
$second[$ii] = $secondaryLineLeadPadding.$second[$ii];
$second[$ii] = str_pad('', 38, ' ', \STR_PAD_LEFT).$second[$ii];
}
return $first.implode($second, PHP_EOL);