2003-10-24 21:59:21 +02:00
< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
< html >
< head >
2004-11-16 07:11:52 +01:00
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" >
2003-10-24 21:59:21 +02:00
< title > CommandLine 2.0 Library Manual< / title >
2003-11-07 19:11:14 +01:00
< link rel = "stylesheet" href = "llvm.css" type = "text/css" >
2003-10-24 21:59:21 +02:00
< / head >
< body >
2011-04-19 01:59:50 +02:00
< h1 >
2003-10-24 21:59:21 +02:00
CommandLine 2.0 Library Manual
2011-04-19 01:59:50 +02:00
< / h1 >
2001-07-24 01:03:12 +02:00
< ol >
2003-10-24 21:59:21 +02:00
< li > < a href = "#introduction" > Introduction< / a > < / li >
2001-07-24 01:03:12 +02:00
< li > < a href = "#quickstart" > Quick Start Guide< / a >
< ol >
2003-10-24 21:59:21 +02:00
< li > < a href = "#bool" > Boolean Arguments< / a > < / li >
< li > < a href = "#alias" > Argument Aliases< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#onealternative" > Selecting an alternative from a
2003-10-24 21:59:21 +02:00
set of possibilities< / a > < / li >
< li > < a href = "#namedalternatives" > Named alternatives< / a > < / li >
< li > < a href = "#list" > Parsing a list of options< / a > < / li >
2005-08-26 00:52:43 +02:00
< li > < a href = "#bits" > Collecting options as a set of flags< / a > < / li >
2003-10-24 21:59:21 +02:00
< li > < a href = "#description" > Adding freeform text to help output< / a > < / li >
< / ol > < / li >
2001-07-24 01:03:12 +02:00
< li > < a href = "#referenceguide" > Reference Guide< / a >
2002-07-25 21:27:01 +02:00
< ol >
2002-08-06 21:36:06 +02:00
< li > < a href = "#positional" > Positional Arguments< / a >
2002-07-25 21:27:01 +02:00
< ul >
2003-10-24 21:59:21 +02:00
< li > < a href = "#--" > Specifying positional options with hyphens< / a > < / li >
2004-08-13 22:19:14 +02:00
< li > < a href = "#getPosition" > Determining absolute position with
getPosition< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#cl::ConsumeAfter" > The < tt > cl::ConsumeAfter< / tt >
2003-10-24 21:59:21 +02:00
modifier< / a > < / li >
< / ul > < / li >
< li > < a href = "#storage" > Internal vs External Storage< / a > < / li >
< li > < a href = "#attributes" > Option Attributes< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#modifiers" > Option Modifiers< / a >
2002-07-25 21:27:01 +02:00
< ul >
2010-02-18 15:08:13 +01:00
< li > < a href = "#hiding" > Hiding an option from < tt > -help< / tt >
2003-10-24 21:59:21 +02:00
output< / a > < / li >
< li > < a href = "#numoccurrences" > Controlling the number of occurrences
required and allowed< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#valrequired" > Controlling whether or not a value must be
2003-10-24 21:59:21 +02:00
specified< / a > < / li >
< li > < a href = "#formatting" > Controlling other formatting options< / a > < / li >
< li > < a href = "#misc" > Miscellaneous option modifiers< / a > < / li >
2008-04-28 18:44:25 +02:00
< li > < a href = "#response" > Response files< / a > < / li >
2003-10-24 21:59:21 +02:00
< / ul > < / li >
2002-08-07 20:27:04 +02:00
< li > < a href = "#toplevel" > Top-Level Classes and Functions< / a >
2002-08-06 21:36:06 +02:00
< ul >
2008-02-20 13:38:31 +01:00
< li > < a href = "#cl::ParseCommandLineOptions" > The
2003-10-24 21:59:21 +02:00
< tt > cl::ParseCommandLineOptions< / tt > function< / a > < / li >
2008-02-20 13:38:31 +01:00
< li > < a href = "#cl::ParseEnvironmentOptions" > The
2003-10-24 21:59:21 +02:00
< tt > cl::ParseEnvironmentOptions< / tt > function< / a > < / li >
2007-12-19 20:48:49 +01:00
< li > < a href = "#cl::SetVersionPrinter" > The < tt > cl::SetVersionPrinter< / tt >
2006-06-05 19:30:16 +02:00
function< / a > < / li >
2003-10-24 21:59:21 +02:00
< li > < a href = "#cl::opt" > The < tt > cl::opt< / tt > class< / a > < / li >
< li > < a href = "#cl::list" > The < tt > cl::list< / tt > class< / a > < / li >
2005-08-26 00:52:43 +02:00
< li > < a href = "#cl::bits" > The < tt > cl::bits< / tt > class< / a > < / li >
2003-10-24 21:59:21 +02:00
< li > < a href = "#cl::alias" > The < tt > cl::alias< / tt > class< / a > < / li >
2004-11-16 07:11:52 +01:00
< li > < a href = "#cl::extrahelp" > The < tt > cl::extrahelp< / tt > class< / a > < / li >
2003-10-24 21:59:21 +02:00
< / ul > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#builtinparsers" > Builtin parsers< / a >
< ul >
< li > < a href = "#genericparser" > The Generic < tt > parser< t> < / tt >
2003-10-24 21:59:21 +02:00
parser< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#boolparser" > The < tt > parser< bool> < / tt >
2003-10-24 21:59:21 +02:00
specialization< / a > < / li >
2007-05-22 20:32:34 +02:00
< li > < a href = "#boolOrDefaultparser" > The < tt > parser< boolOrDefault> < / tt >
specialization< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#stringparser" > The < tt > parser< string> < / tt >
2003-10-24 21:59:21 +02:00
specialization< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#intparser" > The < tt > parser< int> < / tt >
2003-10-24 21:59:21 +02:00
specialization< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#doubleparser" > The < tt > parser< double> < / tt > and
2003-10-24 21:59:21 +02:00
< tt > parser< float> < / tt > specializations< / a > < / li >
< / ul > < / li >
< / ol > < / li >
2001-07-24 01:03:12 +02:00
< li > < a href = "#extensionguide" > Extension Guide< / a >
2002-07-25 21:27:01 +02:00
< ol >
2003-10-24 21:59:21 +02:00
< li > < a href = "#customparser" > Writing a custom parser< / a > < / li >
< li > < a href = "#explotingexternal" > Exploiting external storage< / a > < / li >
2008-02-20 13:38:31 +01:00
< li > < a href = "#dynamicopts" > Dynamically adding command line
2003-10-24 21:59:21 +02:00
options< / a > < / li >
< / ol > < / li >
< / ol >
2001-07-24 01:03:12 +02:00
2004-05-23 23:07:27 +02:00
< div class = "doc_author" >
< p > Written by < a href = "mailto:sabre@nondot.org" > Chris Lattner< / a > < / p >
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-19 01:59:50 +02:00
< h2 >
2003-11-07 20:42:44 +01:00
< a name = "introduction" > Introduction< / a >
2011-04-19 01:59:50 +02:00
< / h2 >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > This document describes the CommandLine argument processing library. It will
2002-08-06 21:36:06 +02:00
show you how to use it, and what it can do. The CommandLine library uses a
declarative approach to specifying the command line options that your program
takes. By default, these options declarations implicitly hold the value parsed
for the option declared (of course this < a href = "#storage" > can be
2003-10-24 21:59:21 +02:00
changed< / a > ).< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > Although there are a < b > lot< / b > of command line argument parsing libraries
out there in many different languages, none of them fit well with what I needed.
By looking at the features and problems of other libraries, I designed the
CommandLine library to have the following features:< / p >
2001-07-24 01:03:12 +02:00
< ol >
2002-07-25 21:27:01 +02:00
< li > Speed: The CommandLine library is very quick and uses little resources. The
parsing time of the library is directly proportional to the number of arguments
parsed, not the the number of options recognized. Additionally, command line
2003-06-21 23:45:56 +02:00
argument values are captured transparently into user defined global variables,
which can be accessed like any other variable (and with the same
2003-10-24 21:59:21 +02:00
performance).< / li >
2002-07-25 21:27:01 +02:00
< li > Type Safe: As a user of CommandLine, you don't have to worry about
remembering the type of arguments that you want (is it an int? a string? a
bool? an enum?) and keep casting it around. Not only does this help prevent
2003-10-24 21:59:21 +02:00
error prone constructs, it also leads to dramatically cleaner source code.< / li >
2002-07-25 21:27:01 +02:00
< li > No subclasses required: To use CommandLine, you instantiate variables that
correspond to the arguments that you would like to capture, you don't subclass a
2003-10-24 21:59:21 +02:00
parser. This means that you don't have to write < b > any< / b > boilerplate
code.< / li >
2002-07-25 21:27:01 +02:00
< li > Globally accessible: Libraries can specify command line arguments that are
automatically enabled in any tool that links to the library. This is possible
2008-01-09 20:28:50 +01:00
because the application doesn't have to keep a list of arguments to pass to
2002-08-06 21:36:06 +02:00
the parser. This also makes supporting < a href = "#dynamicopts" > dynamically
2003-10-24 21:59:21 +02:00
loaded options< / a > trivial.< / li >
2002-07-25 21:27:01 +02:00
2002-08-07 20:27:04 +02:00
< li > Cleaner: CommandLine supports enum and other types directly, meaning that
2002-08-06 21:36:06 +02:00
there is less error and more security built into the library. You don't have to
worry about whether your integral command line argument accidentally got
2003-10-24 21:59:21 +02:00
assigned a value that is not valid for your enum type.< / li >
2002-07-25 21:27:01 +02:00
< li > Powerful: The CommandLine library supports many different types of
2002-08-06 21:36:06 +02:00
arguments, from simple < a href = "#boolparser" > boolean flags< / a > to < a
href="#cl::opt">scalars arguments< / a > (< a href = "#stringparser" > strings< / a > , < a
href="#intparser">integers< / a > , < a href = "#genericparser" > enums< / a > , < a
href="#doubleparser">doubles< / a > ), to < a href = "#cl::list" > lists of
2003-10-24 21:59:21 +02:00
arguments< / a > . This is possible because CommandLine is...< / li >
2002-07-25 21:27:01 +02:00
< li > Extensible: It is very simple to add a new argument type to CommandLine.
Simply specify the parser that you want to use with the command line option when
2003-10-24 21:59:21 +02:00
you declare it. < a href = "#customparser" > Custom parsers< / a > are no problem.< / li >
2002-07-25 21:27:01 +02:00
< li > Labor Saving: The CommandLine library cuts down on the amount of grunt work
2002-08-06 21:36:06 +02:00
that you, the user, have to do. For example, it automatically provides a
2010-02-18 15:08:13 +01:00
< tt > -help< / tt > option that shows the available command line options for your
2003-10-24 21:59:21 +02:00
tool. Additionally, it does most of the basic correctness checking for
you.< / li >
2002-08-06 21:36:06 +02:00
< li > Capable: The CommandLine library can handle lots of different forms of
options often found in real programs. For example, < a
href="#positional">positional< / a > arguments, < tt > ls< / tt > style < a
href="#cl::Grouping">grouping< / a > options (to allow processing '< tt > ls
-lad< / tt > ' naturally), < tt > ld< / tt > style < a href = "#cl::Prefix" > prefix< / a >
options (to parse '< tt > -lmalloc -L/usr/lib< / tt > '), and < a
2003-10-24 21:59:21 +02:00
href="#cl::ConsumeAfter">interpreter style options< / a > .< / li >
2002-08-06 21:36:06 +02:00
2001-07-24 01:03:12 +02:00
< / ol >
2003-10-24 21:59:21 +02:00
< p > This document will hopefully let you jump in and start using CommandLine in
your utility quickly and painlessly. Additionally it should be a simple
reference manual to figure out how stuff works. If it is failing in some area
(or you want an extension to the library), nag the author, < a
href="mailto:sabre@nondot.org">Chris Lattner< / a > .< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-19 01:59:50 +02:00
< h2 >
2003-10-24 21:59:21 +02:00
< a name = "quickstart" > Quick Start Guide< / a >
2011-04-19 01:59:50 +02:00
< / h2 >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > This section of the manual runs through a simple CommandLine'ification of a
2002-07-25 21:27:01 +02:00
basic compiler tool. This is intended to show you how to jump into using the
CommandLine library in your own program, and show you some of the cool things it
2003-10-24 21:59:21 +02:00
can do.< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > To start out, you need to include the CommandLine header file into your
program:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2005-11-14 20:32:05 +01:00
#include "llvm/Support/CommandLine.h"
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > Additionally, you need to add this as the first line of your main
program:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
int main(int argc, char **argv) {
2002-08-07 20:27:04 +02:00
< a href = "#cl::ParseCommandLineOptions" > cl::ParseCommandLineOptions< / a > (argc, argv);
2001-07-24 01:03:12 +02:00
...
}
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > ... which actually parses the arguments and fills in the variable
declarations.< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > Now that you are ready to support command line arguments, we need to tell the
2008-01-09 20:28:50 +01:00
system which ones we want, and what type of arguments they are. The CommandLine
2003-06-21 23:45:56 +02:00
library uses a declarative syntax to model command line arguments with the
global variable declarations that capture the parsed values. This means that
for every command line option that you would like to support, there should be a
global variable declaration to capture the result. For example, in a compiler,
2008-01-09 20:28:50 +01:00
we would like to support the Unix-standard '< tt > -o < filename> < / tt > ' option
2003-06-21 23:45:56 +02:00
to specify where to put the output. With the CommandLine library, this is
2003-10-24 21:59:21 +02:00
represented like this:< / p >
2001-07-24 01:03:12 +02:00
2004-05-12 20:42:35 +02:00
< a name = "value_desc_example" > < / a >
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2004-05-12 20:42:35 +02:00
< a href = "#cl::opt" > cl::opt< / a > < string> 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 > "));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2011-04-11 05:27:31 +02:00
< p > This declares a global variable " < tt > OutputFilename< / tt > " that is used to
capture the result of the " < tt > o< / tt > " argument (first parameter). We specify
that this is a simple scalar option by using the " < tt > < a
href="#cl::opt">cl::opt< / a > < / tt > " template (as opposed to the < a
href="#list">" < tt > cl::list< / tt > template< / a > ), and tell the CommandLine library
2003-10-24 21:59:21 +02:00
that the data type that we are parsing is a string.< / p >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > The second and third parameters (which are optional) are used to specify what
2010-02-18 15:08:13 +01:00
to output for the "< tt > -help< / tt > " option. In this case, we get a line that
2003-10-24 21:59:21 +02:00
looks like this:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-07-25 21:27:01 +02:00
USAGE: compiler [options]
2001-07-24 01:03:12 +02:00
2002-07-25 21:27:01 +02:00
OPTIONS:
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2002-08-07 20:27:04 +02:00
< b > -o < filename> - Specify output filename< / b >
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > Because we specified that the command line option should parse using the
2002-07-25 21:27:01 +02:00
< tt > string< / tt > data type, the variable declared is automatically usable as a
real string in all contexts that a normal C++ string object may be used. For
2003-10-24 21:59:21 +02:00
example:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
...
2008-03-30 18:59:21 +02:00
std::ofstream Output(OutputFilename.c_str());
if (Output.good()) ...
2001-07-24 01:03:12 +02:00
...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > There are many different options that you can use to customize the command
line option handling library, but the above example shows the general interface
to these options. The options can be specified in any order, and are specified
2002-08-06 21:36:06 +02:00
with helper functions like < a href = "#cl::desc" > < tt > cl::desc(...)< / tt > < / a > , so
2002-08-07 20:27:04 +02:00
there are no positional dependencies to remember. The available options are
2003-10-24 21:59:21 +02:00
discussed in detail in the < a href = "#referenceguide" > Reference Guide< / a > .< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Continuing the example, we would like to have our compiler take an input
2002-07-25 21:27:01 +02:00
filename as well as an output filename, but we do not want the input filename to
be specified with a hyphen (ie, not < tt > -filename.c< / tt > ). To support this
2002-08-06 21:36:06 +02:00
style of argument, the CommandLine library allows for < a
href="#positional">positional< / a > arguments to be specified for the program.
These positional arguments are filled with command line parameters that are not
2003-10-24 21:59:21 +02:00
in option form. We use this feature like this:< / p >
2002-07-25 21:27:01 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < string> InputFilename(< a href = "#cl::Positional" > cl::Positional< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< i > < input file> < / i > "), < a href = "#cl::init" > cl::init< / a > ("< i > -< / i > "));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > This declaration indicates that the first positional argument should be
treated as the input filename. Here we use the < tt > < a
2002-08-06 21:36:06 +02:00
href="#cl::init">cl::init< / a > < / tt > option to specify an initial value for the
command line option, which is used if the option is not specified (if you do not
specify a < tt > < a href = "#cl::init" > cl::init< / a > < / tt > modifier for an option, then
the default constructor for the data type is used to initialize the value).
2002-07-25 21:27:01 +02:00
Command line options default to being optional, so if we would like to require
2002-08-06 21:36:06 +02:00
that the user always specify an input filename, we would add the < tt > < a
href="#cl::Required">cl::Required< / a > < / tt > flag, and we could eliminate the
2003-10-24 21:59:21 +02:00
< tt > < a href = "#cl::init" > cl::init< / a > < / tt > modifier, like this:< / p >
2002-07-25 21:27:01 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < string> InputFilename(< a href = "#cl::Positional" > cl::Positional< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< i > < input file> < / i > "), < b > < a href = "#cl::Required" > cl::Required< / a > < / b > );
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > Again, the CommandLine library does not require the options to be specified
in any particular order, so the above declaration is equivalent to:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < string> InputFilename(< a href = "#cl::Positional" > cl::Positional< / a > , < a href = "#cl::Required" > cl::Required< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< i > < input file> < / i > "));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > By simply adding the < tt > < a href = "#cl::Required" > cl::Required< / a > < / tt > flag,
the CommandLine library will automatically issue an error if the argument is not
2002-08-06 21:36:06 +02:00
specified, which shifts all of the command line option verification code out of
your application into the library. This is just one example of how using flags
can alter the default behaviour of the library, on a per-option basis. By
2010-02-18 15:08:13 +01:00
adding one of the declarations above, the < tt > -help< / tt > option synopsis is now
2003-10-24 21:59:21 +02:00
extended to:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
USAGE: compiler [options] < b > < input file> < / b >
2002-07-25 21:27:01 +02:00
OPTIONS:
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2002-07-25 21:27:01 +02:00
-o < filename> - Specify output filename
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > ... indicating that an input filename is expected.< / p >
2001-07-24 01:03:12 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "bool" > Boolean Arguments< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2001-07-24 01:03:12 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > In addition to input and output filenames, we would like the compiler example
2009-08-25 17:54:01 +02:00
to support three boolean flags: "< tt > -f< / tt > " to force writing binary output to
a terminal, "< tt > --quiet< / tt > " to enable quiet mode, and "< tt > -q< / tt > " for
backwards compatibility with some of our users. We can support these by
declaring options of boolean type like this:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2009-08-25 17:54:01 +02:00
< a href = "#cl::opt" > cl::opt< / a > < bool> Force ("< i > f< / i > ", < a href = "#cl::desc" > cl::desc< / a > ("< i > Enable binary output on terminals< / i > "));
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < bool> Quiet ("< i > quiet< / i > ", < a href = "#cl::desc" > cl::desc< / a > ("< i > Don't print informational messages< / i > "));
< a href = "#cl::opt" > cl::opt< / a > < bool> 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 > );
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > This does what you would expect: it declares three boolean variables
2002-07-25 21:27:01 +02:00
("< tt > Force< / tt > ", "< tt > Quiet< / tt > ", and "< tt > Quiet2< / tt > ") to recognize these
2002-08-06 21:36:06 +02:00
options. Note that the "< tt > -q< / tt > " option is specified with the "< a
href="#cl::Hidden">< tt > cl::Hidden< / tt > < / a > " flag. This modifier prevents it
2010-02-18 15:08:13 +01:00
from being shown by the standard "< tt > -help< / tt > " output (note that it is still
shown in the "< tt > -help-hidden< / tt > " output).< / p >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > The CommandLine library uses a < a href = "#builtinparsers" > different parser< / a >
2002-08-07 20:27:04 +02:00
for different data types. For example, in the string case, the argument passed
to the option is copied literally into the content of the string variable... we
obviously cannot do that in the boolean case, however, so we must use a smarter
parser. In the case of the boolean parser, it allows no options (in which case
it assigns the value of true to the variable), or it allows the values
"< tt > true< / tt > " or "< tt > false< / tt > " to be specified, allowing any of the
2003-10-24 21:59:21 +02:00
following inputs:< / p >
2002-07-25 21:27:01 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-07-25 21:27:01 +02:00
compiler -f # No value, 'Force' == true
compiler -f=true # Value specified, 'Force' == true
compiler -f=TRUE # Value specified, 'Force' == true
compiler -f=FALSE # Value specified, 'Force' == false
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > ... you get the idea. The < a href = "#boolparser" > bool parser< / a > just turns
the string values into boolean values, and rejects things like '< tt > compiler
2002-08-07 20:27:04 +02:00
-f=foo< / tt > '. Similarly, the < a href = "#doubleparser" > float< / a > , < a
href="#doubleparser">double< / a > , and < a href = "#intparser" > int< / a > parsers work
like you would expect, using the '< tt > strtol< / tt > ' and '< tt > strtod< / tt > ' C
2003-10-24 21:59:21 +02:00
library calls to parse the string value into the specified data type.< / p >
2002-07-25 21:27:01 +02:00
2010-02-18 15:08:13 +01:00
< p > With the declarations above, "< tt > compiler -help< / tt > " emits this:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-07-25 21:27:01 +02:00
USAGE: compiler [options] < input file>
2001-07-24 01:03:12 +02:00
OPTIONS:
2009-08-25 17:54:01 +02:00
< b > -f - Enable binary output on terminals< / b >
2001-07-24 01:03:12 +02:00
-o - Override output filename
2002-08-07 20:27:04 +02:00
< b > -quiet - Don't print informational messages< / b >
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2010-02-18 15:08:13 +01:00
< p > and "< tt > compiler -help-hidden< / tt > " prints this:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
USAGE: compiler [options] < input file>
2001-07-24 01:03:12 +02:00
OPTIONS:
2009-08-25 17:54:01 +02:00
-f - Enable binary output on terminals
2001-07-24 01:03:12 +02:00
-o - Override output filename
2002-08-07 20:27:04 +02:00
< b > -q - Don't print informational messages< / b >
2001-07-24 01:03:12 +02:00
-quiet - Don't print informational messages
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > This brief example has shown you how to use the '< tt > < a
2002-08-06 21:36:06 +02:00
href="#cl::opt">cl::opt< / a > < / tt > ' class to parse simple scalar command line
arguments. In addition to simple scalar arguments, the CommandLine library also
provides primitives to support CommandLine option < a href = "#alias" > aliases< / a > ,
2003-10-24 21:59:21 +02:00
and < a href = "#list" > lists< / a > of options.< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "alias" > Argument Aliases< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > So far, the example works well, except for the fact that we need to check the
quiet condition like this now:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
...
if (!Quiet & & !Quiet2) printInformationalMessage(...);
...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > ... which is a real pain! Instead of defining two values for the same
2002-08-06 21:36:06 +02:00
condition, we can use the "< tt > < a href = "#cl::alias" > cl::alias< / a > < / tt > " class to make the "< tt > -q< / tt > "
2002-07-25 21:27:01 +02:00
option an < b > alias< / b > for the "< tt > -quiet< / tt > " option, instead of providing
2003-10-24 21:59:21 +02:00
a value itself:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < bool> Force ("< i > f< / i > ", < a href = "#cl::desc" > cl::desc< / a > ("< i > Overwrite output files< / i > "));
< a href = "#cl::opt" > cl::opt< / a > < bool> Quiet ("< i > quiet< / i > ", < a href = "#cl::desc" > cl::desc< / a > ("< i > Don't print informational messages< / i > "));
< 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));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > The third line (which is the only one we modified from above) defines a
2008-01-09 20:28:50 +01:00
"< tt > -q< / tt > " alias that updates the "< tt > Quiet< / tt > " variable (as specified by
2002-08-06 21:36:06 +02:00
the < tt > < a href = "#cl::aliasopt" > cl::aliasopt< / a > < / tt > modifier) whenever it is
specified. Because aliases do not hold state, the only thing the program has to
query is the < tt > Quiet< / tt > variable now. Another nice feature of aliases is
that they automatically hide themselves from the < tt > -help< / tt > output
2010-02-18 15:08:13 +01:00
(although, again, they are still visible in the < tt > -help-hidden
2003-10-24 21:59:21 +02:00
output< / tt > ).< / p >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > Now the application code can simply use:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
...
if (!Quiet) printInformationalMessage(...);
...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > ... which is much nicer! The "< tt > < a href = "#cl::alias" > cl::alias< / a > < / tt > "
can be used to specify an alternative name for any variable type, and has many
uses.< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "onealternative" > Selecting an alternative from a set of
possibilities< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2001-07-24 01:03:12 +02:00
2008-01-09 20:28:50 +01:00
< p > So far we have seen how the CommandLine library handles builtin types like
2002-07-25 21:27:01 +02:00
< tt > std::string< / tt > , < tt > bool< / tt > and < tt > int< / tt > , but how does it handle
2003-10-24 21:59:21 +02:00
things it doesn't know about, like enums or '< tt > int*< / tt > 's?< / p >
2001-07-24 01:03:12 +02:00
2008-01-09 20:28:50 +01:00
< p > The answer is that it uses a table-driven generic parser (unless you specify
2002-07-25 21:27:01 +02:00
your own parser, as described in the < a href = "#extensionguide" > Extension
2004-08-10 18:38:18 +02:00
Guide< / a > ). This parser maps literal strings to whatever type is required, and
2003-10-24 21:59:21 +02:00
requires you to tell it what this mapping should be.< / p >
2002-07-25 21:27:01 +02:00
2008-01-09 20:28:50 +01:00
< p > Let's say that we would like to add four optimization levels to our
2003-10-24 21:59:21 +02:00
optimizer, using the standard flags "< tt > -g< / tt > ", "< tt > -O0< / tt > ",
"< tt > -O1< / tt > ", and "< tt > -O2< / tt > ". We could easily implement this with boolean
options like above, but there are several problems with this strategy:< / p >
2001-07-24 01:03:12 +02:00
< ol >
2002-07-25 21:27:01 +02:00
< li > A user could specify more than one of the options at a time, for example,
2008-01-09 20:28:50 +01:00
"< tt > compiler -O3 -O2< / tt > ". The CommandLine library would not be able to
catch this erroneous input for us.< / li >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< li > We would have to test 4 different variables to see which ones are set.< / li >
2002-07-25 21:27:01 +02:00
< li > This doesn't map to the numeric levels that we want... so we cannot easily
2003-10-24 21:59:21 +02:00
see if some level > = "< tt > -O1< / tt > " is enabled.< / li >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< / ol >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > To cope with these problems, we can use an enum value, and have the
CommandLine library fill it in with the appropriate level directly, which is
used like this:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
enum OptLevel {
g, O1, O2, O3
};
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < OptLevel> OptimizationLevel(< a href = "#cl::desc" > cl::desc< / a > ("< i > Choose optimization level:< / i > "),
< a href = "#cl::values" > cl::values< / a > (
2002-07-25 21:27:01 +02:00
clEnumVal(g , "< i > No optimizations, enable debugging< / i > "),
clEnumVal(O1, "< i > Enable trivial optimizations< / i > "),
clEnumVal(O2, "< i > Enable default optimizations< / i > "),
clEnumVal(O3, "< i > Enable expensive optimizations< / i > "),
2004-07-16 02:10:54 +02:00
clEnumValEnd));
2001-07-24 01:03:12 +02:00
...
2002-07-25 21:27:01 +02:00
if (OptimizationLevel > = O2) doPartialRedundancyElimination(...);
2001-07-24 01:03:12 +02:00
...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > This declaration defines a variable "< tt > OptimizationLevel< / tt > " of the
2002-07-25 21:27:01 +02:00
"< tt > OptLevel< / tt > " enum type. This variable can be assigned any of the values
that are listed in the declaration (Note that the declaration list must be
2008-02-20 13:38:31 +01:00
terminated with the "< tt > clEnumValEnd< / tt > " argument!). The CommandLine
2004-07-16 02:10:54 +02:00
library enforces
2002-07-25 21:27:01 +02:00
that the user can only specify one of the options, and it ensure that only valid
enum values can be specified. The "< tt > clEnumVal< / tt > " macros ensure that the
2002-08-06 21:36:06 +02:00
command line arguments matched the enum values. With this option added, our
2003-10-24 21:59:21 +02:00
help output now is:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-07-25 21:27:01 +02:00
USAGE: compiler [options] < input file>
2001-07-24 01:03:12 +02:00
2002-07-25 21:27:01 +02:00
OPTIONS:
2002-08-07 20:27:04 +02:00
< b > Choose optimization level:
2002-07-25 21:27:01 +02:00
-g - No optimizations, enable debugging
-O1 - Enable trivial optimizations
-O2 - Enable default optimizations
2002-08-07 20:27:04 +02:00
-O3 - Enable expensive optimizations< / b >
2009-08-25 17:54:01 +02:00
-f - Enable binary output on terminals
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2002-07-25 21:27:01 +02:00
-o < filename> - Specify output filename
-quiet - Don't print informational messages
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > In this case, it is sort of awkward that flag names correspond directly to
enum names, because we probably don't want a enum definition named "< tt > g< / tt > "
in our program. Because of this, we can alternatively write this example like
this:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
enum OptLevel {
Debug, O1, O2, O3
};
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < OptLevel> OptimizationLevel(< a href = "#cl::desc" > cl::desc< / a > ("< i > Choose optimization level:< / i > "),
< a href = "#cl::values" > cl::values< / a > (
2002-07-25 21:27:01 +02:00
clEnumValN(Debug, "g", "< i > No optimizations, enable debugging< / i > "),
clEnumVal(O1 , "< i > Enable trivial optimizations< / i > "),
clEnumVal(O2 , "< i > Enable default optimizations< / i > "),
clEnumVal(O3 , "< i > Enable expensive optimizations< / i > "),
2004-07-16 02:10:54 +02:00
clEnumValEnd));
2001-07-24 01:03:12 +02:00
...
if (OptimizationLevel == Debug) outputDebugInfo(...);
...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< p > By using the "< tt > clEnumValN< / tt > " macro instead of "< tt > clEnumVal< / tt > ", we
can directly specify the name that the flag should get. In general a direct
mapping is nice, but sometimes you can't or don't want to preserve the mapping,
which is when you would use it.< / p >
2002-07-25 21:27:01 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "namedalternatives" > Named Alternatives< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2001-07-24 01:03:12 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > Another useful argument form is a named alternative style. We shall use this
2002-07-25 21:27:01 +02:00
style in our compiler to specify different debug levels that can be used.
Instead of each debug level being its own switch, we want to support the
following options, of which only one can be specified at a time:
"< tt > --debug-level=none< / tt > ", "< tt > --debug-level=quick< / tt > ",
"< tt > --debug-level=detailed< / tt > ". To do this, we use the exact same format as
our optimization level flags, but we also specify an option name. For this
2003-10-24 21:59:21 +02:00
case, the code looks like this:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
enum DebugLev {
nodebuginfo, quick, detailed
};
// Enable Debug Options to be specified on the command line
2003-06-03 06:40:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < DebugLev> DebugLevel("< i > debug_level< / i > ", < a href = "#cl::desc" > cl::desc< / a > ("< i > Set the debugging level:< / i > "),
2002-08-06 21:36:06 +02:00
< a href = "#cl::values" > cl::values< / a > (
2002-07-25 21:27:01 +02:00
clEnumValN(nodebuginfo, "none", "< i > disable debug information< / i > "),
clEnumVal(quick, "< i > enable quick debug information< / i > "),
clEnumVal(detailed, "< i > enable detailed debug information< / i > "),
2004-07-16 02:10:54 +02:00
clEnumValEnd));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > This definition defines an enumerated command line variable of type "< tt > enum
2002-07-25 21:27:01 +02:00
DebugLev< / tt > ", which works exactly the same way as before. The difference here
is just the interface exposed to the user of your program and the help output by
2010-02-18 15:08:13 +01:00
the "< tt > -help< / tt > " option:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-07-25 21:27:01 +02:00
USAGE: compiler [options] < input file>
2001-07-24 01:03:12 +02:00
OPTIONS:
2002-07-25 21:27:01 +02:00
Choose optimization level:
-g - No optimizations, enable debugging
-O1 - Enable trivial optimizations
-O2 - Enable default optimizations
-O3 - Enable expensive optimizations
2002-08-07 20:27:04 +02:00
< b > -debug_level - Set the debugging level:
2002-07-25 21:27:01 +02:00
=none - disable debug information
=quick - enable quick debug information
2002-08-07 20:27:04 +02:00
=detailed - enable detailed debug information< / b >
2009-08-25 17:54:01 +02:00
-f - Enable binary output on terminals
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2002-07-25 21:27:01 +02:00
-o < filename> - Specify output filename
-quiet - Don't print informational messages
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > Again, the only structural difference between the debug level declaration and
2004-11-21 15:34:34 +01:00
the optimization level declaration is that the debug level declaration includes
2002-07-25 21:27:01 +02:00
an option name (< tt > "debug_level"< / tt > ), which automatically changes how the
library processes the argument. The CommandLine library supports both forms so
2003-10-24 21:59:21 +02:00
that you can choose the form most appropriate for your application.< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "list" > Parsing a list of options< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2001-07-24 01:03:12 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
2008-01-09 20:28:50 +01:00
< p > Now that we have the standard run-of-the-mill argument types out of the way,
2002-07-25 21:27:01 +02:00
lets get a little wild and crazy. Lets say that we want our optimizer to accept
a < b > list< / b > of optimizations to perform, allowing duplicates. For example, we
might want to run: "< tt > compiler -dce -constprop -inline -dce -strip< / tt > ". In
this case, the order of the arguments and the number of appearances is very
2002-08-06 21:36:06 +02:00
important. This is what the "< tt > < a href = "#cl::list" > cl::list< / a > < / tt > "
template is for. First, start by defining an enum of the optimizations that you
2003-10-24 21:59:21 +02:00
would like to perform:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2001-07-24 01:03:12 +02:00
enum Opts {
2002-07-25 21:27:01 +02:00
// 'inline' is a C++ keyword, so name it 'inlining'
2001-07-24 01:03:12 +02:00
dce, constprop, inlining, strip
2002-07-25 21:27:01 +02:00
};
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > Then define your "< tt > < a href = "#cl::list" > cl::list< / a > < / tt > " variable:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
< a href = "#cl::list" > cl::list< / a > < Opts> OptimizationList(< a href = "#cl::desc" > cl::desc< / a > ("< i > Available Optimizations:< / i > "),
< a href = "#cl::values" > cl::values< / a > (
2002-07-25 21:27:01 +02:00
clEnumVal(dce , "< i > Dead Code Elimination< / i > "),
2003-05-20 23:01:22 +02:00
clEnumVal(constprop , "< i > Constant Propagation< / i > "),
2002-07-25 21:27:01 +02:00
clEnumValN(inlining, "< i > inline< / i > ", "< i > Procedure Integration< / i > "),
clEnumVal(strip , "< i > Strip Symbols< / i > "),
2004-07-16 02:10:54 +02:00
clEnumValEnd));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > This defines a variable that is conceptually of the type
2002-07-25 21:27:01 +02:00
"< tt > std::vector< enum Opts> < / tt > ". Thus, you can access it with standard
2003-10-24 21:59:21 +02:00
vector methods:< / p >
2001-07-24 01:03:12 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-07-25 21:27:01 +02:00
for (unsigned i = 0; i != OptimizationList.size(); ++i)
2001-07-24 01:03:12 +02:00
switch (OptimizationList[i])
...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > ... to iterate through the list of options specified.< / p >
2002-04-13 20:35:59 +02:00
2003-10-24 21:59:21 +02:00
< p > Note that the "< tt > < a href = "#cl::list" > cl::list< / a > < / tt > " template is
completely general and may be used with any data types or other arguments that
you can use with the "< tt > < a href = "#cl::opt" > cl::opt< / a > < / tt > " template. One
especially useful way to use a list is to capture all of the positional
arguments together if there may be more than one specified. In the case of a
linker, for example, the linker takes several '< tt > .o< / tt > ' files, and needs to
capture them into a list. This is naturally specified as:< / p >
2002-04-13 20:35:59 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-04-13 20:35:59 +02:00
...
2002-08-06 21:36:06 +02:00
< a href = "#cl::list" > cl::list< / a > < std::string> InputFilenames(< a href = "#cl::Positional" > cl::Positional< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< Input files> "), < a href = "#cl::OneOrMore" > cl::OneOrMore< / a > );
2002-04-13 20:35:59 +02:00
...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-04-13 20:35:59 +02:00
2003-10-24 21:59:21 +02:00
< p > This variable works just like a "< tt > vector< string> < / tt > " object. As
2002-07-25 21:27:01 +02:00
such, accessing the list is simple, just like above. In this example, we used
2002-08-06 21:36:06 +02:00
the < tt > < a href = "#cl::OneOrMore" > cl::OneOrMore< / a > < / tt > modifier to inform the
CommandLine library that it is an error if the user does not specify any
< tt > .o< / tt > files on our command line. Again, this just reduces the amount of
2003-10-24 21:59:21 +02:00
checking we have to do.< / p >
2002-04-13 20:35:59 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-04-13 20:35:59 +02:00
2005-08-26 00:52:43 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2005-08-26 00:52:43 +02:00
< a name = "bits" > Collecting options as a set of flags< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2005-08-26 00:52:43 +02:00
2011-04-23 02:30:22 +02:00
< div >
2005-08-26 00:52:43 +02:00
< p > Instead of collecting sets of options in a list, it is also possible to
2010-02-26 21:18:32 +01:00
gather information for enum values in a < b > bit vector< / b > . The representation used by
2005-08-26 11:25:54 +02:00
the < a href = "#bits" > < tt > cl::bits< / tt > < / a > class is an < tt > unsigned< / tt >
2005-08-26 00:52:43 +02:00
integer. An enum value is represented by a 0/1 in the enum's ordinal value bit
position. 1 indicating that the enum was specified, 0 otherwise. As each
specified value is parsed, the resulting enum's bit is set in the option's bit
vector:< / p >
< div class = "doc_code" > < pre >
< i > bits< / i > |= 1 < < (unsigned)< i > enum< / i > ;
< / pre > < / div >
2005-08-26 01:01:25 +02:00
< p > Options that are specified multiple times are redundant. Any instances after
the first are discarded.< / p >
2005-08-26 00:52:43 +02:00
< p > Reworking the above list example, we could replace < a href = "#list" >
< tt > cl::list< / tt > < / a > with < a href = "#bits" > < tt > cl::bits< / tt > < / a > :< / p >
< div class = "doc_code" > < pre >
< a href = "#cl::bits" > cl::bits< / a > < Opts> OptimizationBits(< a href = "#cl::desc" > cl::desc< / a > ("< i > Available Optimizations:< / i > "),
< a href = "#cl::values" > cl::values< / a > (
clEnumVal(dce , "< i > Dead Code Elimination< / i > "),
clEnumVal(constprop , "< i > Constant Propagation< / i > "),
clEnumValN(inlining, "< i > inline< / i > ", "< i > Procedure Integration< / i > "),
clEnumVal(strip , "< i > Strip Symbols< / i > "),
clEnumValEnd));
< / pre > < / div >
< p > To test to see if < tt > constprop< / tt > was specified, we can use the
< tt > cl:bits::isSet< / tt > function:< / p >
< div class = "doc_code" > < pre >
if (OptimizationBits.isSet(constprop)) {
...
}
< / pre > < / div >
< p > It's also possible to get the raw bit vector using the
< tt > cl::bits::getBits< / tt > function:< / p >
< div class = "doc_code" > < pre >
2005-08-26 11:25:54 +02:00
unsigned bits = OptimizationBits.getBits();
2005-08-26 00:52:43 +02:00
< / pre > < / div >
< p > Finally, if external storage is used, then the location specified must be of
2005-08-26 11:25:54 +02:00
< b > type< / b > < tt > unsigned< / tt > . In all other ways a < a
2008-01-09 20:28:50 +01:00
href="#bits">< tt > cl::bits< / tt > < / a > option is equivalent to a < a
2005-08-26 11:25:54 +02:00
href="#list"> < tt > cl::list< / tt > < / a > option.< / p >
2005-08-26 00:52:43 +02:00
< / div >
2002-08-07 20:27:04 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "description" > Adding freeform text to help output< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > As our program grows and becomes more mature, we may decide to put summary
2002-08-07 20:27:04 +02:00
information about what it does into the help output. The help output is styled
to look similar to a Unix < tt > man< / tt > page, providing concise information about
a program. Unix < tt > man< / tt > pages, however often have a description about what
the program does. To add this to your CommandLine program, simply pass a third
argument to the < a
href="#cl::ParseCommandLineOptions">< tt > cl::ParseCommandLineOptions< / tt > < / a >
call in main. This additional argument is then printed as the overview
information for your program, allowing you to include any additional information
2003-10-24 21:59:21 +02:00
that you want. For example:< / p >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
int main(int argc, char **argv) {
< a href = "#cl::ParseCommandLineOptions" > cl::ParseCommandLineOptions< / a > (argc, argv, " CommandLine compiler example\n\n"
" This program blah blah blah...\n");
...
}
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< p > would yield the help output:< / p >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
< b > OVERVIEW: CommandLine compiler example
This program blah blah blah...< / b >
USAGE: compiler [options] < input file>
OPTIONS:
...
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2002-08-07 20:27:04 +02:00
-o < filename> - Specify output filename
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-07 20:27:04 +02:00
2011-04-23 02:30:22 +02:00
< / div >
2002-08-07 20:27:04 +02:00
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-19 01:59:50 +02:00
< h2 >
2003-10-24 21:59:21 +02:00
< a name = "referenceguide" > Reference Guide< / a >
2011-04-19 01:59:50 +02:00
< / h2 >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Now that you know the basics of how to use the CommandLine library, this
section will give you the detailed information you need to tune how command line
options work, as well as information on more "advanced" command line option
processing capabilities.< / p >
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "positional" > Positional Arguments< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Positional arguments are those arguments that are not named, and are not
2002-08-06 21:36:06 +02:00
specified with a hyphen. Positional arguments should be used when an option is
specified by its position alone. For example, the standard Unix < tt > grep< / tt >
tool takes a regular expression argument, and an optional filename to search
through (which defaults to standard input if a filename is not specified).
2003-10-24 21:59:21 +02:00
Using the CommandLine library, this would be specified as:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < string> Regex (< a href = "#cl::Positional" > cl::Positional< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< i > < regular expression> < / i > "), < a href = "#cl::Required" > cl::Required< / a > );
< a href = "#cl::opt" > cl::opt< / a > < string> Filename(< a href = "#cl::Positional" > cl::Positional< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< i > < input file> < / i > "), < a href = "#cl::init" > cl::init< / a > ("< i > -< / i > "));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2010-02-18 15:08:13 +01:00
< p > Given these two option declarations, the < tt > -help< / tt > output for our grep
2003-10-24 21:59:21 +02:00
replacement would look like this:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
USAGE: spiffygrep [options] < b > < regular expression> < input file> < / b >
2002-08-06 21:36:06 +02:00
OPTIONS:
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > ... and the resultant program could be used just like the standard
< tt > grep< / tt > tool.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Positional arguments are sorted by their order of construction. This means
that command line options will be ordered according to how they are listed in a
2004-08-13 22:19:14 +02:00
.cpp file, but will not have an ordering defined if the positional arguments
2003-10-24 21:59:21 +02:00
are defined in multiple .cpp files. The fix for this problem is simply to
define all of your positional arguments in one .cpp file.< / p >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "--" > Specifying positional options with hyphens< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > Sometimes you may want to specify a value to your positional argument that
2002-08-06 21:36:06 +02:00
starts with a hyphen (for example, searching for '< tt > -foo< / tt > ' in a file). At
first, you will have trouble doing this, because it will try to find an argument
named '< tt > -foo< / tt > ', and will fail (and single quotes will not save you).
2003-10-24 21:59:21 +02:00
Note that the system < tt > grep< / tt > has the same problem:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
$ spiffygrep '-foo' test.txt
2010-02-18 15:08:13 +01:00
Unknown command line argument '-foo'. Try: spiffygrep -help'
2002-08-06 21:36:06 +02:00
$ grep '-foo' test.txt
grep: illegal option -- f
grep: illegal option -- o
grep: illegal option -- o
Usage: grep -hblcnsviw pattern file . . .
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The solution for this problem is the same for both your tool and the system
2002-08-06 21:36:06 +02:00
version: use the '< tt > --< / tt > ' marker. When the user specifies '< tt > --< / tt > ' on
the command line, it is telling the program that all options after the
'< tt > --< / tt > ' should be treated as positional arguments, not options. Thus, we
2003-10-24 21:59:21 +02:00
can use it like this:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
$ spiffygrep -- -foo test.txt
...output...
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
2004-08-13 22:19:14 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2004-08-13 22:19:14 +02:00
< a name = "getPosition" > Determining absolute position with getPosition()< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2011-04-23 02:30:22 +02:00
< div >
2004-08-13 22:19:14 +02:00
< p > Sometimes an option can affect or modify the meaning of another option. For
example, consider < tt > gcc< / tt > 's < tt > -x LANG< / tt > option. This tells
< tt > gcc< / tt > to ignore the suffix of subsequent positional arguments and force
the file to be interpreted as if it contained source code in language
2008-04-01 20:02:36 +02:00
< tt > LANG< / tt > . In order to handle this properly, you need to know the
2008-02-20 13:38:31 +01:00
absolute position of each argument, especially those in lists, so their
interaction(s) can be applied correctly. This is also useful for options like
< tt > -llibname< / tt > which is actually a positional argument that starts with
2004-08-13 22:19:14 +02:00
a dash.< / p >
< p > So, generally, the problem is that you have two < tt > cl::list< / tt > variables
that interact in some way. To ensure the correct interaction, you can use the
< tt > cl::list::getPosition(optnum)< / tt > method. This method returns the
absolute position (as found on the command line) of the < tt > optnum< / tt >
item in the < tt > cl::list< / tt > .< / p >
2005-03-11 01:00:33 +01:00
< p > The idiom for usage is like this:< / p >
2008-02-20 13:38:31 +01:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2004-08-13 22:19:14 +02:00
static cl::list< std::string> Files(cl::Positional, cl::OneOrMore);
2008-01-09 20:28:50 +01:00
static cl::list< std::string> Libraries("l", cl::ZeroOrMore);
2004-08-13 22:19:14 +02:00
int main(int argc, char**argv) {
// ...
std::vector< std::string> ::iterator fileIt = Files.begin();
std::vector< std::string> ::iterator libIt = Libraries.begin();
unsigned libPos = 0, filePos = 0;
while ( 1 ) {
if ( libIt != Libraries.end() )
libPos = Libraries.getPosition( libIt - Libraries.begin() );
else
libPos = 0;
if ( fileIt != Files.end() )
filePos = Files.getPosition( fileIt - Files.begin() );
else
filePos = 0;
if ( filePos != 0 & & (libPos == 0 || filePos < libPos) ) {
// Source File Is next
++fileIt;
}
else if ( libPos != 0 & & (filePos == 0 || libPos < filePos) ) {
// Library is next
++libIt;
}
else
break; // we're done with the list
}
2005-03-11 01:00:33 +01:00
}< / pre > < / div >
2004-08-13 22:19:14 +02:00
< p > Note that, for compatibility reasons, the < tt > cl::opt< / tt > also supports an
< tt > unsigned getPosition()< / tt > option that will provide the absolute position
2008-02-20 13:38:31 +01:00
of that option. You can apply the same approach as above with a
2004-08-13 22:19:14 +02:00
< tt > cl::opt< / tt > and a < tt > cl::list< / tt > option as you can with two lists.< / p >
< / div >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "cl::ConsumeAfter" > The < tt > cl::ConsumeAfter< / tt > modifier< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::ConsumeAfter< / tt > < a href = "#formatting" > formatting option< / a > is
2002-08-06 21:36:06 +02:00
used to construct programs that use "interpreter style" option processing. With
this style of option processing, all arguments specified after the last
positional argument are treated as special interpreter arguments that are not
2003-10-24 21:59:21 +02:00
interpreted by the command line argument.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > As a concrete example, lets say we are developing a replacement for the
standard Unix Bourne shell (< tt > /bin/sh< / tt > ). To run < tt > /bin/sh< / tt > , first
you specify options to the shell itself (like < tt > -x< / tt > which turns on trace
2002-08-06 21:36:06 +02:00
output), then you specify the name of the script to run, then you specify
2008-01-09 20:28:50 +01:00
arguments to the script. These arguments to the script are parsed by the Bourne
2002-08-06 21:36:06 +02:00
shell command line option processor, but are not interpreted as options to the
2003-10-24 21:59:21 +02:00
shell itself. Using the CommandLine library, we would specify this as:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-06 21:36:06 +02:00
< a href = "#cl::opt" > cl::opt< / a > < string> Script(< a href = "#cl::Positional" > cl::Positional< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< i > < input script> < / i > "), < a href = "#cl::init" > cl::init< / a > ("-"));
< a href = "#cl::list" > cl::list< / a > < string> Argv(< a href = "#cl::ConsumeAfter" > cl::ConsumeAfter< / a > , < a href = "#cl::desc" > cl::desc< / a > ("< i > < program arguments> ...< / i > "));
< a href = "#cl::opt" > cl::opt< / a > < bool> Trace("< i > x< / i > ", < a href = "#cl::desc" > cl::desc< / a > ("< i > Enable trace output< / i > "));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > which automatically provides the help output:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
USAGE: spiffysh [options] < b > < input script> < program arguments> ...< / b >
2002-08-06 21:36:06 +02:00
OPTIONS:
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2002-08-07 20:27:04 +02:00
< b > -x - Enable trace output< / b >
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< p > At runtime, if we run our new shell replacement as `< tt > spiffysh -x test.sh
2003-10-24 21:59:21 +02:00
-a -x -y bar< / tt > ', the < tt > Trace< / tt > variable will be set to true, the
2002-08-06 21:36:06 +02:00
< tt > Script< / tt > variable will be set to "< tt > test.sh< / tt > ", and the
2003-10-24 21:59:21 +02:00
< tt > Argv< / tt > list will contain < tt > ["-a", "-x", "-y", "bar"]< / tt > , because they
were specified after the last positional argument (which is the script
name).< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > There are several limitations to when < tt > cl::ConsumeAfter< / tt > options can
be specified. For example, only one < tt > cl::ConsumeAfter< / tt > can be specified
per program, there must be at least one < a href = "#positional" > positional
2004-05-07 00:03:59 +02:00
argument< / a > specified, there must not be any < a href = "#cl::list" > cl::list< / a >
positional arguments, and the < tt > cl::ConsumeAfter< / tt > option should be a < a
2003-10-24 21:59:21 +02:00
href="#cl::list">cl::list< / a > option.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "storage" > Internal vs External Storage< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > By default, all command line options automatically hold the value that they
2002-08-06 21:36:06 +02:00
parse from the command line. This is very convenient in the common case,
especially when combined with the ability to define command line options in the
2003-10-24 21:59:21 +02:00
files that use them. This is called the internal storage model.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Sometimes, however, it is nice to separate the command line option processing
2002-08-06 21:36:06 +02:00
code from the storage of the value parsed. For example, lets say that we have a
'< tt > -debug< / tt > ' option that we would like to use to enable debug information
across the entire body of our program. In this case, the boolean value
2009-10-12 16:46:08 +02:00
controlling the debug code should be globally accessible (in a header file, for
2002-08-06 21:36:06 +02:00
example) yet the command line option processing code should not be exposed to
all of these clients (requiring lots of .cpp files to #include
2003-10-24 21:59:21 +02:00
< tt > CommandLine.h< / tt > ).< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > To do this, set up your .h file with your option, like this for example:< / p >
2002-08-06 21:36:06 +02:00
2005-02-09 23:49:05 +01:00
< div class = "doc_code" >
2002-08-06 21:36:06 +02:00
< pre >
< i > // DebugFlag.h - Get access to the '-debug' command line option
//
// DebugFlag - This boolean is set to true if the '-debug' command line option
// is specified. This should probably not be referenced directly, instead, use
// the DEBUG macro below.
//< / i >
extern bool DebugFlag;
< i > // DEBUG macro - This macro should be used by code to emit debug information.
// In the '-debug' option is specified on the command line, and if this is a
// debug build, then the code specified as the option to the macro will be
2008-01-09 20:28:50 +01:00
// executed. Otherwise it will not be.< / i >
2005-02-09 23:49:05 +01:00
< span class = "doc_hilite" > #ifdef NDEBUG
2002-08-06 21:36:06 +02:00
#define DEBUG(X)
#else
2005-02-09 23:49:05 +01:00
#define DEBUG(X)< / span > do { if (DebugFlag) { X; } } while (0)
< span class = "doc_hilite" > #endif< / span >
2002-08-06 21:36:06 +02:00
< / pre >
2005-02-09 23:49:05 +01:00
< / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > This allows clients to blissfully use the < tt > DEBUG()< / tt > macro, or the
2002-08-06 21:36:06 +02:00
< tt > DebugFlag< / tt > explicitly if they want to. Now we just need to be able to
set the < tt > DebugFlag< / tt > boolean when the option is set. To do this, we pass
2008-01-09 20:28:50 +01:00
an additional argument to our command line argument processor, and we specify
2003-10-24 21:59:21 +02:00
where to fill in with the < a href = "#cl::location" > cl::location< / a >
attribute:< / p >
2002-08-06 21:36:06 +02:00
2005-02-09 23:49:05 +01:00
< div class = "doc_code" >
2002-08-06 21:36:06 +02:00
< pre >
2005-02-09 23:49:05 +01:00
bool DebugFlag; < i > // the actual value< / i >
2003-08-01 23:30:37 +02:00
static < a href = "#cl::opt" > cl::opt< / a > < bool, true> < i > // The parser< / i >
2005-02-09 23:49:05 +01:00
Debug("< 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));
2002-08-06 21:36:06 +02:00
< / pre >
2005-02-09 23:49:05 +01:00
< / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > In the above example, we specify "< tt > true< / tt > " as the second argument to
2005-02-09 23:49:05 +01:00
the < tt > < a href = "#cl::opt" > cl::opt< / a > < / tt > template, indicating that the
template should not maintain a copy of the value itself. In addition to this,
we specify the < tt > < a href = "#cl::location" > cl::location< / a > < / tt > attribute, so
that < tt > DebugFlag< / tt > is automatically set.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "attributes" > Option Attributes< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > This section describes the basic attributes that you can specify on
options.< / p >
2002-08-06 21:36:06 +02:00
< ul >
< li > The option name attribute (which is required for all options, except < a
href="#positional">positional options< / a > ) specifies what the option name is.
2003-10-24 21:59:21 +02:00
This option is specified in simple double quotes:
2002-08-06 21:36:06 +02:00
2002-08-07 20:27:04 +02:00
< pre >
< a href = "#cl::opt" > cl::opt< / a > < < b > bool< / b > > Quiet("< i > quiet< / i > ");
2003-10-24 21:59:21 +02:00
< / pre >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / li >
< li > < a name = "cl::desc" > The < b > < tt > cl::desc< / tt > < / b > < / a > attribute specifies a
2010-02-18 15:08:13 +01:00
description for the option to be shown in the < tt > -help< / tt > output for the
2003-10-24 21:59:21 +02:00
program.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::value_desc" > The < b > < tt > cl::value_desc< / tt > < / b > < / a > attribute
2010-02-18 15:08:13 +01:00
specifies a string that can be used to fine tune the < tt > -help< / tt > output for
2002-08-06 21:36:06 +02:00
a command line option. Look < a href = "#value_desc_example" > here< / a > for an
2003-10-24 21:59:21 +02:00
example.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::init" > The < b > < tt > cl::init< / tt > < / b > < / a > attribute specifies an
2009-10-12 16:46:08 +02:00
initial value for a < a href = "#cl::opt" > scalar< / a > option. If this attribute is
2002-08-06 21:36:06 +02:00
not specified then the command line option value defaults to the value created
2003-08-20 00:56:22 +02:00
by the default constructor for the type. < b > Warning< / b > : If you specify both
< b > < tt > cl::init< / tt > < / b > and < b > < tt > cl::location< / tt > < / b > for an option,
you must specify < b > < tt > cl::location< / tt > < / b > first, so that when the
command-line parser sees < b > < tt > cl::init< / tt > < / b > , it knows where to put the
initial value. (You will get an error at runtime if you don't put them in
2003-10-24 21:59:21 +02:00
the right order.)< / li >
2002-08-06 21:36:06 +02:00
2009-06-17 05:09:39 +02:00
< li > < a name = "cl::location" > The < b > < tt > cl::location< / tt > < / b > < / a > attribute where
to store the value for a parsed command line option if using external storage.
See the section on < a href = "#storage" > Internal vs External Storage< / a > for more
2003-10-24 21:59:21 +02:00
information.< / li >
< li > < a name = "cl::aliasopt" > The < b > < tt > cl::aliasopt< / tt > < / b > < / a > attribute
2005-02-09 23:49:05 +01:00
specifies which option a < tt > < a href = "#cl::alias" > cl::alias< / a > < / tt > option is
an alias for.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::values" > The < b > < tt > cl::values< / tt > < / b > < / a > attribute specifies
the string-to-value mapping to be used by the generic parser. It takes a
2008-02-20 13:38:31 +01:00
< b > clEnumValEnd terminated< / b > list of (option, value, description) triplets
2004-07-16 02:10:54 +02:00
that
2003-10-24 21:59:21 +02:00
specify the option name, the value mapped to, and the description shown in the
2010-02-18 15:08:13 +01:00
< tt > -help< / tt > for the tool. Because the generic parser is used most
2003-10-24 21:59:21 +02:00
frequently with enum values, two macros are often useful:
2002-08-06 21:36:06 +02:00
< ol >
2003-10-24 21:59:21 +02:00
< li > < a name = "clEnumVal" > The < b > < tt > clEnumVal< / tt > < / b > < / a > macro is used as a
nice simple way to specify a triplet for an enum. This macro automatically
makes the option name be the same as the enum name. The first option to the
macro is the enum, the second is the description for the command line
option.< / li >
< li > < a name = "clEnumValN" > The < b > < tt > clEnumValN< / tt > < / b > < / a > macro is used to
specify macro options where the option name doesn't equal the enum name. For
this macro, the first argument is the enum value, the second is the flag name,
and the second is the description.< / li >
2009-06-17 05:09:39 +02:00
< / ol >
You will get a compile time error if you try to use cl::values with a parser
that does not support it.< / li >
2009-01-16 23:54:19 +01:00
< li > < a name = "cl::multi_val" > The < b > < tt > cl::multi_val< / tt > < / b > < / a >
attribute specifies that this option takes has multiple values
(example: < tt > -sectalign segname sectname sectvalue< / tt > ). This
attribute takes one unsigned argument - the number of values for the
option. This attribute is valid only on < tt > cl::list< / tt > options (and
will fail with compile error if you try to use it with other option
types). It is allowed to use all of the usual modifiers on
multi-valued options (besides < tt > cl::ValueDisallowed< / tt > ,
obviously).< / li >
2002-08-06 21:36:06 +02:00
< / ul >
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "modifiers" > Option Modifiers< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Option modifiers are the flags and expressions that you pass into the
2002-08-06 21:36:06 +02:00
constructors for < tt > < a href = "#cl::opt" > cl::opt< / a > < / tt > and < tt > < a
href="#cl::list">cl::list< / a > < / tt > . These modifiers give you the ability to
2010-02-18 15:08:13 +01:00
tweak how options are parsed and how < tt > -help< / tt > output is generated to fit
2003-10-24 21:59:21 +02:00
your application well.< / p >
2002-08-06 21:36:06 +02:00
2009-10-12 16:46:08 +02:00
< p > These options fall into five main categories:< / p >
2002-08-06 21:36:06 +02:00
< ol >
2010-02-18 15:08:13 +01:00
< li > < a href = "#hiding" > Hiding an option from < tt > -help< / tt > output< / a > < / li >
2003-10-24 21:59:21 +02:00
< li > < a href = "#numoccurrences" > Controlling the number of occurrences
required and allowed< / a > < / li >
2002-08-06 21:36:06 +02:00
< li > < a href = "#valrequired" > Controlling whether or not a value must be
2003-10-24 21:59:21 +02:00
specified< / a > < / li >
< li > < a href = "#formatting" > Controlling other formatting options< / a > < / li >
< li > < a href = "#misc" > Miscellaneous option modifiers< / a > < / li >
< / ol >
2002-08-06 21:36:06 +02:00
2009-10-12 16:46:08 +02:00
< p > It is not possible to specify two options from the same category (you'll get
2003-10-24 21:59:21 +02:00
a runtime error) to a single option, except for options in the miscellaneous
2009-10-12 16:46:08 +02:00
category. The CommandLine library specifies defaults for all of these settings
2003-05-22 22:36:06 +02:00
that are the most useful in practice and the most common, which mean that you
2003-10-24 21:59:21 +02:00
usually shouldn't have to worry about these.< / p >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2010-02-18 15:08:13 +01:00
< a name = "hiding" > Hiding an option from < tt > -help< / tt > output< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::NotHidden< / tt > , < tt > cl::Hidden< / tt > , and
< tt > cl::ReallyHidden< / tt > modifiers are used to control whether or not an option
2010-02-18 15:08:13 +01:00
appears in the < tt > -help< / tt > and < tt > -help-hidden< / tt > output for the
2003-10-24 21:59:21 +02:00
compiled program:< / p >
2002-08-06 21:36:06 +02:00
< ul >
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::NotHidden" > The < b > < tt > cl::NotHidden< / tt > < / b > < / a > modifier
(which is the default for < tt > < a href = "#cl::opt" > cl::opt< / a > < / tt > and < tt > < a
2008-01-09 20:28:50 +01:00
href="#cl::list">cl::list< / a > < / tt > options) indicates the option is to appear
2003-10-24 21:59:21 +02:00
in both help listings.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::Hidden" > The < b > < tt > cl::Hidden< / tt > < / b > < / a > modifier (which is the
2008-01-09 20:28:50 +01:00
default for < tt > < a href = "#cl::alias" > cl::alias< / a > < / tt > options) indicates that
2010-02-18 15:08:13 +01:00
the option should not appear in the < tt > -help< / tt > output, but should appear in
the < tt > -help-hidden< / tt > output.< / li >
2003-10-24 21:59:21 +02:00
2008-01-09 20:28:50 +01:00
< li > < a name = "cl::ReallyHidden" > The < b > < tt > cl::ReallyHidden< / tt > < / b > < / a > modifier
2003-10-24 21:59:21 +02:00
indicates that the option should not appear in any help output.< / li >
2002-08-06 21:36:06 +02:00
< / ul >
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "numoccurrences" > Controlling the number of occurrences required and
allowed< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > This group of options is used to control how many time an option is allowed
(or required) to be specified on the command line of your program. Specifying a
2002-08-06 21:36:06 +02:00
value for this setting allows the CommandLine library to do error checking for
2003-10-24 21:59:21 +02:00
you.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The allowed values for this option group are:< / p >
2002-08-06 21:36:06 +02:00
< ul >
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::Optional" > The < b > < tt > cl::Optional< / tt > < / b > < / a > modifier (which
is the default for the < tt > < a href = "#cl::opt" > cl::opt< / a > < / tt > and < tt > < a
2002-08-06 21:36:06 +02:00
href="#cl::alias">cl::alias< / a > < / tt > classes) indicates that your program will
2003-10-24 21:59:21 +02:00
allow either zero or one occurrence of the option to be specified.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::ZeroOrMore" > The < b > < tt > cl::ZeroOrMore< / tt > < / b > < / a > modifier
(which is the default for the < tt > < a href = "#cl::list" > cl::list< / a > < / tt > class)
indicates that your program will allow the option to be specified zero or more
times.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::Required" > The < b > < tt > cl::Required< / tt > < / b > < / a > modifier
indicates that the specified option must be specified exactly one time.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::OneOrMore" > The < b > < tt > cl::OneOrMore< / tt > < / b > < / a > modifier
indicates that the option must be specified at least one time.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > The < b > < tt > cl::ConsumeAfter< / tt > < / b > modifier is described in the < a
2008-01-09 20:28:50 +01:00
href="#positional">Positional arguments section< / a > .< / li >
2002-08-06 21:36:06 +02:00
< / ul >
2003-10-24 21:59:21 +02:00
< p > If an option is not specified, then the value of the option is equal to the
2002-08-06 21:36:06 +02:00
value specified by the < tt > < a href = "#cl::init" > cl::init< / a > < / tt > attribute. If
the < tt > < a href = "#cl::init" > cl::init< / a > < / tt > attribute is not specified, the
2003-10-24 21:59:21 +02:00
option value is initialized with the default constructor for the data type.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > If an option is specified multiple times for an option of the < tt > < a
href="#cl::opt">cl::opt< / a > < / tt > class, only the last value will be
retained.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "valrequired" > Controlling whether or not a value must be specified< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > This group of options is used to control whether or not the option allows a
2002-08-06 21:36:06 +02:00
value to be present. In the case of the CommandLine library, a value is either
specified with an equal sign (e.g. '< tt > -index-depth=17< / tt > ') or as a trailing
2003-10-24 21:59:21 +02:00
string (e.g. '< tt > -o a.out< / tt > ').< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The allowed values for this option group are:< / p >
2002-08-06 21:36:06 +02:00
< ul >
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::ValueOptional" > The < b > < tt > cl::ValueOptional< / tt > < / b > < / a > modifier
2002-08-06 21:36:06 +02:00
(which is the default for < tt > bool< / tt > typed options) specifies that it is
acceptable to have a value, or not. A boolean argument can be enabled just by
appearing on the command line, or it can have an explicit '< tt > -foo=true< / tt > '.
If an option is specified with this mode, it is illegal for the value to be
provided without the equal sign. Therefore '< tt > -foo true< / tt > ' is illegal. To
get this behavior, you must use the < a
2003-10-24 21:59:21 +02:00
href="#cl::ValueRequired">cl::ValueRequired< / a > modifier.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::ValueRequired" > The < b > < tt > cl::ValueRequired< / tt > < / b > < / a > modifier
2002-08-06 21:36:06 +02:00
(which is the default for all other types except for < a
href="#onealternative">unnamed alternatives using the generic parser< / a > )
specifies that a value must be provided. This mode informs the command line
library that if an option is not provides with an equal sign, that the next
argument provided must be the value. This allows things like '< tt > -o
2003-10-24 21:59:21 +02:00
a.out< / tt > ' to work.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::ValueDisallowed" > The < b > < tt > cl::ValueDisallowed< / tt > < / b > < / a >
modifier (which is the default for < a href = "#onealternative" > unnamed
alternatives using the generic parser< / a > ) indicates that it is a runtime error
for the user to specify a value. This can be provided to disallow users from
providing options to boolean options (like '< tt > -foo=true< / tt > ').< / li >
2002-08-06 21:36:06 +02:00
< / ul >
2003-10-24 21:59:21 +02:00
< p > In general, the default values for this option group work just like you would
2002-08-06 21:36:06 +02:00
want them to. As mentioned above, you can specify the < a
href="#cl::ValueDisallowed">cl::ValueDisallowed< / a > modifier to a boolean
argument to restrict your command line parser. These options are mostly useful
2003-10-24 21:59:21 +02:00
when < a href = "#extensionguide" > extending the library< / a > .< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "formatting" > Controlling other formatting options< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > The formatting option group is used to specify that the command line option
has special abilities and is otherwise different from other command line
2008-01-09 20:28:50 +01:00
arguments. As usual, you can only specify one of these arguments at most.< / p >
2002-08-06 21:36:06 +02:00
< ul >
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::NormalFormatting" > The < b > < tt > cl::NormalFormatting< / tt > < / b > < / a >
modifier (which is the default all options) specifies that this option is
"normal".< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::Positional" > The < b > < tt > cl::Positional< / tt > < / b > < / a > modifier
2008-01-09 20:28:50 +01:00
specifies that this is a positional argument that does not have a command line
2003-10-24 21:59:21 +02:00
option associated with it. See the < a href = "#positional" > Positional
Arguments< / a > section for more information.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > The < b > < a href = "#cl::ConsumeAfter" > < tt > cl::ConsumeAfter< / tt > < / a > < / b > modifier
specifies that this option is used to capture "interpreter style" arguments. See < a href = "#cl::ConsumeAfter" > this section for more information< / a > .< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::Prefix" > The < b > < tt > cl::Prefix< / tt > < / b > < / a > modifier specifies
2004-11-24 07:13:42 +01:00
that this option prefixes its value. With 'Prefix' options, the equal sign does
not separate the value from the option name specified. Instead, the value is
everything after the prefix, including any equal sign if present. This is useful
for processing odd arguments like < tt > -lmalloc< / tt > and < tt > -L/usr/lib< / tt > in a
2005-05-11 00:05:27 +02:00
linker tool or < tt > -DNAME=value< / tt > in a compiler tool. Here, the
2004-11-24 07:13:42 +01:00
'< tt > l< / tt > ', '< tt > D< / tt > ' and '< tt > L< / tt > ' options are normal string (or list)
2005-05-11 00:05:27 +02:00
options, that have the < b > < tt > < a href = "#cl::Prefix" > cl::Prefix< / a > < / tt > < / b >
modifier added to allow the CommandLine library to recognize them. Note that
< b > < tt > < a href = "#cl::Prefix" > cl::Prefix< / a > < / tt > < / b > options must not have the
< b > < tt > < a href = "#cl::ValueDisallowed" > cl::ValueDisallowed< / a > < / tt > < / b > modifier
specified.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::Grouping" > The < b > < tt > cl::Grouping< / tt > < / b > < / a > modifier is used
2008-01-09 20:28:50 +01:00
to implement Unix-style tools (like < tt > ls< / tt > ) that have lots of single letter
2002-08-06 21:36:06 +02:00
arguments, but only require a single dash. For example, the '< tt > ls -labF< / tt > '
command actually enables four different options, all of which are single
2005-05-11 00:05:27 +02:00
letters. Note that < b > < tt > < a href = "#cl::Grouping" > cl::Grouping< / a > < / tt > < / b >
options cannot have values.< / li >
2002-08-06 21:36:06 +02:00
< / ul >
2005-05-11 00:05:27 +02:00
< p > The CommandLine library does not restrict how you use the < b > < tt > < a
href="#cl::Prefix">cl::Prefix< / a > < / tt > < / b > or < b > < tt > < a
href="#cl::Grouping">cl::Grouping< / a > < / tt > < / b > modifiers, but it is possible to
specify ambiguous argument settings. Thus, it is possible to have multiple
letter options that are prefix or grouping options, and they will still work as
designed.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > To do this, the CommandLine library uses a greedy algorithm to parse the
input option into (potentially multiple) prefix and grouping options. The
strategy basically looks like this:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < tt > parse(string OrigInput) {< / tt >
2004-05-12 20:42:35 +02:00
2002-08-06 21:36:06 +02:00
< ol >
< li > < tt > string input = OrigInput;< / tt >
< li > < tt > if (isOption(input)) return getOption(input).parse();< / tt > < i > // Normal option< / i >
< li > < tt > while (!isOption(input) & & !input.empty()) input.pop_back();< / tt > < i > // Remove the last letter< / i >
< li > < tt > if (input.empty()) return error();< / tt > < i > // No matching option< / i >
< li > < tt > if (getOption(input).isPrefix())< br >
return getOption(input).parse(input);< / tt >
< li > < tt > while (!input.empty()) { < i > // Must be grouping options< / i > < br >
getOption(input).parse();< br >
OrigInput.erase(OrigInput.begin(), OrigInput.begin()+input.length());< br >
input = OrigInput;< br >
while (!isOption(input) & & !input.empty()) input.pop_back();< br >
}< / tt >
2004-05-12 20:42:35 +02:00
< li > < tt > if (!OrigInput.empty()) error();< / tt > < / li >
2002-08-06 21:36:06 +02:00
< / ol >
2004-05-12 20:42:35 +02:00
< p > < tt > }< / tt > < / p >
2005-03-11 01:00:33 +01:00
< / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2003-05-22 22:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "misc" > Miscellaneous option modifiers< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-05-22 22:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The miscellaneous option modifiers are the only flags where you can specify
more than one flag from the set: they are not mutually exclusive. These flags
specify boolean properties that modify the option.< / p >
2003-05-22 22:36:06 +02:00
< ul >
2003-10-24 21:59:21 +02:00
< li > < a name = "cl::CommaSeparated" > The < b > < tt > cl::CommaSeparated< / tt > < / b > < / a > modifier
2003-05-22 22:36:06 +02:00
indicates that any commas specified for an option's value should be used to
split the value up into multiple values for the option. For example, these two
options are equivalent when < tt > cl::CommaSeparated< / tt > is specified:
"< tt > -foo=a -foo=b -foo=c< / tt > " and "< tt > -foo=a,b,c< / tt > ". This option only
makes sense to be used in a case where the option is allowed to accept one or
2003-10-24 21:59:21 +02:00
more values (i.e. it is a < a href = "#cl::list" > cl::list< / a > option).< / li >
2004-05-07 00:03:59 +02:00
< li > < a name = "cl::PositionalEatsArgs" > The
< b > < tt > cl::PositionalEatsArgs< / tt > < / b > < / a > modifier (which only applies to
positional arguments, and only makes sense for lists) indicates that positional
argument should consume any strings after it (including strings that start with
a "-") up until another recognized positional argument. For example, if you
2008-01-09 20:28:50 +01:00
have two "eating" positional arguments, "< tt > pos1< / tt > " and "< tt > pos2< / tt > ", the
2004-05-07 00:03:59 +02:00
string "< tt > -pos1 -foo -bar baz -pos2 -bork< / tt > " would cause the "< tt > -foo -bar
-baz< / tt > " strings to be applied to the "< tt > -pos1< / tt > " option and the
"< tt > -bork< / tt > " string to be applied to the "< tt > -pos2< / tt > " option.< / li >
2008-02-20 13:38:31 +01:00
< li > < a name = "cl::Sink" > The < b > < tt > cl::Sink< / tt > < / b > < / a > modifier is
used to handle unknown options. If there is at least one option with
2009-08-05 17:42:44 +02:00
< tt > cl::Sink< / tt > modifier specified, the parser passes
2008-02-20 13:38:31 +01:00
unrecognized option strings to it as values instead of signaling an
2009-08-05 17:42:44 +02:00
error. As with < tt > cl::CommaSeparated< / tt > , this modifier
2008-02-20 13:38:31 +01:00
only makes sense with a < a href = "#cl::list" > cl::list< / a > option.< / li >
2003-05-22 22:36:06 +02:00
< / ul >
2008-02-20 13:38:31 +01:00
< p > So far, these are the only three miscellaneous option modifiers.< / p >
2003-05-22 22:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2003-05-22 22:36:06 +02:00
2008-04-28 18:44:25 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2008-04-28 18:44:25 +02:00
< a name = "response" > Response files< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2008-04-28 18:44:25 +02:00
2011-04-23 02:30:22 +02:00
< div >
2008-04-28 18:44:25 +02:00
< p > Some systems, such as certain variants of Microsoft Windows and
some older Unices have a relatively low limit on command-line
length. It is therefore customary to use the so-called 'response
files' to circumvent this restriction. These files are mentioned on
the command-line (using the "@file") syntax. The program reads these
files and inserts the contents into argv, thereby working around the
command-line length limits. Response files are enabled by an optional
fourth argument to
< a href = "#cl::ParseEnvironmentOptions" > < tt > cl::ParseEnvironmentOptions< / tt > < / a >
and
< a href = "#cl::ParseCommandLineOptions" > < tt > cl::ParseCommandLineOptions< / tt > < / a > .
< / p >
< / div >
2011-04-23 02:30:22 +02:00
< / div >
2008-04-28 18:44:25 +02:00
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "toplevel" > Top-Level Classes and Functions< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Despite all of the built-in flexibility, the CommandLine option library
really only consists of one function (< a
2002-08-07 20:27:04 +02:00
href="#cl::ParseCommandLineOptions">< tt > cl::ParseCommandLineOptions< / tt > < / a > )
and three main classes: < a href = "#cl::opt" > < tt > cl::opt< / tt > < / a > , < a
href="#cl::list">< tt > cl::list< / tt > < / a > , and < a
href="#cl::alias">< tt > cl::alias< / tt > < / a > . This section describes these three
2003-10-24 21:59:21 +02:00
classes in detail.< / p >
2002-08-07 20:27:04 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "cl::ParseCommandLineOptions" > The < tt > cl::ParseCommandLineOptions< / tt >
function< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::ParseCommandLineOptions< / tt > function is designed to be called
2002-08-07 20:27:04 +02:00
directly from < tt > main< / tt > , and is used to fill in the values of all of the
command line option variables once < tt > argc< / tt > and < tt > argv< / tt > are
2003-10-24 21:59:21 +02:00
available.< / p >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::ParseCommandLineOptions< / tt > function requires two parameters
2002-08-07 20:27:04 +02:00
(< tt > argc< / tt > and < tt > argv< / tt > ), but may also take an optional third parameter
which holds < a href = "#description" > additional extra text< / a > to emit when the
2010-02-18 15:08:13 +01:00
< tt > -help< / tt > option is invoked, and a fourth boolean parameter that enables
2008-04-28 18:44:25 +02:00
< a href = "#response" > response files< / a > .< / p >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
2003-08-20 01:11:43 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "cl::ParseEnvironmentOptions" > The < tt > cl::ParseEnvironmentOptions< / tt >
function< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::ParseEnvironmentOptions< / tt > function has mostly the same effects
as < a
href="#cl::ParseCommandLineOptions">< tt > cl::ParseCommandLineOptions< / tt > < / a > ,
except that it is designed to take values for options from an environment
variable, for those cases in which reading the command line is not convenient or
2008-01-09 20:28:50 +01:00
desired. It fills in the values of all the command line option variables just
like < a
2003-10-24 21:59:21 +02:00
href="#cl::ParseCommandLineOptions">< tt > cl::ParseCommandLineOptions< / tt > < / a >
does.< / p >
2008-04-28 18:44:25 +02:00
< p > It takes four parameters: the name of the program (since < tt > argv< / tt > may
2008-01-09 20:28:50 +01:00
not be available, it can't just look in < tt > argv[0]< / tt > ), the name of the
2008-04-28 18:44:25 +02:00
environment variable to examine, the optional
2003-08-20 01:11:43 +02:00
< a href = "#description" > additional extra text< / a > to emit when the
2010-02-18 15:08:13 +01:00
< tt > -help< / tt > option is invoked, and the boolean
2009-10-12 16:46:08 +02:00
switch that controls whether < a href = "#response" > response files< / a >
2008-04-28 18:44:25 +02:00
should be read.< / p >
2003-08-20 01:11:43 +02:00
2003-10-24 21:59:21 +02:00
< p > < tt > cl::ParseEnvironmentOptions< / tt > will break the environment
2003-08-20 01:11:43 +02:00
variable's value up into words and then process them using
< a href = "#cl::ParseCommandLineOptions" > < tt > cl::ParseCommandLineOptions< / tt > < / a > .
< b > Note:< / b > Currently < tt > cl::ParseEnvironmentOptions< / tt > does not support
quoting, so an environment variable containing < tt > -option "foo bar"< / tt > will
be parsed as three words, < tt > -option< / tt > , < tt > "foo< / tt > , and < tt > bar"< / tt > ,
which is different from what you would get from the shell with the same
2003-10-24 21:59:21 +02:00
input.< / p >
< / div >
2003-08-20 01:11:43 +02:00
2006-06-05 19:30:16 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2006-06-05 19:30:16 +02:00
< a name = "cl::SetVersionPrinter" > The < tt > cl::SetVersionPrinter< / tt >
function< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2006-06-05 19:30:16 +02:00
2011-04-23 02:30:22 +02:00
< div >
2006-06-05 19:30:16 +02:00
< p > The < tt > cl::SetVersionPrinter< / tt > function is designed to be called
2008-01-09 20:28:50 +01:00
directly from < tt > main< / tt > and < i > before< / i >
2006-06-05 19:30:16 +02:00
< tt > cl::ParseCommandLineOptions< / tt > . Its use is optional. It simply arranges
for a function to be called in response to the < tt > --version< / tt > option instead
of having the < tt > CommandLine< / tt > library print out the usual version string
for LLVM. This is useful for programs that are not part of LLVM but wish to use
the < tt > CommandLine< / tt > facilities. Such programs should just define a small
function that takes no arguments and returns < tt > void< / tt > and that prints out
whatever version information is appropriate for the program. Pass the address
of that function to < tt > cl::SetVersionPrinter< / tt > to arrange for it to be
called when the < tt > --version< / tt > option is given by the user.< / p >
< / div >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "cl::opt" > The < tt > cl::opt< / tt > class< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::opt< / tt > class is the class used to represent scalar command line
2002-08-06 21:36:06 +02:00
options, and is the one used most of the time. It is a templated class which
can take up to three arguments (all except for the first have default values
2003-10-24 21:59:21 +02:00
though):< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
< b > namespace< / b > cl {
< b > template< / b > < < b > class< / b > DataType, < b > bool< / b > ExternalStorage = < b > false< / b > ,
< b > class< / b > ParserClass = parser< DataType> >
< b > class< / b > opt;
2002-08-06 21:36:06 +02:00
}
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The first template argument specifies what underlying data type the command
line argument is, and is used to select a default parser implementation. The
second template argument is used to specify whether the option should contain
the storage for the option (the default) or whether external storage should be
used to contain the value parsed for the option (see < a href = "#storage" > Internal
vs External Storage< / a > for more information).< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The third template argument specifies which parser to use. The default value
2002-08-06 21:36:06 +02:00
selects an instantiation of the < tt > parser< / tt > class based on the underlying
data type of the option. In general, this default works well for most
applications, so this option is only used when using a < a
2003-10-24 21:59:21 +02:00
href="#customparser">custom parser< / a > .< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "cl::list" > The < tt > cl::list< / tt > class< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::list< / tt > class is the class used to represent a list of command
2002-08-06 21:36:06 +02:00
line options. It too is a templated class which can take up to three
2003-10-24 21:59:21 +02:00
arguments:< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
< b > namespace< / b > cl {
< b > template< / b > < < b > class< / b > DataType, < b > class< / b > Storage = < b > bool< / b > ,
< b > class< / b > ParserClass = parser< DataType> >
< b > class< / b > list;
2002-08-06 21:36:06 +02:00
}
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > This class works the exact same as the < a
href="#cl::opt">< tt > cl::opt< / tt > < / a > class, except that the second argument is
the < b > type< / b > of the external storage, not a boolean value. For this class,
the marker type '< tt > bool< / tt > ' is used to indicate that internal storage should
be used.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
2005-08-26 00:52:43 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2005-08-26 00:52:43 +02:00
< a name = "cl::bits" > The < tt > cl::bits< / tt > class< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2005-08-26 00:52:43 +02:00
2011-04-23 02:30:22 +02:00
< div >
2005-08-26 00:52:43 +02:00
< p > The < tt > cl::bits< / tt > class is the class used to represent a list of command
line options in the form of a bit vector. It is also a templated class which
can take up to three arguments:< / p >
< div class = "doc_code" > < pre >
< b > namespace< / b > cl {
< b > template< / b > < < b > class< / b > DataType, < b > class< / b > Storage = < b > bool< / b > ,
< b > class< / b > ParserClass = parser< DataType> >
< b > class< / b > bits;
}
< / pre > < / div >
< p > This class works the exact same as the < a
href="#cl::opt">< tt > cl::lists< / tt > < / a > class, except that the second argument
2005-08-26 11:25:54 +02:00
must be of < b > type< / b > < tt > unsigned< / tt > if external storage is used.< / p >
2005-08-26 00:52:43 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2003-10-24 21:59:21 +02:00
< a name = "cl::alias" > The < tt > cl::alias< / tt > class< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > The < tt > cl::alias< / tt > class is a nontemplated class that is used to form
aliases for other arguments.< / p >
2002-08-06 21:36:06 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
< b > namespace< / b > cl {
< b > class< / b > alias;
2002-08-06 21:36:06 +02:00
}
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The < a href = "#cl::aliasopt" > < tt > cl::aliasopt< / tt > < / a > attribute should be
used to specify which option this is an alias for. Alias arguments default to
being < a href = "#cl::Hidden" > Hidden< / a > , and use the aliased options parser to do
the conversion from string to data.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
2004-11-16 07:11:52 +01:00
<!-- _______________________________________________________________________ -->
2011-04-19 01:59:50 +02:00
< h4 >
2004-11-16 07:11:52 +01:00
< a name = "cl::extrahelp" > The < tt > cl::extrahelp< / tt > class< / a >
2011-04-19 01:59:50 +02:00
< / h4 >
2004-11-16 07:11:52 +01:00
2011-04-23 02:30:22 +02:00
< div >
2004-11-16 07:11:52 +01:00
< p > The < tt > cl::extrahelp< / tt > class is a nontemplated class that allows extra
2010-02-18 15:08:13 +01:00
help text to be printed out for the < tt > -help< / tt > option.< / p >
2004-11-16 07:11:52 +01:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2004-11-16 07:11:52 +01:00
< b > namespace< / b > cl {
< b > struct< / b > extrahelp;
}
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2004-11-16 07:11:52 +01:00
2008-02-20 13:38:31 +01:00
< p > To use the extrahelp, simply construct one with a < tt > const char*< / tt >
2004-11-16 07:11:52 +01:00
parameter to the constructor. The text passed to the constructor will be printed
at the bottom of the help message, verbatim. Note that multiple
2005-03-11 01:00:33 +01:00
< tt > cl::extrahelp< / tt > < b > can< / b > be used, but this practice is discouraged. If
2004-11-16 07:11:52 +01:00
your tool needs to print additional help information, put all that help into a
single < tt > cl::extrahelp< / tt > instance.< / p >
< p > For example:< / p >
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2004-11-16 07:11:52 +01:00
cl::extrahelp("\nADDITIONAL HELP:\n\n This is the extra help\n");
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2004-11-16 07:11:52 +01:00
< / div >
2011-04-23 02:30:22 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "builtinparsers" > Builtin parsers< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2003-10-24 21:59:21 +02:00
2011-04-23 02:30:22 +02:00
< div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > Parsers control how the string value taken from the command line is
translated into a typed value, suitable for use in a C++ program. By default,
the CommandLine library uses an instance of < tt > parser< type> < / tt > if the
2002-08-06 21:36:06 +02:00
command line option specifies that it uses values of type '< tt > type< / tt > '.
Because of this, custom option processing is specified with specializations of
2003-10-24 21:59:21 +02:00
the '< tt > parser< / tt > ' class.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< p > The CommandLine library provides the following builtin parser
specializations, which are sufficient for most applications. It can, however,
also be extended to work with new data types and new ways of interpreting the
same data. See the < a href = "#customparser" > Writing a Custom Parser< / a > for more
details on this type of library extension.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< ul >
< li > < a name = "genericparser" > The < b > generic < tt > parser< t> < / tt > parser< / b > < / a >
2002-08-06 21:36:06 +02:00
can be used to map strings values to any data type, through the use of the < a
href="#cl::values">cl::values< / a > property, which specifies the mapping
information. The most common use of this parser is for parsing enum values,
which allows you to use the CommandLine library for all of the error checking to
make sure that only valid enum values are specified (as opposed to accepting
arbitrary strings). Despite this, however, the generic parser class can be used
2003-10-24 21:59:21 +02:00
for any data type.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "boolparser" > The < b > < tt > parser< bool> < / tt > specialization< / b > < / a >
2002-08-06 21:36:06 +02:00
is used to convert boolean strings to a boolean value. Currently accepted
strings are "< tt > true< / tt > ", "< tt > TRUE< / tt > ", "< tt > True< / tt > ", "< tt > 1< / tt > ",
2009-04-08 05:43:51 +02:00
"< tt > false< / tt > ", "< tt > FALSE< / tt > ", "< tt > False< / tt > ", and "< tt > 0< / tt > ".< / li >
2002-08-06 21:36:06 +02:00
2007-05-22 20:32:34 +02:00
< li > < a name = "boolOrDefaultparser" > The < b > < tt > parser< boolOrDefault> < / tt >
specialization< / b > < / a > is used for cases where the value is boolean,
but we also need to know whether the option was specified at all. boolOrDefault
is an enum with 3 values, BOU_UNSET, BOU_TRUE and BOU_FALSE. This parser accepts
the same strings as < b > < tt > parser< bool> < / tt > < / b > .< / li >
2003-10-24 21:59:21 +02:00
< li > < a name = "stringparser" > The < b > < tt > parser< string> < / tt >
specialization< / b > < / a > simply stores the parsed string into the string value
specified. No conversion or modification of the data is performed.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "intparser" > The < b > < tt > parser< int> < / tt > specialization< / b > < / a >
2002-08-06 21:36:06 +02:00
uses the C < tt > strtol< / tt > function to parse the string input. As such, it will
accept a decimal number (with an optional '+' or '-' prefix) which must start
with a non-zero digit. It accepts octal numbers, which are identified with a
'< tt > 0< / tt > ' prefix digit, and hexadecimal numbers with a prefix of
2003-10-24 21:59:21 +02:00
'< tt > 0x< / tt > ' or '< tt > 0X< / tt > '.< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< li > < a name = "doubleparser" > The < b > < tt > parser< double> < / tt > < / b > < / a > and
2002-08-06 21:36:06 +02:00
< b > < tt > parser< float> < / tt > specializations< / b > use the standard C
< tt > strtod< / tt > function to convert floating point strings into floating point
values. As such, a broad range of string formats is supported, including
exponential notation (ex: < tt > 1.7e15< / tt > ) and properly supports locales.
2003-10-24 21:59:21 +02:00
< / li >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / ul >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
2011-04-23 02:30:22 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-19 01:59:50 +02:00
< h2 >
2003-10-24 21:59:21 +02:00
< a name = "extensionguide" > Extension Guide< / a >
2011-04-19 01:59:50 +02:00
< / h2 >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > Although the CommandLine library has a lot of functionality built into it
2002-08-07 20:27:04 +02:00
already (as discussed previously), one of its true strengths lie in its
extensibility. This section discusses how the CommandLine library works under
2003-10-24 21:59:21 +02:00
the covers and illustrates how to do some simple, common, extensions.< / p >
2002-08-07 20:27:04 +02:00
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "customparser" > Writing a custom parser< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2003-10-24 21:59:21 +02:00
< p > One of the simplest and most common extensions is the use of a custom parser.
2002-08-07 20:27:04 +02:00
As < a href = "#builtinparsers" > discussed previously< / a > , parsers are the portion
of the CommandLine library that turns string input from the user into a
2003-10-24 21:59:21 +02:00
particular parsed data type, validating the input in the process.< / p >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > There are two ways to use a new parser:< / p >
2002-08-07 20:27:04 +02:00
< ol >
2003-10-24 21:59:21 +02:00
< li >
< p > Specialize the < a href = "#genericparser" > < tt > cl::parser< / tt > < / a > template for
your custom data type.< p >
< p > This approach has the advantage that users of your custom data type will
automatically use your custom parser whenever they define an option with a value
type of your data type. The disadvantage of this approach is that it doesn't
2006-07-31 22:18:49 +02:00
work if your fundamental data type is something that is already supported.< / p >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< / li >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< li >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > Write an independent class, using it explicitly from options that need
it.< / p >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > This approach works well in situations where you would line to parse an
option using special syntax for a not-very-special data-type. The drawback of
this approach is that users of your parser have to be aware that they are using
2008-01-09 20:28:50 +01:00
your parser instead of the builtin ones.< / p >
2003-10-24 21:59:21 +02:00
< / li >
< / ol >
< p > To guide the discussion, we will discuss a custom parser that accepts file
2002-08-07 20:27:04 +02:00
sizes, specified with an optional unit after the numeric size. For example, we
would like to parse "102kb", "41M", "1G" into the appropriate integer value. In
this case, the underlying data type we want to parse into is
'< tt > unsigned< / tt > '. We choose approach #2 above because we don't want to make
2003-10-24 21:59:21 +02:00
this the default for all < tt > unsigned< / tt > options.< / p >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > To start out, we declare our new < tt > FileSizeParser< / tt > class:< / p >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
< b > struct< / b > FileSizeParser : < b > public< / b > cl::basic_parser< < b > unsigned< / b > > {
< i > // parse - Return true on error.< / i >
< b > bool< / b > parse(cl::Option & O, < b > const char< / b > *ArgName, < b > const< / b > std::string & ArgValue,
< b > unsigned< / b > & Val);
};
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > Our new class inherits from the < tt > cl::basic_parser< / tt > template class to
2008-01-09 20:28:50 +01:00
fill in the default, boiler plate code for us. We give it the data type that
we parse into, the last argument to the < tt > parse< / tt > method, so that clients of
our custom parser know what object type to pass in to the parse method. (Here we
declare that we parse into '< tt > unsigned< / tt > ' variables.)< / p >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > For most purposes, the only method that must be implemented in a custom
parser is the < tt > parse< / tt > method. The < tt > parse< / tt > method is called
whenever the option is invoked, passing in the option itself, the option name,
the string to parse, and a reference to a return value. If the string to parse
2008-01-09 20:28:50 +01:00
is not well-formed, the parser should output an error message and return true.
2003-10-24 21:59:21 +02:00
Otherwise it should return false and set '< tt > Val< / tt > ' to the parsed value. In
our example, we implement < tt > parse< / tt > as:< / p >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
< b > bool< / b > FileSizeParser::parse(cl::Option & O, < b > const char< / b > *ArgName,
< b > const< / b > std::string & Arg, < b > unsigned< / b > & Val) {
< b > const char< / b > *ArgStart = Arg.c_str();
< b > char< / b > *End;
2008-02-20 13:38:31 +01:00
2002-08-07 20:27:04 +02:00
< i > // Parse integer part, leaving 'End' pointing to the first non-integer char< / i >
Val = (unsigned)strtol(ArgStart, & End, 0);
< b > while< / b > (1) {
< b > switch< / b > (*End++) {
2005-08-22 18:24:25 +02:00
< b > case< / b > 0: < b > return< / b > false; < i > // No error< / i >
2002-08-07 20:27:04 +02:00
< b > case< / b > 'i': < i > // Ignore the 'i' in KiB if people use that< / i >
< b > case< / b > 'b': < b > case< / b > 'B': < i > // Ignore B suffix< / i >
< b > break< / b > ;
< b > case< / b > 'g': < b > case< / b > 'G': Val *= 1024*1024*1024; < b > break< / b > ;
< b > case< / b > 'm': < b > case< / b > 'M': Val *= 1024*1024; < b > break< / b > ;
< b > case< / b > 'k': < b > case< / b > 'K': Val *= 1024; < b > break< / b > ;
default:
< i > // Print an error message if unrecognized character!< / i >
2009-08-02 14:13:02 +02:00
< b > return< / b > O.error("'" + Arg + "' value invalid for file size argument!");
2002-08-07 20:27:04 +02:00
}
}
}
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > This function implements a very simple parser for the kinds of strings we are
2002-08-07 20:27:04 +02:00
interested in. Although it has some holes (it allows "< tt > 123KKK< / tt > " for
example), it is good enough for this example. Note that we use the option
itself to print out the error message (the < tt > error< / tt > method always returns
true) in order to get a nice error message (shown below). Now that we have our
2003-10-24 21:59:21 +02:00
parser class, we can use it like this:< / p >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
< b > static< / b > < a href = "#cl::opt" > cl::opt< / a > < < b > unsigned< / b > , < b > false< / b > , FileSizeParser>
MFS(< i > "max-file-size"< / i > , < a href = "#cl::desc" > cl::desc< / a > (< i > "Maximum file size to accept"< / i > ),
< a href = "#cl::value_desc" > cl::value_desc< / a > ("< i > size< / i > "));
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > Which adds this to the output of our program:< / p >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
OPTIONS:
2010-02-18 15:08:13 +01:00
-help - display available options (-help-hidden for more)
2002-08-07 20:27:04 +02:00
...
< b > -max-file-size=< size> - Maximum file size to accept< / b >
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > And we can test that our parse works correctly now (the test program just
prints out the max-file-size argument value):< / p >
2002-08-07 20:27:04 +02:00
2005-03-11 01:00:33 +01:00
< div class = "doc_code" > < pre >
2002-08-07 20:27:04 +02:00
$ ./test
MFS: 0
$ ./test -max-file-size=123MB
MFS: 128974848
$ ./test -max-file-size=3G
MFS: 3221225472
$ ./test -max-file-size=dog
-max-file-size option: 'dog' value invalid for file size argument!
2005-03-11 01:00:33 +01:00
< / pre > < / div >
2002-08-07 20:27:04 +02:00
2003-10-24 21:59:21 +02:00
< p > It looks like it works. The error message that we get is nice and helpful,
and we seem to accept reasonable file sizes. This wraps up the "custom parser"
tutorial.< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "explotingexternal" > Exploiting external storage< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2002-08-06 21:36:06 +02:00
2011-04-23 02:30:22 +02:00
< div >
2004-08-30 07:56:51 +02:00
< p > Several of the LLVM libraries define static < tt > cl::opt< / tt > instances that
will automatically be included in any program that links with that library.
This is a feature. However, sometimes it is necessary to know the value of the
command line option outside of the library. In these cases the library does or
should provide an external storage location that is accessible to users of the
library. Examples of this include the < tt > llvm::DebugFlag< / tt > exported by the
< tt > lib/Support/Debug.cpp< / tt > file and the < tt > llvm::TimePassesIsEnabled< / tt >
flag exported by the < tt > lib/VMCore/Pass.cpp< / tt > file.< / p >
< p > TODO: complete this section< / p >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2002-08-06 21:36:06 +02:00
2003-10-24 21:59:21 +02:00
<!-- ======================================================================= -->
2011-04-19 01:59:50 +02:00
< h3 >
2003-10-24 21:59:21 +02:00
< a name = "dynamicopts" > Dynamically adding command line options< / a >
2011-04-19 01:59:50 +02:00
< / h3 >
2001-07-24 01:03:12 +02:00
2011-04-23 02:30:22 +02:00
< div >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< p > TODO: fill in this section< / p >
2001-07-24 01:03:12 +02:00
2003-10-24 21:59:21 +02:00
< / div >
2001-07-24 01:03:12 +02:00
2011-04-23 02:30:22 +02:00
< / div >
2001-07-24 01:03:12 +02:00
<!-- *********************************************************************** -->
< hr >
2004-05-12 20:42:35 +02:00
< address >
< a href = "http://jigsaw.w3.org/css-validator/check/referer" > < img
2008-12-11 18:34:48 +01:00
src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS">< / a >
2004-05-12 20:42:35 +02:00
< a href = "http://validator.w3.org/check/referer" > < img
2008-12-11 18:34:48 +01:00
src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01">< / a >
2004-05-12 20:42:35 +02:00
< a href = "mailto:sabre@nondot.org" > Chris Lattner< / a > < br >
2011-04-09 04:13:37 +02:00
< a href = "http://llvm.org/" > LLVM Compiler Infrastructure< / a > < br >
2003-11-07 19:11:14 +01:00
Last modified: $Date$
2004-05-12 20:42:35 +02:00
< / address >
2003-10-24 21:59:21 +02:00
< / body >
< / html >