blob: 66a96eefbae561a096436b9aa1cccfba4f46a78a [file] [log] [blame]
Bill Wendling26f1f002012-08-08 08:21:24 +00001==============================
2CommandLine 2.0 Library Manual
3==============================
4
Tobias Grosserfe9b1612013-05-02 14:59:52 +00005.. contents::
6 :local:
7
Bill Wendling26f1f002012-08-08 08:21:24 +00008Introduction
9============
10
11This document describes the CommandLine argument processing library. It will
12show you how to use it, and what it can do. The CommandLine library uses a
13declarative approach to specifying the command line options that your program
14takes. By default, these options declarations implicitly hold the value parsed
15for the option declared (of course this `can be changed`_).
16
17Although there are a **lot** of command line argument parsing libraries out
18there in many different languages, none of them fit well with what I needed. By
19looking at the features and problems of other libraries, I designed the
20CommandLine library to have the following features:
21
22#. Speed: The CommandLine library is very quick and uses little resources. The
23 parsing time of the library is directly proportional to the number of
24 arguments parsed, not the number of options recognized. Additionally,
25 command line argument values are captured transparently into user defined
26 global variables, which can be accessed like any other variable (and with the
27 same performance).
28
29#. Type Safe: As a user of CommandLine, you don't have to worry about
30 remembering the type of arguments that you want (is it an int? a string? a
31 bool? an enum?) and keep casting it around. Not only does this help prevent
32 error prone constructs, it also leads to dramatically cleaner source code.
33
34#. No subclasses required: To use CommandLine, you instantiate variables that
35 correspond to the arguments that you would like to capture, you don't
36 subclass a parser. This means that you don't have to write **any**
37 boilerplate code.
38
39#. Globally accessible: Libraries can specify command line arguments that are
40 automatically enabled in any tool that links to the library. This is
41 possible because the application doesn't have to keep a list of arguments to
42 pass to the parser. This also makes supporting `dynamically loaded options`_
43 trivial.
44
45#. Cleaner: CommandLine supports enum and other types directly, meaning that
46 there is less error and more security built into the library. You don't have
47 to worry about whether your integral command line argument accidentally got
48 assigned a value that is not valid for your enum type.
49
50#. Powerful: The CommandLine library supports many different types of arguments,
51 from simple `boolean flags`_ to `scalars arguments`_ (`strings`_,
52 `integers`_, `enums`_, `doubles`_), to `lists of arguments`_. This is
53 possible because CommandLine is...
54
55#. Extensible: It is very simple to add a new argument type to CommandLine.
56 Simply specify the parser that you want to use with the command line option
57 when you declare it. `Custom parsers`_ are no problem.
58
59#. Labor Saving: The CommandLine library cuts down on the amount of grunt work
60 that you, the user, have to do. For example, it automatically provides a
61 ``-help`` option that shows the available command line options for your tool.
62 Additionally, it does most of the basic correctness checking for you.
63
64#. Capable: The CommandLine library can handle lots of different forms of
65 options often found in real programs. For example, `positional`_ arguments,
66 ``ls`` style `grouping`_ options (to allow processing '``ls -lad``'
67 naturally), ``ld`` style `prefix`_ options (to parse '``-lmalloc
68 -L/usr/lib``'), and interpreter style options.
69
70This document will hopefully let you jump in and start using CommandLine in your
71utility quickly and painlessly. Additionally it should be a simple reference
Chris Lattner045a73e2013-01-10 21:24:04 +000072manual to figure out how stuff works.
Bill Wendling26f1f002012-08-08 08:21:24 +000073
74Quick Start Guide
75=================
76
77This section of the manual runs through a simple CommandLine'ification of a
78basic compiler tool. This is intended to show you how to jump into using the
79CommandLine library in your own program, and show you some of the cool things it
80can do.
81
82To start out, you need to include the CommandLine header file into your program:
83
84.. code-block:: c++
85
86 #include "llvm/Support/CommandLine.h"
87
88Additionally, you need to add this as the first line of your main program:
89
90.. code-block:: c++
91
92 int main(int argc, char **argv) {
93 cl::ParseCommandLineOptions(argc, argv);
94 ...
95 }
96
97... which actually parses the arguments and fills in the variable declarations.
98
99Now that you are ready to support command line arguments, we need to tell the
100system which ones we want, and what type of arguments they are. The CommandLine
101library uses a declarative syntax to model command line arguments with the
102global variable declarations that capture the parsed values. This means that
103for every command line option that you would like to support, there should be a
104global variable declaration to capture the result. For example, in a compiler,
105we would like to support the Unix-standard '``-o <filename>``' option to specify
106where to put the output. With the CommandLine library, this is represented like
107this:
108
109.. _scalars arguments:
110.. _here:
111
112.. code-block:: c++
113
114 cl::opt<string> OutputFilename("o", cl::desc("Specify output filename"), cl::value_desc("filename"));
115
116This declares a global variable "``OutputFilename``" that is used to capture the
117result of the "``o``" argument (first parameter). We specify that this is a
118simple scalar option by using the "``cl::opt``" template (as opposed to the
119"``cl::list``" template), and tell the CommandLine library that the data
120type that we are parsing is a string.
121
122The second and third parameters (which are optional) are used to specify what to
123output for the "``-help``" option. In this case, we get a line that looks like
124this:
125
126::
127
128 USAGE: compiler [options]
129
130 OPTIONS:
131 -help - display available options (-help-hidden for more)
132 -o <filename> - Specify output filename
133
134Because we specified that the command line option should parse using the
135``string`` data type, the variable declared is automatically usable as a real
136string in all contexts that a normal C++ string object may be used. For
137example:
138
139.. code-block:: c++
140
141 ...
142 std::ofstream Output(OutputFilename.c_str());
143 if (Output.good()) ...
144 ...
145
146There are many different options that you can use to customize the command line
147option handling library, but the above example shows the general interface to
148these options. The options can be specified in any order, and are specified
149with helper functions like `cl::desc(...)`_, so there are no positional
150dependencies to remember. The available options are discussed in detail in the
151`Reference Guide`_.
152
153Continuing the example, we would like to have our compiler take an input
154filename as well as an output filename, but we do not want the input filename to
155be specified with a hyphen (ie, not ``-filename.c``). To support this style of
156argument, the CommandLine library allows for `positional`_ arguments to be
157specified for the program. These positional arguments are filled with command
158line parameters that are not in option form. We use this feature like this:
159
160.. code-block:: c++
161
162
163 cl::opt<string> InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
164
165This declaration indicates that the first positional argument should be treated
166as the input filename. Here we use the `cl::init`_ option to specify an initial
167value for the command line option, which is used if the option is not specified
168(if you do not specify a `cl::init`_ modifier for an option, then the default
169constructor for the data type is used to initialize the value). Command line
170options default to being optional, so if we would like to require that the user
171always specify an input filename, we would add the `cl::Required`_ flag, and we
172could eliminate the `cl::init`_ modifier, like this:
173
174.. code-block:: c++
175
176 cl::opt<string> InputFilename(cl::Positional, cl::desc("<input file>"), cl::Required);
177
178Again, the CommandLine library does not require the options to be specified in
179any particular order, so the above declaration is equivalent to:
180
181.. code-block:: c++
182
183 cl::opt<string> InputFilename(cl::Positional, cl::Required, cl::desc("<input file>"));
184
185By simply adding the `cl::Required`_ flag, the CommandLine library will
186automatically issue an error if the argument is not specified, which shifts all
187of the command line option verification code out of your application into the
188library. This is just one example of how using flags can alter the default
189behaviour of the library, on a per-option basis. By adding one of the
190declarations above, the ``-help`` option synopsis is now extended to:
191
192::
193
194 USAGE: compiler [options] <input file>
195
196 OPTIONS:
197 -help - display available options (-help-hidden for more)
198 -o <filename> - Specify output filename
199
200... indicating that an input filename is expected.
201
202Boolean Arguments
203-----------------
204
205In addition to input and output filenames, we would like the compiler example to
206support three boolean flags: "``-f``" to force writing binary output to a
207terminal, "``--quiet``" to enable quiet mode, and "``-q``" for backwards
208compatibility with some of our users. We can support these by declaring options
209of boolean type like this:
210
211.. code-block:: c++
212
213 cl::opt<bool> Force ("f", cl::desc("Enable binary output on terminals"));
214 cl::opt<bool> Quiet ("quiet", cl::desc("Don't print informational messages"));
215 cl::opt<bool> Quiet2("q", cl::desc("Don't print informational messages"), cl::Hidden);
216
217This does what you would expect: it declares three boolean variables
218("``Force``", "``Quiet``", and "``Quiet2``") to recognize these options. Note
219that the "``-q``" option is specified with the "`cl::Hidden`_" flag. This
220modifier prevents it from being shown by the standard "``-help``" output (note
221that it is still shown in the "``-help-hidden``" output).
222
223The CommandLine library uses a `different parser`_ for different data types.
224For example, in the string case, the argument passed to the option is copied
225literally into the content of the string variable... we obviously cannot do that
226in the boolean case, however, so we must use a smarter parser. In the case of
227the boolean parser, it allows no options (in which case it assigns the value of
228true to the variable), or it allows the values "``true``" or "``false``" to be
229specified, allowing any of the following inputs:
230
231::
232
233 compiler -f # No value, 'Force' == true
234 compiler -f=true # Value specified, 'Force' == true
235 compiler -f=TRUE # Value specified, 'Force' == true
236 compiler -f=FALSE # Value specified, 'Force' == false
237
238... you get the idea. The `bool parser`_ just turns the string values into
239boolean values, and rejects things like '``compiler -f=foo``'. Similarly, the
240`float`_, `double`_, and `int`_ parsers work like you would expect, using the
241'``strtol``' and '``strtod``' C library calls to parse the string value into the
242specified data type.
243
244With the declarations above, "``compiler -help``" emits this:
245
246::
247
248 USAGE: compiler [options] <input file>
249
250 OPTIONS:
251 -f - Enable binary output on terminals
252 -o - Override output filename
253 -quiet - Don't print informational messages
254 -help - display available options (-help-hidden for more)
255
256and "``compiler -help-hidden``" prints this:
257
258::
259
260 USAGE: compiler [options] <input file>
261
262 OPTIONS:
263 -f - Enable binary output on terminals
264 -o - Override output filename
265 -q - Don't print informational messages
266 -quiet - Don't print informational messages
267 -help - display available options (-help-hidden for more)
268
269This brief example has shown you how to use the '`cl::opt`_' class to parse
270simple scalar command line arguments. In addition to simple scalar arguments,
271the CommandLine library also provides primitives to support CommandLine option
272`aliases`_, and `lists`_ of options.
273
274.. _aliases:
275
276Argument Aliases
277----------------
278
279So far, the example works well, except for the fact that we need to check the
280quiet condition like this now:
281
282.. code-block:: c++
283
284 ...
285 if (!Quiet && !Quiet2) printInformationalMessage(...);
286 ...
287
288... which is a real pain! Instead of defining two values for the same
289condition, we can use the "`cl::alias`_" class to make the "``-q``" option an
290**alias** for the "``-quiet``" option, instead of providing a value itself:
291
292.. code-block:: c++
293
294 cl::opt<bool> Force ("f", cl::desc("Overwrite output files"));
295 cl::opt<bool> Quiet ("quiet", cl::desc("Don't print informational messages"));
296 cl::alias QuietA("q", cl::desc("Alias for -quiet"), cl::aliasopt(Quiet));
297
298The third line (which is the only one we modified from above) defines a "``-q``"
299alias that updates the "``Quiet``" variable (as specified by the `cl::aliasopt`_
300modifier) whenever it is specified. Because aliases do not hold state, the only
301thing the program has to query is the ``Quiet`` variable now. Another nice
302feature of aliases is that they automatically hide themselves from the ``-help``
303output (although, again, they are still visible in the ``-help-hidden output``).
304
305Now the application code can simply use:
306
307.. code-block:: c++
308
309 ...
310 if (!Quiet) printInformationalMessage(...);
311 ...
312
313... which is much nicer! The "`cl::alias`_" can be used to specify an
314alternative name for any variable type, and has many uses.
315
316.. _unnamed alternatives using the generic parser:
317
318Selecting an alternative from a set of possibilities
319----------------------------------------------------
320
321So far we have seen how the CommandLine library handles builtin types like
322``std::string``, ``bool`` and ``int``, but how does it handle things it doesn't
323know about, like enums or '``int*``'s?
324
325The answer is that it uses a table-driven generic parser (unless you specify
326your own parser, as described in the `Extension Guide`_). This parser maps
327literal strings to whatever type is required, and requires you to tell it what
328this mapping should be.
329
330Let's say that we would like to add four optimization levels to our optimizer,
331using the standard flags "``-g``", "``-O0``", "``-O1``", and "``-O2``". We
332could easily implement this with boolean options like above, but there are
333several problems with this strategy:
334
335#. A user could specify more than one of the options at a time, for example,
336 "``compiler -O3 -O2``". The CommandLine library would not be able to catch
337 this erroneous input for us.
338
339#. We would have to test 4 different variables to see which ones are set.
340
341#. This doesn't map to the numeric levels that we want... so we cannot easily
342 see if some level >= "``-O1``" is enabled.
343
344To cope with these problems, we can use an enum value, and have the CommandLine
345library fill it in with the appropriate level directly, which is used like this:
346
347.. code-block:: c++
348
349 enum OptLevel {
350 g, O1, O2, O3
351 };
352
353 cl::opt<OptLevel> OptimizationLevel(cl::desc("Choose optimization level:"),
354 cl::values(
355 clEnumVal(g , "No optimizations, enable debugging"),
356 clEnumVal(O1, "Enable trivial optimizations"),
357 clEnumVal(O2, "Enable default optimizations"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000358 clEnumVal(O3, "Enable expensive optimizations")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000359
360 ...
361 if (OptimizationLevel >= O2) doPartialRedundancyElimination(...);
362 ...
363
364This declaration defines a variable "``OptimizationLevel``" of the
365"``OptLevel``" enum type. This variable can be assigned any of the values that
366are listed in the declaration (Note that the declaration list must be terminated
367with the "``clEnumValEnd``" argument!). The CommandLine library enforces that
368the user can only specify one of the options, and it ensure that only valid enum
369values can be specified. The "``clEnumVal``" macros ensure that the command
370line arguments matched the enum values. With this option added, our help output
371now is:
372
373::
374
375 USAGE: compiler [options] <input file>
376
377 OPTIONS:
378 Choose optimization level:
379 -g - No optimizations, enable debugging
380 -O1 - Enable trivial optimizations
381 -O2 - Enable default optimizations
382 -O3 - Enable expensive optimizations
383 -f - Enable binary output on terminals
384 -help - display available options (-help-hidden for more)
385 -o <filename> - Specify output filename
386 -quiet - Don't print informational messages
387
388In this case, it is sort of awkward that flag names correspond directly to enum
389names, because we probably don't want a enum definition named "``g``" in our
390program. Because of this, we can alternatively write this example like this:
391
392.. code-block:: c++
393
394 enum OptLevel {
395 Debug, O1, O2, O3
396 };
397
398 cl::opt<OptLevel> OptimizationLevel(cl::desc("Choose optimization level:"),
399 cl::values(
400 clEnumValN(Debug, "g", "No optimizations, enable debugging"),
401 clEnumVal(O1 , "Enable trivial optimizations"),
402 clEnumVal(O2 , "Enable default optimizations"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000403 clEnumVal(O3 , "Enable expensive optimizations")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000404
405 ...
406 if (OptimizationLevel == Debug) outputDebugInfo(...);
407 ...
408
409By using the "``clEnumValN``" macro instead of "``clEnumVal``", we can directly
410specify the name that the flag should get. In general a direct mapping is nice,
411but sometimes you can't or don't want to preserve the mapping, which is when you
412would use it.
413
414Named Alternatives
415------------------
416
417Another useful argument form is a named alternative style. We shall use this
418style in our compiler to specify different debug levels that can be used.
419Instead of each debug level being its own switch, we want to support the
420following options, of which only one can be specified at a time:
421"``--debug-level=none``", "``--debug-level=quick``",
422"``--debug-level=detailed``". To do this, we use the exact same format as our
423optimization level flags, but we also specify an option name. For this case,
424the code looks like this:
425
426.. code-block:: c++
427
428 enum DebugLev {
429 nodebuginfo, quick, detailed
430 };
431
432 // Enable Debug Options to be specified on the command line
433 cl::opt<DebugLev> DebugLevel("debug_level", cl::desc("Set the debugging level:"),
434 cl::values(
435 clEnumValN(nodebuginfo, "none", "disable debug information"),
436 clEnumVal(quick, "enable quick debug information"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000437 clEnumVal(detailed, "enable detailed debug information")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000438
439This definition defines an enumerated command line variable of type "``enum
440DebugLev``", which works exactly the same way as before. The difference here is
441just the interface exposed to the user of your program and the help output by
442the "``-help``" option:
443
444::
445
446 USAGE: compiler [options] <input file>
447
448 OPTIONS:
449 Choose optimization level:
450 -g - No optimizations, enable debugging
451 -O1 - Enable trivial optimizations
452 -O2 - Enable default optimizations
453 -O3 - Enable expensive optimizations
454 -debug_level - Set the debugging level:
455 =none - disable debug information
456 =quick - enable quick debug information
457 =detailed - enable detailed debug information
458 -f - Enable binary output on terminals
459 -help - display available options (-help-hidden for more)
460 -o <filename> - Specify output filename
461 -quiet - Don't print informational messages
462
463Again, the only structural difference between the debug level declaration and
464the optimization level declaration is that the debug level declaration includes
465an option name (``"debug_level"``), which automatically changes how the library
466processes the argument. The CommandLine library supports both forms so that you
467can choose the form most appropriate for your application.
468
469.. _lists:
470
471Parsing a list of options
472-------------------------
473
474Now that we have the standard run-of-the-mill argument types out of the way,
475lets get a little wild and crazy. Lets say that we want our optimizer to accept
476a **list** of optimizations to perform, allowing duplicates. For example, we
477might want to run: "``compiler -dce -constprop -inline -dce -strip``". In this
478case, the order of the arguments and the number of appearances is very
479important. This is what the "``cl::list``" template is for. First, start by
480defining an enum of the optimizations that you would like to perform:
481
482.. code-block:: c++
483
484 enum Opts {
485 // 'inline' is a C++ keyword, so name it 'inlining'
486 dce, constprop, inlining, strip
487 };
488
489Then define your "``cl::list``" variable:
490
491.. code-block:: c++
492
493 cl::list<Opts> OptimizationList(cl::desc("Available Optimizations:"),
494 cl::values(
495 clEnumVal(dce , "Dead Code Elimination"),
496 clEnumVal(constprop , "Constant Propagation"),
497 clEnumValN(inlining, "inline", "Procedure Integration"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000498 clEnumVal(strip , "Strip Symbols")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000499
500This defines a variable that is conceptually of the type
501"``std::vector<enum Opts>``". Thus, you can access it with standard vector
502methods:
503
504.. code-block:: c++
505
506 for (unsigned i = 0; i != OptimizationList.size(); ++i)
507 switch (OptimizationList[i])
508 ...
509
510... to iterate through the list of options specified.
511
512Note that the "``cl::list``" template is completely general and may be used with
513any data types or other arguments that you can use with the "``cl::opt``"
514template. One especially useful way to use a list is to capture all of the
515positional arguments together if there may be more than one specified. In the
516case of a linker, for example, the linker takes several '``.o``' files, and
517needs to capture them into a list. This is naturally specified as:
518
519.. code-block:: c++
520
521 ...
522 cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<Input files>"), cl::OneOrMore);
523 ...
524
525This variable works just like a "``vector<string>``" object. As such, accessing
526the list is simple, just like above. In this example, we used the
527`cl::OneOrMore`_ modifier to inform the CommandLine library that it is an error
528if the user does not specify any ``.o`` files on our command line. Again, this
529just reduces the amount of checking we have to do.
530
531Collecting options as a set of flags
532------------------------------------
533
534Instead of collecting sets of options in a list, it is also possible to gather
535information for enum values in a **bit vector**. The representation used by the
536`cl::bits`_ class is an ``unsigned`` integer. An enum value is represented by a
5370/1 in the enum's ordinal value bit position. 1 indicating that the enum was
538specified, 0 otherwise. As each specified value is parsed, the resulting enum's
539bit is set in the option's bit vector:
540
541.. code-block:: c++
542
543 bits |= 1 << (unsigned)enum;
544
545Options that are specified multiple times are redundant. Any instances after
546the first are discarded.
547
548Reworking the above list example, we could replace `cl::list`_ with `cl::bits`_:
549
550.. code-block:: c++
551
552 cl::bits<Opts> OptimizationBits(cl::desc("Available Optimizations:"),
553 cl::values(
554 clEnumVal(dce , "Dead Code Elimination"),
555 clEnumVal(constprop , "Constant Propagation"),
556 clEnumValN(inlining, "inline", "Procedure Integration"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000557 clEnumVal(strip , "Strip Symbols")));
Bill Wendling26f1f002012-08-08 08:21:24 +0000558
559To test to see if ``constprop`` was specified, we can use the ``cl:bits::isSet``
560function:
561
562.. code-block:: c++
563
564 if (OptimizationBits.isSet(constprop)) {
565 ...
566 }
567
568It's also possible to get the raw bit vector using the ``cl::bits::getBits``
569function:
570
571.. code-block:: c++
572
573 unsigned bits = OptimizationBits.getBits();
574
575Finally, if external storage is used, then the location specified must be of
576**type** ``unsigned``. In all other ways a `cl::bits`_ option is equivalent to a
577`cl::list`_ option.
578
579.. _additional extra text:
580
581Adding freeform text to help output
582-----------------------------------
583
584As our program grows and becomes more mature, we may decide to put summary
585information about what it does into the help output. The help output is styled
586to look similar to a Unix ``man`` page, providing concise information about a
587program. Unix ``man`` pages, however often have a description about what the
588program does. To add this to your CommandLine program, simply pass a third
589argument to the `cl::ParseCommandLineOptions`_ call in main. This additional
590argument is then printed as the overview information for your program, allowing
591you to include any additional information that you want. For example:
592
593.. code-block:: c++
594
595 int main(int argc, char **argv) {
596 cl::ParseCommandLineOptions(argc, argv, " CommandLine compiler example\n\n"
597 " This program blah blah blah...\n");
598 ...
599 }
600
601would yield the help output:
602
603::
604
605 **OVERVIEW: CommandLine compiler example
606
607 This program blah blah blah...**
608
609 USAGE: compiler [options] <input file>
610
611 OPTIONS:
612 ...
613 -help - display available options (-help-hidden for more)
614 -o <filename> - Specify output filename
615
Andrew Trick1fc397f2013-05-07 17:34:35 +0000616.. _grouping options into categories:
617
Andrew Trick0537a982013-05-06 21:56:23 +0000618Grouping options into categories
619--------------------------------
620
621If our program has a large number of options it may become difficult for users
622of our tool to navigate the output of ``-help``. To alleviate this problem we
623can put our options into categories. This can be done by declaring option
624categories (`cl::OptionCategory`_ objects) and then placing our options into
625these categories using the `cl::cat`_ option attribute. For example:
626
627.. code-block:: c++
628
629 cl::OptionCategory StageSelectionCat("Stage Selection Options",
630 "These control which stages are run.");
631
632 cl::opt<bool> Preprocessor("E",cl::desc("Run preprocessor stage."),
633 cl::cat(StageSelectionCat));
634
635 cl::opt<bool> NoLink("c",cl::desc("Run all stages except linking."),
636 cl::cat(StageSelectionCat));
637
638The output of ``-help`` will become categorized if an option category is
639declared. The output looks something like ::
640
641 OVERVIEW: This is a small program to demo the LLVM CommandLine API
642 USAGE: Sample [options]
643
644 OPTIONS:
645
646 General options:
647
648 -help - Display available options (-help-hidden for more)
649 -help-list - Display list of available options (-help-list-hidden for more)
650
651
652 Stage Selection Options:
653 These control which stages are run.
654
655 -E - Run preprocessor stage.
656 -c - Run all stages except linking.
657
658In addition to the behaviour of ``-help`` changing when an option category is
659declared, the command line option ``-help-list`` becomes visible which will
660print the command line options as uncategorized list.
661
662Note that Options that are not explicitly categorized will be placed in the
663``cl::GeneralCategory`` category.
664
Bill Wendling26f1f002012-08-08 08:21:24 +0000665.. _Reference Guide:
666
667Reference Guide
668===============
669
670Now that you know the basics of how to use the CommandLine library, this section
671will give you the detailed information you need to tune how command line options
672work, as well as information on more "advanced" command line option processing
673capabilities.
674
675.. _positional:
676.. _positional argument:
677.. _Positional Arguments:
678.. _Positional arguments section:
679.. _positional options:
680
681Positional Arguments
682--------------------
683
684Positional arguments are those arguments that are not named, and are not
685specified with a hyphen. Positional arguments should be used when an option is
686specified by its position alone. For example, the standard Unix ``grep`` tool
687takes a regular expression argument, and an optional filename to search through
688(which defaults to standard input if a filename is not specified). Using the
689CommandLine library, this would be specified as:
690
691.. code-block:: c++
692
693 cl::opt<string> Regex (cl::Positional, cl::desc("<regular expression>"), cl::Required);
694 cl::opt<string> Filename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
695
696Given these two option declarations, the ``-help`` output for our grep
697replacement would look like this:
698
699::
700
701 USAGE: spiffygrep [options] <regular expression> <input file>
702
703 OPTIONS:
704 -help - display available options (-help-hidden for more)
705
706... and the resultant program could be used just like the standard ``grep``
707tool.
708
709Positional arguments are sorted by their order of construction. This means that
710command line options will be ordered according to how they are listed in a .cpp
711file, but will not have an ordering defined if the positional arguments are
712defined in multiple .cpp files. The fix for this problem is simply to define
713all of your positional arguments in one .cpp file.
714
715Specifying positional options with hyphens
716^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
717
718Sometimes you may want to specify a value to your positional argument that
719starts with a hyphen (for example, searching for '``-foo``' in a file). At
720first, you will have trouble doing this, because it will try to find an argument
721named '``-foo``', and will fail (and single quotes will not save you). Note
722that the system ``grep`` has the same problem:
723
724::
725
726 $ spiffygrep '-foo' test.txt
727 Unknown command line argument '-foo'. Try: spiffygrep -help'
728
729 $ grep '-foo' test.txt
730 grep: illegal option -- f
731 grep: illegal option -- o
732 grep: illegal option -- o
733 Usage: grep -hblcnsviw pattern file . . .
734
735The solution for this problem is the same for both your tool and the system
736version: use the '``--``' marker. When the user specifies '``--``' on the
737command line, it is telling the program that all options after the '``--``'
738should be treated as positional arguments, not options. Thus, we can use it
739like this:
740
741::
742
743 $ spiffygrep -- -foo test.txt
744 ...output...
745
746Determining absolute position with getPosition()
747^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
748
749Sometimes an option can affect or modify the meaning of another option. For
750example, consider ``gcc``'s ``-x LANG`` option. This tells ``gcc`` to ignore the
751suffix of subsequent positional arguments and force the file to be interpreted
752as if it contained source code in language ``LANG``. In order to handle this
753properly, you need to know the absolute position of each argument, especially
754those in lists, so their interaction(s) can be applied correctly. This is also
755useful for options like ``-llibname`` which is actually a positional argument
756that starts with a dash.
757
758So, generally, the problem is that you have two ``cl::list`` variables that
759interact in some way. To ensure the correct interaction, you can use the
760``cl::list::getPosition(optnum)`` method. This method returns the absolute
761position (as found on the command line) of the ``optnum`` item in the
762``cl::list``.
763
764The idiom for usage is like this:
765
766.. code-block:: c++
767
768 static cl::list<std::string> Files(cl::Positional, cl::OneOrMore);
769 static cl::list<std::string> Libraries("l", cl::ZeroOrMore);
770
771 int main(int argc, char**argv) {
772 // ...
773 std::vector<std::string>::iterator fileIt = Files.begin();
774 std::vector<std::string>::iterator libIt = Libraries.begin();
775 unsigned libPos = 0, filePos = 0;
776 while ( 1 ) {
777 if ( libIt != Libraries.end() )
778 libPos = Libraries.getPosition( libIt - Libraries.begin() );
779 else
780 libPos = 0;
781 if ( fileIt != Files.end() )
782 filePos = Files.getPosition( fileIt - Files.begin() );
783 else
784 filePos = 0;
785
786 if ( filePos != 0 && (libPos == 0 || filePos < libPos) ) {
787 // Source File Is next
788 ++fileIt;
789 }
790 else if ( libPos != 0 && (filePos == 0 || libPos < filePos) ) {
791 // Library is next
792 ++libIt;
793 }
794 else
795 break; // we're done with the list
796 }
797 }
798
799Note that, for compatibility reasons, the ``cl::opt`` also supports an
800``unsigned getPosition()`` option that will provide the absolute position of
801that option. You can apply the same approach as above with a ``cl::opt`` and a
802``cl::list`` option as you can with two lists.
803
804.. _interpreter style options:
805.. _cl::ConsumeAfter:
806.. _this section for more information:
807
808The ``cl::ConsumeAfter`` modifier
809^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
810
811The ``cl::ConsumeAfter`` `formatting option`_ is used to construct programs that
812use "interpreter style" option processing. With this style of option
813processing, all arguments specified after the last positional argument are
814treated as special interpreter arguments that are not interpreted by the command
815line argument.
816
817As a concrete example, lets say we are developing a replacement for the standard
818Unix Bourne shell (``/bin/sh``). To run ``/bin/sh``, first you specify options
819to the shell itself (like ``-x`` which turns on trace output), then you specify
820the name of the script to run, then you specify arguments to the script. These
821arguments to the script are parsed by the Bourne shell command line option
822processor, but are not interpreted as options to the shell itself. Using the
823CommandLine library, we would specify this as:
824
825.. code-block:: c++
826
827 cl::opt<string> Script(cl::Positional, cl::desc("<input script>"), cl::init("-"));
828 cl::list<string> Argv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
829 cl::opt<bool> Trace("x", cl::desc("Enable trace output"));
830
831which automatically provides the help output:
832
833::
834
835 USAGE: spiffysh [options] <input script> <program arguments>...
836
837 OPTIONS:
838 -help - display available options (-help-hidden for more)
839 -x - Enable trace output
840
841At runtime, if we run our new shell replacement as ```spiffysh -x test.sh -a -x
842-y bar``', the ``Trace`` variable will be set to true, the ``Script`` variable
843will be set to "``test.sh``", and the ``Argv`` list will contain ``["-a", "-x",
844"-y", "bar"]``, because they were specified after the last positional argument
845(which is the script name).
846
847There are several limitations to when ``cl::ConsumeAfter`` options can be
848specified. For example, only one ``cl::ConsumeAfter`` can be specified per
849program, there must be at least one `positional argument`_ specified, there must
850not be any `cl::list`_ positional arguments, and the ``cl::ConsumeAfter`` option
851should be a `cl::list`_ option.
852
853.. _can be changed:
854.. _Internal vs External Storage:
855
856Internal vs External Storage
857----------------------------
858
859By default, all command line options automatically hold the value that they
860parse from the command line. This is very convenient in the common case,
861especially when combined with the ability to define command line options in the
862files that use them. This is called the internal storage model.
863
864Sometimes, however, it is nice to separate the command line option processing
865code from the storage of the value parsed. For example, lets say that we have a
866'``-debug``' option that we would like to use to enable debug information across
867the entire body of our program. In this case, the boolean value controlling the
868debug code should be globally accessible (in a header file, for example) yet the
869command line option processing code should not be exposed to all of these
870clients (requiring lots of .cpp files to ``#include CommandLine.h``).
871
872To do this, set up your .h file with your option, like this for example:
873
874.. code-block:: c++
875
876 // DebugFlag.h - Get access to the '-debug' command line option
877 //
878
879 // DebugFlag - This boolean is set to true if the '-debug' command line option
880 // is specified. This should probably not be referenced directly, instead, use
881 // the DEBUG macro below.
882 //
883 extern bool DebugFlag;
884
885 // DEBUG macro - This macro should be used by code to emit debug information.
886 // In the '-debug' option is specified on the command line, and if this is a
887 // debug build, then the code specified as the option to the macro will be
888 // executed. Otherwise it will not be.
889 #ifdef NDEBUG
890 #define DEBUG(X)
891 #else
892 #define DEBUG(X) do { if (DebugFlag) { X; } } while (0)
893 #endif
894
895This allows clients to blissfully use the ``DEBUG()`` macro, or the
896``DebugFlag`` explicitly if they want to. Now we just need to be able to set
897the ``DebugFlag`` boolean when the option is set. To do this, we pass an
898additional argument to our command line argument processor, and we specify where
899to fill in with the `cl::location`_ attribute:
900
901.. code-block:: c++
902
903 bool DebugFlag; // the actual value
904 static cl::opt<bool, true> // The parser
905 Debug("debug", cl::desc("Enable debug output"), cl::Hidden, cl::location(DebugFlag));
906
907In the above example, we specify "``true``" as the second argument to the
908`cl::opt`_ template, indicating that the template should not maintain a copy of
909the value itself. In addition to this, we specify the `cl::location`_
910attribute, so that ``DebugFlag`` is automatically set.
911
912Option Attributes
913-----------------
914
915This section describes the basic attributes that you can specify on options.
916
917* The option name attribute (which is required for all options, except
918 `positional options`_) specifies what the option name is. This option is
919 specified in simple double quotes:
920
921 .. code-block:: c++
922
Hans Wennborg0c14cf92013-07-10 22:09:22 +0000923 cl::opt<bool> Quiet("quiet");
Bill Wendling26f1f002012-08-08 08:21:24 +0000924
925.. _cl::desc(...):
926
927* The **cl::desc** attribute specifies a description for the option to be
Alexander Kornienko72a196a2013-05-10 17:15:51 +0000928 shown in the ``-help`` output for the program. This attribute supports
929 multi-line descriptions with lines separated by '\n'.
Bill Wendling26f1f002012-08-08 08:21:24 +0000930
931.. _cl::value_desc:
932
933* The **cl::value_desc** attribute specifies a string that can be used to
934 fine tune the ``-help`` output for a command line option. Look `here`_ for an
935 example.
936
937.. _cl::init:
938
939* The **cl::init** attribute specifies an initial value for a `scalar`_
940 option. If this attribute is not specified then the command line option value
941 defaults to the value created by the default constructor for the
942 type.
943
944 .. warning::
945
946 If you specify both **cl::init** and **cl::location** for an option, you
947 must specify **cl::location** first, so that when the command-line parser
948 sees **cl::init**, it knows where to put the initial value. (You will get an
949 error at runtime if you don't put them in the right order.)
950
951.. _cl::location:
952
953* The **cl::location** attribute where to store the value for a parsed command
954 line option if using external storage. See the section on `Internal vs
955 External Storage`_ for more information.
956
957.. _cl::aliasopt:
958
959* The **cl::aliasopt** attribute specifies which option a `cl::alias`_ option is
960 an alias for.
961
962.. _cl::values:
963
964* The **cl::values** attribute specifies the string-to-value mapping to be used
965 by the generic parser. It takes a **clEnumValEnd terminated** list of
966 (option, value, description) triplets that specify the option name, the value
967 mapped to, and the description shown in the ``-help`` for the tool. Because
968 the generic parser is used most frequently with enum values, two macros are
969 often useful:
970
971 #. The **clEnumVal** macro is used as a nice simple way to specify a triplet
972 for an enum. This macro automatically makes the option name be the same as
973 the enum name. The first option to the macro is the enum, the second is
974 the description for the command line option.
975
976 #. The **clEnumValN** macro is used to specify macro options where the option
977 name doesn't equal the enum name. For this macro, the first argument is
978 the enum value, the second is the flag name, and the second is the
979 description.
980
981 You will get a compile time error if you try to use cl::values with a parser
982 that does not support it.
983
984.. _cl::multi_val:
985
986* The **cl::multi_val** attribute specifies that this option takes has multiple
987 values (example: ``-sectalign segname sectname sectvalue``). This attribute
988 takes one unsigned argument - the number of values for the option. This
989 attribute is valid only on ``cl::list`` options (and will fail with compile
990 error if you try to use it with other option types). It is allowed to use all
991 of the usual modifiers on multi-valued options (besides
992 ``cl::ValueDisallowed``, obviously).
993
Andrew Trick0537a982013-05-06 21:56:23 +0000994.. _cl::cat:
995
996* The **cl::cat** attribute specifies the option category that the option
997 belongs to. The category should be a `cl::OptionCategory`_ object.
998
Bill Wendling26f1f002012-08-08 08:21:24 +0000999Option Modifiers
1000----------------
1001
1002Option modifiers are the flags and expressions that you pass into the
1003constructors for `cl::opt`_ and `cl::list`_. These modifiers give you the
1004ability to tweak how options are parsed and how ``-help`` output is generated to
1005fit your application well.
1006
1007These options fall into five main categories:
1008
1009#. Hiding an option from ``-help`` output
1010
1011#. Controlling the number of occurrences required and allowed
1012
1013#. Controlling whether or not a value must be specified
1014
1015#. Controlling other formatting options
1016
1017#. Miscellaneous option modifiers
1018
1019It is not possible to specify two options from the same category (you'll get a
1020runtime error) to a single option, except for options in the miscellaneous
1021category. The CommandLine library specifies defaults for all of these settings
1022that are the most useful in practice and the most common, which mean that you
1023usually shouldn't have to worry about these.
1024
1025Hiding an option from ``-help`` output
1026^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1027
1028The ``cl::NotHidden``, ``cl::Hidden``, and ``cl::ReallyHidden`` modifiers are
1029used to control whether or not an option appears in the ``-help`` and
1030``-help-hidden`` output for the compiled program:
1031
1032.. _cl::NotHidden:
1033
1034* The **cl::NotHidden** modifier (which is the default for `cl::opt`_ and
1035 `cl::list`_ options) indicates the option is to appear in both help
1036 listings.
1037
1038.. _cl::Hidden:
1039
1040* The **cl::Hidden** modifier (which is the default for `cl::alias`_ options)
1041 indicates that the option should not appear in the ``-help`` output, but
1042 should appear in the ``-help-hidden`` output.
1043
1044.. _cl::ReallyHidden:
1045
1046* The **cl::ReallyHidden** modifier indicates that the option should not appear
1047 in any help output.
1048
1049Controlling the number of occurrences required and allowed
1050^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1051
1052This group of options is used to control how many time an option is allowed (or
1053required) to be specified on the command line of your program. Specifying a
1054value for this setting allows the CommandLine library to do error checking for
1055you.
1056
1057The allowed values for this option group are:
1058
1059.. _cl::Optional:
1060
1061* The **cl::Optional** modifier (which is the default for the `cl::opt`_ and
1062 `cl::alias`_ classes) indicates that your program will allow either zero or
1063 one occurrence of the option to be specified.
1064
1065.. _cl::ZeroOrMore:
1066
1067* The **cl::ZeroOrMore** modifier (which is the default for the `cl::list`_
1068 class) indicates that your program will allow the option to be specified zero
1069 or more times.
1070
1071.. _cl::Required:
1072
1073* The **cl::Required** modifier indicates that the specified option must be
1074 specified exactly one time.
1075
1076.. _cl::OneOrMore:
1077
1078* The **cl::OneOrMore** modifier indicates that the option must be specified at
1079 least one time.
1080
1081* The **cl::ConsumeAfter** modifier is described in the `Positional arguments
1082 section`_.
1083
1084If an option is not specified, then the value of the option is equal to the
1085value specified by the `cl::init`_ attribute. If the ``cl::init`` attribute is
1086not specified, the option value is initialized with the default constructor for
1087the data type.
1088
1089If an option is specified multiple times for an option of the `cl::opt`_ class,
1090only the last value will be retained.
1091
1092Controlling whether or not a value must be specified
1093^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1094
1095This group of options is used to control whether or not the option allows a
1096value to be present. In the case of the CommandLine library, a value is either
1097specified with an equal sign (e.g. '``-index-depth=17``') or as a trailing
1098string (e.g. '``-o a.out``').
1099
1100The allowed values for this option group are:
1101
1102.. _cl::ValueOptional:
1103
1104* The **cl::ValueOptional** modifier (which is the default for ``bool`` typed
1105 options) specifies that it is acceptable to have a value, or not. A boolean
1106 argument can be enabled just by appearing on the command line, or it can have
1107 an explicit '``-foo=true``'. If an option is specified with this mode, it is
1108 illegal for the value to be provided without the equal sign. Therefore
1109 '``-foo true``' is illegal. To get this behavior, you must use
1110 the `cl::ValueRequired`_ modifier.
1111
1112.. _cl::ValueRequired:
1113
1114* The **cl::ValueRequired** modifier (which is the default for all other types
1115 except for `unnamed alternatives using the generic parser`_) specifies that a
1116 value must be provided. This mode informs the command line library that if an
1117 option is not provides with an equal sign, that the next argument provided
1118 must be the value. This allows things like '``-o a.out``' to work.
1119
1120.. _cl::ValueDisallowed:
1121
1122* The **cl::ValueDisallowed** modifier (which is the default for `unnamed
1123 alternatives using the generic parser`_) indicates that it is a runtime error
1124 for the user to specify a value. This can be provided to disallow users from
1125 providing options to boolean options (like '``-foo=true``').
1126
1127In general, the default values for this option group work just like you would
1128want them to. As mentioned above, you can specify the `cl::ValueDisallowed`_
1129modifier to a boolean argument to restrict your command line parser. These
1130options are mostly useful when `extending the library`_.
1131
1132.. _formatting option:
1133
1134Controlling other formatting options
1135^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1136
1137The formatting option group is used to specify that the command line option has
1138special abilities and is otherwise different from other command line arguments.
1139As usual, you can only specify one of these arguments at most.
1140
1141.. _cl::NormalFormatting:
1142
1143* The **cl::NormalFormatting** modifier (which is the default all options)
1144 specifies that this option is "normal".
1145
1146.. _cl::Positional:
1147
1148* The **cl::Positional** modifier specifies that this is a positional argument
1149 that does not have a command line option associated with it. See the
1150 `Positional Arguments`_ section for more information.
1151
1152* The **cl::ConsumeAfter** modifier specifies that this option is used to
1153 capture "interpreter style" arguments. See `this section for more
1154 information`_.
1155
1156.. _prefix:
1157.. _cl::Prefix:
1158
1159* The **cl::Prefix** modifier specifies that this option prefixes its value.
1160 With 'Prefix' options, the equal sign does not separate the value from the
1161 option name specified. Instead, the value is everything after the prefix,
1162 including any equal sign if present. This is useful for processing odd
1163 arguments like ``-lmalloc`` and ``-L/usr/lib`` in a linker tool or
1164 ``-DNAME=value`` in a compiler tool. Here, the '``l``', '``D``' and '``L``'
1165 options are normal string (or list) options, that have the **cl::Prefix**
1166 modifier added to allow the CommandLine library to recognize them. Note that
1167 **cl::Prefix** options must not have the **cl::ValueDisallowed** modifier
1168 specified.
1169
1170.. _grouping:
1171.. _cl::Grouping:
1172
1173* The **cl::Grouping** modifier is used to implement Unix-style tools (like
1174 ``ls``) that have lots of single letter arguments, but only require a single
1175 dash. For example, the '``ls -labF``' command actually enables four different
1176 options, all of which are single letters. Note that **cl::Grouping** options
1177 cannot have values.
1178
1179The CommandLine library does not restrict how you use the **cl::Prefix** or
1180**cl::Grouping** modifiers, but it is possible to specify ambiguous argument
1181settings. Thus, it is possible to have multiple letter options that are prefix
1182or grouping options, and they will still work as designed.
1183
1184To do this, the CommandLine library uses a greedy algorithm to parse the input
1185option into (potentially multiple) prefix and grouping options. The strategy
1186basically looks like this:
1187
1188::
1189
1190 parse(string OrigInput) {
1191
1192 1. string input = OrigInput;
1193 2. if (isOption(input)) return getOption(input).parse(); // Normal option
1194 3. while (!isOption(input) && !input.empty()) input.pop_back(); // Remove the last letter
1195 4. if (input.empty()) return error(); // No matching option
1196 5. if (getOption(input).isPrefix())
1197 return getOption(input).parse(input);
1198 6. while (!input.empty()) { // Must be grouping options
1199 getOption(input).parse();
1200 OrigInput.erase(OrigInput.begin(), OrigInput.begin()+input.length());
1201 input = OrigInput;
1202 while (!isOption(input) && !input.empty()) input.pop_back();
1203 }
1204 7. if (!OrigInput.empty()) error();
1205
1206 }
1207
1208Miscellaneous option modifiers
1209^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1210
1211The miscellaneous option modifiers are the only flags where you can specify more
1212than one flag from the set: they are not mutually exclusive. These flags
1213specify boolean properties that modify the option.
1214
1215.. _cl::CommaSeparated:
1216
1217* The **cl::CommaSeparated** modifier indicates that any commas specified for an
1218 option's value should be used to split the value up into multiple values for
1219 the option. For example, these two options are equivalent when
1220 ``cl::CommaSeparated`` is specified: "``-foo=a -foo=b -foo=c``" and
1221 "``-foo=a,b,c``". This option only makes sense to be used in a case where the
1222 option is allowed to accept one or more values (i.e. it is a `cl::list`_
1223 option).
1224
1225.. _cl::PositionalEatsArgs:
1226
1227* The **cl::PositionalEatsArgs** modifier (which only applies to positional
1228 arguments, and only makes sense for lists) indicates that positional argument
1229 should consume any strings after it (including strings that start with a "-")
1230 up until another recognized positional argument. For example, if you have two
1231 "eating" positional arguments, "``pos1``" and "``pos2``", the string "``-pos1
1232 -foo -bar baz -pos2 -bork``" would cause the "``-foo -bar -baz``" strings to
1233 be applied to the "``-pos1``" option and the "``-bork``" string to be applied
1234 to the "``-pos2``" option.
1235
1236.. _cl::Sink:
1237
1238* The **cl::Sink** modifier is used to handle unknown options. If there is at
1239 least one option with ``cl::Sink`` modifier specified, the parser passes
1240 unrecognized option strings to it as values instead of signaling an error. As
1241 with ``cl::CommaSeparated``, this modifier only makes sense with a `cl::list`_
1242 option.
1243
1244So far, these are the only three miscellaneous option modifiers.
1245
1246.. _response files:
1247
1248Response files
1249^^^^^^^^^^^^^^
1250
1251Some systems, such as certain variants of Microsoft Windows and some older
1252Unices have a relatively low limit on command-line length. It is therefore
1253customary to use the so-called 'response files' to circumvent this
1254restriction. These files are mentioned on the command-line (using the "@file")
1255syntax. The program reads these files and inserts the contents into argv,
1256thereby working around the command-line length limits. Response files are
1257enabled by an optional fourth argument to `cl::ParseEnvironmentOptions`_ and
1258`cl::ParseCommandLineOptions`_.
1259
1260Top-Level Classes and Functions
1261-------------------------------
1262
1263Despite all of the built-in flexibility, the CommandLine option library really
1264only consists of one function `cl::ParseCommandLineOptions`_) and three main
1265classes: `cl::opt`_, `cl::list`_, and `cl::alias`_. This section describes
1266these three classes in detail.
1267
Andrew Trick7cb710d2013-05-06 21:56:35 +00001268.. _cl::getRegisteredOptions:
1269
1270The ``cl::getRegisteredOptions`` function
1271^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1272
1273The ``cl::getRegisteredOptions`` function is designed to give a programmer
Alp Tokerf907b892013-12-05 05:44:44 +00001274access to declared non-positional command line options so that how they appear
Andrew Trick7cb710d2013-05-06 21:56:35 +00001275in ``-help`` can be modified prior to calling `cl::ParseCommandLineOptions`_.
1276Note this method should not be called during any static initialisation because
1277it cannot be guaranteed that all options will have been initialised. Hence it
1278should be called from ``main``.
1279
1280This function can be used to gain access to options declared in libraries that
1281the tool writter may not have direct access to.
1282
1283The function retrieves a :ref:`StringMap <dss_stringmap>` that maps the option
1284string (e.g. ``-help``) to an ``Option*``.
1285
1286Here is an example of how the function could be used:
1287
1288.. code-block:: c++
1289
1290 using namespace llvm;
1291 int main(int argc, char **argv) {
1292 cl::OptionCategory AnotherCategory("Some options");
1293
1294 StringMap<cl::Option*> Map;
1295 cl::getRegisteredOptions(Map);
1296
1297 //Unhide useful option and put it in a different category
1298 assert(Map.count("print-all-options") > 0);
1299 Map["print-all-options"]->setHiddenFlag(cl::NotHidden);
1300 Map["print-all-options"]->setCategory(AnotherCategory);
1301
1302 //Hide an option we don't want to see
1303 assert(Map.count("enable-no-infs-fp-math") > 0);
1304 Map["enable-no-infs-fp-math"]->setHiddenFlag(cl::Hidden);
1305
1306 //Change --version to --show-version
1307 assert(Map.count("version") > 0);
1308 Map["version"]->setArgStr("show-version");
1309
1310 //Change --help description
1311 assert(Map.count("help") > 0);
1312 Map["help"]->setDescription("Shows help");
1313
1314 cl::ParseCommandLineOptions(argc, argv, "This is a small program to demo the LLVM CommandLine API");
1315 ...
1316 }
1317
1318
Bill Wendling26f1f002012-08-08 08:21:24 +00001319.. _cl::ParseCommandLineOptions:
1320
1321The ``cl::ParseCommandLineOptions`` function
1322^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1323
1324The ``cl::ParseCommandLineOptions`` function is designed to be called directly
1325from ``main``, and is used to fill in the values of all of the command line
1326option variables once ``argc`` and ``argv`` are available.
1327
1328The ``cl::ParseCommandLineOptions`` function requires two parameters (``argc``
1329and ``argv``), but may also take an optional third parameter which holds
1330`additional extra text`_ to emit when the ``-help`` option is invoked, and a
1331fourth boolean parameter that enables `response files`_.
1332
1333.. _cl::ParseEnvironmentOptions:
1334
1335The ``cl::ParseEnvironmentOptions`` function
1336^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1337
1338The ``cl::ParseEnvironmentOptions`` function has mostly the same effects as
1339`cl::ParseCommandLineOptions`_, except that it is designed to take values for
1340options from an environment variable, for those cases in which reading the
1341command line is not convenient or desired. It fills in the values of all the
1342command line option variables just like `cl::ParseCommandLineOptions`_ does.
1343
1344It takes four parameters: the name of the program (since ``argv`` may not be
1345available, it can't just look in ``argv[0]``), the name of the environment
1346variable to examine, the optional `additional extra text`_ to emit when the
1347``-help`` option is invoked, and the boolean switch that controls whether
1348`response files`_ should be read.
1349
1350``cl::ParseEnvironmentOptions`` will break the environment variable's value up
1351into words and then process them using `cl::ParseCommandLineOptions`_.
1352**Note:** Currently ``cl::ParseEnvironmentOptions`` does not support quoting, so
1353an environment variable containing ``-option "foo bar"`` will be parsed as three
1354words, ``-option``, ``"foo``, and ``bar"``, which is different from what you
1355would get from the shell with the same input.
1356
1357The ``cl::SetVersionPrinter`` function
1358^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1359
1360The ``cl::SetVersionPrinter`` function is designed to be called directly from
1361``main`` and *before* ``cl::ParseCommandLineOptions``. Its use is optional. It
1362simply arranges for a function to be called in response to the ``--version``
1363option instead of having the ``CommandLine`` library print out the usual version
1364string for LLVM. This is useful for programs that are not part of LLVM but wish
1365to use the ``CommandLine`` facilities. Such programs should just define a small
1366function that takes no arguments and returns ``void`` and that prints out
1367whatever version information is appropriate for the program. Pass the address of
1368that function to ``cl::SetVersionPrinter`` to arrange for it to be called when
1369the ``--version`` option is given by the user.
1370
1371.. _cl::opt:
1372.. _scalar:
1373
1374The ``cl::opt`` class
1375^^^^^^^^^^^^^^^^^^^^^
1376
1377The ``cl::opt`` class is the class used to represent scalar command line
1378options, and is the one used most of the time. It is a templated class which
1379can take up to three arguments (all except for the first have default values
1380though):
1381
1382.. code-block:: c++
1383
1384 namespace cl {
1385 template <class DataType, bool ExternalStorage = false,
1386 class ParserClass = parser<DataType> >
1387 class opt;
1388 }
1389
1390The first template argument specifies what underlying data type the command line
1391argument is, and is used to select a default parser implementation. The second
1392template argument is used to specify whether the option should contain the
1393storage for the option (the default) or whether external storage should be used
1394to contain the value parsed for the option (see `Internal vs External Storage`_
1395for more information).
1396
1397The third template argument specifies which parser to use. The default value
1398selects an instantiation of the ``parser`` class based on the underlying data
1399type of the option. In general, this default works well for most applications,
1400so this option is only used when using a `custom parser`_.
1401
1402.. _lists of arguments:
1403.. _cl::list:
1404
1405The ``cl::list`` class
1406^^^^^^^^^^^^^^^^^^^^^^
1407
1408The ``cl::list`` class is the class used to represent a list of command line
1409options. It too is a templated class which can take up to three arguments:
1410
1411.. code-block:: c++
1412
1413 namespace cl {
1414 template <class DataType, class Storage = bool,
1415 class ParserClass = parser<DataType> >
1416 class list;
1417 }
1418
1419This class works the exact same as the `cl::opt`_ class, except that the second
1420argument is the **type** of the external storage, not a boolean value. For this
1421class, the marker type '``bool``' is used to indicate that internal storage
1422should be used.
1423
1424.. _cl::bits:
1425
1426The ``cl::bits`` class
1427^^^^^^^^^^^^^^^^^^^^^^
1428
1429The ``cl::bits`` class is the class used to represent a list of command line
1430options in the form of a bit vector. It is also a templated class which can
1431take up to three arguments:
1432
1433.. code-block:: c++
1434
1435 namespace cl {
1436 template <class DataType, class Storage = bool,
1437 class ParserClass = parser<DataType> >
1438 class bits;
1439 }
1440
1441This class works the exact same as the `cl::list`_ class, except that the second
1442argument must be of **type** ``unsigned`` if external storage is used.
1443
1444.. _cl::alias:
1445
1446The ``cl::alias`` class
1447^^^^^^^^^^^^^^^^^^^^^^^
1448
1449The ``cl::alias`` class is a nontemplated class that is used to form aliases for
1450other arguments.
1451
1452.. code-block:: c++
1453
1454 namespace cl {
1455 class alias;
1456 }
1457
1458The `cl::aliasopt`_ attribute should be used to specify which option this is an
1459alias for. Alias arguments default to being `cl::Hidden`_, and use the aliased
1460options parser to do the conversion from string to data.
1461
1462.. _cl::extrahelp:
1463
1464The ``cl::extrahelp`` class
1465^^^^^^^^^^^^^^^^^^^^^^^^^^^
1466
1467The ``cl::extrahelp`` class is a nontemplated class that allows extra help text
1468to be printed out for the ``-help`` option.
1469
1470.. code-block:: c++
1471
1472 namespace cl {
1473 struct extrahelp;
1474 }
1475
1476To use the extrahelp, simply construct one with a ``const char*`` parameter to
1477the constructor. The text passed to the constructor will be printed at the
1478bottom of the help message, verbatim. Note that multiple ``cl::extrahelp``
1479**can** be used, but this practice is discouraged. If your tool needs to print
1480additional help information, put all that help into a single ``cl::extrahelp``
1481instance.
1482
1483For example:
1484
1485.. code-block:: c++
1486
1487 cl::extrahelp("\nADDITIONAL HELP:\n\n This is the extra help\n");
1488
Andrew Trick0537a982013-05-06 21:56:23 +00001489.. _cl::OptionCategory:
1490
1491The ``cl::OptionCategory`` class
1492^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1493
1494The ``cl::OptionCategory`` class is a simple class for declaring
1495option categories.
1496
1497.. code-block:: c++
1498
1499 namespace cl {
1500 class OptionCategory;
1501 }
1502
1503An option category must have a name and optionally a description which are
1504passed to the constructor as ``const char*``.
1505
1506Note that declaring an option category and associating it with an option before
1507parsing options (e.g. statically) will change the output of ``-help`` from
1508uncategorized to categorized. If an option category is declared but not
1509associated with an option then it will be hidden from the output of ``-help``
1510but will be shown in the output of ``-help-hidden``.
1511
Bill Wendling26f1f002012-08-08 08:21:24 +00001512.. _different parser:
1513.. _discussed previously:
1514
1515Builtin parsers
1516---------------
1517
1518Parsers control how the string value taken from the command line is translated
1519into a typed value, suitable for use in a C++ program. By default, the
1520CommandLine library uses an instance of ``parser<type>`` if the command line
1521option specifies that it uses values of type '``type``'. Because of this,
1522custom option processing is specified with specializations of the '``parser``'
1523class.
1524
1525The CommandLine library provides the following builtin parser specializations,
1526which are sufficient for most applications. It can, however, also be extended to
1527work with new data types and new ways of interpreting the same data. See the
1528`Writing a Custom Parser`_ for more details on this type of library extension.
1529
1530.. _enums:
1531.. _cl::parser:
1532
1533* The generic ``parser<t>`` parser can be used to map strings values to any data
1534 type, through the use of the `cl::values`_ property, which specifies the
1535 mapping information. The most common use of this parser is for parsing enum
1536 values, which allows you to use the CommandLine library for all of the error
1537 checking to make sure that only valid enum values are specified (as opposed to
1538 accepting arbitrary strings). Despite this, however, the generic parser class
1539 can be used for any data type.
1540
1541.. _boolean flags:
1542.. _bool parser:
1543
1544* The **parser<bool> specialization** is used to convert boolean strings to a
1545 boolean value. Currently accepted strings are "``true``", "``TRUE``",
1546 "``True``", "``1``", "``false``", "``FALSE``", "``False``", and "``0``".
1547
1548* The **parser<boolOrDefault> specialization** is used for cases where the value
1549 is boolean, but we also need to know whether the option was specified at all.
1550 boolOrDefault is an enum with 3 values, BOU_UNSET, BOU_TRUE and BOU_FALSE.
1551 This parser accepts the same strings as **``parser<bool>``**.
1552
1553.. _strings:
1554
1555* The **parser<string> specialization** simply stores the parsed string into the
1556 string value specified. No conversion or modification of the data is
1557 performed.
1558
1559.. _integers:
1560.. _int:
1561
1562* The **parser<int> specialization** uses the C ``strtol`` function to parse the
1563 string input. As such, it will accept a decimal number (with an optional '+'
1564 or '-' prefix) which must start with a non-zero digit. It accepts octal
1565 numbers, which are identified with a '``0``' prefix digit, and hexadecimal
1566 numbers with a prefix of '``0x``' or '``0X``'.
1567
1568.. _doubles:
1569.. _float:
1570.. _double:
1571
1572* The **parser<double>** and **parser<float> specializations** use the standard
1573 C ``strtod`` function to convert floating point strings into floating point
1574 values. As such, a broad range of string formats is supported, including
1575 exponential notation (ex: ``1.7e15``) and properly supports locales.
1576
1577.. _Extension Guide:
1578.. _extending the library:
1579
1580Extension Guide
1581===============
1582
1583Although the CommandLine library has a lot of functionality built into it
1584already (as discussed previously), one of its true strengths lie in its
1585extensibility. This section discusses how the CommandLine library works under
1586the covers and illustrates how to do some simple, common, extensions.
1587
1588.. _Custom parsers:
1589.. _custom parser:
1590.. _Writing a Custom Parser:
1591
1592Writing a custom parser
1593-----------------------
1594
1595One of the simplest and most common extensions is the use of a custom parser.
1596As `discussed previously`_, parsers are the portion of the CommandLine library
1597that turns string input from the user into a particular parsed data type,
1598validating the input in the process.
1599
1600There are two ways to use a new parser:
1601
1602#. Specialize the `cl::parser`_ template for your custom data type.
1603
1604 This approach has the advantage that users of your custom data type will
1605 automatically use your custom parser whenever they define an option with a
1606 value type of your data type. The disadvantage of this approach is that it
1607 doesn't work if your fundamental data type is something that is already
1608 supported.
1609
1610#. Write an independent class, using it explicitly from options that need it.
1611
1612 This approach works well in situations where you would line to parse an
1613 option using special syntax for a not-very-special data-type. The drawback
1614 of this approach is that users of your parser have to be aware that they are
1615 using your parser instead of the builtin ones.
1616
1617To guide the discussion, we will discuss a custom parser that accepts file
1618sizes, specified with an optional unit after the numeric size. For example, we
1619would like to parse "102kb", "41M", "1G" into the appropriate integer value. In
1620this case, the underlying data type we want to parse into is '``unsigned``'. We
1621choose approach #2 above because we don't want to make this the default for all
1622``unsigned`` options.
1623
1624To start out, we declare our new ``FileSizeParser`` class:
1625
1626.. code-block:: c++
1627
Paul Robinsonfd989c92014-10-13 21:11:22 +00001628 struct FileSizeParser : public cl::parser<unsigned> {
Bill Wendling26f1f002012-08-08 08:21:24 +00001629 // parse - Return true on error.
Paul Robinsonfd989c92014-10-13 21:11:22 +00001630 bool parse(cl::Option &O, StringRef ArgName, const std::string &ArgValue,
Bill Wendling26f1f002012-08-08 08:21:24 +00001631 unsigned &Val);
1632 };
1633
Paul Robinsonfd989c92014-10-13 21:11:22 +00001634Our new class inherits from the ``cl::parser`` template class to fill in
Bill Wendling26f1f002012-08-08 08:21:24 +00001635the default, boiler plate code for us. We give it the data type that we parse
1636into, the last argument to the ``parse`` method, so that clients of our custom
1637parser know what object type to pass in to the parse method. (Here we declare
1638that we parse into '``unsigned``' variables.)
1639
1640For most purposes, the only method that must be implemented in a custom parser
1641is the ``parse`` method. The ``parse`` method is called whenever the option is
1642invoked, passing in the option itself, the option name, the string to parse, and
1643a reference to a return value. If the string to parse is not well-formed, the
1644parser should output an error message and return true. Otherwise it should
1645return false and set '``Val``' to the parsed value. In our example, we
1646implement ``parse`` as:
1647
1648.. code-block:: c++
1649
Paul Robinsonfd989c92014-10-13 21:11:22 +00001650 bool FileSizeParser::parse(cl::Option &O, StringRef ArgName,
Bill Wendling26f1f002012-08-08 08:21:24 +00001651 const std::string &Arg, unsigned &Val) {
1652 const char *ArgStart = Arg.c_str();
1653 char *End;
1654
1655 // Parse integer part, leaving 'End' pointing to the first non-integer char
1656 Val = (unsigned)strtol(ArgStart, &End, 0);
1657
1658 while (1) {
1659 switch (*End++) {
1660 case 0: return false; // No error
1661 case 'i': // Ignore the 'i' in KiB if people use that
1662 case 'b': case 'B': // Ignore B suffix
1663 break;
1664
1665 case 'g': case 'G': Val *= 1024*1024*1024; break;
1666 case 'm': case 'M': Val *= 1024*1024; break;
1667 case 'k': case 'K': Val *= 1024; break;
1668
1669 default:
1670 // Print an error message if unrecognized character!
1671 return O.error("'" + Arg + "' value invalid for file size argument!");
1672 }
1673 }
1674 }
1675
1676This function implements a very simple parser for the kinds of strings we are
1677interested in. Although it has some holes (it allows "``123KKK``" for example),
1678it is good enough for this example. Note that we use the option itself to print
1679out the error message (the ``error`` method always returns true) in order to get
1680a nice error message (shown below). Now that we have our parser class, we can
1681use it like this:
1682
1683.. code-block:: c++
1684
1685 static cl::opt<unsigned, false, FileSizeParser>
1686 MFS("max-file-size", cl::desc("Maximum file size to accept"),
1687 cl::value_desc("size"));
1688
1689Which adds this to the output of our program:
1690
1691::
1692
1693 OPTIONS:
1694 -help - display available options (-help-hidden for more)
1695 ...
Paul Robinsonfd989c92014-10-13 21:11:22 +00001696 -max-file-size=<size> - Maximum file size to accept
Bill Wendling26f1f002012-08-08 08:21:24 +00001697
1698And we can test that our parse works correctly now (the test program just prints
1699out the max-file-size argument value):
1700
1701::
1702
1703 $ ./test
1704 MFS: 0
1705 $ ./test -max-file-size=123MB
1706 MFS: 128974848
1707 $ ./test -max-file-size=3G
1708 MFS: 3221225472
1709 $ ./test -max-file-size=dog
1710 -max-file-size option: 'dog' value invalid for file size argument!
1711
1712It looks like it works. The error message that we get is nice and helpful, and
1713we seem to accept reasonable file sizes. This wraps up the "custom parser"
1714tutorial.
1715
1716Exploiting external storage
1717---------------------------
1718
1719Several of the LLVM libraries define static ``cl::opt`` instances that will
1720automatically be included in any program that links with that library. This is
1721a feature. However, sometimes it is necessary to know the value of the command
1722line option outside of the library. In these cases the library does or should
1723provide an external storage location that is accessible to users of the
1724library. Examples of this include the ``llvm::DebugFlag`` exported by the
1725``lib/Support/Debug.cpp`` file and the ``llvm::TimePassesIsEnabled`` flag
1726exported by the ``lib/VMCore/PassManager.cpp`` file.
1727
1728.. todo::
1729
1730 TODO: complete this section
1731
1732.. _dynamically loaded options:
1733
1734Dynamically adding command line options
Jonathan Roelofsb032e042015-07-24 00:29:50 +00001735---------------------------------------
Bill Wendling26f1f002012-08-08 08:21:24 +00001736
1737.. todo::
1738
1739 TODO: fill in this section