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
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\Console;
/**
* Getopt is a class to parse options for command-line
* applications.
*
* Terminology:
* Argument: an element of the argv array. This may be part of an option,
* or it may be a non-option command-line argument.
* Flag: the letter or word set off by a '-' or '--'. Example: in '--output filename',
* '--output' is the flag.
* Parameter: the additional argument that is associated with the option.
* Example: in '--output filename', the 'filename' is the parameter.
* Option: the combination of a flag and its parameter, if any.
* Example: in '--output filename', the whole thing is the option.
*
* The following features are supported:
*
* - Short flags like '-a'. Short flags are preceded by a single
* dash. Short flags may be clustered e.g. '-abc', which is the
* same as '-a' '-b' '-c'.
* - Long flags like '--verbose'. Long flags are preceded by a
* double dash. Long flags may not be clustered.
* - Options may have a parameter, e.g. '--output filename'.
* - Parameters for long flags may also be set off with an equals sign,
* e.g. '--output=filename'.
* - Parameters for long flags may be checked as string, word, or integer.
* - Automatic generation of a helpful usage message.
* - Signal end of options with '--'; subsequent arguments are treated
* as non-option arguments, even if they begin with '-'.
* - Raise exception Zend\Console\Exception\* in several cases
* when invalid flags or parameters are given. Usage message is
* returned in the exception object.
*
* The format for specifying options uses a PHP associative array.
* The key is has the format of a list of pipe-separated flag names,
* followed by an optional '=' to indicate a required parameter or
* '-' to indicate an optional parameter. Following that, the type
* of parameter may be specified as 's' for string, 'w' for word,
* or 'i' for integer.
*
* Examples:
* - 'user|username|u=s' this means '--user' or '--username' or '-u'
* are synonyms, and the option requires a string parameter.
* - 'p=i' this means '-p' requires an integer parameter. No synonyms.
* - 'verbose|v-i' this means '--verbose' or '-v' are synonyms, and
* they take an optional integer parameter.
* - 'help|h' this means '--help' or '-h' are synonyms, and
* they take no parameter.
*
* The values in the associative array are strings that are used as
* brief descriptions of the options when printing a usage message.
*
* The simpler format for specifying options used by PHP's getopt()
* function is also supported. This is similar to GNU getopt and shell
* getopt format.
*
* Example: 'abc:' means options '-a', '-b', and '-c'
* are legal, and the latter requires a string parameter.
*/
class Getopt
{
/**
* The options for a given application can be in multiple formats.
* modeGnu is for traditional 'ab:c:' style getopt format.
* modeZend is for a more structured format.
*/
const MODE_ZEND = 'zend';
const MODE_GNU = 'gnu';
/**
* Constant tokens for various symbols used in the mode_zend
* rule format.
*/
const PARAM_REQUIRED = '=';
const PARAM_OPTIONAL = '-';
const TYPE_STRING = 's';
const TYPE_WORD = 'w';
const TYPE_INTEGER = 'i';
const TYPE_NUMERIC_FLAG = '#';
/**
* These are constants for optional behavior of this class.
* ruleMode is either 'zend' or 'gnu' or a user-defined mode.
* dashDash is true if '--' signifies the end of command-line options.
* ignoreCase is true if '--opt' and '--OPT' are implicitly synonyms.
* parseAll is true if all options on the command line should be parsed, regardless of
* whether an argument appears before them.
*/
const CONFIG_RULEMODE = 'ruleMode';
const CONFIG_DASHDASH = 'dashDash';
const CONFIG_IGNORECASE = 'ignoreCase';
const CONFIG_PARSEALL = 'parseAll';
const CONFIG_CUMULATIVE_PARAMETERS = 'cumulativeParameters';
const CONFIG_CUMULATIVE_FLAGS = 'cumulativeFlags';
const CONFIG_PARAMETER_SEPARATOR = 'parameterSeparator';
const CONFIG_FREEFORM_FLAGS = 'freeformFlags';
const CONFIG_NUMERIC_FLAGS = 'numericFlags';
/**
* Defaults for getopt configuration are:
* ruleMode is 'zend' format,
* dashDash (--) token is enabled,
* ignoreCase is not enabled,
* parseAll is enabled,
* cumulative parameters are disabled,
* this means that subsequent options overwrite the parameter value,
* cumulative flags are disable,
* freeform flags are disable.
*/
protected $getoptConfig = [
self::CONFIG_RULEMODE => self::MODE_ZEND,
self::CONFIG_DASHDASH => true,
self::CONFIG_IGNORECASE => false,
self::CONFIG_PARSEALL => true,
self::CONFIG_CUMULATIVE_PARAMETERS => false,
self::CONFIG_CUMULATIVE_FLAGS => false,
self::CONFIG_PARAMETER_SEPARATOR => null,
self::CONFIG_FREEFORM_FLAGS => false,
self::CONFIG_NUMERIC_FLAGS => false
];
/**
* Stores the command-line arguments for the calling application.
*
* @var array
*/
protected $argv = [];
/**
* Stores the name of the calling application.
*
* @var string
*/
protected $progname = '';
/**
* Stores the list of legal options for this application.
*
* @var array
*/
protected $rules = [];
/**
* Stores alternate spellings of legal options.
*
* @var array
*/
protected $ruleMap = [];
/**
* Stores options given by the user in the current invocation
* of the application, as well as parameters given in options.
*
* @var array
*/
protected $options = [];
/**
* Stores the command-line arguments other than options.
*
* @var array
*/
protected $remainingArgs = [];
/**
* State of the options: parsed or not yet parsed?
*
* @var bool
*/
protected $parsed = false;
/**
* A list of callbacks to call when a particular option is present.
*
* @var array
*/
protected $optionCallbacks = [];
/**
* The constructor takes one to three parameters.
*
* The first parameter is $rules, which may be a string for
* gnu-style format, or a structured array for Zend-style format.
*
* The second parameter is $argv, and it is optional. If not
* specified, $argv is inferred from the global argv.
*
* The third parameter is an array of configuration parameters
* to control the behavior of this instance of Getopt; it is optional.
*
* @param array $rules
* @param array $argv
* @param array $getoptConfig
* @throws Exception\InvalidArgumentException
*/
public function __construct($rules, $argv = null, $getoptConfig = [])
{
if (! isset($_SERVER['argv'])) {
$errorDescription = (ini_get('register_argc_argv') == false)
? "argv is not available, because ini option 'register_argc_argv' is set Off"
: '$_SERVER["argv"] is not set, but Zend\Console\Getopt cannot work without this information.';
throw new Exception\InvalidArgumentException($errorDescription);
}
$this->progname = $_SERVER['argv'][0];
$this->setOptions($getoptConfig);
$this->addRules($rules);
if (! is_array($argv)) {
$argv = array_slice($_SERVER['argv'], 1);
}
if (isset($argv)) {
$this->addArguments((array) $argv);
}
}
/**
* Return the state of the option seen on the command line of the
* current application invocation. This function returns true, or the
* parameter to the option, if any. If the option was not given,
* this function returns null.
*
* The magic __get method works in the context of naming the option
* as a virtual member of this class.
*
* @param string $key
* @return string
*/
public function __get($key)
{
return $this->getOption($key);
}
/**
* Test whether a given option has been seen.
*
* @param string $key
* @return bool
*/
public function __isset($key)
{
$this->parse();
if (isset($this->ruleMap[$key])) {
$key = $this->ruleMap[$key];
return isset($this->options[$key]);
}
return false;
}
/**
* Set the value for a given option.
*
* @param string $key
* @param string $value
*/
public function __set($key, $value)
{
$this->parse();
if (isset($this->ruleMap[$key])) {
$key = $this->ruleMap[$key];
$this->options[$key] = $value;
}
}
/**
* Return the current set of options and parameters seen as a string.
*
* @return string
*/
public function __toString()
{
return $this->toString();
}
/**
* Unset an option.
*
* @param string $key
*/
public function __unset($key)
{
$this->parse();
if (isset($this->ruleMap[$key])) {
$key = $this->ruleMap[$key];
unset($this->options[$key]);
}
}
/**
* Define additional command-line arguments.
* These are appended to those defined when the constructor was called.
*
* @param array $argv
* @throws Exception\InvalidArgumentException When not given an array as parameter
* @return self
*/
public function addArguments($argv)
{
if (! is_array($argv)) {
throw new Exception\InvalidArgumentException("Parameter #1 to addArguments should be an array");
}
$this->argv = array_merge($this->argv, $argv);
$this->parsed = false;
return $this;
}
/**
* Define full set of command-line arguments.
* These replace any currently defined.
*
* @param array $argv
* @throws Exception\InvalidArgumentException When not given an array as parameter
* @return self
*/
public function setArguments($argv)
{
if (! is_array($argv)) {
throw new Exception\InvalidArgumentException("Parameter #1 to setArguments should be an array");
}
$this->argv = $argv;
$this->parsed = false;
return $this;
}
/**
* Define multiple configuration options from an associative array.
* These are not program options, but properties to configure
* the behavior of Zend\Console\Getopt.
*
* @param array $getoptConfig
* @return self
*/
public function setOptions($getoptConfig)
{
if (isset($getoptConfig)) {
foreach ($getoptConfig as $key => $value) {
$this->setOption($key, $value);
}
}
return $this;
}
/**
* Define one configuration option as a key/value pair.
* These are not program options, but properties to configure
* the behavior of Zend\Console\Getopt.
*
* @param string $configKey
* @param string $configValue
* @return self
*/
public function setOption($configKey, $configValue)
{
if ($configKey !== null) {
$this->getoptConfig[$configKey] = $configValue;
}
return $this;
}
/**
* Define additional option rules.
* These are appended to the rules defined when the constructor was called.
*
* @param array $rules
* @return self
*/
public function addRules($rules)
{
$ruleMode = $this->getoptConfig['ruleMode'];
switch ($this->getoptConfig['ruleMode']) {
case self::MODE_ZEND:
if (is_array($rules)) {
$this->_addRulesModeZend($rules);
break;
}
// intentional fallthrough
case self::MODE_GNU:
$this->_addRulesModeGnu($rules);
break;
default:
/**
* Call addRulesModeFoo() for ruleMode 'foo'.
* The developer should subclass Getopt and
* provide this method.
*/
$method = '_addRulesMode' . ucfirst($ruleMode);
$this->$method($rules);
}
$this->parsed = false;
return $this;
}
/**
* Return the current set of options and parameters seen as a string.
*
* @return string
*/
public function toString()
{
$this->parse();
$s = [];
foreach ($this->options as $flag => $value) {
$s[] = $flag . '=' . ($value === true ? 'true' : $value);
}
return implode(' ', $s);
}
/**
* Return the current set of options and parameters seen
* as an array of canonical options and parameters.
*
* Clusters have been expanded, and option aliases
* have been mapped to their primary option names.
*
* @return array
*/
public function toArray()
{
$this->parse();
$s = [];
foreach ($this->options as $flag => $value) {
$s[] = $flag;
if ($value !== true) {
$s[] = $value;
}
}
return $s;
}
/**
* Return the current set of options and parameters seen in Json format.
*
* @return string
*/
public function toJson()
{
$this->parse();
$j = [];
foreach ($this->options as $flag => $value) {
$j['options'][] = [
'option' => [
'flag' => $flag,
'parameter' => $value
]
];
}
$json = \Zend\Json\Json::encode($j);
return $json;
}
/**
* Return the current set of options and parameters seen in XML format.
*
* @return string
*/
public function toXml()
{
$this->parse();
$doc = new \DomDocument('1.0', 'utf-8');
$optionsNode = $doc->createElement('options');
$doc->appendChild($optionsNode);
foreach ($this->options as $flag => $value) {
$optionNode = $doc->createElement('option');
$optionNode->setAttribute('flag', utf8_encode($flag));
if ($value !== true) {
$optionNode->setAttribute('parameter', utf8_encode($value));
}
$optionsNode->appendChild($optionNode);
}
$xml = $doc->saveXML();
return $xml;
}
/**
* Return a list of options that have been seen in the current argv.
*
* @return array
*/
public function getOptions()
{
$this->parse();
return array_keys($this->options);
}
/**
* Return the state of the option seen on the command line of the
* current application invocation.
*
* This function returns true, or the parameter value to the option, if any.
* If the option was not given, this function returns false.
*
* @param string $flag
* @return mixed
*/
public function getOption($flag)
{
$this->parse();
if ($this->getoptConfig[self::CONFIG_IGNORECASE]) {
$flag = strtolower($flag);
}
if (isset($this->ruleMap[$flag])) {
$flag = $this->ruleMap[$flag];
if (isset($this->options[$flag])) {
return $this->options[$flag];
}
}
return;
}
/**
* Return the arguments from the command-line following all options found.
*
* @return array
*/
public function getRemainingArgs()
{
$this->parse();
return $this->remainingArgs;
}
public function getArguments()
{
$result = $this->getRemainingArgs();
foreach ($this->getOptions() as $option) {
$result[$option] = $this->getOption($option);
}
return $result;
}
/**
* Return a useful option reference, formatted for display in an
* error message.
*
* Note that this usage information is provided in most Exceptions
* generated by this class.
*
* @return string
*/
public function getUsageMessage()
{
$usage = "Usage: {$this->progname} [ options ]\n";
$maxLen = 20;
$lines = [];
foreach ($this->rules as $rule) {
if (isset($rule['isFreeformFlag'])) {
continue;
}
$flags = [];
if (is_array($rule['alias'])) {
foreach ($rule['alias'] as $flag) {
$flags[] = (strlen($flag) == 1 ? '-' : '--') . $flag;
}
}
$linepart['name'] = implode('|', $flags);
if (isset($rule['param']) && $rule['param'] != 'none') {
$linepart['name'] .= ' ';
switch ($rule['param']) {
case 'optional':
$linepart['name'] .= "[ <{$rule['paramType']}> ]";
break;
case 'required':
$linepart['name'] .= "<{$rule['paramType']}>";
break;
}
}
if (strlen($linepart['name']) > $maxLen) {
$maxLen = strlen($linepart['name']);
}
$linepart['help'] = '';
if (isset($rule['help'])) {
$linepart['help'] .= $rule['help'];
}
$lines[] = $linepart;
}
foreach ($lines as $linepart) {
$usage .= sprintf(
"%s %s\n",
str_pad($linepart['name'], $maxLen),
$linepart['help']
);
}
return $usage;
}
/**
* Define aliases for options.
*
* The parameter $aliasMap is an associative array
* mapping option name (short or long) to an alias.
*
* @param array $aliasMap
* @throws Exception\ExceptionInterface
* @return self
*/
public function setAliases($aliasMap)
{
foreach ($aliasMap as $flag => $alias) {
if ($this->getoptConfig[self::CONFIG_IGNORECASE]) {
$flag = strtolower($flag);
$alias = strtolower($alias);
}
if (! isset($this->ruleMap[$flag])) {
continue;
}
$flag = $this->ruleMap[$flag];
if (isset($this->rules[$alias]) || isset($this->ruleMap[$alias])) {
$o = (strlen($alias) == 1 ? '-' : '--') . $alias;
throw new Exception\InvalidArgumentException("Option \"$o\" is being defined more than once.");
}
$this->rules[$flag]['alias'][] = $alias;
$this->ruleMap[$alias] = $flag;
}
return $this;
}
/**
* Define help messages for options.
*
* The parameter $helpMap is an associative array
* mapping option name (short or long) to the help string.
*
* @param array $helpMap
* @return self
*/
public function setHelp($helpMap)
{
foreach ($helpMap as $flag => $help) {
if (! isset($this->ruleMap[$flag])) {
continue;
}
$flag = $this->ruleMap[$flag];
$this->rules[$flag]['help'] = $help;
}
return $this;
}
/**
* Parse command-line arguments and find both long and short
* options.
*
* Also find option parameters, and remaining arguments after
* all options have been parsed.
*
* @return self
*/
public function parse()
{
if ($this->parsed === true) {
return $this;
}
$argv = $this->argv;
$this->options = [];
$this->remainingArgs = [];
while (count($argv) > 0) {
if ($argv[0] == '--') {
array_shift($argv);
if ($this->getoptConfig[self::CONFIG_DASHDASH]) {
$this->remainingArgs = array_merge($this->remainingArgs, $argv);
break;
}
}
if (substr($argv[0], 0, 2) == '--') {
$this->_parseLongOption($argv);
} elseif (substr($argv[0], 0, 1) == '-' && ('-' != $argv[0] || count($argv) > 1)) {
$this->_parseShortOptionCluster($argv);
} elseif ($this->getoptConfig[self::CONFIG_PARSEALL]) {
$this->remainingArgs[] = array_shift($argv);
} else {
/*
* We should put all other arguments in remainingArgs and stop parsing
* since CONFIG_PARSEALL is false.
*/
$this->remainingArgs = array_merge($this->remainingArgs, $argv);
break;
}
}
$this->parsed = true;
//go through parsed args and process callbacks
$this->triggerCallbacks();
return $this;
}
/**
* @param string $option The name of the property which, if present, will call the passed
* callback with the value of this parameter.
* @param callable $callback The callback that will be called for this option. The first
* parameter will be the value of getOption($option), the second
* parameter will be a reference to $this object. If the callback returns
* false then an Exception\RuntimeException will be thrown indicating that
* there is a parse issue with this option.
*
* @return self
*/
public function setOptionCallback($option, \Closure $callback)
{
$this->optionCallbacks[$option] = $callback;
return $this;
}
/**
* Triggers all the registered callbacks.
*/
protected function triggerCallbacks()
{
foreach ($this->optionCallbacks as $option => $callback) {
if (null === $this->getOption($option)) {
continue;
}
//make sure we've resolved the alias, if using one
if (isset($this->ruleMap[$option]) && $option = $this->ruleMap[$option]) {
if (false === $callback($this->getOption($option), $this)) {
throw new Exception\RuntimeException(
"The option $option is invalid. See usage.",
$this->getUsageMessage()
);
}
}
}
}
/**
* Parse command-line arguments for a single long option.
* A long option is preceded by a double '--' character.
* Long options may not be clustered.
*
* @param mixed &$argv
*/
// @codingStandardsIgnoreStart
protected function _parseLongOption(&$argv)
{
// @codingStandardsIgnoreEnd
$optionWithParam = ltrim(array_shift($argv), '-');
$l = explode('=', $optionWithParam, 2);
$flag = array_shift($l);
$param = array_shift($l);
if (isset($param)) {
array_unshift($argv, $param);
}
$this->_parseSingleOption($flag, $argv);
}
/**
* Parse command-line arguments for short options.
* Short options are those preceded by a single '-' character.
* Short options may be clustered.
*
* @param mixed &$argv
*/
// @codingStandardsIgnoreStart
protected function _parseShortOptionCluster(&$argv)
{
// @codingStandardsIgnoreEnd
$flagCluster = ltrim(array_shift($argv), '-');
foreach (str_split($flagCluster) as $flag) {
$this->_parseSingleOption($flag, $argv);
}
}
/**
* Parse command-line arguments for a single option.
*
* @param string $flag
* @param mixed $argv
* @throws Exception\ExceptionInterface
*/
// @codingStandardsIgnoreStart
protected function _parseSingleOption($flag, &$argv)
{
// @codingStandardsIgnoreEnd
if ($this->getoptConfig[self::CONFIG_IGNORECASE]) {
$flag = strtolower($flag);
}
// Check if this option is numeric one
if (preg_match('/^\d+$/', $flag)) {
return $this->_setNumericOptionValue($flag);
}
if (! isset($this->ruleMap[$flag])) {
// Don't throw Exception for flag-like param in case when freeform flags are allowed
if (! $this->getoptConfig[self::CONFIG_FREEFORM_FLAGS]) {
throw new Exception\RuntimeException(
"Option \"$flag\" is not recognized.",
$this->getUsageMessage()
);
}
// Magic methods in future will use this mark as real flag value
$this->ruleMap[$flag] = $flag;
$realFlag = $flag;
$this->rules[$realFlag] = [
'param' => 'optional',
'isFreeformFlag' => true
];
} else {
$realFlag = $this->ruleMap[$flag];
}
switch ($this->rules[$realFlag]['param']) {
case 'required':
if (count($argv) > 0) {
$param = array_shift($argv);
$this->_checkParameterType($realFlag, $param);
} else {
throw new Exception\RuntimeException(
"Option \"$flag\" requires a parameter.",
$this->getUsageMessage()
);
}
break;
case 'optional':
if (count($argv) > 0 && substr($argv[0], 0, 1) != '-') {
$param = array_shift($argv);
$this->_checkParameterType($realFlag, $param);
} else {
$param = true;
}
break;
default:
$param = true;
}
$this->_setSingleOptionValue($realFlag, $param);
}
/**
* Set given value as value of numeric option
*
* Throw runtime exception if this action is deny by configuration
* or no one numeric option handlers is defined
*
* @param int $value
* @throws Exception\RuntimeException
* @return void
*/
// @codingStandardsIgnoreStart
protected function _setNumericOptionValue($value)
{
// @codingStandardsIgnoreEnd
if (! $this->getoptConfig[self::CONFIG_NUMERIC_FLAGS]) {
throw new Exception\RuntimeException("Using of numeric flags are deny by configuration");
}
if (empty($this->getoptConfig['numericFlagsOption'])) {
throw new Exception\RuntimeException("Any option for handling numeric flags are specified");
}
return $this->_setSingleOptionValue($this->getoptConfig['numericFlagsOption'], $value);
}
/**
* Add relative to options' flag value
*
* If options list already has current flag as key
* and parser should follow cumulative params by configuration,
* we should to add new param to array, not to overwrite
*
* @param string $flag
* @param string $value
*/
// @codingStandardsIgnoreStart
protected function _setSingleOptionValue($flag, $value)
{
// @codingStandardsIgnoreEnd
if (true === $value && $this->getoptConfig[self::CONFIG_CUMULATIVE_FLAGS]) {
// For boolean values we have to create new flag, or increase number of flags' usage count
return $this->_setBooleanFlagValue($flag);
}
// Split multiple values, if necessary
// Filter empty values from splited array
$separator = $this->getoptConfig[self::CONFIG_PARAMETER_SEPARATOR];
if (is_string($value) && ! empty($separator) && is_string($separator) && substr_count($value, $separator)) {
$value = array_filter(explode($separator, $value));
}
if (! array_key_exists($flag, $this->options)) {
$this->options[$flag] = $value;
} elseif ($this->getoptConfig[self::CONFIG_CUMULATIVE_PARAMETERS]) {
$this->options[$flag] = (array) $this->options[$flag];
array_push($this->options[$flag], $value);
} else {
$this->options[$flag] = $value;
}
}
/**
* Set TRUE value to given flag, if this option does not exist yet
* In other case increase value to show count of flags' usage
*
* @param string $flag
*/
// @codingStandardsIgnoreStart
protected function _setBooleanFlagValue($flag)
{
// @codingStandardsIgnoreEnd
$this->options[$flag] = array_key_exists($flag, $this->options)
? (int) $this->options[$flag] + 1
: true;
}
/**
* Return true if the parameter is in a valid format for
* the option $flag.
* Throw an exception in most other cases.
*
* @param string $flag
* @param string $param
* @throws Exception\ExceptionInterface
* @return bool
*/
// @codingStandardsIgnoreStart
protected function _checkParameterType($flag, $param)
{
// @codingStandardsIgnoreEnd
$type = 'string';
if (isset($this->rules[$flag]['paramType'])) {
$type = $this->rules[$flag]['paramType'];
}
switch ($type) {
case 'word':
if (preg_match('/\W/', $param)) {
throw new Exception\RuntimeException(
"Option \"$flag\" requires a single-word parameter, but was given \"$param\".",
$this->getUsageMessage()
);
}
break;
case 'integer':
if (preg_match('/\D/', $param)) {
throw new Exception\RuntimeException(
"Option \"$flag\" requires an integer parameter, but was given \"$param\".",
$this->getUsageMessage()
);
}
break;
case 'string':
default:
break;
}
return true;
}
/**
* Define legal options using the gnu-style format.
*
* @param string $rules
*/
// @codingStandardsIgnoreStart
protected function _addRulesModeGnu($rules)
{
// @codingStandardsIgnoreEnd
$ruleArray = [];
/**
* Options may be single alphanumeric characters.
* Options may have a ':' which indicates a required string parameter.
* No long options or option aliases are supported in GNU style.
*/
preg_match_all('/([a-zA-Z0-9]:?)/', $rules, $ruleArray);
foreach ($ruleArray[1] as $rule) {
$r = [];
$flag = substr($rule, 0, 1);
if ($this->getoptConfig[self::CONFIG_IGNORECASE]) {
$flag = strtolower($flag);
}
$r['alias'][] = $flag;
if (substr($rule, 1, 1) == ':') {
$r['param'] = 'required';
$r['paramType'] = 'string';
} else {
$r['param'] = 'none';
}
$this->rules[$flag] = $r;
$this->ruleMap[$flag] = $flag;
}
}
/**
* Define legal options using the Zend-style format.
*
* @param array $rules
* @throws Exception\ExceptionInterface
*/
// @codingStandardsIgnoreStart
protected function _addRulesModeZend($rules)
{
// @codingStandardsIgnoreEnd
foreach ($rules as $ruleCode => $helpMessage) {
// this may have to translate the long parm type if there
// are any complaints that =string will not work (even though that use
// case is not documented)
if (in_array(substr($ruleCode, -2, 1), ['-', '='])) {
$flagList = substr($ruleCode, 0, -2);
$delimiter = substr($ruleCode, -2, 1);
$paramType = substr($ruleCode, -1);
} else {
$flagList = $ruleCode;
$delimiter = $paramType = null;
}
if ($this->getoptConfig[self::CONFIG_IGNORECASE]) {
$flagList = strtolower($flagList);
}
$flags = explode('|', $flagList);
$rule = [];
$mainFlag = $flags[0];
foreach ($flags as $flag) {
if (empty($flag)) {
throw new Exception\InvalidArgumentException("Blank flag not allowed in rule \"$ruleCode\".");
}
if (strlen($flag) == 1) {
if (isset($this->ruleMap[$flag])) {
throw new Exception\InvalidArgumentException(
"Option \"-$flag\" is being defined more than once."
);
}
$this->ruleMap[$flag] = $mainFlag;
$rule['alias'][] = $flag;
} else {
if (isset($this->rules[$flag]) || isset($this->ruleMap[$flag])) {
throw new Exception\InvalidArgumentException(
"Option \"--$flag\" is being defined more than once."
);
}
$this->ruleMap[$flag] = $mainFlag;
$rule['alias'][] = $flag;
}
}
if (isset($delimiter)) {
switch ($delimiter) {
case self::PARAM_REQUIRED:
$rule['param'] = 'required';
break;
case self::PARAM_OPTIONAL:
default:
$rule['param'] = 'optional';
}
switch (substr($paramType, 0, 1)) {
case self::TYPE_WORD:
$rule['paramType'] = 'word';
break;
case self::TYPE_INTEGER:
$rule['paramType'] = 'integer';
break;
case self::TYPE_NUMERIC_FLAG:
$rule['paramType'] = 'numericFlag';
$this->getoptConfig['numericFlagsOption'] = $mainFlag;
break;
case self::TYPE_STRING:
default:
$rule['paramType'] = 'string';
}
} else {
$rule['param'] = 'none';
}
$rule['help'] = $helpMessage;
$this->rules[$mainFlag] = $rule;
}
}
}