forked from dlang/phobos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetopt.d
1860 lines (1605 loc) · 54.9 KB
/
getopt.d
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
// Written in the D programming language.
/**
Processing of command line options.
The getopt module implements a `getopt` function, which adheres to
the POSIX syntax for command line options. GNU extensions are
supported in the form of long options introduced by a double dash
("--"). Support for bundling of command line options, as was the case
with the more traditional single-letter approach, is provided but not
enabled by default.
Copyright: Copyright Andrei Alexandrescu 2008 - 2015.
License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(HTTP erdani.org, Andrei Alexandrescu)
Credits: This module and its documentation are inspired by Perl's $(HTTP
perldoc.perl.org/Getopt/Long.html, Getopt::Long) module. The syntax of
D's `getopt` is simpler than its Perl counterpart because $(D
getopt) infers the expected parameter types from the static types of
the passed-in pointers.
Source: $(PHOBOSSRC std/getopt.d)
*/
/*
Copyright Andrei Alexandrescu 2008 - 2015.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
module std.getopt;
import std.exception; // basicExceptionCtors
import std.traits;
/**
Thrown on one of the following conditions:
$(UL
$(LI An unrecognized command-line argument is passed, and
`std.getopt.config.passThrough` was not present.)
$(LI A command-line option was not found, and
`std.getopt.config.required` was present.)
)
*/
class GetOptException : Exception
{
mixin basicExceptionCtors;
}
static assert(is(typeof(new GetOptException("message"))));
static assert(is(typeof(new GetOptException("message", Exception.init))));
/**
Parse and remove command line options from a string array.
Synopsis:
---------
import std.getopt;
string data = "file.dat";
int length = 24;
bool verbose;
enum Color { no, yes };
Color color;
void main(string[] args)
{
auto helpInformation = getopt(
args,
"length", &length, // numeric
"file", &data, // string
"verbose", &verbose, // flag
"color", "Information about this color", &color); // enum
...
if (helpInformation.helpWanted)
{
defaultGetoptPrinter("Some information about the program.",
helpInformation.options);
}
}
---------
The `getopt` function takes a reference to the command line
(as received by `main`) as its first argument, and an
unbounded number of pairs of strings and pointers. Each string is an
option meant to "fill" the value referenced by the pointer to its
right (the "bound" pointer). The option string in the call to
`getopt` should not start with a dash.
In all cases, the command-line options that were parsed and used by
`getopt` are removed from `args`. Whatever in the
arguments did not look like an option is left in `args` for
further processing by the program. Values that were unaffected by the
options are not touched, so a common idiom is to initialize options
to their defaults and then invoke `getopt`. If a
command-line argument is recognized as an option with a parameter and
the parameter cannot be parsed properly (e.g., a number is expected
but not present), a `ConvException` exception is thrown.
If `std.getopt.config.passThrough` was not passed to `getopt`
and an unrecognized command-line argument is found, a `GetOptException`
is thrown.
Depending on the type of the pointer being bound, `getopt`
recognizes the following kinds of options:
$(OL
$(LI $(I Boolean options). A lone argument sets the option to `true`.
Additionally $(B true) or $(B false) can be set within the option separated
with an "=" sign:
---------
bool verbose = false, debugging = true;
getopt(args, "verbose", &verbose, "debug", &debugging);
---------
To set `verbose` to `true`, invoke the program with either
`--verbose` or `--verbose=true`.
To set `debugging` to `false`, invoke the program with
`--debugging=false`.
)
$(LI $(I Numeric options.) If an option is bound to a numeric type, a
number is expected as the next option, or right within the option separated
with an "=" sign:
---------
uint timeout;
getopt(args, "timeout", &timeout);
---------
To set `timeout` to `5`, invoke the program with either
`--timeout=5` or $(D --timeout 5).
)
$(LI $(I Incremental options.) If an option name has a "+" suffix and is
bound to a numeric type, then the option's value tracks the number of times
the option occurred on the command line:
---------
uint paranoid;
getopt(args, "paranoid+", ¶noid);
---------
Invoking the program with "--paranoid --paranoid --paranoid" will set $(D
paranoid) to 3. Note that an incremental option never expects a parameter,
e.g., in the command line "--paranoid 42 --paranoid", the "42" does not set
`paranoid` to 42; instead, `paranoid` is set to 2 and "42" is not
considered as part of the normal program arguments.
)
$(LI $(I Enum options.) If an option is bound to an enum, an enum symbol as
a string is expected as the next option, or right within the option
separated with an "=" sign:
---------
enum Color { no, yes };
Color color; // default initialized to Color.no
getopt(args, "color", &color);
---------
To set `color` to `Color.yes`, invoke the program with either
`--color=yes` or $(D --color yes).
)
$(LI $(I String options.) If an option is bound to a string, a string is
expected as the next option, or right within the option separated with an
"=" sign:
---------
string outputFile;
getopt(args, "output", &outputFile);
---------
Invoking the program with "--output=myfile.txt" or "--output myfile.txt"
will set `outputFile` to "myfile.txt". If you want to pass a string
containing spaces, you need to use the quoting that is appropriate to your
shell, e.g. --output='my file.txt'.
)
$(LI $(I Array options.) If an option is bound to an array, a new element
is appended to the array each time the option occurs:
---------
string[] outputFiles;
getopt(args, "output", &outputFiles);
---------
Invoking the program with "--output=myfile.txt --output=yourfile.txt" or
"--output myfile.txt --output yourfile.txt" will set `outputFiles` to
$(D [ "myfile.txt", "yourfile.txt" ]).
Alternatively you can set $(LREF arraySep) as the element separator:
---------
string[] outputFiles;
arraySep = ","; // defaults to "", separation by whitespace
getopt(args, "output", &outputFiles);
---------
With the above code you can invoke the program with
"--output=myfile.txt,yourfile.txt", or "--output myfile.txt,yourfile.txt".)
$(LI $(I Hash options.) If an option is bound to an associative array, a
string of the form "name=value" is expected as the next option, or right
within the option separated with an "=" sign:
---------
double[string] tuningParms;
getopt(args, "tune", &tuningParms);
---------
Invoking the program with e.g. "--tune=alpha=0.5 --tune beta=0.6" will set
`tuningParms` to [ "alpha" : 0.5, "beta" : 0.6 ].
Alternatively you can set $(LREF arraySep) as the element separator:
---------
double[string] tuningParms;
arraySep = ","; // defaults to "", separation by whitespace
getopt(args, "tune", &tuningParms);
---------
With the above code you can invoke the program with
"--tune=alpha=0.5,beta=0.6", or "--tune alpha=0.5,beta=0.6".
In general, the keys and values can be of any parsable types.
)
$(LI $(I Callback options.) An option can be bound to a function or
delegate with the signature $(D void function()), $(D void function(string
option)), $(D void function(string option, string value)), or their
delegate equivalents.
$(UL
$(LI If the callback doesn't take any arguments, the callback is
invoked whenever the option is seen.
)
$(LI If the callback takes one string argument, the option string
(without the leading dash(es)) is passed to the callback. After that,
the option string is considered handled and removed from the options
array.
---------
void main(string[] args)
{
uint verbosityLevel = 1;
void myHandler(string option)
{
if (option == "quiet")
{
verbosityLevel = 0;
}
else
{
assert(option == "verbose");
verbosityLevel = 2;
}
}
getopt(args, "verbose", &myHandler, "quiet", &myHandler);
}
---------
)
$(LI If the callback takes two string arguments, the option string is
handled as an option with one argument, and parsed accordingly. The
option and its value are passed to the callback. After that, whatever
was passed to the callback is considered handled and removed from the
list.
---------
int main(string[] args)
{
uint verbosityLevel = 1;
bool handlerFailed = false;
void myHandler(string option, string value)
{
switch (value)
{
case "quiet": verbosityLevel = 0; break;
case "verbose": verbosityLevel = 2; break;
case "shouting": verbosityLevel = verbosityLevel.max; break;
default :
stderr.writeln("Unknown verbosity level ", value);
handlerFailed = true;
break;
}
}
getopt(args, "verbosity", &myHandler);
return handlerFailed ? 1 : 0;
}
---------
)
))
)
Options_with_multiple_names:
Sometimes option synonyms are desirable, e.g. "--verbose",
"--loquacious", and "--garrulous" should have the same effect. Such
alternate option names can be included in the option specification,
using "|" as a separator:
---------
bool verbose;
getopt(args, "verbose|loquacious|garrulous", &verbose);
---------
Case:
By default options are case-insensitive. You can change that behavior
by passing `getopt` the `caseSensitive` directive like this:
---------
bool foo, bar;
getopt(args,
std.getopt.config.caseSensitive,
"foo", &foo,
"bar", &bar);
---------
In the example above, "--foo" and "--bar" are recognized, but "--Foo", "--Bar",
"--FOo", "--bAr", etc. are rejected.
The directive is active until the end of `getopt`, or until the
converse directive `caseInsensitive` is encountered:
---------
bool foo, bar;
getopt(args,
std.getopt.config.caseSensitive,
"foo", &foo,
std.getopt.config.caseInsensitive,
"bar", &bar);
---------
The option "--Foo" is rejected due to $(D
std.getopt.config.caseSensitive), but not "--Bar", "--bAr"
etc. because the directive $(D
std.getopt.config.caseInsensitive) turned sensitivity off before
option "bar" was parsed.
Short_versus_long_options:
Traditionally, programs accepted single-letter options preceded by
only one dash (e.g. `-t`). `getopt` accepts such parameters
seamlessly. When used with a double-dash (e.g. `--t`), a
single-letter option behaves the same as a multi-letter option. When
used with a single dash, a single-letter option is accepted. If the
option has a parameter, that must be "stuck" to the option without
any intervening space or "=":
---------
uint timeout;
getopt(args, "timeout|t", &timeout);
---------
To set `timeout` to `5`, use either of the following: `--timeout=5`,
$(D --timeout 5), `--t=5`, $(D --t 5), or `-t5`. Forms such as $(D -t 5)
and `-timeout=5` will be not accepted.
For more details about short options, refer also to the next section.
Bundling:
Single-letter options can be bundled together, i.e. "-abc" is the same as
$(D "-a -b -c"). By default, this option is turned off. You can turn it on
with the `std.getopt.config.bundling` directive:
---------
bool foo, bar;
getopt(args,
std.getopt.config.bundling,
"foo|f", &foo,
"bar|b", &bar);
---------
In case you want to only enable bundling for some of the parameters,
bundling can be turned off with `std.getopt.config.noBundling`.
Required:
An option can be marked as required. If that option is not present in the
arguments an exception will be thrown.
---------
bool foo, bar;
getopt(args,
std.getopt.config.required,
"foo|f", &foo,
"bar|b", &bar);
---------
Only the option directly following `std.getopt.config.required` is
required.
Passing_unrecognized_options_through:
If an application needs to do its own processing of whichever arguments
`getopt` did not understand, it can pass the
`std.getopt.config.passThrough` directive to `getopt`:
---------
bool foo, bar;
getopt(args,
std.getopt.config.passThrough,
"foo", &foo,
"bar", &bar);
---------
An unrecognized option such as "--baz" will be found untouched in
`args` after `getopt` returns.
Help_Information_Generation:
If an option string is followed by another string, this string serves as a
description for this option. The `getopt` function returns a struct of type
`GetoptResult`. This return value contains information about all passed options
as well a $(D bool GetoptResult.helpWanted) flag indicating whether information
about these options was requested. The `getopt` function always adds an option for
`--help|-h` to set the flag if the option is seen on the command line.
Options_Terminator:
A lone double-dash terminates `getopt` gathering. It is used to
separate program options from other parameters (e.g., options to be passed
to another program). Invoking the example above with $(D "--foo -- --bar")
parses foo but leaves "--bar" in `args`. The double-dash itself is
removed from the argument array unless the `std.getopt.config.keepEndOfOptions`
directive is given.
*/
GetoptResult getopt(T...)(ref string[] args, T opts)
{
import std.exception : enforce;
enforce(args.length,
"Invalid arguments string passed: program name missing");
configuration cfg;
GetoptResult rslt;
GetOptException excep;
void[][string] visitedLongOpts, visitedShortOpts;
getoptImpl(args, cfg, rslt, excep, visitedLongOpts, visitedShortOpts, opts);
if (!rslt.helpWanted && excep !is null)
{
throw excep;
}
return rslt;
}
///
@system unittest
{
auto args = ["prog", "--foo", "-b"];
bool foo;
bool bar;
auto rslt = getopt(args, "foo|f", "Some information about foo.", &foo, "bar|b",
"Some help message about bar.", &bar);
if (rslt.helpWanted)
{
defaultGetoptPrinter("Some information about the program.",
rslt.options);
}
}
/**
Configuration options for `getopt`.
You can pass them to `getopt` in any position, except in between an option
string and its bound pointer.
*/
enum config {
/// Turn case sensitivity on
caseSensitive,
/// Turn case sensitivity off (default)
caseInsensitive,
/// Turn bundling on
bundling,
/// Turn bundling off (default)
noBundling,
/// Pass unrecognized arguments through
passThrough,
/// Signal unrecognized arguments as errors (default)
noPassThrough,
/// Stop at first argument that does not look like an option
stopOnFirstNonOption,
/// Do not erase the endOfOptions separator from args
keepEndOfOptions,
/// Make the next option a required option
required
}
/** The result of the `getopt` function.
`helpWanted` is set if the option `--help` or `-h` was passed to the option parser.
*/
struct GetoptResult {
bool helpWanted; /// Flag indicating if help was requested
Option[] options; /// All possible options
}
/** Information about an option.
*/
struct Option {
string optShort; /// The short symbol for this option
string optLong; /// The long symbol for this option
string help; /// The description of this option
bool required; /// If a option is required, not passing it will result in an error
}
private pure Option splitAndGet(string opt) @trusted nothrow
{
import std.array : split;
auto sp = split(opt, "|");
Option ret;
if (sp.length > 1)
{
ret.optShort = "-" ~ (sp[0].length < sp[1].length ?
sp[0] : sp[1]);
ret.optLong = "--" ~ (sp[0].length > sp[1].length ?
sp[0] : sp[1]);
}
else if (sp[0].length > 1)
{
ret.optLong = "--" ~ sp[0];
}
else
{
ret.optShort = "-" ~ sp[0];
}
return ret;
}
@safe unittest
{
auto oshort = splitAndGet("f");
assert(oshort.optShort == "-f");
assert(oshort.optLong == "");
auto olong = splitAndGet("foo");
assert(olong.optShort == "");
assert(olong.optLong == "--foo");
auto oshortlong = splitAndGet("f|foo");
assert(oshortlong.optShort == "-f");
assert(oshortlong.optLong == "--foo");
auto olongshort = splitAndGet("foo|f");
assert(olongshort.optShort == "-f");
assert(olongshort.optLong == "--foo");
}
/*
This function verifies that the variadic parameters passed in getOpt
follow this pattern:
[config override], option, [description], receiver,
- config override: a config value, optional
- option: a string or a char
- description: a string, optional
- receiver: a pointer or a callable
*/
private template optionValidator(A...)
{
import std.format : format;
enum fmt = "getopt validator: %s (at position %d)";
enum isReceiver(T) = isPointer!T || (is(T == function)) || (is(T == delegate));
enum isOptionStr(T) = isSomeString!T || isSomeChar!T;
auto validator()
{
string msg;
static if (A.length > 0)
{
static if (isReceiver!(A[0]))
{
msg = format(fmt, "first argument must be a string or a config", 0);
}
else static if (!isOptionStr!(A[0]) && !is(A[0] == config))
{
msg = format(fmt, "invalid argument type: " ~ A[0].stringof, 0);
}
else
{
static foreach (i; 1 .. A.length)
{
static if (!isReceiver!(A[i]) && !isOptionStr!(A[i]) &&
!(is(A[i] == config)))
{
msg = format(fmt, "invalid argument type: " ~ A[i].stringof, i);
goto end;
}
else static if (isReceiver!(A[i]) && !isOptionStr!(A[i-1]))
{
msg = format(fmt, "a receiver can not be preceeded by a receiver", i);
goto end;
}
else static if (i > 1 && isOptionStr!(A[i]) && isOptionStr!(A[i-1])
&& isSomeString!(A[i-2]))
{
msg = format(fmt, "a string can not be preceeded by two strings", i);
goto end;
}
}
}
static if (!isReceiver!(A[$-1]) && !is(A[$-1] == config))
{
msg = format(fmt, "last argument must be a receiver or a config",
A.length -1);
}
}
end:
return msg;
}
enum message = validator;
alias optionValidator = message;
}
@safe pure unittest
{
alias P = void*;
alias S = string;
alias A = char;
alias C = config;
alias F = void function();
static assert(optionValidator!(S,P) == "");
static assert(optionValidator!(S,F) == "");
static assert(optionValidator!(A,P) == "");
static assert(optionValidator!(A,F) == "");
static assert(optionValidator!(C,S,P) == "");
static assert(optionValidator!(C,S,F) == "");
static assert(optionValidator!(C,A,P) == "");
static assert(optionValidator!(C,A,F) == "");
static assert(optionValidator!(C,S,S,P) == "");
static assert(optionValidator!(C,S,S,F) == "");
static assert(optionValidator!(C,A,S,P) == "");
static assert(optionValidator!(C,A,S,F) == "");
static assert(optionValidator!(C,S,S,P) == "");
static assert(optionValidator!(C,S,S,P,C,S,F) == "");
static assert(optionValidator!(C,S,P,C,S,S,F) == "");
static assert(optionValidator!(C,A,P,A,S,F) == "");
static assert(optionValidator!(C,A,P,C,A,S,F) == "");
static assert(optionValidator!(P,S,S) != "");
static assert(optionValidator!(P,P,S) != "");
static assert(optionValidator!(P,F,S,P) != "");
static assert(optionValidator!(C,C,S) != "");
static assert(optionValidator!(S,S,P,S,S,P,S) != "");
static assert(optionValidator!(S,S,P,P) != "");
static assert(optionValidator!(S,S,S,P) != "");
static assert(optionValidator!(C,A,S,P,C,A,F) == "");
static assert(optionValidator!(C,A,P,C,A,S,F) == "");
}
@system unittest // bugzilla 15914
{
bool opt;
string[] args = ["program", "-a"];
getopt(args, config.passThrough, 'a', &opt);
assert(opt);
opt = false;
args = ["program", "-a"];
getopt(args, 'a', &opt);
assert(opt);
opt = false;
args = ["program", "-a"];
getopt(args, 'a', "help string", &opt);
assert(opt);
opt = false;
args = ["program", "-a"];
getopt(args, config.caseSensitive, 'a', "help string", &opt);
assert(opt);
assertThrown(getopt(args, "", "forgot to put a string", &opt));
}
private void getoptImpl(T...)(ref string[] args, ref configuration cfg,
ref GetoptResult rslt, ref GetOptException excep,
void[][string] visitedLongOpts, void[][string] visitedShortOpts, T opts)
{
enum validationMessage = optionValidator!T;
static assert(validationMessage == "", validationMessage);
import std.algorithm.mutation : remove;
import std.conv : to;
static if (opts.length)
{
static if (is(typeof(opts[0]) : config))
{
// it's a configuration flag, act on it
setConfig(cfg, opts[0]);
return getoptImpl(args, cfg, rslt, excep, visitedLongOpts,
visitedShortOpts, opts[1 .. $]);
}
else
{
// it's an option string
auto option = to!string(opts[0]);
if (option.length == 0)
{
excep = new GetOptException("An option name may not be an empty string", excep);
return;
}
Option optionHelp = splitAndGet(option);
optionHelp.required = cfg.required;
if (optionHelp.optLong.length)
{
assert(optionHelp.optLong !in visitedLongOpts,
"Long option " ~ optionHelp.optLong ~ " is multiply defined");
visitedLongOpts[optionHelp.optLong] = [];
}
if (optionHelp.optShort.length)
{
assert(optionHelp.optShort !in visitedShortOpts,
"Short option " ~ optionHelp.optShort
~ " is multiply defined");
visitedShortOpts[optionHelp.optShort] = [];
}
static if (is(typeof(opts[1]) : string))
{
auto receiver = opts[2];
optionHelp.help = opts[1];
immutable lowSliceIdx = 3;
}
else
{
auto receiver = opts[1];
immutable lowSliceIdx = 2;
}
rslt.options ~= optionHelp;
bool incremental;
// Handle options of the form --blah+
if (option.length && option[$ - 1] == autoIncrementChar)
{
option = option[0 .. $ - 1];
incremental = true;
}
bool optWasHandled = handleOption(option, receiver, args, cfg, incremental);
if (cfg.required && !optWasHandled)
{
excep = new GetOptException("Required option "
~ option ~ " was not supplied", excep);
}
cfg.required = false;
getoptImpl(args, cfg, rslt, excep, visitedLongOpts,
visitedShortOpts, opts[lowSliceIdx .. $]);
}
}
else
{
// no more options to look for, potentially some arguments left
for (size_t i = 1; i < args.length;)
{
auto a = args[i];
if (endOfOptions.length && a == endOfOptions)
{
// Consume the "--" if keepEndOfOptions is not specified
if (!cfg.keepEndOfOptions)
args = args.remove(i);
break;
}
if (!a.length || a[0] != optionChar)
{
// not an option
if (cfg.stopOnFirstNonOption) break;
++i;
continue;
}
if (a == "--help" || a == "-h")
{
rslt.helpWanted = true;
args = args.remove(i);
continue;
}
if (!cfg.passThrough)
{
throw new GetOptException("Unrecognized option "~a, excep);
}
++i;
}
Option helpOpt;
helpOpt.optShort = "-h";
helpOpt.optLong = "--help";
helpOpt.help = "This help information.";
rslt.options ~= helpOpt;
}
}
private bool handleOption(R)(string option, R receiver, ref string[] args,
ref configuration cfg, bool incremental)
{
import std.algorithm.iteration : map, splitter;
import std.ascii : isAlpha;
import std.conv : text, to;
// Scan arguments looking for a match for this option
bool ret = false;
for (size_t i = 1; i < args.length; )
{
auto a = args[i];
if (endOfOptions.length && a == endOfOptions) break;
if (cfg.stopOnFirstNonOption && (!a.length || a[0] != optionChar))
{
// first non-option is end of options
break;
}
// Unbundle bundled arguments if necessary
if (cfg.bundling && a.length > 2 && a[0] == optionChar &&
a[1] != optionChar)
{
string[] expanded;
foreach (j, dchar c; a[1 .. $])
{
// If the character is not alpha, stop right there. This allows
// e.g. -j100 to work as "pass argument 100 to option -j".
if (!isAlpha(c))
{
if (c == '=')
j++;
expanded ~= a[j + 1 .. $];
break;
}
expanded ~= text(optionChar, c);
}
args = args[0 .. i] ~ expanded ~ args[i + 1 .. $];
continue;
}
string val;
if (!optMatch(a, option, val, cfg))
{
++i;
continue;
}
ret = true;
// found it
// from here on, commit to eat args[i]
// (and potentially args[i + 1] too, but that comes later)
args = args[0 .. i] ~ args[i + 1 .. $];
static if (is(typeof(*receiver) == bool))
{
if (val.length)
{
// parse '--b=true/false'
*receiver = to!(typeof(*receiver))(val);
}
else
{
// no argument means set it to true
*receiver = true;
}
}
else
{
import std.exception : enforce;
// non-boolean option, which might include an argument
//enum isCallbackWithOneParameter = is(typeof(receiver("")) : void);
enum isCallbackWithLessThanTwoParameters =
(is(typeof(receiver) == delegate) || is(typeof(*receiver) == function)) &&
!is(typeof(receiver("", "")));
if (!isCallbackWithLessThanTwoParameters && !(val.length) && !incremental)
{
// Eat the next argument too. Check to make sure there's one
// to be eaten first, though.
enforce(i < args.length,
"Missing value for argument " ~ a ~ ".");
val = args[i];
args = args[0 .. i] ~ args[i + 1 .. $];
}
static if (is(typeof(*receiver) == enum))
{
*receiver = to!(typeof(*receiver))(val);
}
else static if (is(typeof(*receiver) : real))
{
// numeric receiver
if (incremental) ++*receiver;
else *receiver = to!(typeof(*receiver))(val);
}
else static if (is(typeof(*receiver) == string))
{
// string receiver
*receiver = to!(typeof(*receiver))(val);
}
else static if (is(typeof(receiver) == delegate) ||
is(typeof(*receiver) == function))
{
static if (is(typeof(receiver("", "")) : void))
{
// option with argument
receiver(option, val);
}
else static if (is(typeof(receiver("")) : void))
{
static assert(is(typeof(receiver("")) : void));
// boolean-style receiver
receiver(option);
}
else
{
static assert(is(typeof(receiver()) : void));
// boolean-style receiver without argument
receiver();
}
}
else static if (isArray!(typeof(*receiver)))
{
// array receiver
import std.range : ElementEncodingType;
alias E = ElementEncodingType!(typeof(*receiver));
if (arraySep == "")
{
*receiver ~= to!E(val);
}
else
{
foreach (elem; val.splitter(arraySep).map!(a => to!E(a))())
*receiver ~= elem;
}
}
else static if (isAssociativeArray!(typeof(*receiver)))
{
// hash receiver
alias K = typeof(receiver.keys[0]);
alias V = typeof(receiver.values[0]);
import std.range : only;
import std.string : indexOf;
import std.typecons : Tuple, tuple;
static Tuple!(K, V) getter(string input)
{
auto j = indexOf(input, assignChar);
enforce!GetOptException(j != -1, "Could not find '"
~ to!string(assignChar) ~ "' in argument '" ~ input ~ "'.");
auto key = input[0 .. j];
auto value = input[j + 1 .. $];
return tuple(to!K(key), to!V(value));
}
static void setHash(Range)(R receiver, Range range)
{
foreach (k, v; range.map!getter)
(*receiver)[k] = v;
}
if (arraySep == "")
setHash(receiver, val.only);
else
setHash(receiver, val.splitter(arraySep));
}
else
static assert(false, "getopt does not know how to handle the type " ~ typeof(receiver).stringof);
}
}
return ret;
}
// 17574
@system unittest
{
import std.algorithm.searching : startsWith;
try
{
string[string] mapping;
immutable as = arraySep;
arraySep = ",";
scope (exit)
arraySep = as;
string[] args = ["testProgram", "-m", "a=b,c=\"d,e,f\""];
args.getopt("m", &mapping);
assert(false, "Exception not thrown");
}
catch (GetOptException goe)
assert(goe.msg.startsWith("Could not find"));
}
// 5316 - arrays with arraySep
@system unittest