blob: ed2559bd2b9f1af962eddc1a4cf789896efc9585 [file] [log] [blame]
Chris Lattnercee8f9a2001-11-27 00:03:19 +00001//===- Support/CommandLine.h - Flexible Command line parser ------*- C++ -*--=//
2//
3// This class implements a command line argument processor that is useful when
4// creating a tool. It provides a simple, minimalistic interface that is easily
5// extensible and supports nonlocal (library) command line options.
6//
Chris Lattner331de232002-07-22 02:07:59 +00007// Note that rather than trying to figure out what this code does, you should
8// read the library documentation located in docs/CommandLine.html or looks at
9// the many example usages in tools/*/*.cpp
Chris Lattnercee8f9a2001-11-27 00:03:19 +000010//
11//===----------------------------------------------------------------------===//
12
Brian Gaekea9f6e4a2003-06-17 00:35:55 +000013#ifndef SUPPORT_COMMANDLINE_H
14#define SUPPORT_COMMANDLINE_H
Chris Lattnercee8f9a2001-11-27 00:03:19 +000015
16#include <string>
17#include <vector>
18#include <utility>
Chris Lattnerb3b729b2003-05-22 20:25:57 +000019#include <cstdarg>
Chris Lattner331de232002-07-22 02:07:59 +000020#include "boost/type_traits/object_traits.hpp"
John Criswellbe583b92003-06-11 14:01:36 +000021#include <assert.h>
22
Chris Lattnerbf0ac3f2003-06-03 15:30:37 +000023/// cl Namespace - This namespace contains all of the command line option
24/// processing machinery. It is intentionally a short name to make qualified
25/// usage concise.
26namespace cl {
Chris Lattnercee8f9a2001-11-27 00:03:19 +000027
28//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +000029// ParseCommandLineOptions - Command line option processing entry point.
Chris Lattnercee8f9a2001-11-27 00:03:19 +000030//
31void cl::ParseCommandLineOptions(int &argc, char **argv,
Chris Lattner331de232002-07-22 02:07:59 +000032 const char *Overview = 0);
Chris Lattnercee8f9a2001-11-27 00:03:19 +000033
34//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +000035// Flags permitted to be passed to command line arguments
36//
Chris Lattnercee8f9a2001-11-27 00:03:19 +000037
38enum NumOccurances { // Flags for the number of occurances allowed...
39 Optional = 0x01, // Zero or One occurance
40 ZeroOrMore = 0x02, // Zero or more occurances allowed
41 Required = 0x03, // One occurance required
42 OneOrMore = 0x04, // One or more occurances required
43
Chris Lattner331de232002-07-22 02:07:59 +000044 // ConsumeAfter - Indicates that this option is fed anything that follows the
45 // last positional argument required by the application (it is an error if
46 // there are zero positional arguments, and a ConsumeAfter option is used).
47 // Thus, for example, all arguments to LLI are processed until a filename is
48 // found. Once a filename is found, all of the succeeding arguments are
49 // passed, unprocessed, to the ConsumeAfter option.
Chris Lattnercee8f9a2001-11-27 00:03:19 +000050 //
51 ConsumeAfter = 0x05,
52
53 OccurancesMask = 0x07,
54};
55
56enum ValueExpected { // Is a value required for the option?
Chris Lattnerb3b729b2003-05-22 20:25:57 +000057 ValueOptional = 0x08, // The value can appear... or not
Chris Lattnercee8f9a2001-11-27 00:03:19 +000058 ValueRequired = 0x10, // The value is required to appear!
59 ValueDisallowed = 0x18, // A value may not be specified (for flags)
60 ValueMask = 0x18,
61};
62
63enum OptionHidden { // Control whether -help shows this option
64 NotHidden = 0x20, // Option included in --help & --help-hidden
65 Hidden = 0x40, // -help doesn't, but --help-hidden does
66 ReallyHidden = 0x60, // Neither --help nor --help-hidden show this arg
67 HiddenMask = 0x60,
68};
69
Chris Lattner331de232002-07-22 02:07:59 +000070// Formatting flags - This controls special features that the option might have
71// that cause it to be parsed differently...
72//
73// Prefix - This option allows arguments that are otherwise unrecognized to be
74// matched by options that are a prefix of the actual value. This is useful for
75// cases like a linker, where options are typically of the form '-lfoo' or
76// '-L../../include' where -l or -L are the actual flags. When prefix is
77// enabled, and used, the value for the flag comes from the suffix of the
78// argument.
79//
80// Grouping - With this option enabled, multiple letter options are allowed to
81// bunch together with only a single hyphen for the whole group. This allows
82// emulation of the behavior that ls uses for example: ls -la === ls -l -a
83//
84
85enum FormattingFlags {
86 NormalFormatting = 0x000, // Nothing special
87 Positional = 0x080, // Is a positional argument, no '-' required
88 Prefix = 0x100, // Can this option directly prefix its value?
89 Grouping = 0x180, // Can this option group with other options?
90 FormattingMask = 0x180,
91};
92
Chris Lattnerb3b729b2003-05-22 20:25:57 +000093enum MiscFlags { // Miscellaneous flags to adjust argument
94 CommaSeparated = 0x200, // Should this cl::list split between commas?
95 MiscMask = 0x200,
96};
97
98
Chris Lattnercee8f9a2001-11-27 00:03:19 +000099
100//===----------------------------------------------------------------------===//
101// Option Base class
102//
Chris Lattner331de232002-07-22 02:07:59 +0000103class alias;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000104class Option {
105 friend void cl::ParseCommandLineOptions(int &, char **, const char *, int);
Chris Lattner331de232002-07-22 02:07:59 +0000106 friend class alias;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000107
108 // handleOccurances - Overriden by subclasses to handle the value passed into
109 // an argument. Should return true if there was an error processing the
110 // argument and the program should exit.
111 //
Chris Lattner697954c2002-01-20 22:54:45 +0000112 virtual bool handleOccurance(const char *ArgName, const std::string &Arg) = 0;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000113
114 virtual enum NumOccurances getNumOccurancesFlagDefault() const {
115 return Optional;
116 }
117 virtual enum ValueExpected getValueExpectedFlagDefault() const {
118 return ValueOptional;
119 }
120 virtual enum OptionHidden getOptionHiddenFlagDefault() const {
121 return NotHidden;
122 }
Chris Lattner331de232002-07-22 02:07:59 +0000123 virtual enum FormattingFlags getFormattingFlagDefault() const {
124 return NormalFormatting;
125 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000126
Chris Lattner331de232002-07-22 02:07:59 +0000127 int NumOccurances; // The number of times specified
128 int Flags; // Flags for the argument
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000129public:
Chris Lattner331de232002-07-22 02:07:59 +0000130 const char *ArgStr; // The argument string itself (ex: "help", "o")
131 const char *HelpStr; // The descriptive text message for --help
132 const char *ValueStr; // String describing what the value of this option is
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000133
134 inline enum NumOccurances getNumOccurancesFlag() const {
135 int NO = Flags & OccurancesMask;
136 return NO ? (enum NumOccurances)NO : getNumOccurancesFlagDefault();
137 }
138 inline enum ValueExpected getValueExpectedFlag() const {
139 int VE = Flags & ValueMask;
140 return VE ? (enum ValueExpected)VE : getValueExpectedFlagDefault();
141 }
142 inline enum OptionHidden getOptionHiddenFlag() const {
143 int OH = Flags & HiddenMask;
144 return OH ? (enum OptionHidden)OH : getOptionHiddenFlagDefault();
145 }
Chris Lattner331de232002-07-22 02:07:59 +0000146 inline enum FormattingFlags getFormattingFlag() const {
147 int OH = Flags & FormattingMask;
148 return OH ? (enum FormattingFlags)OH : getFormattingFlagDefault();
149 }
Chris Lattnerb3b729b2003-05-22 20:25:57 +0000150 inline unsigned getMiscFlags() const {
151 return Flags & MiscMask;
152 }
Chris Lattner331de232002-07-22 02:07:59 +0000153
154 // hasArgStr - Return true if the argstr != ""
155 bool hasArgStr() const { return ArgStr[0] != 0; }
156
157 //-------------------------------------------------------------------------===
158 // Accessor functions set by OptionModifiers
159 //
160 void setArgStr(const char *S) { ArgStr = S; }
161 void setDescription(const char *S) { HelpStr = S; }
162 void setValueStr(const char *S) { ValueStr = S; }
163
164 void setFlag(unsigned Flag, unsigned FlagMask) {
165 if (Flags & FlagMask) {
166 error(": Specified two settings for the same option!");
167 exit(1);
168 }
169
170 Flags |= Flag;
171 }
172
173 void setNumOccurancesFlag(enum NumOccurances Val) {
174 setFlag(Val, OccurancesMask);
175 }
176 void setValueExpectedFlag(enum ValueExpected Val) { setFlag(Val, ValueMask); }
177 void setHiddenFlag(enum OptionHidden Val) { setFlag(Val, HiddenMask); }
178 void setFormattingFlag(enum FormattingFlags V) { setFlag(V, FormattingMask); }
Chris Lattnerb3b729b2003-05-22 20:25:57 +0000179 void setMiscFlag(enum MiscFlags M) { setFlag(M, M); }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000180protected:
Chris Lattner331de232002-07-22 02:07:59 +0000181 Option() : NumOccurances(0), Flags(0),
182 ArgStr(""), HelpStr(""), ValueStr("") {}
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000183
184public:
Chris Lattner331de232002-07-22 02:07:59 +0000185 // addArgument - Tell the system that this Option subclass will handle all
186 // occurances of -ArgStr on the command line.
187 //
188 void addArgument(const char *ArgStr);
Chris Lattnerae1257a2002-07-23 00:44:37 +0000189 void removeArgument(const char *ArgStr);
Chris Lattner331de232002-07-22 02:07:59 +0000190
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000191 // Return the width of the option tag for printing...
Chris Lattner331de232002-07-22 02:07:59 +0000192 virtual unsigned getOptionWidth() const = 0;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000193
194 // printOptionInfo - Print out information about this option. The
195 // to-be-maintained width is specified.
196 //
Chris Lattner331de232002-07-22 02:07:59 +0000197 virtual void printOptionInfo(unsigned GlobalWidth) const = 0;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000198
199 // addOccurance - Wrapper around handleOccurance that enforces Flags
200 //
Chris Lattner697954c2002-01-20 22:54:45 +0000201 bool addOccurance(const char *ArgName, const std::string &Value);
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000202
203 // Prints option name followed by message. Always returns true.
Chris Lattner697954c2002-01-20 22:54:45 +0000204 bool error(std::string Message, const char *ArgName = 0);
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000205
206public:
207 inline int getNumOccurances() const { return NumOccurances; }
208 virtual ~Option() {}
209};
210
211
212//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000213// Command line option modifiers that can be used to modify the behavior of
214// command line option parsers...
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000215//
Chris Lattner331de232002-07-22 02:07:59 +0000216
217// desc - Modifier to set the description shown in the --help output...
218struct desc {
219 const char *Desc;
220 desc(const char *Str) : Desc(Str) {}
221 void apply(Option &O) const { O.setDescription(Desc); }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000222};
223
Chris Lattner331de232002-07-22 02:07:59 +0000224// value_desc - Modifier to set the value description shown in the --help
225// output...
226struct value_desc {
227 const char *Desc;
228 value_desc(const char *Str) : Desc(Str) {}
229 void apply(Option &O) const { O.setValueStr(Desc); }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000230};
231
232
Chris Lattner331de232002-07-22 02:07:59 +0000233// init - Specify a default (initial) value for the command line argument, if
234// the default constructor for the argument type does not give you what you
235// want. This is only valid on "opt" arguments, not on "list" arguments.
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000236//
Chris Lattner331de232002-07-22 02:07:59 +0000237template<class Ty>
238struct initializer {
239 const Ty &Init;
240 initializer(const Ty &Val) : Init(Val) {}
241
242 template<class Opt>
243 void apply(Opt &O) const { O.setInitialValue(Init); }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000244};
245
Chris Lattner331de232002-07-22 02:07:59 +0000246template<class Ty>
247initializer<Ty> init(const Ty &Val) {
248 return initializer<Ty>(Val);
249}
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000250
Chris Lattner331de232002-07-22 02:07:59 +0000251
252// location - Allow the user to specify which external variable they want to
253// store the results of the command line argument processing into, if they don't
254// want to store it in the option itself.
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000255//
Chris Lattner331de232002-07-22 02:07:59 +0000256template<class Ty>
257struct LocationClass {
258 Ty &Loc;
259 LocationClass(Ty &L) : Loc(L) {}
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000260
Chris Lattner331de232002-07-22 02:07:59 +0000261 template<class Opt>
262 void apply(Opt &O) const { O.setLocation(O, Loc); }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000263};
264
Chris Lattner331de232002-07-22 02:07:59 +0000265template<class Ty>
266LocationClass<Ty> location(Ty &L) { return LocationClass<Ty>(L); }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000267
268
269//===----------------------------------------------------------------------===//
270// Enum valued command line option
271//
Chris Lattnerae1257a2002-07-23 00:44:37 +0000272#define clEnumVal(ENUMVAL, DESC) #ENUMVAL, (int)ENUMVAL, DESC
273#define clEnumValN(ENUMVAL, FLAGNAME, DESC) FLAGNAME, (int)ENUMVAL, DESC
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000274
Chris Lattner331de232002-07-22 02:07:59 +0000275// values - For custom data types, allow specifying a group of values together
276// as the values that go into the mapping that the option handler uses. Note
277// that the values list must always have a 0 at the end of the list to indicate
278// that the list has ended.
279//
280template<class DataType>
281class ValuesClass {
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000282 // Use a vector instead of a map, because the lists should be short,
283 // the overhead is less, and most importantly, it keeps them in the order
284 // inserted so we can print our option out nicely.
Chris Lattner331de232002-07-22 02:07:59 +0000285 std::vector<std::pair<const char *, std::pair<int, const char *> > > Values;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000286 void processValues(va_list Vals);
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000287public:
Chris Lattner331de232002-07-22 02:07:59 +0000288 ValuesClass(const char *EnumName, DataType Val, const char *Desc,
289 va_list ValueArgs) {
290 // Insert the first value, which is required.
291 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc)));
292
293 // Process the varargs portion of the values...
294 while (const char *EnumName = va_arg(ValueArgs, const char *)) {
Chris Lattnerae1257a2002-07-23 00:44:37 +0000295 DataType EnumVal = (DataType)va_arg(ValueArgs, int);
Chris Lattner331de232002-07-22 02:07:59 +0000296 const char *EnumDesc = va_arg(ValueArgs, const char *);
297 Values.push_back(std::make_pair(EnumName, // Add value to value map
298 std::make_pair(EnumVal, EnumDesc)));
299 }
300 }
301
302 template<class Opt>
303 void apply(Opt &O) const {
304 for (unsigned i = 0, e = Values.size(); i != e; ++i)
305 O.getParser().addLiteralOption(Values[i].first, Values[i].second.first,
306 Values[i].second.second);
307 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000308};
309
Chris Lattner331de232002-07-22 02:07:59 +0000310template<class DataType>
311ValuesClass<DataType> values(const char *Arg, DataType Val, const char *Desc,
312 ...) {
313 va_list ValueArgs;
314 va_start(ValueArgs, Desc);
315 ValuesClass<DataType> Vals(Arg, Val, Desc, ValueArgs);
316 va_end(ValueArgs);
317 return Vals;
318}
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000319
Chris Lattner331de232002-07-22 02:07:59 +0000320
321//===----------------------------------------------------------------------===//
322// parser class - Parameterizable parser for different data types. By default,
323// known data types (string, int, bool) have specialized parsers, that do what
324// you would expect. The default parser, used for data types that are not
325// built-in, uses a mapping table to map specific options to values, which is
326// used, among other things, to handle enum types.
327
328//--------------------------------------------------
329// generic_parser_base - This class holds all the non-generic code that we do
330// not need replicated for every instance of the generic parser. This also
331// allows us to put stuff into CommandLine.cpp
332//
333struct generic_parser_base {
334 virtual ~generic_parser_base() {} // Base class should have virtual-dtor
335
336 // getNumOptions - Virtual function implemented by generic subclass to
337 // indicate how many entries are in Values.
338 //
339 virtual unsigned getNumOptions() const = 0;
340
341 // getOption - Return option name N.
342 virtual const char *getOption(unsigned N) const = 0;
343
344 // getDescription - Return description N
345 virtual const char *getDescription(unsigned N) const = 0;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000346
347 // Return the width of the option tag for printing...
Chris Lattner331de232002-07-22 02:07:59 +0000348 virtual unsigned getOptionWidth(const Option &O) const;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000349
350 // printOptionInfo - Print out information about this option. The
351 // to-be-maintained width is specified.
352 //
Chris Lattner331de232002-07-22 02:07:59 +0000353 virtual void printOptionInfo(const Option &O, unsigned GlobalWidth) const;
Chris Lattner71fb7162002-05-22 17:03:05 +0000354
Chris Lattner331de232002-07-22 02:07:59 +0000355 void initialize(Option &O) {
356 // All of the modifiers for the option have been processed by now, so the
357 // argstr field should be stable, copy it down now.
358 //
359 hasArgStr = O.hasArgStr();
360
361 // If there has been no argstr specified, that means that we need to add an
362 // argument for every possible option. This ensures that our options are
363 // vectored to us.
364 //
365 if (!hasArgStr)
366 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
367 O.addArgument(getOption(i));
368 }
369
370 enum ValueExpected getValueExpectedFlagDefault() const {
371 // If there is an ArgStr specified, then we are of the form:
372 //
373 // -opt=O2 or -opt O2 or -optO2
374 //
375 // In which case, the value is required. Otherwise if an arg str has not
376 // been specified, we are of the form:
377 //
378 // -O2 or O2 or -la (where -l and -a are seperate options)
379 //
380 // If this is the case, we cannot allow a value.
381 //
382 if (hasArgStr)
383 return ValueRequired;
384 else
385 return ValueDisallowed;
386 }
387
Chris Lattneraf7e8212002-07-23 17:15:09 +0000388 // findOption - Return the option number corresponding to the specified
389 // argument string. If the option is not found, getNumOptions() is returned.
390 //
391 unsigned findOption(const char *Name);
392
Chris Lattner331de232002-07-22 02:07:59 +0000393protected:
394 bool hasArgStr;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000395};
396
Chris Lattner331de232002-07-22 02:07:59 +0000397// Default parser implementation - This implementation depends on having a
398// mapping of recognized options to values of some sort. In addition to this,
399// each entry in the mapping also tracks a help message that is printed with the
400// command line option for --help. Because this is a simple mapping parser, the
401// data type can be any unsupported type.
402//
403template <class DataType>
404class parser : public generic_parser_base {
Chris Lattneraf7e8212002-07-23 17:15:09 +0000405protected:
Chris Lattner331de232002-07-22 02:07:59 +0000406 std::vector<std::pair<const char *,
407 std::pair<DataType, const char *> > > Values;
Chris Lattneraf7e8212002-07-23 17:15:09 +0000408public:
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000409 typedef DataType parser_data_type;
Chris Lattner331de232002-07-22 02:07:59 +0000410
411 // Implement virtual functions needed by generic_parser_base
412 unsigned getNumOptions() const { return Values.size(); }
413 const char *getOption(unsigned N) const { return Values[N].first; }
414 const char *getDescription(unsigned N) const {
415 return Values[N].second.second;
416 }
417
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000418 // parse - Return true on error.
419 bool parse(Option &O, const char *ArgName, const std::string &Arg,
420 DataType &V) {
Chris Lattner7f4dd472002-07-24 22:08:36 +0000421 std::string ArgVal;
Chris Lattner331de232002-07-22 02:07:59 +0000422 if (hasArgStr)
423 ArgVal = Arg;
424 else
425 ArgVal = ArgName;
426
427 for (unsigned i = 0, e = Values.size(); i != e; ++i)
428 if (ArgVal == Values[i].first) {
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000429 V = Values[i].second.first;
Chris Lattner331de232002-07-22 02:07:59 +0000430 return false;
431 }
432
433 return O.error(": Cannot find option named '" + ArgVal + "'!");
434 }
435
436 // addLiteralOption - Add an entry to the mapping table...
437 template <class DT>
438 void addLiteralOption(const char *Name, const DT &V, const char *HelpStr) {
Chris Lattneraf7e8212002-07-23 17:15:09 +0000439 assert(findOption(Name) == Values.size() && "Option already exists!");
Chris Lattner331de232002-07-22 02:07:59 +0000440 Values.push_back(std::make_pair(Name, std::make_pair((DataType)V,HelpStr)));
441 }
Chris Lattneraf7e8212002-07-23 17:15:09 +0000442
443 // removeLiteralOption - Remove the specified option.
444 //
445 void removeLiteralOption(const char *Name) {
446 unsigned N = findOption(Name);
447 assert(N != Values.size() && "Option not found!");
448 Values.erase(Values.begin()+N);
449 }
Chris Lattner331de232002-07-22 02:07:59 +0000450};
451
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000452//--------------------------------------------------
453// basic_parser - Super class of parsers to provide boilerplate code
454//
455struct basic_parser_impl { // non-template implementation of basic_parser<t>
456 virtual ~basic_parser_impl() {}
457
458 enum ValueExpected getValueExpectedFlagDefault() const {
459 return ValueRequired;
460 }
461
462 void initialize(Option &O) {}
463
464 // Return the width of the option tag for printing...
465 unsigned getOptionWidth(const Option &O) const;
466
467 // printOptionInfo - Print out information about this option. The
468 // to-be-maintained width is specified.
469 //
470 void printOptionInfo(const Option &O, unsigned GlobalWidth) const;
471
472
473 // getValueName - Overload in subclass to provide a better default value.
474 virtual const char *getValueName() const { return "value"; }
475};
476
477// basic_parser - The real basic parser is just a template wrapper that provides
478// a typedef for the provided data type.
479//
480template<class DataType>
481struct basic_parser : public basic_parser_impl {
482 typedef DataType parser_data_type;
483};
484
Chris Lattner331de232002-07-22 02:07:59 +0000485
486//--------------------------------------------------
487// parser<bool>
488//
489template<>
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000490struct parser<bool> : public basic_parser<bool> {
491
492 // parse - Return true on error.
493 bool parse(Option &O, const char *ArgName, const std::string &Arg, bool &Val);
Chris Lattner331de232002-07-22 02:07:59 +0000494
495 enum ValueExpected getValueExpectedFlagDefault() const {
496 return ValueOptional;
497 }
498
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000499 // getValueName - Do not print =<value> at all
500 virtual const char *getValueName() const { return 0; }
Chris Lattner331de232002-07-22 02:07:59 +0000501};
502
503
504//--------------------------------------------------
505// parser<int>
506//
507template<>
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000508struct parser<int> : public basic_parser<int> {
Chris Lattner331de232002-07-22 02:07:59 +0000509
510 // parse - Return true on error.
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000511 bool parse(Option &O, const char *ArgName, const std::string &Arg, int &Val);
Chris Lattner331de232002-07-22 02:07:59 +0000512
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000513 // getValueName - Overload in subclass to provide a better default value.
514 virtual const char *getValueName() const { return "int"; }
Chris Lattner331de232002-07-22 02:07:59 +0000515};
516
517
518//--------------------------------------------------
519// parser<double>
520//
521template<>
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000522struct parser<double> : public basic_parser<double> {
Chris Lattner331de232002-07-22 02:07:59 +0000523 // parse - Return true on error.
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000524 bool parse(Option &O, const char *AN, const std::string &Arg, double &Val);
Chris Lattner331de232002-07-22 02:07:59 +0000525
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000526 // getValueName - Overload in subclass to provide a better default value.
527 virtual const char *getValueName() const { return "number"; }
Chris Lattner331de232002-07-22 02:07:59 +0000528};
529
Chris Lattner331de232002-07-22 02:07:59 +0000530
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000531//--------------------------------------------------
532// parser<float>
533//
534template<>
535struct parser<float> : public basic_parser<float> {
536 // parse - Return true on error.
537 bool parse(Option &O, const char *AN, const std::string &Arg, float &Val);
538
539 // getValueName - Overload in subclass to provide a better default value.
540 virtual const char *getValueName() const { return "number"; }
541};
Chris Lattner331de232002-07-22 02:07:59 +0000542
543
544//--------------------------------------------------
Chris Lattner7f4dd472002-07-24 22:08:36 +0000545// parser<std::string>
Chris Lattner331de232002-07-22 02:07:59 +0000546//
547template<>
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000548struct parser<std::string> : public basic_parser<std::string> {
Chris Lattner331de232002-07-22 02:07:59 +0000549 // parse - Return true on error.
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000550 bool parse(Option &O, const char *ArgName, const std::string &Arg,
551 std::string &Value) {
552 Value = Arg;
Chris Lattner331de232002-07-22 02:07:59 +0000553 return false;
554 }
Chris Lattner71fb7162002-05-22 17:03:05 +0000555
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000556 // getValueName - Overload in subclass to provide a better default value.
557 virtual const char *getValueName() const { return "string"; }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000558};
559
Chris Lattner71fb7162002-05-22 17:03:05 +0000560
Chris Lattner331de232002-07-22 02:07:59 +0000561
562//===----------------------------------------------------------------------===//
563// applicator class - This class is used because we must use partial
564// specialization to handle literal string arguments specially (const char* does
565// not correctly respond to the apply method). Because the syntax to use this
566// is a pain, we have the 'apply' method below to handle the nastiness...
567//
568template<class Mod> struct applicator {
569 template<class Opt>
570 static void opt(const Mod &M, Opt &O) { M.apply(O); }
571};
572
573// Handle const char* as a special case...
574template<unsigned n> struct applicator<char[n]> {
575 template<class Opt>
576 static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
577};
Chris Lattner40423322002-09-13 14:33:39 +0000578template<unsigned n> struct applicator<const char[n]> {
579 template<class Opt>
580 static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
581};
Chris Lattner331de232002-07-22 02:07:59 +0000582template<> struct applicator<const char*> {
583 template<class Opt>
584 static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
585};
586
587template<> struct applicator<NumOccurances> {
588 static void opt(NumOccurances NO, Option &O) { O.setNumOccurancesFlag(NO); }
589};
590template<> struct applicator<ValueExpected> {
591 static void opt(ValueExpected VE, Option &O) { O.setValueExpectedFlag(VE); }
592};
593template<> struct applicator<OptionHidden> {
594 static void opt(OptionHidden OH, Option &O) { O.setHiddenFlag(OH); }
595};
596template<> struct applicator<FormattingFlags> {
597 static void opt(FormattingFlags FF, Option &O) { O.setFormattingFlag(FF); }
598};
Chris Lattnerb3b729b2003-05-22 20:25:57 +0000599template<> struct applicator<MiscFlags> {
600 static void opt(MiscFlags MF, Option &O) { O.setMiscFlag(MF); }
601};
Chris Lattner331de232002-07-22 02:07:59 +0000602
603// apply method - Apply a modifier to an option in a type safe way.
604template<class Mod, class Opt>
605void apply(const Mod &M, Opt *O) {
606 applicator<Mod>::opt(M, *O);
607}
608
609
610//===----------------------------------------------------------------------===//
611// opt_storage class
612
613// Default storage class definition: external storage. This implementation
614// assumes the user will specify a variable to store the data into with the
615// cl::location(x) modifier.
616//
617template<class DataType, bool ExternalStorage, bool isClass>
618class opt_storage {
619 DataType *Location; // Where to store the object...
620
621 void check() {
622 assert(Location != 0 && "cl::location(...) not specified for a command "
623 "line option with external storage!");
624 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000625public:
Chris Lattner331de232002-07-22 02:07:59 +0000626 opt_storage() : Location(0) {}
627
628 bool setLocation(Option &O, DataType &L) {
629 if (Location)
630 return O.error(": cl::location(x) specified more than once!");
631 Location = &L;
632 return false;
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000633 }
634
Chris Lattner331de232002-07-22 02:07:59 +0000635 template<class T>
636 void setValue(const T &V) {
637 check();
638 *Location = V;
639 }
640
641 DataType &getValue() { check(); return *Location; }
642 const DataType &getValue() const { check(); return *Location; }
643};
644
645
646// Define how to hold a class type object, such as a string. Since we can
647// inherit from a class, we do so. This makes us exactly compatible with the
648// object in all cases that it is used.
649//
650template<class DataType>
651struct opt_storage<DataType,false,true> : public DataType {
652
653 template<class T>
654 void setValue(const T &V) { DataType::operator=(V); }
655
656 DataType &getValue() { return *this; }
657 const DataType &getValue() const { return *this; }
658};
659
660// Define a partial specialization to handle things we cannot inherit from. In
661// this case, we store an instance through containment, and overload operators
662// to get at the value.
663//
664template<class DataType>
665struct opt_storage<DataType, false, false> {
666 DataType Value;
667
668 // Make sure we initialize the value with the default constructor for the
669 // type.
670 opt_storage() : Value(DataType()) {}
671
672 template<class T>
673 void setValue(const T &V) { Value = V; }
674 DataType &getValue() { return Value; }
675 DataType getValue() const { return Value; }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000676};
677
678
679//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000680// opt - A scalar command line option.
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000681//
Chris Lattner331de232002-07-22 02:07:59 +0000682template <class DataType, bool ExternalStorage = false,
683 class ParserClass = parser<DataType> >
684class opt : public Option,
685 public opt_storage<DataType, ExternalStorage,
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000686 ::boost::is_class<DataType>::value> {
Chris Lattner331de232002-07-22 02:07:59 +0000687 ParserClass Parser;
688
689 virtual bool handleOccurance(const char *ArgName, const std::string &Arg) {
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000690 typename ParserClass::parser_data_type Val;
691 if (Parser.parse(*this, ArgName, Arg, Val))
692 return true; // Parse error!
693 setValue(Val);
694 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000695 }
696
697 virtual enum ValueExpected getValueExpectedFlagDefault() const {
698 return Parser.getValueExpectedFlagDefault();
699 }
700
701 // Forward printing stuff to the parser...
702 virtual unsigned getOptionWidth() const {return Parser.getOptionWidth(*this);}
703 virtual void printOptionInfo(unsigned GlobalWidth) const {
704 Parser.printOptionInfo(*this, GlobalWidth);
705 }
706
707 void done() {
708 addArgument(ArgStr);
709 Parser.initialize(*this);
710 }
711public:
712 // setInitialValue - Used by the cl::init modifier...
713 void setInitialValue(const DataType &V) { setValue(V); }
714
Chris Lattner331de232002-07-22 02:07:59 +0000715 ParserClass &getParser() { return Parser; }
716
717 operator DataType() const { return getValue(); }
718
719 template<class T>
720 DataType &operator=(const T &Val) { setValue(Val); return getValue(); }
721
722 // One option...
723 template<class M0t>
724 opt(const M0t &M0) {
725 apply(M0, this);
726 done();
727 }
728
729 // Two options...
730 template<class M0t, class M1t>
731 opt(const M0t &M0, const M1t &M1) {
732 apply(M0, this); apply(M1, this);
733 done();
734 }
735
736 // Three options...
737 template<class M0t, class M1t, class M2t>
738 opt(const M0t &M0, const M1t &M1, const M2t &M2) {
739 apply(M0, this); apply(M1, this); apply(M2, this);
740 done();
741 }
742 // Four options...
743 template<class M0t, class M1t, class M2t, class M3t>
744 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3) {
745 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
746 done();
747 }
748 // Five options...
749 template<class M0t, class M1t, class M2t, class M3t, class M4t>
750 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
751 const M4t &M4) {
752 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
753 apply(M4, this);
754 done();
755 }
756 // Six options...
757 template<class M0t, class M1t, class M2t, class M3t,
758 class M4t, class M5t>
759 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
760 const M4t &M4, const M5t &M5) {
761 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
762 apply(M4, this); apply(M5, this);
763 done();
764 }
765 // Seven options...
766 template<class M0t, class M1t, class M2t, class M3t,
767 class M4t, class M5t, class M6t>
768 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
769 const M4t &M4, const M5t &M5, const M6t &M6) {
770 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
771 apply(M4, this); apply(M5, this); apply(M6, this);
772 done();
773 }
774 // Eight options...
775 template<class M0t, class M1t, class M2t, class M3t,
776 class M4t, class M5t, class M6t, class M7t>
777 opt(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
778 const M4t &M4, const M5t &M5, const M6t &M6, const M7t &M7) {
779 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
780 apply(M4, this); apply(M5, this); apply(M6, this); apply(M7, this);
781 done();
782 }
783};
784
785//===----------------------------------------------------------------------===//
786// list_storage class
787
788// Default storage class definition: external storage. This implementation
789// assumes the user will specify a variable to store the data into with the
790// cl::location(x) modifier.
791//
792template<class DataType, class StorageClass>
793class list_storage {
794 StorageClass *Location; // Where to store the object...
795
796public:
797 list_storage() : Location(0) {}
798
799 bool setLocation(Option &O, StorageClass &L) {
800 if (Location)
801 return O.error(": cl::location(x) specified more than once!");
802 Location = &L;
803 return false;
804 }
805
806 template<class T>
807 void addValue(const T &V) {
808 assert(Location != 0 && "cl::location(...) not specified for a command "
809 "line option with external storage!");
810 Location->push_back(V);
811 }
812};
813
814
815// Define how to hold a class type object, such as a string. Since we can
816// inherit from a class, we do so. This makes us exactly compatible with the
817// object in all cases that it is used.
818//
819template<class DataType>
820struct list_storage<DataType, bool> : public std::vector<DataType> {
821
822 template<class T>
823 void addValue(const T &V) { push_back(V); }
824};
825
826
827//===----------------------------------------------------------------------===//
828// list - A list of command line options.
829//
830template <class DataType, class Storage = bool,
831 class ParserClass = parser<DataType> >
832class list : public Option, public list_storage<DataType, Storage> {
833 ParserClass Parser;
834
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000835 virtual enum NumOccurances getNumOccurancesFlagDefault() const {
836 return ZeroOrMore;
837 }
838 virtual enum ValueExpected getValueExpectedFlagDefault() const {
Chris Lattner331de232002-07-22 02:07:59 +0000839 return Parser.getValueExpectedFlagDefault();
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000840 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000841
Chris Lattner331de232002-07-22 02:07:59 +0000842 virtual bool handleOccurance(const char *ArgName, const std::string &Arg) {
Chris Lattnerd23a35b2002-08-07 18:36:27 +0000843 typename ParserClass::parser_data_type Val;
844 if (Parser.parse(*this, ArgName, Arg, Val))
845 return true; // Parse Error!
846 addValue(Val);
847 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000848 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000849
Chris Lattner331de232002-07-22 02:07:59 +0000850 // Forward printing stuff to the parser...
851 virtual unsigned getOptionWidth() const {return Parser.getOptionWidth(*this);}
852 virtual void printOptionInfo(unsigned GlobalWidth) const {
853 Parser.printOptionInfo(*this, GlobalWidth);
854 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000855
Chris Lattner331de232002-07-22 02:07:59 +0000856 void done() {
857 addArgument(ArgStr);
858 Parser.initialize(*this);
859 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000860public:
Chris Lattner331de232002-07-22 02:07:59 +0000861 ParserClass &getParser() { return Parser; }
862
863 // One option...
864 template<class M0t>
865 list(const M0t &M0) {
866 apply(M0, this);
867 done();
868 }
869 // Two options...
870 template<class M0t, class M1t>
871 list(const M0t &M0, const M1t &M1) {
872 apply(M0, this); apply(M1, this);
873 done();
874 }
875 // Three options...
876 template<class M0t, class M1t, class M2t>
877 list(const M0t &M0, const M1t &M1, const M2t &M2) {
878 apply(M0, this); apply(M1, this); apply(M2, this);
879 done();
880 }
881 // Four options...
882 template<class M0t, class M1t, class M2t, class M3t>
883 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3) {
884 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
885 done();
886 }
887 // Five options...
888 template<class M0t, class M1t, class M2t, class M3t, class M4t>
889 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
890 const M4t &M4) {
891 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
892 apply(M4, this);
893 done();
894 }
895 // Six options...
896 template<class M0t, class M1t, class M2t, class M3t,
897 class M4t, class M5t>
898 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
899 const M4t &M4, const M5t &M5) {
900 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
901 apply(M4, this); apply(M5, this);
902 done();
903 }
904 // Seven options...
905 template<class M0t, class M1t, class M2t, class M3t,
906 class M4t, class M5t, class M6t>
907 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
908 const M4t &M4, const M5t &M5, const M6t &M6) {
909 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
910 apply(M4, this); apply(M5, this); apply(M6, this);
911 done();
912 }
913 // Eight options...
914 template<class M0t, class M1t, class M2t, class M3t,
915 class M4t, class M5t, class M6t, class M7t>
916 list(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3,
917 const M4t &M4, const M5t &M5, const M6t &M6, const M7t &M7) {
918 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
919 apply(M4, this); apply(M5, this); apply(M6, this); apply(M7, this);
920 done();
921 }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000922};
923
Chris Lattner331de232002-07-22 02:07:59 +0000924
925
926//===----------------------------------------------------------------------===//
927// Aliased command line option (alias this name to a preexisting name)
928//
929
930class alias : public Option {
931 Option *AliasFor;
932 virtual bool handleOccurance(const char *ArgName, const std::string &Arg) {
933 return AliasFor->handleOccurance(AliasFor->ArgStr, Arg);
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000934 }
Chris Lattner331de232002-07-22 02:07:59 +0000935 // Aliases default to be hidden...
936 virtual enum OptionHidden getOptionHiddenFlagDefault() const {return Hidden;}
937
938 // Handle printing stuff...
939 virtual unsigned getOptionWidth() const;
940 virtual void printOptionInfo(unsigned GlobalWidth) const;
941
942 void done() {
943 if (!hasArgStr())
944 error(": cl::alias must have argument name specified!");
945 if (AliasFor == 0)
946 error(": cl::alias must have an cl::aliasopt(option) specified!");
947 addArgument(ArgStr);
948 }
949public:
950 void setAliasFor(Option &O) {
951 if (AliasFor)
952 error(": cl::alias must only have one cl::aliasopt(...) specified!");
953 AliasFor = &O;
954 }
955
956 // One option...
957 template<class M0t>
958 alias(const M0t &M0) : AliasFor(0) {
959 apply(M0, this);
960 done();
961 }
962 // Two options...
963 template<class M0t, class M1t>
964 alias(const M0t &M0, const M1t &M1) : AliasFor(0) {
965 apply(M0, this); apply(M1, this);
966 done();
967 }
968 // Three options...
969 template<class M0t, class M1t, class M2t>
970 alias(const M0t &M0, const M1t &M1, const M2t &M2) : AliasFor(0) {
971 apply(M0, this); apply(M1, this); apply(M2, this);
972 done();
973 }
974 // Four options...
975 template<class M0t, class M1t, class M2t, class M3t>
976 alias(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3)
977 : AliasFor(0) {
978 apply(M0, this); apply(M1, this); apply(M2, this); apply(M3, this);
979 done();
980 }
981};
982
983// aliasfor - Modifier to set the option an alias aliases.
984struct aliasopt {
985 Option &Opt;
986 aliasopt(Option &O) : Opt(O) {}
987 void apply(alias &A) const { A.setAliasFor(Opt); }
Chris Lattnercee8f9a2001-11-27 00:03:19 +0000988};
989
990} // End namespace cl
991
992#endif