blob: 83db04d6ed4f6a23ba4ad408f329e66957822cc3 [file] [log] [blame]
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
Reid Spencer5e554702004-11-16 06:11:52 +00005 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Misha Brukmanc86e8b12003-10-24 19:59:21 +00006 <title>CommandLine 2.0 Library Manual</title>
Misha Brukman7120c832003-11-07 18:11:14 +00007 <link rel="stylesheet" href="llvm.css" type="text/css">
Misha Brukmanc86e8b12003-10-24 19:59:21 +00008</head>
9<body>
Chris Lattnerba025252001-07-23 23:03:12 +000010
Misha Brukmanc86e8b12003-10-24 19:59:21 +000011<div class="doc_title">
12 CommandLine 2.0 Library Manual
13</div>
Chris Lattnerba025252001-07-23 23:03:12 +000014
15<ol>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000016 <li><a href="#introduction">Introduction</a></li>
17
Chris Lattnerba025252001-07-23 23:03:12 +000018 <li><a href="#quickstart">Quick Start Guide</a>
19 <ol>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000020 <li><a href="#bool">Boolean Arguments</a></li>
21 <li><a href="#alias">Argument Aliases</a></li>
Chris Lattner50761292002-08-06 19:36:06 +000022 <li><a href="#onealternative">Selecting an alternative from a
Misha Brukmanc86e8b12003-10-24 19:59:21 +000023 set of possibilities</a></li>
24 <li><a href="#namedalternatives">Named alternatives</a></li>
25 <li><a href="#list">Parsing a list of options</a></li>
26 <li><a href="#description">Adding freeform text to help output</a></li>
27 </ol></li>
28
Chris Lattnerba025252001-07-23 23:03:12 +000029 <li><a href="#referenceguide">Reference Guide</a>
Chris Lattner2e19f3e2002-07-25 19:27:01 +000030 <ol>
Chris Lattner50761292002-08-06 19:36:06 +000031 <li><a href="#positional">Positional Arguments</a>
Chris Lattner2e19f3e2002-07-25 19:27:01 +000032 <ul>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000033 <li><a href="#--">Specifying positional options with hyphens</a></li>
Reid Spencerc0f1b212004-08-13 20:19:14 +000034 <li><a href="#getPosition">Determining absolute position with
35 getPosition</a></li>
Chris Lattner50761292002-08-06 19:36:06 +000036 <li><a href="#cl::ConsumeAfter">The <tt>cl::ConsumeAfter</tt>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000037 modifier</a></li>
38 </ul></li>
39
40 <li><a href="#storage">Internal vs External Storage</a></li>
41
42 <li><a href="#attributes">Option Attributes</a></li>
43
Chris Lattner50761292002-08-06 19:36:06 +000044 <li><a href="#modifiers">Option Modifiers</a>
Chris Lattner2e19f3e2002-07-25 19:27:01 +000045 <ul>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000046 <li><a href="#hiding">Hiding an option from <tt>--help</tt>
47 output</a></li>
48 <li><a href="#numoccurrences">Controlling the number of occurrences
49 required and allowed</a></li>
Chris Lattner50761292002-08-06 19:36:06 +000050 <li><a href="#valrequired">Controlling whether or not a value must be
Misha Brukmanc86e8b12003-10-24 19:59:21 +000051 specified</a></li>
52 <li><a href="#formatting">Controlling other formatting options</a></li>
53 <li><a href="#misc">Miscellaneous option modifiers</a></li>
54 </ul></li>
55
Chris Lattner74ea5a62002-08-07 18:27:04 +000056 <li><a href="#toplevel">Top-Level Classes and Functions</a>
Chris Lattner50761292002-08-06 19:36:06 +000057 <ul>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000058 <li><a href="#cl::ParseCommandLineOptions">The
59 <tt>cl::ParseCommandLineOptions</tt> function</a></li>
60 <li><a href="#cl::ParseEnvironmentOptions">The
61 <tt>cl::ParseEnvironmentOptions</tt> function</a></li>
62 <li><a href="#cl::opt">The <tt>cl::opt</tt> class</a></li>
63 <li><a href="#cl::list">The <tt>cl::list</tt> class</a></li>
64 <li><a href="#cl::alias">The <tt>cl::alias</tt> class</a></li>
Reid Spencer5e554702004-11-16 06:11:52 +000065 <li><a href="#cl::extrahelp">The <tt>cl::extrahelp</tt> class</a></li>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000066 </ul></li>
67
Chris Lattner50761292002-08-06 19:36:06 +000068 <li><a href="#builtinparsers">Builtin parsers</a>
69 <ul>
70 <li><a href="#genericparser">The Generic <tt>parser&lt;t&gt;</tt>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000071 parser</a></li>
Chris Lattner50761292002-08-06 19:36:06 +000072 <li><a href="#boolparser">The <tt>parser&lt;bool&gt;</tt>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000073 specialization</a></li>
Chris Lattner50761292002-08-06 19:36:06 +000074 <li><a href="#stringparser">The <tt>parser&lt;string&gt;</tt>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000075 specialization</a></li>
Chris Lattner50761292002-08-06 19:36:06 +000076 <li><a href="#intparser">The <tt>parser&lt;int&gt;</tt>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000077 specialization</a></li>
Chris Lattner50761292002-08-06 19:36:06 +000078 <li><a href="#doubleparser">The <tt>parser&lt;double&gt;</tt> and
Misha Brukmanc86e8b12003-10-24 19:59:21 +000079 <tt>parser&lt;float&gt;</tt> specializations</a></li>
80 </ul></li>
81 </ol></li>
Chris Lattnerba025252001-07-23 23:03:12 +000082 <li><a href="#extensionguide">Extension Guide</a>
Chris Lattner2e19f3e2002-07-25 19:27:01 +000083 <ol>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000084 <li><a href="#customparser">Writing a custom parser</a></li>
85 <li><a href="#explotingexternal">Exploiting external storage</a></li>
86 <li><a href="#dynamicopts">Dynamically adding command line
87 options</a></li>
88 </ol></li>
89</ol>
Chris Lattner50761292002-08-06 19:36:06 +000090
Chris Lattner020e1fc2004-05-23 21:07:27 +000091<div class="doc_author">
92 <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a></p>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000093</div>
Chris Lattnerba025252001-07-23 23:03:12 +000094
95<!-- *********************************************************************** -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +000096<div class="doc_section">
Misha Brukman403ff612003-11-07 19:42:44 +000097 <a name="introduction">Introduction</a>
Misha Brukmanc86e8b12003-10-24 19:59:21 +000098</div>
Chris Lattnerba025252001-07-23 23:03:12 +000099<!-- *********************************************************************** -->
100
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000101<div class="doc_text">
102
103<p>This document describes the CommandLine argument processing library. It will
Chris Lattner50761292002-08-06 19:36:06 +0000104show you how to use it, and what it can do. The CommandLine library uses a
105declarative approach to specifying the command line options that your program
106takes. By default, these options declarations implicitly hold the value parsed
107for the option declared (of course this <a href="#storage">can be
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000108changed</a>).</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000109
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000110<p>Although there are a <b>lot</b> of command line argument parsing libraries
111out there in many different languages, none of them fit well with what I needed.
112By looking at the features and problems of other libraries, I designed the
113CommandLine library to have the following features:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000114
115<ol>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000116<li>Speed: The CommandLine library is very quick and uses little resources. The
117parsing time of the library is directly proportional to the number of arguments
118parsed, not the the number of options recognized. Additionally, command line
Chris Lattner364e6312003-06-21 21:45:56 +0000119argument values are captured transparently into user defined global variables,
120which can be accessed like any other variable (and with the same
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000121performance).</li>
Chris Lattnerba025252001-07-23 23:03:12 +0000122
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000123<li>Type Safe: As a user of CommandLine, you don't have to worry about
124remembering the type of arguments that you want (is it an int? a string? a
125bool? an enum?) and keep casting it around. Not only does this help prevent
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000126error prone constructs, it also leads to dramatically cleaner source code.</li>
Chris Lattnerba025252001-07-23 23:03:12 +0000127
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000128<li>No subclasses required: To use CommandLine, you instantiate variables that
129correspond to the arguments that you would like to capture, you don't subclass a
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000130parser. This means that you don't have to write <b>any</b> boilerplate
131code.</li>
Chris Lattnerba025252001-07-23 23:03:12 +0000132
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000133<li>Globally accessible: Libraries can specify command line arguments that are
134automatically enabled in any tool that links to the library. This is possible
135because the application doesn't have to keep a "list" of arguments to pass to
Chris Lattner50761292002-08-06 19:36:06 +0000136the parser. This also makes supporting <a href="#dynamicopts">dynamically
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000137loaded options</a> trivial.</li>
Chris Lattnerba025252001-07-23 23:03:12 +0000138
Chris Lattner74ea5a62002-08-07 18:27:04 +0000139<li>Cleaner: CommandLine supports enum and other types directly, meaning that
Chris Lattner50761292002-08-06 19:36:06 +0000140there is less error and more security built into the library. You don't have to
141worry about whether your integral command line argument accidentally got
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000142assigned a value that is not valid for your enum type.</li>
Chris Lattnerba025252001-07-23 23:03:12 +0000143
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000144<li>Powerful: The CommandLine library supports many different types of
Chris Lattner50761292002-08-06 19:36:06 +0000145arguments, from simple <a href="#boolparser">boolean flags</a> to <a
146href="#cl::opt">scalars arguments</a> (<a href="#stringparser">strings</a>, <a
147href="#intparser">integers</a>, <a href="#genericparser">enums</a>, <a
148href="#doubleparser">doubles</a>), to <a href="#cl::list">lists of
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000149arguments</a>. This is possible because CommandLine is...</li>
Chris Lattnerba025252001-07-23 23:03:12 +0000150
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000151<li>Extensible: It is very simple to add a new argument type to CommandLine.
152Simply specify the parser that you want to use with the command line option when
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000153you declare it. <a href="#customparser">Custom parsers</a> are no problem.</li>
Chris Lattnerba025252001-07-23 23:03:12 +0000154
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000155<li>Labor Saving: The CommandLine library cuts down on the amount of grunt work
Chris Lattner50761292002-08-06 19:36:06 +0000156that you, the user, have to do. For example, it automatically provides a
157<tt>--help</tt> option that shows the available command line options for your
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000158tool. Additionally, it does most of the basic correctness checking for
159you.</li>
Chris Lattner50761292002-08-06 19:36:06 +0000160
161<li>Capable: The CommandLine library can handle lots of different forms of
162options often found in real programs. For example, <a
163href="#positional">positional</a> arguments, <tt>ls</tt> style <a
164href="#cl::Grouping">grouping</a> options (to allow processing '<tt>ls
165-lad</tt>' naturally), <tt>ld</tt> style <a href="#cl::Prefix">prefix</a>
166options (to parse '<tt>-lmalloc -L/usr/lib</tt>'), and <a
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000167href="#cl::ConsumeAfter">interpreter style options</a>.</li>
Chris Lattner50761292002-08-06 19:36:06 +0000168
Chris Lattnerba025252001-07-23 23:03:12 +0000169</ol>
170
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000171<p>This document will hopefully let you jump in and start using CommandLine in
172your utility quickly and painlessly. Additionally it should be a simple
173reference manual to figure out how stuff works. If it is failing in some area
174(or you want an extension to the library), nag the author, <a
175href="mailto:sabre@nondot.org">Chris Lattner</a>.</p>
Chris Lattner50761292002-08-06 19:36:06 +0000176
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000177</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000178
179<!-- *********************************************************************** -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000180<div class="doc_section">
181 <a name="quickstart">Quick Start Guide</a>
182</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000183<!-- *********************************************************************** -->
184
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000185<div class="doc_text">
186
187<p>This section of the manual runs through a simple CommandLine'ification of a
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000188basic compiler tool. This is intended to show you how to jump into using the
189CommandLine library in your own program, and show you some of the cool things it
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000190can do.</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000191
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000192<p>To start out, you need to include the CommandLine header file into your
193program:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000194
Misha Brukman922bf922005-03-11 00:00:33 +0000195<div class="doc_code"><pre>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000196 #include "Support/CommandLine.h"
Misha Brukman922bf922005-03-11 00:00:33 +0000197</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000198
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000199<p>Additionally, you need to add this as the first line of your main
200program:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000201
Misha Brukman922bf922005-03-11 00:00:33 +0000202<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000203int main(int argc, char **argv) {
Chris Lattner74ea5a62002-08-07 18:27:04 +0000204 <a href="#cl::ParseCommandLineOptions">cl::ParseCommandLineOptions</a>(argc, argv);
Chris Lattnerba025252001-07-23 23:03:12 +0000205 ...
206}
Misha Brukman922bf922005-03-11 00:00:33 +0000207</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000208
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000209<p>... which actually parses the arguments and fills in the variable
210declarations.</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000211
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000212<p>Now that you are ready to support command line arguments, we need to tell the
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000213system which ones we want, and what type of argument they are. The CommandLine
Chris Lattner364e6312003-06-21 21:45:56 +0000214library uses a declarative syntax to model command line arguments with the
215global variable declarations that capture the parsed values. This means that
216for every command line option that you would like to support, there should be a
217global variable declaration to capture the result. For example, in a compiler,
218we would like to support the unix standard '<tt>-o &lt;filename&gt;</tt>' option
219to specify where to put the output. With the CommandLine library, this is
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000220represented like this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000221
Misha Brukman374258e2004-05-12 18:42:35 +0000222<a name="value_desc_example"></a>
Misha Brukman922bf922005-03-11 00:00:33 +0000223<div class="doc_code"><pre>
Misha Brukman374258e2004-05-12 18:42:35 +0000224<a href="#cl::opt">cl::opt</a>&lt;string&gt; OutputFilename("<i>o</i>", <a href="#cl::desc">cl::desc</a>("<i>Specify output filename</i>"), <a href="#cl::value_desc">cl::value_desc</a>("<i>filename</i>"));
Misha Brukman922bf922005-03-11 00:00:33 +0000225</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000226
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000227<p>This declares a global variable "<tt>OutputFilename</tt>" that is used to
Chris Lattner364e6312003-06-21 21:45:56 +0000228capture the result of the "<tt>o</tt>" argument (first parameter). We specify
229that this is a simple scalar option by using the "<tt><a
230href="#cl::opt">cl::opt</a></tt>" template (as opposed to the <a
231href="#list">"<tt>cl::list</tt> template</a>), and tell the CommandLine library
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000232that the data type that we are parsing is a string.</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000233
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000234<p>The second and third parameters (which are optional) are used to specify what
235to output for the "<tt>--help</tt>" option. In this case, we get a line that
236looks like this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000237
Misha Brukman922bf922005-03-11 00:00:33 +0000238<div class="doc_code"><pre>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000239USAGE: compiler [options]
Chris Lattnerba025252001-07-23 23:03:12 +0000240
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000241OPTIONS:
242 -help - display available options (--help-hidden for more)
Chris Lattner74ea5a62002-08-07 18:27:04 +0000243 <b>-o &lt;filename&gt; - Specify output filename</b>
Misha Brukman922bf922005-03-11 00:00:33 +0000244</pre></div>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000245
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000246<p>Because we specified that the command line option should parse using the
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000247<tt>string</tt> data type, the variable declared is automatically usable as a
248real string in all contexts that a normal C++ string object may be used. For
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000249example:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000250
Misha Brukman922bf922005-03-11 00:00:33 +0000251<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000252 ...
253 ofstream Output(OutputFilename.c_str());
254 if (Out.good()) ...
255 ...
Misha Brukman922bf922005-03-11 00:00:33 +0000256</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000257
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000258<p>There are many different options that you can use to customize the command
259line option handling library, but the above example shows the general interface
260to these options. The options can be specified in any order, and are specified
Chris Lattner50761292002-08-06 19:36:06 +0000261with helper functions like <a href="#cl::desc"><tt>cl::desc(...)</tt></a>, so
Chris Lattner74ea5a62002-08-07 18:27:04 +0000262there are no positional dependencies to remember. The available options are
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000263discussed in detail in the <a href="#referenceguide">Reference Guide</a>.</p>
Chris Lattner50761292002-08-06 19:36:06 +0000264
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000265<p>Continuing the example, we would like to have our compiler take an input
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000266filename as well as an output filename, but we do not want the input filename to
267be specified with a hyphen (ie, not <tt>-filename.c</tt>). To support this
Chris Lattner50761292002-08-06 19:36:06 +0000268style of argument, the CommandLine library allows for <a
269href="#positional">positional</a> arguments to be specified for the program.
270These positional arguments are filled with command line parameters that are not
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000271in option form. We use this feature like this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000272
Misha Brukman922bf922005-03-11 00:00:33 +0000273<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000274<a href="#cl::opt">cl::opt</a>&lt;string&gt; InputFilename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i>&lt;input file&gt;</i>"), <a href="#cl::init">cl::init</a>("<i>-</i>"));
Misha Brukman922bf922005-03-11 00:00:33 +0000275</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000276
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000277<p>This declaration indicates that the first positional argument should be
278treated as the input filename. Here we use the <tt><a
Chris Lattner50761292002-08-06 19:36:06 +0000279href="#cl::init">cl::init</a></tt> option to specify an initial value for the
280command line option, which is used if the option is not specified (if you do not
281specify a <tt><a href="#cl::init">cl::init</a></tt> modifier for an option, then
282the default constructor for the data type is used to initialize the value).
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000283Command line options default to being optional, so if we would like to require
Chris Lattner50761292002-08-06 19:36:06 +0000284that the user always specify an input filename, we would add the <tt><a
285href="#cl::Required">cl::Required</a></tt> flag, and we could eliminate the
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000286<tt><a href="#cl::init">cl::init</a></tt> modifier, like this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000287
Misha Brukman922bf922005-03-11 00:00:33 +0000288<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000289<a href="#cl::opt">cl::opt</a>&lt;string&gt; InputFilename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i>&lt;input file&gt;</i>"), <b><a href="#cl::Required">cl::Required</a></b>);
Misha Brukman922bf922005-03-11 00:00:33 +0000290</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000291
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000292<p>Again, the CommandLine library does not require the options to be specified
293in any particular order, so the above declaration is equivalent to:</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000294
Misha Brukman922bf922005-03-11 00:00:33 +0000295<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000296<a href="#cl::opt">cl::opt</a>&lt;string&gt; InputFilename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::Required">cl::Required</a>, <a href="#cl::desc">cl::desc</a>("<i>&lt;input file&gt;</i>"));
Misha Brukman922bf922005-03-11 00:00:33 +0000297</pre></div>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000298
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000299<p>By simply adding the <tt><a href="#cl::Required">cl::Required</a></tt> flag,
300the CommandLine library will automatically issue an error if the argument is not
Chris Lattner50761292002-08-06 19:36:06 +0000301specified, which shifts all of the command line option verification code out of
302your application into the library. This is just one example of how using flags
303can alter the default behaviour of the library, on a per-option basis. By
304adding one of the declarations above, the <tt>--help</tt> option synopsis is now
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000305extended to:</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000306
Misha Brukman922bf922005-03-11 00:00:33 +0000307<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000308USAGE: compiler [options] <b>&lt;input file&gt;</b>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000309
310OPTIONS:
311 -help - display available options (--help-hidden for more)
312 -o &lt;filename&gt; - Specify output filename
Misha Brukman922bf922005-03-11 00:00:33 +0000313</pre></div>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000314
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000315<p>... indicating that an input filename is expected.</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000316
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000317</div>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000318
Chris Lattnerba025252001-07-23 23:03:12 +0000319<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000320<div class="doc_subsection">
321 <a name="bool">Boolean Arguments</a>
322</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000323
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000324<div class="doc_text">
325
326<p>In addition to input and output filenames, we would like the compiler example
327to support three boolean flags: "<tt>-f</tt>" to force overwriting of the output
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000328file, "<tt>--quiet</tt>" to enable quiet mode, and "<tt>-q</tt>" for backwards
329compatibility with some of our users. We can support these by declaring options
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000330of boolean type like this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000331
Misha Brukman922bf922005-03-11 00:00:33 +0000332<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000333<a href="#cl::opt">cl::opt</a>&lt;bool&gt; Force ("<i>f</i>", <a href="#cl::desc">cl::desc</a>("<i>Overwrite output files</i>"));
334<a href="#cl::opt">cl::opt</a>&lt;bool&gt; Quiet ("<i>quiet</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>"));
335<a href="#cl::opt">cl::opt</a>&lt;bool&gt; Quiet2("<i>q</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>"), <a href="#cl::Hidden">cl::Hidden</a>);
Misha Brukman922bf922005-03-11 00:00:33 +0000336</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000337
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000338<p>This does what you would expect: it declares three boolean variables
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000339("<tt>Force</tt>", "<tt>Quiet</tt>", and "<tt>Quiet2</tt>") to recognize these
Chris Lattner50761292002-08-06 19:36:06 +0000340options. Note that the "<tt>-q</tt>" option is specified with the "<a
341href="#cl::Hidden"><tt>cl::Hidden</tt></a>" flag. This modifier prevents it
342from being shown by the standard "<tt>--help</tt>" output (note that it is still
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000343shown in the "<tt>--help-hidden</tt>" output).</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000344
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000345<p>The CommandLine library uses a <a href="#builtinparsers">different parser</a>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000346for different data types. For example, in the string case, the argument passed
347to the option is copied literally into the content of the string variable... we
348obviously cannot do that in the boolean case, however, so we must use a smarter
349parser. In the case of the boolean parser, it allows no options (in which case
350it assigns the value of true to the variable), or it allows the values
351"<tt>true</tt>" or "<tt>false</tt>" to be specified, allowing any of the
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000352following inputs:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000353
Misha Brukman922bf922005-03-11 00:00:33 +0000354<div class="doc_code"><pre>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000355 compiler -f # No value, 'Force' == true
356 compiler -f=true # Value specified, 'Force' == true
357 compiler -f=TRUE # Value specified, 'Force' == true
358 compiler -f=FALSE # Value specified, 'Force' == false
Misha Brukman922bf922005-03-11 00:00:33 +0000359</pre></div>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000360
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000361<p>... you get the idea. The <a href="#boolparser">bool parser</a> just turns
362the string values into boolean values, and rejects things like '<tt>compiler
Chris Lattner74ea5a62002-08-07 18:27:04 +0000363-f=foo</tt>'. Similarly, the <a href="#doubleparser">float</a>, <a
364href="#doubleparser">double</a>, and <a href="#intparser">int</a> parsers work
365like you would expect, using the '<tt>strtol</tt>' and '<tt>strtod</tt>' C
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000366library calls to parse the string value into the specified data type.</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000367
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000368<p>With the declarations above, "<tt>compiler --help</tt>" emits this:</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000369
Misha Brukman922bf922005-03-11 00:00:33 +0000370<div class="doc_code"><pre>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000371USAGE: compiler [options] &lt;input file&gt;
Chris Lattnerba025252001-07-23 23:03:12 +0000372
373OPTIONS:
Chris Lattner74ea5a62002-08-07 18:27:04 +0000374 <b>-f - Overwrite output files</b>
Chris Lattnerba025252001-07-23 23:03:12 +0000375 -o - Override output filename
Chris Lattner74ea5a62002-08-07 18:27:04 +0000376 <b>-quiet - Don't print informational messages</b>
Chris Lattnerba025252001-07-23 23:03:12 +0000377 -help - display available options (--help-hidden for more)
Misha Brukman922bf922005-03-11 00:00:33 +0000378</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000379
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000380<p>and "<tt>opt --help-hidden</tt>" prints this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000381
Misha Brukman922bf922005-03-11 00:00:33 +0000382<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000383USAGE: compiler [options] &lt;input file&gt;
Chris Lattnerba025252001-07-23 23:03:12 +0000384
385OPTIONS:
386 -f - Overwrite output files
387 -o - Override output filename
Chris Lattner74ea5a62002-08-07 18:27:04 +0000388 <b>-q - Don't print informational messages</b>
Chris Lattnerba025252001-07-23 23:03:12 +0000389 -quiet - Don't print informational messages
390 -help - display available options (--help-hidden for more)
Misha Brukman922bf922005-03-11 00:00:33 +0000391</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000392
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000393<p>This brief example has shown you how to use the '<tt><a
Chris Lattner50761292002-08-06 19:36:06 +0000394href="#cl::opt">cl::opt</a></tt>' class to parse simple scalar command line
395arguments. In addition to simple scalar arguments, the CommandLine library also
396provides primitives to support CommandLine option <a href="#alias">aliases</a>,
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000397and <a href="#list">lists</a> of options.</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000398
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000399</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000400
401<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000402<div class="doc_subsection">
403 <a name="alias">Argument Aliases</a>
404</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000405
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000406<div class="doc_text">
407
408<p>So far, the example works well, except for the fact that we need to check the
409quiet condition like this now:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000410
Misha Brukman922bf922005-03-11 00:00:33 +0000411<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000412...
413 if (!Quiet &amp;&amp; !Quiet2) printInformationalMessage(...);
414...
Misha Brukman922bf922005-03-11 00:00:33 +0000415</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000416
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000417<p>... which is a real pain! Instead of defining two values for the same
Chris Lattner50761292002-08-06 19:36:06 +0000418condition, we can use the "<tt><a href="#cl::alias">cl::alias</a></tt>" class to make the "<tt>-q</tt>"
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000419option an <b>alias</b> for the "<tt>-quiet</tt>" option, instead of providing
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000420a value itself:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000421
Misha Brukman922bf922005-03-11 00:00:33 +0000422<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000423<a href="#cl::opt">cl::opt</a>&lt;bool&gt; Force ("<i>f</i>", <a href="#cl::desc">cl::desc</a>("<i>Overwrite output files</i>"));
424<a href="#cl::opt">cl::opt</a>&lt;bool&gt; Quiet ("<i>quiet</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>"));
425<a href="#cl::alias">cl::alias</a> QuietA("<i>q</i>", <a href="#cl::desc">cl::desc</a>("<i>Alias for -quiet</i>"), <a href="#cl::aliasopt">cl::aliasopt</a>(Quiet));
Misha Brukman922bf922005-03-11 00:00:33 +0000426</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000427
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000428<p>The third line (which is the only one we modified from above) defines a
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000429"<tt>-q</tt> alias that updates the "<tt>Quiet</tt>" variable (as specified by
Chris Lattner50761292002-08-06 19:36:06 +0000430the <tt><a href="#cl::aliasopt">cl::aliasopt</a></tt> modifier) whenever it is
431specified. Because aliases do not hold state, the only thing the program has to
432query is the <tt>Quiet</tt> variable now. Another nice feature of aliases is
433that they automatically hide themselves from the <tt>-help</tt> output
434(although, again, they are still visible in the <tt>--help-hidden
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000435output</tt>).</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000436
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000437<p>Now the application code can simply use:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000438
Misha Brukman922bf922005-03-11 00:00:33 +0000439<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000440...
441 if (!Quiet) printInformationalMessage(...);
442...
Misha Brukman922bf922005-03-11 00:00:33 +0000443</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000444
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000445<p>... which is much nicer! The "<tt><a href="#cl::alias">cl::alias</a></tt>"
446can be used to specify an alternative name for any variable type, and has many
447uses.</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000448
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000449</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000450
451<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000452<div class="doc_subsection">
453 <a name="onealternative">Selecting an alternative from a set of
454 possibilities</a>
455</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000456
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000457<div class="doc_text">
458
459<p>So far, we have seen how the CommandLine library handles builtin types like
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000460<tt>std::string</tt>, <tt>bool</tt> and <tt>int</tt>, but how does it handle
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000461things it doesn't know about, like enums or '<tt>int*</tt>'s?</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000462
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000463<p>The answer is that it uses a table driven generic parser (unless you specify
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000464your own parser, as described in the <a href="#extensionguide">Extension
Reid Spencera39bf3d2004-08-10 16:38:18 +0000465Guide</a>). This parser maps literal strings to whatever type is required, and
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000466requires you to tell it what this mapping should be.</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000467
Reid Spencera39bf3d2004-08-10 16:38:18 +0000468<p>Lets say that we would like to add four optimization levels to our
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000469optimizer, using the standard flags "<tt>-g</tt>", "<tt>-O0</tt>",
470"<tt>-O1</tt>", and "<tt>-O2</tt>". We could easily implement this with boolean
471options like above, but there are several problems with this strategy:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000472
473<ol>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000474<li>A user could specify more than one of the options at a time, for example,
475"<tt>opt -O3 -O2</tt>". The CommandLine library would not be able to catch this
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000476erroneous input for us.</li>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000477
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000478<li>We would have to test 4 different variables to see which ones are set.</li>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000479
480<li>This doesn't map to the numeric levels that we want... so we cannot easily
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000481see if some level &gt;= "<tt>-O1</tt>" is enabled.</li>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000482
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000483</ol>
Chris Lattnerba025252001-07-23 23:03:12 +0000484
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000485<p>To cope with these problems, we can use an enum value, and have the
486CommandLine library fill it in with the appropriate level directly, which is
487used like this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000488
Misha Brukman922bf922005-03-11 00:00:33 +0000489<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000490enum OptLevel {
491 g, O1, O2, O3
492};
493
Chris Lattner50761292002-08-06 19:36:06 +0000494<a href="#cl::opt">cl::opt</a>&lt;OptLevel&gt; OptimizationLevel(<a href="#cl::desc">cl::desc</a>("<i>Choose optimization level:</i>"),
495 <a href="#cl::values">cl::values</a>(
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000496 clEnumVal(g , "<i>No optimizations, enable debugging</i>"),
497 clEnumVal(O1, "<i>Enable trivial optimizations</i>"),
498 clEnumVal(O2, "<i>Enable default optimizations</i>"),
499 clEnumVal(O3, "<i>Enable expensive optimizations</i>"),
Chris Lattner1fbd76e2004-07-16 00:10:54 +0000500 clEnumValEnd));
Chris Lattnerba025252001-07-23 23:03:12 +0000501
502...
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000503 if (OptimizationLevel &gt;= O2) doPartialRedundancyElimination(...);
Chris Lattnerba025252001-07-23 23:03:12 +0000504...
Misha Brukman922bf922005-03-11 00:00:33 +0000505</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000506
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000507<p>This declaration defines a variable "<tt>OptimizationLevel</tt>" of the
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000508"<tt>OptLevel</tt>" enum type. This variable can be assigned any of the values
509that are listed in the declaration (Note that the declaration list must be
Chris Lattner1fbd76e2004-07-16 00:10:54 +0000510terminated with the "<tt>clEnumValEnd</tt>" argument!). The CommandLine
511library enforces
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000512that the user can only specify one of the options, and it ensure that only valid
513enum values can be specified. The "<tt>clEnumVal</tt>" macros ensure that the
Chris Lattner50761292002-08-06 19:36:06 +0000514command line arguments matched the enum values. With this option added, our
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000515help output now is:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000516
Misha Brukman922bf922005-03-11 00:00:33 +0000517<div class="doc_code"><pre>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000518USAGE: compiler [options] &lt;input file&gt;
Chris Lattnerba025252001-07-23 23:03:12 +0000519
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000520OPTIONS:
Chris Lattner74ea5a62002-08-07 18:27:04 +0000521 <b>Choose optimization level:
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000522 -g - No optimizations, enable debugging
523 -O1 - Enable trivial optimizations
524 -O2 - Enable default optimizations
Chris Lattner74ea5a62002-08-07 18:27:04 +0000525 -O3 - Enable expensive optimizations</b>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000526 -f - Overwrite output files
527 -help - display available options (--help-hidden for more)
528 -o &lt;filename&gt; - Specify output filename
529 -quiet - Don't print informational messages
Misha Brukman922bf922005-03-11 00:00:33 +0000530</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000531
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000532<p>In this case, it is sort of awkward that flag names correspond directly to
533enum names, because we probably don't want a enum definition named "<tt>g</tt>"
534in our program. Because of this, we can alternatively write this example like
535this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000536
Misha Brukman922bf922005-03-11 00:00:33 +0000537<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000538enum OptLevel {
539 Debug, O1, O2, O3
540};
541
Chris Lattner50761292002-08-06 19:36:06 +0000542<a href="#cl::opt">cl::opt</a>&lt;OptLevel&gt; OptimizationLevel(<a href="#cl::desc">cl::desc</a>("<i>Choose optimization level:</i>"),
543 <a href="#cl::values">cl::values</a>(
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000544 clEnumValN(Debug, "g", "<i>No optimizations, enable debugging</i>"),
545 clEnumVal(O1 , "<i>Enable trivial optimizations</i>"),
546 clEnumVal(O2 , "<i>Enable default optimizations</i>"),
547 clEnumVal(O3 , "<i>Enable expensive optimizations</i>"),
Chris Lattner1fbd76e2004-07-16 00:10:54 +0000548 clEnumValEnd));
Chris Lattnerba025252001-07-23 23:03:12 +0000549
550...
551 if (OptimizationLevel == Debug) outputDebugInfo(...);
552...
Misha Brukman922bf922005-03-11 00:00:33 +0000553</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000554
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000555<p>By using the "<tt>clEnumValN</tt>" macro instead of "<tt>clEnumVal</tt>", we
556can directly specify the name that the flag should get. In general a direct
557mapping is nice, but sometimes you can't or don't want to preserve the mapping,
558which is when you would use it.</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000559
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000560</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000561
562<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000563<div class="doc_subsection">
564 <a name="namedalternatives">Named Alternatives</a>
565</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000566
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000567<div class="doc_text">
568
569<p>Another useful argument form is a named alternative style. We shall use this
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000570style in our compiler to specify different debug levels that can be used.
571Instead of each debug level being its own switch, we want to support the
572following options, of which only one can be specified at a time:
573"<tt>--debug-level=none</tt>", "<tt>--debug-level=quick</tt>",
574"<tt>--debug-level=detailed</tt>". To do this, we use the exact same format as
575our optimization level flags, but we also specify an option name. For this
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000576case, the code looks like this:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000577
Misha Brukman922bf922005-03-11 00:00:33 +0000578<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000579enum DebugLev {
580 nodebuginfo, quick, detailed
581};
582
583// Enable Debug Options to be specified on the command line
Chris Lattner3b8f3da2003-06-03 04:40:06 +0000584<a href="#cl::opt">cl::opt</a>&lt;DebugLev&gt; DebugLevel("<i>debug_level</i>", <a href="#cl::desc">cl::desc</a>("<i>Set the debugging level:</i>"),
Chris Lattner50761292002-08-06 19:36:06 +0000585 <a href="#cl::values">cl::values</a>(
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000586 clEnumValN(nodebuginfo, "none", "<i>disable debug information</i>"),
587 clEnumVal(quick, "<i>enable quick debug information</i>"),
588 clEnumVal(detailed, "<i>enable detailed debug information</i>"),
Chris Lattner1fbd76e2004-07-16 00:10:54 +0000589 clEnumValEnd));
Misha Brukman922bf922005-03-11 00:00:33 +0000590</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000591
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000592<p>This definition defines an enumerated command line variable of type "<tt>enum
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000593DebugLev</tt>", which works exactly the same way as before. The difference here
594is just the interface exposed to the user of your program and the help output by
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000595the "<tt>--help</tt>" option:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000596
Misha Brukman922bf922005-03-11 00:00:33 +0000597<div class="doc_code"><pre>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000598USAGE: compiler [options] &lt;input file&gt;
599
Chris Lattnerba025252001-07-23 23:03:12 +0000600OPTIONS:
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000601 Choose optimization level:
602 -g - No optimizations, enable debugging
603 -O1 - Enable trivial optimizations
604 -O2 - Enable default optimizations
605 -O3 - Enable expensive optimizations
Chris Lattner74ea5a62002-08-07 18:27:04 +0000606 <b>-debug_level - Set the debugging level:
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000607 =none - disable debug information
608 =quick - enable quick debug information
Chris Lattner74ea5a62002-08-07 18:27:04 +0000609 =detailed - enable detailed debug information</b>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000610 -f - Overwrite output files
611 -help - display available options (--help-hidden for more)
612 -o &lt;filename&gt; - Specify output filename
613 -quiet - Don't print informational messages
Misha Brukman922bf922005-03-11 00:00:33 +0000614</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000615
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000616<p>Again, the only structural difference between the debug level declaration and
John Criswella9f34ca2004-11-21 14:34:34 +0000617the optimization level declaration is that the debug level declaration includes
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000618an option name (<tt>"debug_level"</tt>), which automatically changes how the
619library processes the argument. The CommandLine library supports both forms so
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000620that you can choose the form most appropriate for your application.</p>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000621
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000622</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000623
624<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000625<div class="doc_subsection">
626 <a name="list">Parsing a list of options</a>
627</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000628
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000629<div class="doc_text">
630
631<p>Now that we have the standard run of the mill argument types out of the way,
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000632lets get a little wild and crazy. Lets say that we want our optimizer to accept
633a <b>list</b> of optimizations to perform, allowing duplicates. For example, we
634might want to run: "<tt>compiler -dce -constprop -inline -dce -strip</tt>". In
635this case, the order of the arguments and the number of appearances is very
Chris Lattner50761292002-08-06 19:36:06 +0000636important. This is what the "<tt><a href="#cl::list">cl::list</a></tt>"
637template is for. First, start by defining an enum of the optimizations that you
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000638would like to perform:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000639
Misha Brukman922bf922005-03-11 00:00:33 +0000640<div class="doc_code"><pre>
Chris Lattnerba025252001-07-23 23:03:12 +0000641enum Opts {
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000642 // 'inline' is a C++ keyword, so name it 'inlining'
Chris Lattnerba025252001-07-23 23:03:12 +0000643 dce, constprop, inlining, strip
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000644};
Misha Brukman922bf922005-03-11 00:00:33 +0000645</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000646
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000647<p>Then define your "<tt><a href="#cl::list">cl::list</a></tt>" variable:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000648
Misha Brukman922bf922005-03-11 00:00:33 +0000649<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000650<a href="#cl::list">cl::list</a>&lt;Opts&gt; OptimizationList(<a href="#cl::desc">cl::desc</a>("<i>Available Optimizations:</i>"),
651 <a href="#cl::values">cl::values</a>(
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000652 clEnumVal(dce , "<i>Dead Code Elimination</i>"),
Misha Brukman373086d2003-05-20 21:01:22 +0000653 clEnumVal(constprop , "<i>Constant Propagation</i>"),
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000654 clEnumValN(inlining, "<i>inline</i>", "<i>Procedure Integration</i>"),
655 clEnumVal(strip , "<i>Strip Symbols</i>"),
Chris Lattner1fbd76e2004-07-16 00:10:54 +0000656 clEnumValEnd));
Misha Brukman922bf922005-03-11 00:00:33 +0000657</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000658
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000659<p>This defines a variable that is conceptually of the type
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000660"<tt>std::vector&lt;enum Opts&gt;</tt>". Thus, you can access it with standard
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000661vector methods:</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000662
Misha Brukman922bf922005-03-11 00:00:33 +0000663<div class="doc_code"><pre>
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000664 for (unsigned i = 0; i != OptimizationList.size(); ++i)
Chris Lattnerba025252001-07-23 23:03:12 +0000665 switch (OptimizationList[i])
666 ...
Misha Brukman922bf922005-03-11 00:00:33 +0000667</pre></div>
Chris Lattnerba025252001-07-23 23:03:12 +0000668
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000669<p>... to iterate through the list of options specified.</p>
Chris Lattnerba025252001-07-23 23:03:12 +0000670
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000671<p>Note that the "<tt><a href="#cl::list">cl::list</a></tt>" template is
672completely general and may be used with any data types or other arguments that
673you can use with the "<tt><a href="#cl::opt">cl::opt</a></tt>" template. One
674especially useful way to use a list is to capture all of the positional
675arguments together if there may be more than one specified. In the case of a
676linker, for example, the linker takes several '<tt>.o</tt>' files, and needs to
677capture them into a list. This is naturally specified as:</p>
Chris Lattner03133252002-04-13 18:35:59 +0000678
Misha Brukman922bf922005-03-11 00:00:33 +0000679<div class="doc_code"><pre>
Chris Lattner03133252002-04-13 18:35:59 +0000680...
Chris Lattner50761292002-08-06 19:36:06 +0000681<a href="#cl::list">cl::list</a>&lt;std::string&gt; InputFilenames(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("&lt;Input files&gt;"), <a href="#cl::OneOrMore">cl::OneOrMore</a>);
Chris Lattner03133252002-04-13 18:35:59 +0000682...
Misha Brukman922bf922005-03-11 00:00:33 +0000683</pre></div>
Chris Lattner03133252002-04-13 18:35:59 +0000684
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000685<p>This variable works just like a "<tt>vector&lt;string&gt;</tt>" object. As
Chris Lattner2e19f3e2002-07-25 19:27:01 +0000686such, accessing the list is simple, just like above. In this example, we used
Chris Lattner50761292002-08-06 19:36:06 +0000687the <tt><a href="#cl::OneOrMore">cl::OneOrMore</a></tt> modifier to inform the
688CommandLine library that it is an error if the user does not specify any
689<tt>.o</tt> files on our command line. Again, this just reduces the amount of
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000690checking we have to do.</p>
Chris Lattner03133252002-04-13 18:35:59 +0000691
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000692</div>
Chris Lattner03133252002-04-13 18:35:59 +0000693
Chris Lattner74ea5a62002-08-07 18:27:04 +0000694<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000695<div class="doc_subsection">
696 <a name="description">Adding freeform text to help output</a>
697</div>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000698
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000699<div class="doc_text">
700
701<p>As our program grows and becomes more mature, we may decide to put summary
Chris Lattner74ea5a62002-08-07 18:27:04 +0000702information about what it does into the help output. The help output is styled
703to look similar to a Unix <tt>man</tt> page, providing concise information about
704a program. Unix <tt>man</tt> pages, however often have a description about what
705the program does. To add this to your CommandLine program, simply pass a third
706argument to the <a
707href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>
708call in main. This additional argument is then printed as the overview
709information for your program, allowing you to include any additional information
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000710that you want. For example:</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000711
Misha Brukman922bf922005-03-11 00:00:33 +0000712<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000713int main(int argc, char **argv) {
714 <a href="#cl::ParseCommandLineOptions">cl::ParseCommandLineOptions</a>(argc, argv, " CommandLine compiler example\n\n"
715 " This program blah blah blah...\n");
716 ...
717}
Misha Brukman922bf922005-03-11 00:00:33 +0000718</pre></div>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000719
Misha Brukman922bf922005-03-11 00:00:33 +0000720<p>would yield the help output:</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000721
Misha Brukman922bf922005-03-11 00:00:33 +0000722<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000723<b>OVERVIEW: CommandLine compiler example
724
725 This program blah blah blah...</b>
726
727USAGE: compiler [options] &lt;input file&gt;
728
729OPTIONS:
730 ...
731 -help - display available options (--help-hidden for more)
732 -o &lt;filename&gt; - Specify output filename
Misha Brukman922bf922005-03-11 00:00:33 +0000733</pre></div>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000734
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000735</div>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000736
737
Chris Lattnerba025252001-07-23 23:03:12 +0000738<!-- *********************************************************************** -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000739<div class="doc_section">
740 <a name="referenceguide">Reference Guide</a>
741</div>
Chris Lattnerba025252001-07-23 23:03:12 +0000742<!-- *********************************************************************** -->
743
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000744<div class="doc_text">
Chris Lattner50761292002-08-06 19:36:06 +0000745
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000746<p>Now that you know the basics of how to use the CommandLine library, this
747section will give you the detailed information you need to tune how command line
748options work, as well as information on more "advanced" command line option
749processing capabilities.</p>
750
751</div>
Chris Lattner50761292002-08-06 19:36:06 +0000752
753<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000754<div class="doc_subsection">
755 <a name="positional">Positional Arguments</a>
756</div>
Chris Lattner50761292002-08-06 19:36:06 +0000757
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000758<div class="doc_text">
759
760<p>Positional arguments are those arguments that are not named, and are not
Chris Lattner50761292002-08-06 19:36:06 +0000761specified with a hyphen. Positional arguments should be used when an option is
762specified by its position alone. For example, the standard Unix <tt>grep</tt>
763tool takes a regular expression argument, and an optional filename to search
764through (which defaults to standard input if a filename is not specified).
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000765Using the CommandLine library, this would be specified as:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000766
Misha Brukman922bf922005-03-11 00:00:33 +0000767<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000768<a href="#cl::opt">cl::opt</a>&lt;string&gt; Regex (<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i>&lt;regular expression&gt;</i>"), <a href="#cl::Required">cl::Required</a>);
769<a href="#cl::opt">cl::opt</a>&lt;string&gt; Filename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i>&lt;input file&gt;</i>"), <a href="#cl::init">cl::init</a>("<i>-</i>"));
Misha Brukman922bf922005-03-11 00:00:33 +0000770</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +0000771
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000772<p>Given these two option declarations, the <tt>--help</tt> output for our grep
773replacement would look like this:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000774
Misha Brukman922bf922005-03-11 00:00:33 +0000775<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000776USAGE: spiffygrep [options] <b>&lt;regular expression&gt; &lt;input file&gt;</b>
Chris Lattner50761292002-08-06 19:36:06 +0000777
778OPTIONS:
779 -help - display available options (--help-hidden for more)
Misha Brukman922bf922005-03-11 00:00:33 +0000780</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +0000781
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000782<p>... and the resultant program could be used just like the standard
783<tt>grep</tt> tool.</p>
Chris Lattner50761292002-08-06 19:36:06 +0000784
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000785<p>Positional arguments are sorted by their order of construction. This means
786that command line options will be ordered according to how they are listed in a
Reid Spencerc0f1b212004-08-13 20:19:14 +0000787.cpp file, but will not have an ordering defined if the positional arguments
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000788are defined in multiple .cpp files. The fix for this problem is simply to
789define all of your positional arguments in one .cpp file.</p>
Chris Lattner50761292002-08-06 19:36:06 +0000790
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000791</div>
Chris Lattner50761292002-08-06 19:36:06 +0000792
793
794<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000795<div class="doc_subsubsection">
796 <a name="--">Specifying positional options with hyphens</a>
797</div>
Chris Lattner50761292002-08-06 19:36:06 +0000798
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000799<div class="doc_text">
800
801<p>Sometimes you may want to specify a value to your positional argument that
Chris Lattner50761292002-08-06 19:36:06 +0000802starts with a hyphen (for example, searching for '<tt>-foo</tt>' in a file). At
803first, you will have trouble doing this, because it will try to find an argument
804named '<tt>-foo</tt>', and will fail (and single quotes will not save you).
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000805Note that the system <tt>grep</tt> has the same problem:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000806
Misha Brukman922bf922005-03-11 00:00:33 +0000807<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000808 $ spiffygrep '-foo' test.txt
809 Unknown command line argument '-foo'. Try: spiffygrep --help'
810
811 $ grep '-foo' test.txt
812 grep: illegal option -- f
813 grep: illegal option -- o
814 grep: illegal option -- o
815 Usage: grep -hblcnsviw pattern file . . .
Misha Brukman922bf922005-03-11 00:00:33 +0000816</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +0000817
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000818<p>The solution for this problem is the same for both your tool and the system
Chris Lattner50761292002-08-06 19:36:06 +0000819version: use the '<tt>--</tt>' marker. When the user specifies '<tt>--</tt>' on
820the command line, it is telling the program that all options after the
821'<tt>--</tt>' should be treated as positional arguments, not options. Thus, we
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000822can use it like this:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000823
Misha Brukman922bf922005-03-11 00:00:33 +0000824<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000825 $ spiffygrep -- -foo test.txt
826 ...output...
Misha Brukman922bf922005-03-11 00:00:33 +0000827</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +0000828
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000829</div>
Chris Lattner50761292002-08-06 19:36:06 +0000830
831<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000832<div class="doc_subsubsection">
Reid Spencerc0f1b212004-08-13 20:19:14 +0000833 <a name="getPosition">Determining absolute position with getPosition()</a>
834</div>
835<div class="doc_text">
836 <p>Sometimes an option can affect or modify the meaning of another option. For
837 example, consider <tt>gcc</tt>'s <tt>-x LANG</tt> option. This tells
838 <tt>gcc</tt> to ignore the suffix of subsequent positional arguments and force
839 the file to be interpreted as if it contained source code in language
840 <tt>LANG</tt>. In order to handle this properly , you need to know the
841 absolute position of each argument, especially those in lists, so their
842 interaction(s) can be applied correctly. This is also useful for options like
843 <tt>-llibname</tt> which is actually a positional argument that starts with
844 a dash.</p>
845 <p>So, generally, the problem is that you have two <tt>cl::list</tt> variables
846 that interact in some way. To ensure the correct interaction, you can use the
847 <tt>cl::list::getPosition(optnum)</tt> method. This method returns the
848 absolute position (as found on the command line) of the <tt>optnum</tt>
849 item in the <tt>cl::list</tt>.</p>
Misha Brukman922bf922005-03-11 00:00:33 +0000850 <p>The idiom for usage is like this:</p>
851
852 <div class="doc_code"><pre>
Reid Spencerc0f1b212004-08-13 20:19:14 +0000853 static cl::list&lt;std::string&gt; Files(cl::Positional, cl::OneOrMore);
854 static cl::listlt;std::string&gt; Libraries("l", cl::ZeroOrMore);
855
856 int main(int argc, char**argv) {
857 // ...
858 std::vector&lt;std::string&gt;::iterator fileIt = Files.begin();
859 std::vector&lt;std::string&gt;::iterator libIt = Libraries.begin();
860 unsigned libPos = 0, filePos = 0;
861 while ( 1 ) {
862 if ( libIt != Libraries.end() )
863 libPos = Libraries.getPosition( libIt - Libraries.begin() );
864 else
865 libPos = 0;
866 if ( fileIt != Files.end() )
867 filePos = Files.getPosition( fileIt - Files.begin() );
868 else
869 filePos = 0;
870
871 if ( filePos != 0 &amp;&amp; (libPos == 0 || filePos &lt; libPos) ) {
872 // Source File Is next
873 ++fileIt;
874 }
875 else if ( libPos != 0 &amp;&amp; (filePos == 0 || libPos &lt; filePos) ) {
876 // Library is next
877 ++libIt;
878 }
879 else
880 break; // we're done with the list
881 }
Misha Brukman922bf922005-03-11 00:00:33 +0000882 }</pre></div>
883
Reid Spencerc0f1b212004-08-13 20:19:14 +0000884 <p>Note that, for compatibility reasons, the <tt>cl::opt</tt> also supports an
885 <tt>unsigned getPosition()</tt> option that will provide the absolute position
886 of that option. You can apply the same approach as above with a
887 <tt>cl::opt</tt> and a <tt>cl::list</tt> option as you can with two lists.</p>
888</div>
889
890<!-- _______________________________________________________________________ -->
891<div class="doc_subsubsection">
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000892 <a name="cl::ConsumeAfter">The <tt>cl::ConsumeAfter</tt> modifier</a>
893</div>
Chris Lattner50761292002-08-06 19:36:06 +0000894
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000895<div class="doc_text">
896
897<p>The <tt>cl::ConsumeAfter</tt> <a href="#formatting">formatting option</a> is
Chris Lattner50761292002-08-06 19:36:06 +0000898used to construct programs that use "interpreter style" option processing. With
899this style of option processing, all arguments specified after the last
900positional argument are treated as special interpreter arguments that are not
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000901interpreted by the command line argument.</p>
Chris Lattner50761292002-08-06 19:36:06 +0000902
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000903<p>As a concrete example, lets say we are developing a replacement for the
904standard Unix Bourne shell (<tt>/bin/sh</tt>). To run <tt>/bin/sh</tt>, first
905you specify options to the shell itself (like <tt>-x</tt> which turns on trace
Chris Lattner50761292002-08-06 19:36:06 +0000906output), then you specify the name of the script to run, then you specify
907arguments to the script. These arguments to the script are parsed by the bourne
908shell command line option processor, but are not interpreted as options to the
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000909shell itself. Using the CommandLine library, we would specify this as:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000910
Misha Brukman922bf922005-03-11 00:00:33 +0000911<div class="doc_code"><pre>
Chris Lattner50761292002-08-06 19:36:06 +0000912<a href="#cl::opt">cl::opt</a>&lt;string&gt; Script(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i>&lt;input script&gt;</i>"), <a href="#cl::init">cl::init</a>("-"));
913<a href="#cl::list">cl::list</a>&lt;string&gt; Argv(<a href="#cl::ConsumeAfter">cl::ConsumeAfter</a>, <a href="#cl::desc">cl::desc</a>("<i>&lt;program arguments&gt;...</i>"));
914<a href="#cl::opt">cl::opt</a>&lt;bool&gt; Trace("<i>x</i>", <a href="#cl::desc">cl::desc</a>("<i>Enable trace output</i>"));
Misha Brukman922bf922005-03-11 00:00:33 +0000915</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +0000916
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000917<p>which automatically provides the help output:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000918
Misha Brukman922bf922005-03-11 00:00:33 +0000919<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +0000920USAGE: spiffysh [options] <b>&lt;input script&gt; &lt;program arguments&gt;...</b>
Chris Lattner50761292002-08-06 19:36:06 +0000921
922OPTIONS:
923 -help - display available options (--help-hidden for more)
Chris Lattner74ea5a62002-08-07 18:27:04 +0000924 <b>-x - Enable trace output</b>
Misha Brukman922bf922005-03-11 00:00:33 +0000925</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +0000926
Misha Brukman922bf922005-03-11 00:00:33 +0000927<p>At runtime, if we run our new shell replacement as `<tt>spiffysh -x test.sh
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000928-a -x -y bar</tt>', the <tt>Trace</tt> variable will be set to true, the
Chris Lattner50761292002-08-06 19:36:06 +0000929<tt>Script</tt> variable will be set to "<tt>test.sh</tt>", and the
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000930<tt>Argv</tt> list will contain <tt>["-a", "-x", "-y", "bar"]</tt>, because they
931were specified after the last positional argument (which is the script
932name).</p>
Chris Lattner50761292002-08-06 19:36:06 +0000933
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000934<p>There are several limitations to when <tt>cl::ConsumeAfter</tt> options can
935be specified. For example, only one <tt>cl::ConsumeAfter</tt> can be specified
936per program, there must be at least one <a href="#positional">positional
Chris Lattnerb68bd762004-05-06 22:03:59 +0000937argument</a> specified, there must not be any <a href="#cl::list">cl::list</a>
938positional arguments, and the <tt>cl::ConsumeAfter</tt> option should be a <a
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000939href="#cl::list">cl::list</a> option.</p>
Chris Lattner50761292002-08-06 19:36:06 +0000940
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000941</div>
Chris Lattner50761292002-08-06 19:36:06 +0000942
943<!-- ======================================================================= -->
Chris Lattnerb68bd762004-05-06 22:03:59 +0000944<div class="doc_subsection">
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000945 <a name="storage">Internal vs External Storage</a>
946</div>
Chris Lattner50761292002-08-06 19:36:06 +0000947
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000948<div class="doc_text">
949
950<p>By default, all command line options automatically hold the value that they
Chris Lattner50761292002-08-06 19:36:06 +0000951parse from the command line. This is very convenient in the common case,
952especially when combined with the ability to define command line options in the
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000953files that use them. This is called the internal storage model.</p>
Chris Lattner50761292002-08-06 19:36:06 +0000954
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000955<p>Sometimes, however, it is nice to separate the command line option processing
Chris Lattner50761292002-08-06 19:36:06 +0000956code from the storage of the value parsed. For example, lets say that we have a
957'<tt>-debug</tt>' option that we would like to use to enable debug information
958across the entire body of our program. In this case, the boolean value
959controlling the debug code should be globally accessable (in a header file, for
960example) yet the command line option processing code should not be exposed to
961all of these clients (requiring lots of .cpp files to #include
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000962<tt>CommandLine.h</tt>).</p>
Chris Lattner50761292002-08-06 19:36:06 +0000963
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000964<p>To do this, set up your .h file with your option, like this for example:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000965
Misha Brukmanb139a7d2005-02-09 22:49:05 +0000966<div class="doc_code">
Chris Lattner50761292002-08-06 19:36:06 +0000967<pre>
968<i>// DebugFlag.h - Get access to the '-debug' command line option
969//
970
971// DebugFlag - This boolean is set to true if the '-debug' command line option
972// is specified. This should probably not be referenced directly, instead, use
973// the DEBUG macro below.
974//</i>
975extern bool DebugFlag;
976
977<i>// DEBUG macro - This macro should be used by code to emit debug information.
978// In the '-debug' option is specified on the command line, and if this is a
979// debug build, then the code specified as the option to the macro will be
980// executed. Otherwise it will not be. Example:
981//
Misha Brukmanb139a7d2005-02-09 22:49:05 +0000982// DEBUG(std::cerr &lt;&lt; "Bitset contains: " &lt;&lt; Bitset &lt;&lt; "\n");
Chris Lattner50761292002-08-06 19:36:06 +0000983//</i>
Misha Brukmanb139a7d2005-02-09 22:49:05 +0000984<span class="doc_hilite">#ifdef NDEBUG
Chris Lattner50761292002-08-06 19:36:06 +0000985#define DEBUG(X)
986#else
Misha Brukmanb139a7d2005-02-09 22:49:05 +0000987#define DEBUG(X)</span> do { if (DebugFlag) { X; } } while (0)
988<span class="doc_hilite">#endif</span>
Chris Lattner50761292002-08-06 19:36:06 +0000989</pre>
Misha Brukmanb139a7d2005-02-09 22:49:05 +0000990</div>
Chris Lattner50761292002-08-06 19:36:06 +0000991
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000992<p>This allows clients to blissfully use the <tt>DEBUG()</tt> macro, or the
Chris Lattner50761292002-08-06 19:36:06 +0000993<tt>DebugFlag</tt> explicitly if they want to. Now we just need to be able to
994set the <tt>DebugFlag</tt> boolean when the option is set. To do this, we pass
995an additial argument to our command line argument processor, and we specify
Misha Brukmanc86e8b12003-10-24 19:59:21 +0000996where to fill in with the <a href="#cl::location">cl::location</a>
997attribute:</p>
Chris Lattner50761292002-08-06 19:36:06 +0000998
Misha Brukmanb139a7d2005-02-09 22:49:05 +0000999<div class="doc_code">
Chris Lattner50761292002-08-06 19:36:06 +00001000<pre>
Misha Brukmanb139a7d2005-02-09 22:49:05 +00001001bool DebugFlag; <i>// the actual value</i>
Chris Lattner76884682003-08-01 21:30:37 +00001002static <a href="#cl::opt">cl::opt</a>&lt;bool, true&gt; <i>// The parser</i>
Misha Brukmanb139a7d2005-02-09 22:49:05 +00001003Debug("<i>debug</i>", <a href="#cl::desc">cl::desc</a>("<i>Enable debug output</i>"), <a href="#cl::Hidden">cl::Hidden</a>, <a href="#cl::location">cl::location</a>(DebugFlag));
Chris Lattner50761292002-08-06 19:36:06 +00001004</pre>
Misha Brukmanb139a7d2005-02-09 22:49:05 +00001005</div>
Chris Lattner50761292002-08-06 19:36:06 +00001006
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001007<p>In the above example, we specify "<tt>true</tt>" as the second argument to
Misha Brukmanb139a7d2005-02-09 22:49:05 +00001008the <tt><a href="#cl::opt">cl::opt</a></tt> template, indicating that the
1009template should not maintain a copy of the value itself. In addition to this,
1010we specify the <tt><a href="#cl::location">cl::location</a></tt> attribute, so
1011that <tt>DebugFlag</tt> is automatically set.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001012
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001013</div>
Chris Lattner50761292002-08-06 19:36:06 +00001014
1015<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001016<div class="doc_subsection">
1017 <a name="attributes">Option Attributes</a>
1018</div>
Chris Lattner50761292002-08-06 19:36:06 +00001019
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001020<div class="doc_text">
1021
1022<p>This section describes the basic attributes that you can specify on
1023options.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001024
1025<ul>
1026
1027<li>The option name attribute (which is required for all options, except <a
1028href="#positional">positional options</a>) specifies what the option name is.
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001029This option is specified in simple double quotes:
Chris Lattner50761292002-08-06 19:36:06 +00001030
Chris Lattner74ea5a62002-08-07 18:27:04 +00001031<pre>
1032<a href="#cl::opt">cl::opt</a>&lt;<b>bool</b>&gt; Quiet("<i>quiet</i>");
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001033</pre>
Chris Lattner50761292002-08-06 19:36:06 +00001034
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001035</li>
1036
1037<li><a name="cl::desc">The <b><tt>cl::desc</tt></b></a> attribute specifies a
Chris Lattner50761292002-08-06 19:36:06 +00001038description for the option to be shown in the <tt>--help</tt> output for the
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001039program.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001040
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001041<li><a name="cl::value_desc">The <b><tt>cl::value_desc</tt></b></a> attribute
Chris Lattner50761292002-08-06 19:36:06 +00001042specifies a string that can be used to fine tune the <tt>--help</tt> output for
1043a command line option. Look <a href="#value_desc_example">here</a> for an
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001044example.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001045
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001046<li><a name="cl::init">The <b><tt>cl::init</tt></b></a> attribute specifies an
Chris Lattner50761292002-08-06 19:36:06 +00001047inital value for a <a href="#cl::opt">scalar</a> option. If this attribute is
1048not specified then the command line option value defaults to the value created
Brian Gaeke8b89b2b2003-08-19 22:56:22 +00001049by the default constructor for the type. <b>Warning</b>: If you specify both
1050<b><tt>cl::init</tt></b> and <b><tt>cl::location</tt></b> for an option,
1051you must specify <b><tt>cl::location</tt></b> first, so that when the
1052command-line parser sees <b><tt>cl::init</tt></b>, it knows where to put the
1053initial value. (You will get an error at runtime if you don't put them in
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001054the right order.)</li>
Chris Lattner50761292002-08-06 19:36:06 +00001055
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001056<li><a name="cl::location">The <b><tt>cl::location</tt></b></a> attribute where to
Chris Lattner50761292002-08-06 19:36:06 +00001057store the value for a parsed command line option if using external storage. See
1058the section on <a href="#storage">Internal vs External Storage</a> for more
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001059information.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001060
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001061<li><a name="cl::aliasopt">The <b><tt>cl::aliasopt</tt></b></a> attribute
Misha Brukmanb139a7d2005-02-09 22:49:05 +00001062specifies which option a <tt><a href="#cl::alias">cl::alias</a></tt> option is
1063an alias for.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001064
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001065<li><a name="cl::values">The <b><tt>cl::values</tt></b></a> attribute specifies
1066the string-to-value mapping to be used by the generic parser. It takes a
Chris Lattner1fbd76e2004-07-16 00:10:54 +00001067<b>clEnumValEnd terminated</b> list of (option, value, description) triplets
1068that
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001069specify the option name, the value mapped to, and the description shown in the
1070<tt>--help</tt> for the tool. Because the generic parser is used most
1071frequently with enum values, two macros are often useful:
1072
Chris Lattner50761292002-08-06 19:36:06 +00001073<ol>
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001074
1075<li><a name="clEnumVal">The <b><tt>clEnumVal</tt></b></a> macro is used as a
1076nice simple way to specify a triplet for an enum. This macro automatically
1077makes the option name be the same as the enum name. The first option to the
1078macro is the enum, the second is the description for the command line
1079option.</li>
1080
1081<li><a name="clEnumValN">The <b><tt>clEnumValN</tt></b></a> macro is used to
1082specify macro options where the option name doesn't equal the enum name. For
1083this macro, the first argument is the enum value, the second is the flag name,
1084and the second is the description.</li>
1085
Chris Lattner50761292002-08-06 19:36:06 +00001086</ol>
1087
1088You will get a compile time error if you try to use cl::values with a parser
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001089that does not support it.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001090
1091</ul>
1092
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001093</div>
Chris Lattner50761292002-08-06 19:36:06 +00001094
1095<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001096<div class="doc_subsection">
1097 <a name="modifiers">Option Modifiers</a>
1098</div>
Chris Lattner50761292002-08-06 19:36:06 +00001099
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001100<div class="doc_text">
1101
1102<p>Option modifiers are the flags and expressions that you pass into the
Chris Lattner50761292002-08-06 19:36:06 +00001103constructors for <tt><a href="#cl::opt">cl::opt</a></tt> and <tt><a
1104href="#cl::list">cl::list</a></tt>. These modifiers give you the ability to
1105tweak how options are parsed and how <tt>--help</tt> output is generated to fit
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001106your application well.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001107
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001108<p>These options fall into five main catagories:</p>
Chris Lattner50761292002-08-06 19:36:06 +00001109
1110<ol>
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001111<li><a href="#hiding">Hiding an option from <tt>--help</tt> output</a></li>
1112<li><a href="#numoccurrences">Controlling the number of occurrences
1113 required and allowed</a></li>
Chris Lattner50761292002-08-06 19:36:06 +00001114<li><a href="#valrequired">Controlling whether or not a value must be
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001115 specified</a></li>
1116<li><a href="#formatting">Controlling other formatting options</a></li>
1117<li><a href="#misc">Miscellaneous option modifiers</a></li>
1118</ol>
Chris Lattner50761292002-08-06 19:36:06 +00001119
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001120<p>It is not possible to specify two options from the same catagory (you'll get
1121a runtime error) to a single option, except for options in the miscellaneous
Chris Lattner7333cc12003-05-22 20:36:06 +00001122catagory. The CommandLine library specifies defaults for all of these settings
1123that are the most useful in practice and the most common, which mean that you
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001124usually shouldn't have to worry about these.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001125
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001126</div>
Chris Lattner50761292002-08-06 19:36:06 +00001127
1128<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001129<div class="doc_subsubsection">
1130 <a name="hiding">Hiding an option from <tt>--help</tt> output</a>
1131</div>
Chris Lattner50761292002-08-06 19:36:06 +00001132
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001133<div class="doc_text">
1134
1135<p>The <tt>cl::NotHidden</tt>, <tt>cl::Hidden</tt>, and
1136<tt>cl::ReallyHidden</tt> modifiers are used to control whether or not an option
1137appears in the <tt>--help</tt> and <tt>--help-hidden</tt> output for the
1138compiled program:</p>
Chris Lattner50761292002-08-06 19:36:06 +00001139
1140<ul>
1141
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001142<li><a name="cl::NotHidden">The <b><tt>cl::NotHidden</tt></b></a> modifier
1143(which is the default for <tt><a href="#cl::opt">cl::opt</a></tt> and <tt><a
Chris Lattner50761292002-08-06 19:36:06 +00001144href="#cl::list">cl::list</a></tt> options), indicates the option is to appear
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001145in both help listings.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001146
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001147<li><a name="cl::Hidden">The <b><tt>cl::Hidden</tt></b></a> modifier (which is the
Chris Lattner50761292002-08-06 19:36:06 +00001148default for <tt><a href="#cl::alias">cl::alias</a></tt> options), indicates that
1149the option should not appear in the <tt>--help</tt> output, but should appear in
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001150the <tt>--help-hidden</tt> output.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001151
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001152<li><a name="cl::ReallyHidden">The <b><tt>cl::ReallyHidden</tt></b></a> modifier,
1153indicates that the option should not appear in any help output.</li>
1154
Chris Lattner50761292002-08-06 19:36:06 +00001155</ul>
1156
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001157</div>
1158
Chris Lattner50761292002-08-06 19:36:06 +00001159<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001160<div class="doc_subsubsection">
1161 <a name="numoccurrences">Controlling the number of occurrences required and
1162 allowed</a>
1163</div>
Chris Lattner50761292002-08-06 19:36:06 +00001164
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001165<div class="doc_text">
1166
1167<p>This group of options is used to control how many time an option is allowed
1168(or required) to be specified on the command line of your program. Specifying a
Chris Lattner50761292002-08-06 19:36:06 +00001169value for this setting allows the CommandLine library to do error checking for
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001170you.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001171
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001172<p>The allowed values for this option group are:</p>
Chris Lattner50761292002-08-06 19:36:06 +00001173
1174<ul>
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001175
1176<li><a name="cl::Optional">The <b><tt>cl::Optional</tt></b></a> modifier (which
1177is the default for the <tt><a href="#cl::opt">cl::opt</a></tt> and <tt><a
Chris Lattner50761292002-08-06 19:36:06 +00001178href="#cl::alias">cl::alias</a></tt> classes) indicates that your program will
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001179allow either zero or one occurrence of the option to be specified.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001180
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001181<li><a name="cl::ZeroOrMore">The <b><tt>cl::ZeroOrMore</tt></b></a> modifier
1182(which is the default for the <tt><a href="#cl::list">cl::list</a></tt> class)
1183indicates that your program will allow the option to be specified zero or more
1184times.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001185
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001186<li><a name="cl::Required">The <b><tt>cl::Required</tt></b></a> modifier
1187indicates that the specified option must be specified exactly one time.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001188
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001189<li><a name="cl::OneOrMore">The <b><tt>cl::OneOrMore</tt></b></a> modifier
1190indicates that the option must be specified at least one time.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001191
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001192<li>The <b><tt>cl::ConsumeAfter</tt></b> modifier is described in the <a
1193href="#positional">Positional arguments section</a></li>
Chris Lattner50761292002-08-06 19:36:06 +00001194
1195</ul>
1196
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001197<p>If an option is not specified, then the value of the option is equal to the
Chris Lattner50761292002-08-06 19:36:06 +00001198value specified by the <tt><a href="#cl::init">cl::init</a></tt> attribute. If
1199the <tt><a href="#cl::init">cl::init</a></tt> attribute is not specified, the
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001200option value is initialized with the default constructor for the data type.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001201
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001202<p>If an option is specified multiple times for an option of the <tt><a
1203href="#cl::opt">cl::opt</a></tt> class, only the last value will be
1204retained.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001205
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001206</div>
Chris Lattner50761292002-08-06 19:36:06 +00001207
1208<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001209<div class="doc_subsubsection">
1210 <a name="valrequired">Controlling whether or not a value must be specified</a>
1211</div>
Chris Lattner50761292002-08-06 19:36:06 +00001212
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001213<div class="doc_text">
1214
1215<p>This group of options is used to control whether or not the option allows a
Chris Lattner50761292002-08-06 19:36:06 +00001216value to be present. In the case of the CommandLine library, a value is either
1217specified with an equal sign (e.g. '<tt>-index-depth=17</tt>') or as a trailing
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001218string (e.g. '<tt>-o a.out</tt>').</p>
Chris Lattner50761292002-08-06 19:36:06 +00001219
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001220<p>The allowed values for this option group are:</p>
Chris Lattner50761292002-08-06 19:36:06 +00001221
1222<ul>
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001223
1224<li><a name="cl::ValueOptional">The <b><tt>cl::ValueOptional</tt></b></a> modifier
Chris Lattner50761292002-08-06 19:36:06 +00001225(which is the default for <tt>bool</tt> typed options) specifies that it is
1226acceptable to have a value, or not. A boolean argument can be enabled just by
1227appearing on the command line, or it can have an explicit '<tt>-foo=true</tt>'.
1228If an option is specified with this mode, it is illegal for the value to be
1229provided without the equal sign. Therefore '<tt>-foo true</tt>' is illegal. To
1230get this behavior, you must use the <a
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001231href="#cl::ValueRequired">cl::ValueRequired</a> modifier.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001232
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001233<li><a name="cl::ValueRequired">The <b><tt>cl::ValueRequired</tt></b></a> modifier
Chris Lattner50761292002-08-06 19:36:06 +00001234(which is the default for all other types except for <a
1235href="#onealternative">unnamed alternatives using the generic parser</a>)
1236specifies that a value must be provided. This mode informs the command line
1237library that if an option is not provides with an equal sign, that the next
1238argument provided must be the value. This allows things like '<tt>-o
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001239a.out</tt>' to work.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001240
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001241<li><a name="cl::ValueDisallowed">The <b><tt>cl::ValueDisallowed</tt></b></a>
1242modifier (which is the default for <a href="#onealternative">unnamed
1243alternatives using the generic parser</a>) indicates that it is a runtime error
1244for the user to specify a value. This can be provided to disallow users from
1245providing options to boolean options (like '<tt>-foo=true</tt>').</li>
Chris Lattner50761292002-08-06 19:36:06 +00001246
1247</ul>
1248
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001249<p>In general, the default values for this option group work just like you would
Chris Lattner50761292002-08-06 19:36:06 +00001250want them to. As mentioned above, you can specify the <a
1251href="#cl::ValueDisallowed">cl::ValueDisallowed</a> modifier to a boolean
1252argument to restrict your command line parser. These options are mostly useful
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001253when <a href="#extensionguide">extending the library</a>.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001254
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001255</div>
Chris Lattner50761292002-08-06 19:36:06 +00001256
1257<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001258<div class="doc_subsubsection">
1259 <a name="formatting">Controlling other formatting options</a>
1260</div>
Chris Lattner50761292002-08-06 19:36:06 +00001261
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001262<div class="doc_text">
1263
1264<p>The formatting option group is used to specify that the command line option
1265has special abilities and is otherwise different from other command line
1266arguments. As usual, you can only specify at most one of these arguments.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001267
1268<ul>
Chris Lattner50761292002-08-06 19:36:06 +00001269
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001270<li><a name="cl::NormalFormatting">The <b><tt>cl::NormalFormatting</tt></b></a>
1271modifier (which is the default all options) specifies that this option is
1272"normal".</li>
Chris Lattner50761292002-08-06 19:36:06 +00001273
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001274<li><a name="cl::Positional">The <b><tt>cl::Positional</tt></b></a> modifier
1275specifies that this is a positional argument, that does not have a command line
1276option associated with it. See the <a href="#positional">Positional
1277Arguments</a> section for more information.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001278
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001279<li>The <b><a href="#cl::ConsumeAfter"><tt>cl::ConsumeAfter</tt></a></b> modifier
1280specifies that this option is used to capture "interpreter style" arguments. See <a href="#cl::ConsumeAfter">this section for more information</a>.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001281
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001282<li><a name="cl::Prefix">The <b><tt>cl::Prefix</tt></b></a> modifier specifies
Reid Spencer80bb6932004-11-24 06:13:42 +00001283that this option prefixes its value. With 'Prefix' options, the equal sign does
1284not separate the value from the option name specified. Instead, the value is
1285everything after the prefix, including any equal sign if present. This is useful
1286for processing odd arguments like <tt>-lmalloc</tt> and <tt>-L/usr/lib</tt> in a
Misha Brukman3f2fa8d2005-05-10 22:05:27 +00001287linker tool or <tt>-DNAME=value</tt> in a compiler tool. Here, the
Reid Spencer80bb6932004-11-24 06:13:42 +00001288'<tt>l</tt>', '<tt>D</tt>' and '<tt>L</tt>' options are normal string (or list)
Misha Brukman3f2fa8d2005-05-10 22:05:27 +00001289options, that have the <b><tt><a href="#cl::Prefix">cl::Prefix</a></tt></b>
1290modifier added to allow the CommandLine library to recognize them. Note that
1291<b><tt><a href="#cl::Prefix">cl::Prefix</a></tt></b> options must not have the
1292<b><tt><a href="#cl::ValueDisallowed">cl::ValueDisallowed</a></tt></b> modifier
1293specified.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001294
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001295<li><a name="cl::Grouping">The <b><tt>cl::Grouping</tt></b></a> modifier is used
1296to implement unix style tools (like <tt>ls</tt>) that have lots of single letter
Chris Lattner50761292002-08-06 19:36:06 +00001297arguments, but only require a single dash. For example, the '<tt>ls -labF</tt>'
1298command actually enables four different options, all of which are single
Misha Brukman3f2fa8d2005-05-10 22:05:27 +00001299letters. Note that <b><tt><a href="#cl::Grouping">cl::Grouping</a></tt></b>
1300options cannot have values.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001301
1302</ul>
1303
Misha Brukman3f2fa8d2005-05-10 22:05:27 +00001304<p>The CommandLine library does not restrict how you use the <b><tt><a
1305href="#cl::Prefix">cl::Prefix</a></tt></b> or <b><tt><a
1306href="#cl::Grouping">cl::Grouping</a></tt></b> modifiers, but it is possible to
1307specify ambiguous argument settings. Thus, it is possible to have multiple
1308letter options that are prefix or grouping options, and they will still work as
1309designed.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001310
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001311<p>To do this, the CommandLine library uses a greedy algorithm to parse the
1312input option into (potentially multiple) prefix and grouping options. The
1313strategy basically looks like this:</p>
Chris Lattner50761292002-08-06 19:36:06 +00001314
Misha Brukman922bf922005-03-11 00:00:33 +00001315<div class="doc_code"><tt>parse(string OrigInput) {</tt>
Misha Brukman374258e2004-05-12 18:42:35 +00001316
Chris Lattner50761292002-08-06 19:36:06 +00001317<ol>
1318<li><tt>string input = OrigInput;</tt>
1319<li><tt>if (isOption(input)) return getOption(input).parse();</tt>&nbsp;&nbsp;&nbsp;&nbsp;<i>// Normal option</i>
1320<li><tt>while (!isOption(input) &amp;&amp; !input.empty()) input.pop_back();</tt>&nbsp;&nbsp;&nbsp;&nbsp;<i>// Remove the last letter</i>
1321<li><tt>if (input.empty()) return error();</tt>&nbsp;&nbsp;&nbsp;&nbsp;<i>// No matching option</i>
1322<li><tt>if (getOption(input).isPrefix())<br>
1323&nbsp;&nbsp;return getOption(input).parse(input);</tt>
1324<li><tt>while (!input.empty()) {&nbsp;&nbsp;&nbsp;&nbsp;<i>// Must be grouping options</i><br>
1325&nbsp;&nbsp;getOption(input).parse();<br>
1326&nbsp;&nbsp;OrigInput.erase(OrigInput.begin(), OrigInput.begin()+input.length());<br>
1327&nbsp;&nbsp;input = OrigInput;<br>
1328&nbsp;&nbsp;while (!isOption(input) &amp;&amp; !input.empty()) input.pop_back();<br>
1329}</tt>
Misha Brukman374258e2004-05-12 18:42:35 +00001330<li><tt>if (!OrigInput.empty()) error();</tt></li>
Chris Lattner50761292002-08-06 19:36:06 +00001331</ol>
Misha Brukman374258e2004-05-12 18:42:35 +00001332
1333<p><tt>}</tt></p>
Misha Brukman922bf922005-03-11 00:00:33 +00001334</div>
Chris Lattner50761292002-08-06 19:36:06 +00001335
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001336</div>
Chris Lattner7333cc12003-05-22 20:36:06 +00001337
1338<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001339<div class="doc_subsubsection">
1340 <a name="misc">Miscellaneous option modifiers</a>
1341</div>
Chris Lattner7333cc12003-05-22 20:36:06 +00001342
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001343<div class="doc_text">
1344
1345<p>The miscellaneous option modifiers are the only flags where you can specify
1346more than one flag from the set: they are not mutually exclusive. These flags
1347specify boolean properties that modify the option.</p>
Chris Lattner7333cc12003-05-22 20:36:06 +00001348
1349<ul>
1350
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001351<li><a name="cl::CommaSeparated">The <b><tt>cl::CommaSeparated</tt></b></a> modifier
Chris Lattner7333cc12003-05-22 20:36:06 +00001352indicates that any commas specified for an option's value should be used to
1353split the value up into multiple values for the option. For example, these two
1354options are equivalent when <tt>cl::CommaSeparated</tt> is specified:
1355"<tt>-foo=a -foo=b -foo=c</tt>" and "<tt>-foo=a,b,c</tt>". This option only
1356makes sense to be used in a case where the option is allowed to accept one or
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001357more values (i.e. it is a <a href="#cl::list">cl::list</a> option).</li>
1358
Chris Lattnerb68bd762004-05-06 22:03:59 +00001359<li><a name="cl::PositionalEatsArgs">The
1360<b><tt>cl::PositionalEatsArgs</tt></b></a> modifier (which only applies to
1361positional arguments, and only makes sense for lists) indicates that positional
1362argument should consume any strings after it (including strings that start with
1363a "-") up until another recognized positional argument. For example, if you
1364have two "eating" positional arguments "<tt>pos1</tt>" and "<tt>pos2</tt>" the
1365string "<tt>-pos1 -foo -bar baz -pos2 -bork</tt>" would cause the "<tt>-foo -bar
1366-baz</tt>" strings to be applied to the "<tt>-pos1</tt>" option and the
1367"<tt>-bork</tt>" string to be applied to the "<tt>-pos2</tt>" option.</li>
1368
Chris Lattner7333cc12003-05-22 20:36:06 +00001369</ul>
1370
Chris Lattnerb68bd762004-05-06 22:03:59 +00001371<p>So far, these are the only two miscellaneous option modifiers.</p>
Chris Lattner7333cc12003-05-22 20:36:06 +00001372
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001373</div>
Chris Lattner7333cc12003-05-22 20:36:06 +00001374
Chris Lattner50761292002-08-06 19:36:06 +00001375<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001376<div class="doc_subsection">
1377 <a name="toplevel">Top-Level Classes and Functions</a>
1378</div>
Chris Lattner50761292002-08-06 19:36:06 +00001379
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001380<div class="doc_text">
1381
1382<p>Despite all of the built-in flexibility, the CommandLine option library
1383really only consists of one function (<a
Chris Lattner74ea5a62002-08-07 18:27:04 +00001384href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>)
1385and three main classes: <a href="#cl::opt"><tt>cl::opt</tt></a>, <a
1386href="#cl::list"><tt>cl::list</tt></a>, and <a
1387href="#cl::alias"><tt>cl::alias</tt></a>. This section describes these three
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001388classes in detail.</p>
1389
1390</div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001391
1392<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001393<div class="doc_subsubsection">
1394 <a name="cl::ParseCommandLineOptions">The <tt>cl::ParseCommandLineOptions</tt>
1395 function</a>
1396</div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001397
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001398<div class="doc_text">
1399
1400<p>The <tt>cl::ParseCommandLineOptions</tt> function is designed to be called
Chris Lattner74ea5a62002-08-07 18:27:04 +00001401directly from <tt>main</tt>, and is used to fill in the values of all of the
1402command line option variables once <tt>argc</tt> and <tt>argv</tt> are
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001403available.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001404
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001405<p>The <tt>cl::ParseCommandLineOptions</tt> function requires two parameters
Chris Lattner74ea5a62002-08-07 18:27:04 +00001406(<tt>argc</tt> and <tt>argv</tt>), but may also take an optional third parameter
1407which holds <a href="#description">additional extra text</a> to emit when the
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001408<tt>--help</tt> option is invoked.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001409
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001410</div>
Chris Lattner50761292002-08-06 19:36:06 +00001411
1412<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001413<div class="doc_subsubsection">
1414 <a name="cl::ParseEnvironmentOptions">The <tt>cl::ParseEnvironmentOptions</tt>
1415 function</a>
1416</div>
Brian Gaekef2ea9e02003-08-19 23:11:43 +00001417
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001418<div class="doc_text">
Brian Gaekef2ea9e02003-08-19 23:11:43 +00001419
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001420<p>The <tt>cl::ParseEnvironmentOptions</tt> function has mostly the same effects
1421as <a
1422href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>,
1423except that it is designed to take values for options from an environment
1424variable, for those cases in which reading the command line is not convenient or
1425not desired. It fills in the values of all the command line option variables
1426just like <a
1427href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>
1428does.</p>
1429
1430<p>It takes three parameters: first, the name of the program (since
1431<tt>argv</tt> may not be available, it can't just look in <tt>argv[0]</tt>),
1432second, the name of the environment variable to examine, and third, the optional
Brian Gaekef2ea9e02003-08-19 23:11:43 +00001433<a href="#description">additional extra text</a> to emit when the
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001434<tt>--help</tt> option is invoked.</p>
Brian Gaekef2ea9e02003-08-19 23:11:43 +00001435
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001436<p><tt>cl::ParseEnvironmentOptions</tt> will break the environment
Brian Gaekef2ea9e02003-08-19 23:11:43 +00001437variable's value up into words and then process them using
1438<a href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>.
1439<b>Note:</b> Currently <tt>cl::ParseEnvironmentOptions</tt> does not support
1440quoting, so an environment variable containing <tt>-option "foo bar"</tt> will
1441be parsed as three words, <tt>-option</tt>, <tt>"foo</tt>, and <tt>bar"</tt>,
1442which is different from what you would get from the shell with the same
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001443input.</p>
1444
1445</div>
Brian Gaekef2ea9e02003-08-19 23:11:43 +00001446
1447<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001448<div class="doc_subsubsection">
1449 <a name="cl::opt">The <tt>cl::opt</tt> class</a>
1450</div>
Chris Lattner50761292002-08-06 19:36:06 +00001451
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001452<div class="doc_text">
1453
1454<p>The <tt>cl::opt</tt> class is the class used to represent scalar command line
Chris Lattner50761292002-08-06 19:36:06 +00001455options, and is the one used most of the time. It is a templated class which
1456can take up to three arguments (all except for the first have default values
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001457though):</p>
Chris Lattner50761292002-08-06 19:36:06 +00001458
Misha Brukman922bf922005-03-11 00:00:33 +00001459<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001460<b>namespace</b> cl {
1461 <b>template</b> &lt;<b>class</b> DataType, <b>bool</b> ExternalStorage = <b>false</b>,
1462 <b>class</b> ParserClass = parser&lt;DataType&gt; &gt;
1463 <b>class</b> opt;
Chris Lattner50761292002-08-06 19:36:06 +00001464}
Misha Brukman922bf922005-03-11 00:00:33 +00001465</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +00001466
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001467<p>The first template argument specifies what underlying data type the command
1468line argument is, and is used to select a default parser implementation. The
1469second template argument is used to specify whether the option should contain
1470the storage for the option (the default) or whether external storage should be
1471used to contain the value parsed for the option (see <a href="#storage">Internal
1472vs External Storage</a> for more information).</p>
Chris Lattner50761292002-08-06 19:36:06 +00001473
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001474<p>The third template argument specifies which parser to use. The default value
Chris Lattner50761292002-08-06 19:36:06 +00001475selects an instantiation of the <tt>parser</tt> class based on the underlying
1476data type of the option. In general, this default works well for most
1477applications, so this option is only used when using a <a
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001478href="#customparser">custom parser</a>.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001479
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001480</div>
Chris Lattner50761292002-08-06 19:36:06 +00001481
1482<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001483<div class="doc_subsubsection">
1484 <a name="cl::list">The <tt>cl::list</tt> class</a>
1485</div>
Chris Lattner50761292002-08-06 19:36:06 +00001486
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001487<div class="doc_text">
1488
1489<p>The <tt>cl::list</tt> class is the class used to represent a list of command
Chris Lattner50761292002-08-06 19:36:06 +00001490line options. It too is a templated class which can take up to three
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001491arguments:</p>
Chris Lattner50761292002-08-06 19:36:06 +00001492
Misha Brukman922bf922005-03-11 00:00:33 +00001493<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001494<b>namespace</b> cl {
1495 <b>template</b> &lt;<b>class</b> DataType, <b>class</b> Storage = <b>bool</b>,
1496 <b>class</b> ParserClass = parser&lt;DataType&gt; &gt;
1497 <b>class</b> list;
Chris Lattner50761292002-08-06 19:36:06 +00001498}
Misha Brukman922bf922005-03-11 00:00:33 +00001499</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +00001500
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001501<p>This class works the exact same as the <a
1502href="#cl::opt"><tt>cl::opt</tt></a> class, except that the second argument is
1503the <b>type</b> of the external storage, not a boolean value. For this class,
1504the marker type '<tt>bool</tt>' is used to indicate that internal storage should
1505be used.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001506
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001507</div>
Chris Lattner50761292002-08-06 19:36:06 +00001508
1509<!-- _______________________________________________________________________ -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001510<div class="doc_subsubsection">
1511 <a name="cl::alias">The <tt>cl::alias</tt> class</a>
1512</div>
Chris Lattner50761292002-08-06 19:36:06 +00001513
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001514<div class="doc_text">
1515
1516<p>The <tt>cl::alias</tt> class is a nontemplated class that is used to form
1517aliases for other arguments.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001518
Misha Brukman922bf922005-03-11 00:00:33 +00001519<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001520<b>namespace</b> cl {
1521 <b>class</b> alias;
Chris Lattner50761292002-08-06 19:36:06 +00001522}
Misha Brukman922bf922005-03-11 00:00:33 +00001523</pre></div>
Chris Lattner50761292002-08-06 19:36:06 +00001524
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001525<p>The <a href="#cl::aliasopt"><tt>cl::aliasopt</tt></a> attribute should be
1526used to specify which option this is an alias for. Alias arguments default to
1527being <a href="#cl::Hidden">Hidden</a>, and use the aliased options parser to do
1528the conversion from string to data.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001529
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001530</div>
Chris Lattner50761292002-08-06 19:36:06 +00001531
Reid Spencer5e554702004-11-16 06:11:52 +00001532<!-- _______________________________________________________________________ -->
1533<div class="doc_subsubsection">
1534 <a name="cl::extrahelp">The <tt>cl::extrahelp</tt> class</a>
1535</div>
1536
1537<div class="doc_text">
1538
1539<p>The <tt>cl::extrahelp</tt> class is a nontemplated class that allows extra
1540help text to be printed out for the <tt>--help</tt> option.</p>
1541
Misha Brukman922bf922005-03-11 00:00:33 +00001542<div class="doc_code"><pre>
Reid Spencer5e554702004-11-16 06:11:52 +00001543<b>namespace</b> cl {
1544 <b>struct</b> extrahelp;
1545}
Misha Brukman922bf922005-03-11 00:00:33 +00001546</pre></div>
Reid Spencer5e554702004-11-16 06:11:52 +00001547
1548<p>To use the extrahelp, simply construct one with a <tt>const char*</tt>
1549parameter to the constructor. The text passed to the constructor will be printed
1550at the bottom of the help message, verbatim. Note that multiple
Misha Brukman922bf922005-03-11 00:00:33 +00001551<tt>cl::extrahelp</tt> <b>can</b> be used, but this practice is discouraged. If
Reid Spencer5e554702004-11-16 06:11:52 +00001552your tool needs to print additional help information, put all that help into a
1553single <tt>cl::extrahelp</tt> instance.</p>
1554<p>For example:</p>
Misha Brukman922bf922005-03-11 00:00:33 +00001555<div class="doc_code"><pre>
Reid Spencer5e554702004-11-16 06:11:52 +00001556 cl::extrahelp("\nADDITIONAL HELP:\n\n This is the extra help\n");
Misha Brukman922bf922005-03-11 00:00:33 +00001557</pre></div>
Reid Spencer5e554702004-11-16 06:11:52 +00001558</div>
1559
Chris Lattner50761292002-08-06 19:36:06 +00001560<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001561<div class="doc_subsection">
1562 <a name="builtinparsers">Builtin parsers</a>
1563</div>
Chris Lattner50761292002-08-06 19:36:06 +00001564
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001565<div class="doc_text">
1566
1567<p>Parsers control how the string value taken from the command line is
1568translated into a typed value, suitable for use in a C++ program. By default,
1569the CommandLine library uses an instance of <tt>parser&lt;type&gt;</tt> if the
Chris Lattner50761292002-08-06 19:36:06 +00001570command line option specifies that it uses values of type '<tt>type</tt>'.
1571Because of this, custom option processing is specified with specializations of
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001572the '<tt>parser</tt>' class.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001573
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001574<p>The CommandLine library provides the following builtin parser
1575specializations, which are sufficient for most applications. It can, however,
1576also be extended to work with new data types and new ways of interpreting the
1577same data. See the <a href="#customparser">Writing a Custom Parser</a> for more
1578details on this type of library extension.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001579
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001580<ul>
1581
1582<li><a name="genericparser">The <b>generic <tt>parser&lt;t&gt;</tt> parser</b></a>
Chris Lattner50761292002-08-06 19:36:06 +00001583can be used to map strings values to any data type, through the use of the <a
1584href="#cl::values">cl::values</a> property, which specifies the mapping
1585information. The most common use of this parser is for parsing enum values,
1586which allows you to use the CommandLine library for all of the error checking to
1587make sure that only valid enum values are specified (as opposed to accepting
1588arbitrary strings). Despite this, however, the generic parser class can be used
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001589for any data type.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001590
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001591<li><a name="boolparser">The <b><tt>parser&lt;bool&gt;</tt> specialization</b></a>
Chris Lattner50761292002-08-06 19:36:06 +00001592is used to convert boolean strings to a boolean value. Currently accepted
1593strings are "<tt>true</tt>", "<tt>TRUE</tt>", "<tt>True</tt>", "<tt>1</tt>",
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001594"<tt>false</tt>", "<tt>FALSE</tt>", "<tt>False</tt>", and "<tt>0</tt>".</li>
Chris Lattner50761292002-08-06 19:36:06 +00001595
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001596<li><a name="stringparser">The <b><tt>parser&lt;string&gt;</tt>
1597specialization</b></a> simply stores the parsed string into the string value
1598specified. No conversion or modification of the data is performed.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001599
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001600<li><a name="intparser">The <b><tt>parser&lt;int&gt;</tt> specialization</b></a>
Chris Lattner50761292002-08-06 19:36:06 +00001601uses the C <tt>strtol</tt> function to parse the string input. As such, it will
1602accept a decimal number (with an optional '+' or '-' prefix) which must start
1603with a non-zero digit. It accepts octal numbers, which are identified with a
1604'<tt>0</tt>' prefix digit, and hexadecimal numbers with a prefix of
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001605'<tt>0x</tt>' or '<tt>0X</tt>'.</li>
Chris Lattner50761292002-08-06 19:36:06 +00001606
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001607<li><a name="doubleparser">The <b><tt>parser&lt;double&gt;</tt></b></a> and
Chris Lattner50761292002-08-06 19:36:06 +00001608<b><tt>parser&lt;float&gt;</tt> specializations</b> use the standard C
1609<tt>strtod</tt> function to convert floating point strings into floating point
1610values. As such, a broad range of string formats is supported, including
1611exponential notation (ex: <tt>1.7e15</tt>) and properly supports locales.
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001612</li>
Chris Lattner50761292002-08-06 19:36:06 +00001613
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001614</ul>
Chris Lattnerba025252001-07-23 23:03:12 +00001615
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001616</div>
Chris Lattnerba025252001-07-23 23:03:12 +00001617
1618<!-- *********************************************************************** -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001619<div class="doc_section">
1620 <a name="extensionguide">Extension Guide</a>
1621</div>
Chris Lattnerba025252001-07-23 23:03:12 +00001622<!-- *********************************************************************** -->
1623
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001624<div class="doc_text">
1625
1626<p>Although the CommandLine library has a lot of functionality built into it
Chris Lattner74ea5a62002-08-07 18:27:04 +00001627already (as discussed previously), one of its true strengths lie in its
1628extensibility. This section discusses how the CommandLine library works under
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001629the covers and illustrates how to do some simple, common, extensions.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001630
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001631</div>
Chris Lattnerba025252001-07-23 23:03:12 +00001632
Chris Lattner50761292002-08-06 19:36:06 +00001633<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001634<div class="doc_subsection">
1635 <a name="customparser">Writing a custom parser</a>
1636</div>
Chris Lattner50761292002-08-06 19:36:06 +00001637
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001638<div class="doc_text">
1639
1640<p>One of the simplest and most common extensions is the use of a custom parser.
Chris Lattner74ea5a62002-08-07 18:27:04 +00001641As <a href="#builtinparsers">discussed previously</a>, parsers are the portion
1642of the CommandLine library that turns string input from the user into a
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001643particular parsed data type, validating the input in the process.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001644
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001645<p>There are two ways to use a new parser:</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001646
1647<ol>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001648
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001649<li>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001650
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001651<p>Specialize the <a href="#genericparser"><tt>cl::parser</tt></a> template for
1652your custom data type.<p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001653
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001654<p>This approach has the advantage that users of your custom data type will
1655automatically use your custom parser whenever they define an option with a value
1656type of your data type. The disadvantage of this approach is that it doesn't
1657work if your fundemental data type is something that is already supported.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001658
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001659</li>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001660
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001661<li>
1662
1663<p>Write an independent class, using it explicitly from options that need
1664it.</p>
1665
1666<p>This approach works well in situations where you would line to parse an
1667option using special syntax for a not-very-special data-type. The drawback of
1668this approach is that users of your parser have to be aware that they are using
1669your parser, instead of the builtin ones.</p>
1670
1671</li>
1672
1673</ol>
1674
1675<p>To guide the discussion, we will discuss a custom parser that accepts file
Chris Lattner74ea5a62002-08-07 18:27:04 +00001676sizes, specified with an optional unit after the numeric size. For example, we
1677would like to parse "102kb", "41M", "1G" into the appropriate integer value. In
1678this case, the underlying data type we want to parse into is
1679'<tt>unsigned</tt>'. We choose approach #2 above because we don't want to make
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001680this the default for all <tt>unsigned</tt> options.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001681
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001682<p>To start out, we declare our new <tt>FileSizeParser</tt> class:</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001683
Misha Brukman922bf922005-03-11 00:00:33 +00001684<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001685<b>struct</b> FileSizeParser : <b>public</b> cl::basic_parser&lt;<b>unsigned</b>&gt; {
1686 <i>// parse - Return true on error.</i>
1687 <b>bool</b> parse(cl::Option &amp;O, <b>const char</b> *ArgName, <b>const</b> std::string &amp;ArgValue,
1688 <b>unsigned</b> &amp;Val);
1689};
Misha Brukman922bf922005-03-11 00:00:33 +00001690</pre></div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001691
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001692<p>Our new class inherits from the <tt>cl::basic_parser</tt> template class to
1693fill in the default, boiler plate, code for us. We give it the data type that
1694we parse into (the last argument to the <tt>parse</tt> method so that clients of
Chris Lattner74ea5a62002-08-07 18:27:04 +00001695our custom parser know what object type to pass in to the parse method (here we
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001696declare that we parse into '<tt>unsigned</tt>' variables.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001697
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001698<p>For most purposes, the only method that must be implemented in a custom
1699parser is the <tt>parse</tt> method. The <tt>parse</tt> method is called
1700whenever the option is invoked, passing in the option itself, the option name,
1701the string to parse, and a reference to a return value. If the string to parse
1702is not well formed, the parser should output an error message and return true.
1703Otherwise it should return false and set '<tt>Val</tt>' to the parsed value. In
1704our example, we implement <tt>parse</tt> as:</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001705
Misha Brukman922bf922005-03-11 00:00:33 +00001706<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001707<b>bool</b> FileSizeParser::parse(cl::Option &amp;O, <b>const char</b> *ArgName,
1708 <b>const</b> std::string &amp;Arg, <b>unsigned</b> &amp;Val) {
1709 <b>const char</b> *ArgStart = Arg.c_str();
1710 <b>char</b> *End;
1711
1712 <i>// Parse integer part, leaving 'End' pointing to the first non-integer char</i>
1713 Val = (unsigned)strtol(ArgStart, &amp;End, 0);
1714
1715 <b>while</b> (1) {
1716 <b>switch</b> (*End++) {
1717 <b>case</b> 0: <b>return</b> false; <i>// No error</i>
1718 <b>case</b> 'i': <i>// Ignore the 'i' in KiB if people use that</i>
1719 <b>case</b> 'b': <b>case</b> 'B': <i>// Ignore B suffix</i>
1720 <b>break</b>;
1721
1722 <b>case</b> 'g': <b>case</b> 'G': Val *= 1024*1024*1024; <b>break</b>;
1723 <b>case</b> 'm': <b>case</b> 'M': Val *= 1024*1024; <b>break</b>;
1724 <b>case</b> 'k': <b>case</b> 'K': Val *= 1024; <b>break</b>;
1725
1726 default:
1727 <i>// Print an error message if unrecognized character!</i>
1728 <b>return</b> O.error(": '" + Arg + "' value invalid for file size argument!");
1729 }
1730 }
1731}
Misha Brukman922bf922005-03-11 00:00:33 +00001732</pre></div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001733
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001734<p>This function implements a very simple parser for the kinds of strings we are
Chris Lattner74ea5a62002-08-07 18:27:04 +00001735interested in. Although it has some holes (it allows "<tt>123KKK</tt>" for
1736example), it is good enough for this example. Note that we use the option
1737itself to print out the error message (the <tt>error</tt> method always returns
1738true) in order to get a nice error message (shown below). Now that we have our
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001739parser class, we can use it like this:</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001740
Misha Brukman922bf922005-03-11 00:00:33 +00001741<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001742<b>static</b> <a href="#cl::opt">cl::opt</a>&lt;<b>unsigned</b>, <b>false</b>, FileSizeParser&gt;
1743MFS(<i>"max-file-size"</i>, <a href="#cl::desc">cl::desc</a>(<i>"Maximum file size to accept"</i>),
1744 <a href="#cl::value_desc">cl::value_desc</a>("<i>size</i>"));
Misha Brukman922bf922005-03-11 00:00:33 +00001745</pre></div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001746
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001747<p>Which adds this to the output of our program:</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001748
Misha Brukman922bf922005-03-11 00:00:33 +00001749<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001750OPTIONS:
1751 -help - display available options (--help-hidden for more)
1752 ...
1753 <b>-max-file-size=&lt;size&gt; - Maximum file size to accept</b>
Misha Brukman922bf922005-03-11 00:00:33 +00001754</pre></div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001755
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001756<p>And we can test that our parse works correctly now (the test program just
1757prints out the max-file-size argument value):</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001758
Misha Brukman922bf922005-03-11 00:00:33 +00001759<div class="doc_code"><pre>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001760$ ./test
1761MFS: 0
1762$ ./test -max-file-size=123MB
1763MFS: 128974848
1764$ ./test -max-file-size=3G
1765MFS: 3221225472
1766$ ./test -max-file-size=dog
1767-max-file-size option: 'dog' value invalid for file size argument!
Misha Brukman922bf922005-03-11 00:00:33 +00001768</pre></div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001769
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001770<p>It looks like it works. The error message that we get is nice and helpful,
1771and we seem to accept reasonable file sizes. This wraps up the "custom parser"
1772tutorial.</p>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001773
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001774</div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001775
1776<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001777<div class="doc_subsection">
1778 <a name="explotingexternal">Exploiting external storage</a>
1779</div>
Chris Lattner74ea5a62002-08-07 18:27:04 +00001780
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001781<div class="doc_text">
Reid Spencercf2bc3d2004-08-30 05:56:51 +00001782 <p>Several of the LLVM libraries define static <tt>cl::opt</tt> instances that
1783 will automatically be included in any program that links with that library.
1784 This is a feature. However, sometimes it is necessary to know the value of the
1785 command line option outside of the library. In these cases the library does or
1786 should provide an external storage location that is accessible to users of the
1787 library. Examples of this include the <tt>llvm::DebugFlag</tt> exported by the
1788 <tt>lib/Support/Debug.cpp</tt> file and the <tt>llvm::TimePassesIsEnabled</tt>
1789 flag exported by the <tt>lib/VMCore/Pass.cpp</tt> file.</p>
Chris Lattner50761292002-08-06 19:36:06 +00001790
Reid Spencercf2bc3d2004-08-30 05:56:51 +00001791<p>TODO: complete this section</p>
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001792
1793</div>
Chris Lattner50761292002-08-06 19:36:06 +00001794
1795<!-- ======================================================================= -->
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001796<div class="doc_subsection">
1797 <a name="dynamicopts">Dynamically adding command line options</a>
1798</div>
Chris Lattner50761292002-08-06 19:36:06 +00001799
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001800<div class="doc_text">
Chris Lattner50761292002-08-06 19:36:06 +00001801
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001802<p>TODO: fill in this section</p>
Chris Lattnerba025252001-07-23 23:03:12 +00001803
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001804</div>
Chris Lattnerba025252001-07-23 23:03:12 +00001805
Chris Lattnerba025252001-07-23 23:03:12 +00001806<!-- *********************************************************************** -->
1807
1808<hr>
Misha Brukman374258e2004-05-12 18:42:35 +00001809<address>
1810 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
1811 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
1812 <a href="http://validator.w3.org/check/referer"><img
1813 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
1814
1815 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
1816 <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
Misha Brukman7120c832003-11-07 18:11:14 +00001817 Last modified: $Date$
Misha Brukman374258e2004-05-12 18:42:35 +00001818</address>
Misha Brukmanc86e8b12003-10-24 19:59:21 +00001819
1820</body>
1821</html>