-
Notifications
You must be signed in to change notification settings - Fork 2
/
ConsoleOptionParser.php
965 lines (884 loc) · 29.7 KB
/
ConsoleOptionParser.php
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 2.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Console;
use Cake\Console\Exception\ConsoleException;
use Cake\Console\Exception\MissingOptionException;
use Cake\Utility\Inflector;
use LogicException;
/**
* Handles parsing the ARGV in the command line and provides support
* for GetOpt compatible option definition. Provides a builder pattern implementation
* for creating shell option parsers.
*
* ### Options
*
* Named arguments come in two forms, long and short. Long arguments are preceded
* by two - and give a more verbose option name. i.e. `--version`. Short arguments are
* preceded by one - and are only one character long. They usually match with a long option,
* and provide a more terse alternative.
*
* ### Using Options
*
* Options can be defined with both long and short forms. By using `$parser->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. Short options should
* only be one letter long. Using more than one letter for a short option will raise an exception.
*
* 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 my_command --connection default --name=something`
*
* Short options can be defined singly or in groups.
*
* `cake my_command -cn`
*
* Short options can be combined into groups as seen above. Each letter in a group
* will be treated as a separate option. The previous example is equivalent to:
*
* `cake my_command -c -n`
*
* Short options can also accept values:
*
* `cake my_command -c default`
*
* ### Positional arguments
*
* If no positional arguments are defined, all of them will be parsed. If you define positional
* arguments any arguments greater than those defined will cause exceptions. Additionally you can
* declare arguments as optional, by setting the required param to false.
*
* ```
* $parser->addArgument('model', ['required' => false]);
* ```
*
* ### 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.
*/
class ConsoleOptionParser
{
/**
* Description text - displays before options when help is generated
*
* @see \Cake\Console\ConsoleOptionParser::description()
* @var string
*/
protected $_description = '';
/**
* Epilog text - displays after options when help is generated
*
* @see \Cake\Console\ConsoleOptionParser::epilog()
* @var string
*/
protected $_epilog = '';
/**
* Option definitions.
*
* @see \Cake\Console\ConsoleOptionParser::addOption()
* @var \Cake\Console\ConsoleInputOption[]
*/
protected $_options = [];
/**
* Map of short -> long options, generated when using addOption()
*
* @var array
*/
protected $_shortOptions = [];
/**
* Positional argument definitions.
*
* @see \Cake\Console\ConsoleOptionParser::addArgument()
* @var \Cake\Console\ConsoleInputArgument[]
*/
protected $_args = [];
/**
* Subcommands for this Shell.
*
* @see \Cake\Console\ConsoleOptionParser::addSubcommand()
* @var \Cake\Console\ConsoleInputSubcommand[]
*/
protected $_subcommands = [];
/**
* Subcommand sorting option
*
* @var bool
*/
protected $_subcommandSort = true;
/**
* Command name.
*
* @var string
*/
protected $_command = '';
/**
* Array of args (argv).
*
* @var array
*/
protected $_tokens = [];
/**
* Root alias used in help output
*
* @see \Cake\Console\HelpFormatter::setAlias()
* @var string
*/
protected $rootName = 'cake';
/**
* Construct an OptionParser so you can define its behavior
*
* @param string $command The command name this parser is for. The command name is used for generating help.
* @param bool $defaultOptions Whether you want the verbose and quiet options set. Setting
* this to false will prevent the addition of `--verbose` & `--quiet` options.
*/
public function __construct(string $command = '', bool $defaultOptions = true)
{
$this->setCommand($command);
$this->addOption('help', [
'short' => 'h',
'help' => 'Display this help.',
'boolean' => true,
]);
if ($defaultOptions) {
$this->addOption('verbose', [
'short' => 'v',
'help' => 'Enable verbose output.',
'boolean' => true,
])->addOption('quiet', [
'short' => 'q',
'help' => 'Enable quiet output.',
'boolean' => true,
]);
}
}
/**
* Static factory method for creating new OptionParsers so you can chain methods off of them.
*
* @param string $command The command name this parser is for. The command name is used for generating help.
* @param bool $defaultOptions Whether you want the verbose and quiet options set.
* @return static
*/
public static function create(string $command, bool $defaultOptions = true)
{
return new static($command, $defaultOptions);
}
/**
* Build a parser from an array. Uses an array like
*
* ```
* $spec = [
* 'description' => 'text',
* 'epilog' => 'text',
* 'arguments' => [
* // list of arguments compatible with addArguments.
* ],
* 'options' => [
* // list of options compatible with addOptions
* ],
* 'subcommands' => [
* // list of subcommands to add.
* ]
* ];
* ```
*
* @param array $spec The spec to build the OptionParser with.
* @param bool $defaultOptions Whether you want the verbose and quiet options set.
* @return static
*/
public static function buildFromArray(array $spec, bool $defaultOptions = true)
{
$parser = new static($spec['command'], $defaultOptions);
if (!empty($spec['arguments'])) {
$parser->addArguments($spec['arguments']);
}
if (!empty($spec['options'])) {
$parser->addOptions($spec['options']);
}
if (!empty($spec['subcommands'])) {
$parser->addSubcommands($spec['subcommands']);
}
if (!empty($spec['description'])) {
$parser->setDescription($spec['description']);
}
if (!empty($spec['epilog'])) {
$parser->setEpilog($spec['epilog']);
}
return $parser;
}
/**
* Returns an array representation of this parser.
*
* @return array
*/
public function toArray(): array
{
$result = [
'command' => $this->_command,
'arguments' => $this->_args,
'options' => $this->_options,
'subcommands' => $this->_subcommands,
'description' => $this->_description,
'epilog' => $this->_epilog,
];
return $result;
}
/**
* Get or set the command name for shell/task.
*
* @param array|\Cake\Console\ConsoleOptionParser $spec ConsoleOptionParser or spec to merge with.
* @return $this
*/
public function merge($spec)
{
if ($spec instanceof ConsoleOptionParser) {
$spec = $spec->toArray();
}
if (!empty($spec['arguments'])) {
$this->addArguments($spec['arguments']);
}
if (!empty($spec['options'])) {
$this->addOptions($spec['options']);
}
if (!empty($spec['subcommands'])) {
$this->addSubcommands($spec['subcommands']);
}
if (!empty($spec['description'])) {
$this->setDescription($spec['description']);
}
if (!empty($spec['epilog'])) {
$this->setEpilog($spec['epilog']);
}
return $this;
}
/**
* Sets the command name for shell/task.
*
* @param string $text The text to set.
* @return $this
*/
public function setCommand(string $text)
{
$this->_command = Inflector::underscore($text);
return $this;
}
/**
* Gets the command name for shell/task.
*
* @return string The value of the command.
*/
public function getCommand(): string
{
return $this->_command;
}
/**
* Sets the description text for shell/task.
*
* @param string|array $text The text to set. If an array the
* text will be imploded with "\n".
* @return $this
*/
public function setDescription($text)
{
if (is_array($text)) {
$text = implode("\n", $text);
}
$this->_description = $text;
return $this;
}
/**
* Gets the description text for shell/task.
*
* @return string The value of the description
*/
public function getDescription(): string
{
return $this->_description;
}
/**
* Sets an epilog to the parser. The epilog is added to the end of
* the options and arguments listing when help is generated.
*
* @param string|array $text The text to set. If an array the text will
* be imploded with "\n".
* @return $this
*/
public function setEpilog($text)
{
if (is_array($text)) {
$text = implode("\n", $text);
}
$this->_epilog = $text;
return $this;
}
/**
* Gets the epilog.
*
* @return string The value of the epilog.
*/
public function getEpilog(): string
{
return $this->_epilog;
}
/**
* Enables sorting of subcommands
*
* @param bool $value Whether or not to sort subcommands
* @return $this
*/
public function enableSubcommandSort(bool $value = true)
{
$this->_subcommandSort = $value;
return $this;
}
/**
* Checks whether or not sorting is enabled for subcommands.
*
* @return bool
*/
public function isSubcommandSortEnabled(): bool
{
return $this->_subcommandSort;
}
/**
* 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.
*
* ### Options
*
* - `short` - The single letter variant for this option, leave undefined for none.
* - `help` - Help text for this option. Used when generating help for the option.
* - `default` - The default value for this option. Defaults are added into the parsed params when the
* attached option is not provided or has no value. Using default and boolean together will not work.
* are added into the parsed parameters when the option is undefined. Defaults to null.
* - `boolean` - The option uses no value, it's just a boolean switch. Defaults to false.
* If an option is defined as boolean, it will always be added to the parsed params. If no present
* it will be false, if present it will be true.
* - `multiple` - The option can be provided multiple times. The parsed option
* will be an array of values when this option is enabled.
* - `choices` A list of valid choices for this option. If left empty all values are valid..
* An exception will be raised when parse() encounters an invalid value.
*
* @param \Cake\Console\ConsoleInputOption|string $name The long name you want to the value to be parsed out
* as when options are parsed. Will also accept an instance of ConsoleInputOption.
* @param array $options An array of parameters that define the behavior of the option
* @return $this
*/
public function addOption($name, array $options = [])
{
if ($name instanceof ConsoleInputOption) {
$option = $name;
$name = $option->name();
} else {
$defaults = [
'short' => '',
'help' => '',
'default' => null,
'boolean' => false,
'multiple' => false,
'choices' => [],
'required' => false,
];
$options += $defaults;
$option = new ConsoleInputOption(
$name,
$options['short'],
$options['help'],
$options['boolean'],
$options['default'],
$options['choices'],
$options['multiple'],
$options['required']
);
}
$this->_options[$name] = $option;
asort($this->_options);
if ($option->short()) {
$this->_shortOptions[$option->short()] = $name;
asort($this->_shortOptions);
}
return $this;
}
/**
* Remove an option from the option parser.
*
* @param string $name The option name to remove.
* @return $this
*/
public function removeOption(string $name)
{
unset($this->_options[$name]);
return $this;
}
/**
* Add a positional argument to the option parser.
*
* ### Params
*
* - `help` The help text to display for this argument.
* - `required` Whether this parameter is required.
* - `index` The index for the arg, if left undefined the argument will be put
* onto the end of the arguments. If you define the same index twice the first
* option will be overwritten.
* - `choices` A list of valid choices for this argument. If left empty all values are valid..
* An exception will be raised when parse() encounters an invalid value.
*
* @param \Cake\Console\ConsoleInputArgument|string $name The name of the argument.
* Will also accept an instance of ConsoleInputArgument.
* @param array $params Parameters for the argument, see above.
* @return $this
*/
public function addArgument($name, array $params = [])
{
if ($name instanceof ConsoleInputArgument) {
$arg = $name;
$index = count($this->_args);
} else {
$defaults = [
'name' => $name,
'help' => '',
'index' => count($this->_args),
'required' => false,
'choices' => [],
];
$options = $params + $defaults;
$index = $options['index'];
unset($options['index']);
$arg = new ConsoleInputArgument($options);
}
foreach ($this->_args as $a) {
if ($a->isEqualTo($arg)) {
return $this;
}
if (!empty($options['required']) && !$a->isRequired()) {
throw new LogicException('A required argument cannot follow an optional one');
}
}
$this->_args[$index] = $arg;
ksort($this->_args);
return $this;
}
/**
* Add multiple arguments at once. Take an array of argument definitions.
* The keys are used as the argument names, and the values as params for the argument.
*
* @param array $args Array of arguments to add.
* @see \Cake\Console\ConsoleOptionParser::addArgument()
* @return $this
*/
public function addArguments(array $args)
{
foreach ($args as $name => $params) {
if ($params instanceof ConsoleInputArgument) {
$name = $params;
$params = [];
}
$this->addArgument($name, $params);
}
return $this;
}
/**
* Add multiple options at once. Takes an array of option definitions.
* The keys are used as option names, and the values as params for the option.
*
* @param array $options Array of options to add.
* @see \Cake\Console\ConsoleOptionParser::addOption()
* @return $this
*/
public function addOptions(array $options)
{
foreach ($options as $name => $params) {
if ($params instanceof ConsoleInputOption) {
$name = $params;
$params = [];
}
$this->addOption($name, $params);
}
return $this;
}
/**
* Append a subcommand to the subcommand list.
* Subcommands are usually methods on your Shell, but can also be used to document Tasks.
*
* ### Options
*
* - `help` - Help text for the subcommand.
* - `parser` - A ConsoleOptionParser for the subcommand. This allows you to create method
* specific option parsers. When help is generated for a subcommand, if a parser is present
* it will be used.
*
* @param \Cake\Console\ConsoleInputSubcommand|string $name Name of the subcommand.
* Will also accept an instance of ConsoleInputSubcommand.
* @param array $options Array of params, see above.
* @return $this
*/
public function addSubcommand($name, array $options = [])
{
if ($name instanceof ConsoleInputSubcommand) {
$command = $name;
$name = $command->name();
} else {
$name = Inflector::underscore($name);
$defaults = [
'name' => $name,
'help' => '',
'parser' => null,
];
$options += $defaults;
$command = new ConsoleInputSubcommand($options);
}
$this->_subcommands[$name] = $command;
if ($this->_subcommandSort) {
asort($this->_subcommands);
}
return $this;
}
/**
* Remove a subcommand from the option parser.
*
* @param string $name The subcommand name to remove.
* @return $this
*/
public function removeSubcommand(string $name)
{
unset($this->_subcommands[$name]);
return $this;
}
/**
* Add multiple subcommands at once.
*
* @param array $commands Array of subcommands.
* @return $this
*/
public function addSubcommands(array $commands)
{
foreach ($commands as $name => $params) {
if ($params instanceof ConsoleInputSubcommand) {
$name = $params;
$params = [];
}
$this->addSubcommand($name, $params);
}
return $this;
}
/**
* Gets the arguments defined in the parser.
*
* @return \Cake\Console\ConsoleInputArgument[]
*/
public function arguments()
{
return $this->_args;
}
/**
* Get the list of argument names.
*
* @return string[]
*/
public function argumentNames()
{
$out = [];
foreach ($this->_args as $arg) {
$out[] = $arg->name();
}
return $out;
}
/**
* Get the defined options in the parser.
*
* @return \Cake\Console\ConsoleInputOption[]
*/
public function options()
{
return $this->_options;
}
/**
* Get the array of defined subcommands
*
* @return \Cake\Console\ConsoleInputSubcommand[]
*/
public function subcommands()
{
return $this->_subcommands;
}
/**
* Parse the argv array into a set of params and args. If $command is not null
* and $command is equal to a subcommand that has a parser, that parser will be used
* to parse the $argv
*
* @param array $argv Array of args (argv) to parse.
* @return array [$params, $args]
* @throws \Cake\Console\Exception\ConsoleException When an invalid parameter is encountered.
*/
public function parse(array $argv): array
{
$command = isset($argv[0]) ? Inflector::underscore($argv[0]) : null;
if (isset($this->_subcommands[$command])) {
array_shift($argv);
}
if (isset($this->_subcommands[$command]) && $this->_subcommands[$command]->parser()) {
/** @psalm-suppress PossiblyNullReference */
return $this->_subcommands[$command]->parser()->parse($argv);
}
$params = $args = [];
$this->_tokens = $argv;
while (($token = array_shift($this->_tokens)) !== null) {
$token = (string)$token;
if (isset($this->_subcommands[$token])) {
continue;
}
if (substr($token, 0, 2) === '--') {
$params = $this->_parseLongOption($token, $params);
} elseif (substr($token, 0, 1) === '-') {
$params = $this->_parseShortOption($token, $params);
} else {
$args = $this->_parseArg($token, $args);
}
}
foreach ($this->_args as $i => $arg) {
if ($arg->isRequired() && !isset($args[$i]) && empty($params['help'])) {
throw new ConsoleException(
sprintf('Missing required argument. The `%s` argument is required.', $arg->name())
);
}
}
foreach ($this->_options as $option) {
$name = $option->name();
$isBoolean = $option->isBoolean();
$default = $option->defaultValue();
if ($default !== null && !isset($params[$name]) && !$isBoolean) {
$params[$name] = $default;
}
if ($isBoolean && !isset($params[$name])) {
$params[$name] = false;
}
if ($option->isRequired() && !isset($params[$name])) {
throw new ConsoleException(
sprintf('Missing required option. The `%s` option is required and has no default value.', $name)
);
}
}
return [$params, $args];
}
/**
* Gets formatted help for this parser object.
*
* Generates help text based on the description, options, arguments, subcommands and epilog
* in the parser.
*
* @param string|null $subcommand If present and a valid subcommand that has a linked parser.
* That subcommands help will be shown instead.
* @param string $format Define the output format, can be text or XML
* @param int $width The width to format user content to. Defaults to 72
* @return string Generated help.
*/
public function help(?string $subcommand = null, string $format = 'text', int $width = 72): string
{
if ($subcommand === null) {
$formatter = new HelpFormatter($this);
$formatter->setAlias($this->rootName);
if ($format === 'text') {
return $formatter->text($width);
}
if ($format === 'xml') {
return (string)$formatter->xml();
}
}
$subcommand = (string)$subcommand;
if (isset($this->_subcommands[$subcommand])) {
$command = $this->_subcommands[$subcommand];
$subparser = $command->parser();
// Generate a parser as the subcommand didn't define one.
if (!($subparser instanceof self)) {
// $subparser = clone $this;
$subparser = new self($subcommand);
$subparser
->setDescription($command->getRawHelp())
->addOptions($this->options())
->addArguments($this->arguments());
}
if (strlen($subparser->getDescription()) === 0) {
$subparser->setDescription($command->getRawHelp());
}
$subparser->setCommand($this->getCommand() . ' ' . $subcommand);
$subparser->setRootName($this->rootName);
return $subparser->help(null, $format, $width);
}
$rootCommand = $this->getCommand();
$message = sprintf(
'Unable to find the `%s %s` subcommand. See `bin/%s %s --help`.',
$rootCommand,
$subcommand,
$this->rootName,
$rootCommand
);
throw new MissingOptionException(
$message,
$subcommand,
array_keys($this->subcommands())
);
}
/**
* Set the root name used in the HelpFormatter
*
* @param string $name The root command name
* @return $this
*/
public function setRootName(string $name)
{
$this->rootName = $name;
return $this;
}
/**
* Parse the value for a long option out of $this->_tokens. Will handle
* options with an `=` in them.
*
* @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(string $option, array $params): array
{
$name = substr($option, 2);
if (strpos($name, '=') !== false) {
[$name, $value] = explode('=', $name, 2);
array_unshift($this->_tokens, $value);
}
return $this->_parseOption($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.
* @throws \Cake\Console\Exception\ConsoleException When unknown short options are encountered.
*/
protected function _parseShortOption(string $option, array $params): array
{
$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]);
}
}
if (!isset($this->_shortOptions[$key])) {
$options = [];
foreach ($this->_shortOptions as $short => $long) {
$options[] = "{$short} (short for `--{$long}`)";
}
throw new MissingOptionException(
"Unknown short option `{$key}`.",
$key,
$options
);
}
$name = $this->_shortOptions[$key];
return $this->_parseOption($name, $params);
}
/**
* Parse an option by its name index.
*
* @param string $name The name to parse.
* @param array $params The params to append the parsed value into
* @return array Params with $option added in.
* @throws \Cake\Console\Exception\ConsoleException
*/
protected function _parseOption(string $name, array $params): array
{
if (!isset($this->_options[$name])) {
throw new MissingOptionException(
"Unknown option `{$name}`.",
$name,
array_keys($this->_options)
);
}
$option = $this->_options[$name];
$isBoolean = $option->isBoolean();
$nextValue = $this->_nextToken();
$emptyNextValue = (empty($nextValue) && $nextValue !== '0');
if (!$isBoolean && !$emptyNextValue && !$this->_optionExists($nextValue)) {
array_shift($this->_tokens);
$value = $nextValue;
} elseif ($isBoolean) {
$value = true;
} else {
$value = (string)$option->defaultValue();
}
$option->validChoice($value);
if ($option->acceptsMultiple()) {
$params[$name][] = $value;
} else {
$params[$name] = $value;
}
return $params;
}
/**
* Check to see if $name has an option (short/long) defined for it.
*
* @param string $name The name of the option.
* @return bool
*/
protected function _optionExists(string $name): bool
{
if (substr($name, 0, 2) === '--') {
return isset($this->_options[substr($name, 2)]);
}
if ($name[0] === '-' && $name[1] !== '-') {
return isset($this->_shortOptions[$name[1]]);
}
return false;
}
/**
* Parse an argument, and ensure that the argument doesn't exceed the number of arguments
* and that the argument is a valid choice.
*
* @param string $argument The argument to append
* @param array $args The array of parsed args to append to.
* @return string[] Args
* @throws \Cake\Console\Exception\ConsoleException
*/
protected function _parseArg(string $argument, array $args): array
{
if (empty($this->_args)) {
$args[] = $argument;
return $args;
}
$next = count($args);
if (!isset($this->_args[$next])) {
$expected = count($this->_args);
throw new ConsoleException(
"Received too many arguments. Got {$next} but only {$expected} arguments are defined."
);
}
$this->_args[$next]->validChoice($argument);
$args[] = $argument;
return $args;
}
/**
* Find the next token in the argv set.
*
* @return string next token or ''
*/
protected function _nextToken(): string
{
return $this->_tokens[0] ?? '';
}
}