blob: 4eacedbdc88f4ac15d5f3a6e2a647ce65b35a678 [file] [log] [blame]
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001//===-- CommandLine.cpp - Command line parser implementation --------------===//
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 Lattner03fe1bd2001-07-23 23:04:07 +00007// Note that rather than trying to figure out what this code does, you could try
8// reading the library documentation located in docs/CommandLine.html
9//
Chris Lattnerdbab15a2001-07-23 17:17:47 +000010//===----------------------------------------------------------------------===//
11
Chris Lattnercee8f9a2001-11-27 00:03:19 +000012#include "Support/CommandLine.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000013#include <algorithm>
14#include <map>
15#include <set>
Chris Lattner697954c2002-01-20 22:54:45 +000016#include <iostream>
Chris Lattner7f1576f2002-02-24 23:02:12 +000017
Chris Lattnerdbab15a2001-07-23 17:17:47 +000018using namespace cl;
Chris Lattner697954c2002-01-20 22:54:45 +000019using std::map;
20using std::pair;
21using std::vector;
22using std::string;
23using std::cerr;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000024
Chris Lattner331de232002-07-22 02:07:59 +000025//===----------------------------------------------------------------------===//
26// Basic, shared command line option processing machinery...
27//
28
Chris Lattnerdbab15a2001-07-23 17:17:47 +000029// Return the global command line option vector. Making it a function scoped
Chris Lattnerf78032f2001-11-26 18:58:34 +000030// static ensures that it will be initialized correctly before its first use.
Chris Lattnerdbab15a2001-07-23 17:17:47 +000031//
Chris Lattnere8e258b2002-07-29 20:58:42 +000032static map<string,Option*> *CommandLineOptions = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000033static map<string, Option*> &getOpts() {
Chris Lattnere8e258b2002-07-29 20:58:42 +000034 if (CommandLineOptions == 0) CommandLineOptions = new map<string,Option*>();
35 return *CommandLineOptions;
36}
37
38static Option *getOption(const string &Str) {
39 if (CommandLineOptions == 0) return 0;
40 map<string,Option*>::iterator I = CommandLineOptions->find(Str);
41 return I != CommandLineOptions->end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000042}
43
Chris Lattner331de232002-07-22 02:07:59 +000044static vector<Option*> &getPositionalOpts() {
45 static vector<Option*> Positional;
46 return Positional;
47}
48
Chris Lattnere8e258b2002-07-29 20:58:42 +000049static void AddArgument(const char *ArgName, Option *Opt) {
50 if (getOption(ArgName)) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +000051 cerr << "CommandLine Error: Argument '" << ArgName
Chris Lattner9c9be482002-01-31 00:42:56 +000052 << "' defined more than once!\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +000053 } else {
Chris Lattnerf78032f2001-11-26 18:58:34 +000054 // Add argument to the argument map!
Chris Lattnere8e258b2002-07-29 20:58:42 +000055 getOpts()[ArgName] = Opt;
56 }
57}
58
59// RemoveArgument - It's possible that the argument is no longer in the map if
60// options have already been processed and the map has been deleted!
61//
62static void RemoveArgument(const char *ArgName, Option *Opt) {
63 if (CommandLineOptions == 0) return;
64 assert(getOption(ArgName) == Opt && "Arg not in map!");
65 CommandLineOptions->erase(ArgName);
66 if (CommandLineOptions->empty()) {
67 delete CommandLineOptions;
68 CommandLineOptions = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000069 }
70}
71
72static const char *ProgramName = 0;
73static const char *ProgramOverview = 0;
74
Chris Lattnercaccd762001-10-27 05:54:17 +000075static inline bool ProvideOption(Option *Handler, const char *ArgName,
76 const char *Value, int argc, char **argv,
77 int &i) {
78 // Enforce value requirements
79 switch (Handler->getValueExpectedFlag()) {
80 case ValueRequired:
81 if (Value == 0 || *Value == 0) { // No value specified?
82 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
83 Value = argv[++i];
84 } else {
85 return Handler->error(" requires a value!");
86 }
87 }
88 break;
89 case ValueDisallowed:
90 if (*Value != 0)
91 return Handler->error(" does not allow a value! '" +
92 string(Value) + "' specified.");
93 break;
94 case ValueOptional: break;
95 default: cerr << "Bad ValueMask flag! CommandLine usage error:"
Chris Lattner697954c2002-01-20 22:54:45 +000096 << Handler->getValueExpectedFlag() << "\n"; abort();
Chris Lattnercaccd762001-10-27 05:54:17 +000097 }
98
99 // Run the handler now!
100 return Handler->addOccurance(ArgName, Value);
101}
102
Chris Lattner331de232002-07-22 02:07:59 +0000103static bool ProvidePositionalOption(Option *Handler, string &Arg) {
104 int Dummy;
105 return ProvideOption(Handler, "", Arg.c_str(), 0, 0, Dummy);
106}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000107
Chris Lattner331de232002-07-22 02:07:59 +0000108
109// Option predicates...
110static inline bool isGrouping(const Option *O) {
111 return O->getFormattingFlag() == cl::Grouping;
112}
113static inline bool isPrefixedOrGrouping(const Option *O) {
114 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
115}
116
117// getOptionPred - Check to see if there are any options that satisfy the
118// specified predicate with names that are the prefixes in Name. This is
119// checked by progressively stripping characters off of the name, checking to
120// see if there options that satisfy the predicate. If we find one, return it,
121// otherwise return null.
122//
123static Option *getOptionPred(std::string Name, unsigned &Length,
124 bool (*Pred)(const Option*)) {
125
Chris Lattnere8e258b2002-07-29 20:58:42 +0000126 Option *Op = getOption(Name);
127 if (Op && Pred(Op)) {
Chris Lattner331de232002-07-22 02:07:59 +0000128 Length = Name.length();
Chris Lattnere8e258b2002-07-29 20:58:42 +0000129 return Op;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000130 }
131
Chris Lattner331de232002-07-22 02:07:59 +0000132 if (Name.size() == 1) return 0;
133 do {
134 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattnere8e258b2002-07-29 20:58:42 +0000135 Op = getOption(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000136
137 // Loop while we haven't found an option and Name still has at least two
138 // characters in it (so that the next iteration will not be the empty
139 // string...
Chris Lattnere8e258b2002-07-29 20:58:42 +0000140 } while ((Op == 0 || !Pred(Op)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000141
Chris Lattnere8e258b2002-07-29 20:58:42 +0000142 if (Op && Pred(Op)) {
Chris Lattner331de232002-07-22 02:07:59 +0000143 Length = Name.length();
Chris Lattnere8e258b2002-07-29 20:58:42 +0000144 return Op; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000145 }
146 return 0; // No option found!
147}
148
149static bool RequiresValue(const Option *O) {
150 return O->getNumOccurancesFlag() == cl::Required ||
151 O->getNumOccurancesFlag() == cl::OneOrMore;
152}
153
154static bool EatsUnboundedNumberOfValues(const Option *O) {
155 return O->getNumOccurancesFlag() == cl::ZeroOrMore ||
156 O->getNumOccurancesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000157}
Chris Lattnercaccd762001-10-27 05:54:17 +0000158
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000159void cl::ParseCommandLineOptions(int &argc, char **argv,
Chris Lattner0c0edf82002-07-25 06:17:51 +0000160 const char *Overview) {
Chris Lattner331de232002-07-22 02:07:59 +0000161 assert((!getOpts().empty() || !getPositionalOpts().empty()) &&
162 "No options specified, or ParseCommandLineOptions called more"
163 " than once!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000164 ProgramName = argv[0]; // Save this away safe and snug
165 ProgramOverview = Overview;
166 bool ErrorParsing = false;
167
Chris Lattner331de232002-07-22 02:07:59 +0000168 map<string, Option*> &Opts = getOpts();
169 vector<Option*> &PositionalOpts = getPositionalOpts();
170
171 // Check out the positional arguments to collect information about them.
172 unsigned NumPositionalRequired = 0;
173 Option *ConsumeAfterOpt = 0;
174 if (!PositionalOpts.empty()) {
175 if (PositionalOpts[0]->getNumOccurancesFlag() == cl::ConsumeAfter) {
176 assert(PositionalOpts.size() > 1 &&
177 "Cannot specify cl::ConsumeAfter without a positional argument!");
178 ConsumeAfterOpt = PositionalOpts[0];
179 }
180
181 // Calculate how many positional values are _required_.
182 bool UnboundedFound = false;
183 for (unsigned i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
184 i != e; ++i) {
185 Option *Opt = PositionalOpts[i];
186 if (RequiresValue(Opt))
187 ++NumPositionalRequired;
188 else if (ConsumeAfterOpt) {
189 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000190 // unless there is only one positional argument...
191 if (PositionalOpts.size() > 2)
192 ErrorParsing |=
193 Opt->error(" error - this positional option will never be matched, "
194 "because it does not Require a value, and a "
195 "cl::ConsumeAfter option is active!");
Chris Lattner331de232002-07-22 02:07:59 +0000196 } else if (UnboundedFound) { // This option does not "require" a value...
197 // Make sure this option is not specified after an option that eats all
198 // extra arguments, or this one will never get any!
199 //
200 ErrorParsing |= Opt->error(" error - option can never match, because "
201 "another positional argument will match an "
202 "unbounded number of values, and this option"
203 " does not require a value!");
204 }
205 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
206 }
207 }
208
209 // PositionalVals - A vector of "positional" arguments we accumulate into to
210 // processes at the end...
211 //
212 vector<string> PositionalVals;
213
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000214 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000215 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000216 for (int i = 1; i < argc; ++i) {
217 Option *Handler = 0;
218 const char *Value = "";
219 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000220
221 // Check to see if this is a positional argument. This argument is
222 // considered to be positional if it doesn't start with '-', if it is "-"
223 // itself, or if we have see "--" already.
224 //
225 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
226 // Positional argument!
227 if (!PositionalOpts.empty()) {
228 PositionalVals.push_back(argv[i]);
229
230 // All of the positional arguments have been fulfulled, give the rest to
231 // the consume after option... if it's specified...
232 //
Chris Lattnerd16714b2002-07-31 16:29:43 +0000233 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000234 ConsumeAfterOpt != 0) {
235 for (++i; i < argc; ++i)
236 PositionalVals.push_back(argv[i]);
237 break; // Handle outside of the argument processing loop...
238 }
239
240 // Delay processing positional arguments until the end...
241 continue;
242 }
243 } else { // We start with a '-', must be an argument...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000244 ArgName = argv[i]+1;
245 while (*ArgName == '-') ++ArgName; // Eat leading dashes
246
Chris Lattner331de232002-07-22 02:07:59 +0000247 if (*ArgName == 0 && !DashDashFound) { // Is this the mythical "--"?
248 DashDashFound = true; // Yup, take note of that fact...
249 continue; // Don't try to process it as an argument iself.
250 }
251
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000252 const char *ArgNameEnd = ArgName;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000253 while (*ArgNameEnd && *ArgNameEnd != '=')
254 ++ArgNameEnd; // Scan till end of argument name...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000255
256 Value = ArgNameEnd;
257 if (*Value) // If we have an equals sign...
258 ++Value; // Advance to value...
259
260 if (*ArgName != 0) {
Chris Lattnerf78032f2001-11-26 18:58:34 +0000261 string RealName(ArgName, ArgNameEnd);
Chris Lattner3805e4c2001-07-25 18:40:49 +0000262 // Extract arg name part
Chris Lattner331de232002-07-22 02:07:59 +0000263 map<string, Option*>::iterator I = Opts.find(RealName);
Chris Lattnerf78032f2001-11-26 18:58:34 +0000264
Chris Lattner331de232002-07-22 02:07:59 +0000265 if (I == Opts.end() && !*Value && RealName.size() > 1) {
266 // Check to see if this "option" is really a prefixed or grouped
267 // argument...
268 //
269 unsigned Length = 0;
270 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping);
Chris Lattnerf78032f2001-11-26 18:58:34 +0000271
Chris Lattner331de232002-07-22 02:07:59 +0000272 // If the option is a prefixed option, then the value is simply the
273 // rest of the name... so fall through to later processing, by
274 // setting up the argument name flags and value fields.
275 //
276 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
277 ArgNameEnd = ArgName+Length;
278 Value = ArgNameEnd;
279 I = Opts.find(string(ArgName, ArgNameEnd));
280 assert(I->second == PGOpt);
281 } else if (PGOpt) {
282 // This must be a grouped option... handle all of them now...
283 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
284
285 do {
286 // Move current arg name out of RealName into RealArgName...
287 string RealArgName(RealName.begin(), RealName.begin()+Length);
288 RealName.erase(RealName.begin(), RealName.begin()+Length);
Chris Lattnerf78032f2001-11-26 18:58:34 +0000289
290 // Because ValueRequired is an invalid flag for grouped arguments,
291 // we don't need to pass argc/argv in...
292 //
Chris Lattner331de232002-07-22 02:07:59 +0000293 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
294 "Option can not be cl::Grouping AND cl::ValueRequired!");
295 int Dummy;
296 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(), "",
297 0, 0, Dummy);
298
299 // Get the next grouping option...
300 if (!RealName.empty())
301 PGOpt = getOptionPred(RealName, Length, isGrouping);
302 } while (!RealName.empty() && PGOpt);
303
304 if (RealName.empty()) // Processed all of the options, move on
305 continue; // to the next argv[] value...
306
307 // If RealName is not empty, that means we did not match one of the
308 // options! This is an error.
309 //
310 I = Opts.end();
311 }
Chris Lattnerf78032f2001-11-26 18:58:34 +0000312 }
313
Chris Lattner331de232002-07-22 02:07:59 +0000314 Handler = I != Opts.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000315 }
316 }
317
318 if (Handler == 0) {
319 cerr << "Unknown command line argument '" << argv[i] << "'. Try: "
Chris Lattnerf038acb2001-10-24 06:21:56 +0000320 << argv[0] << " --help'\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000321 ErrorParsing = true;
322 continue;
323 }
324
Chris Lattnercaccd762001-10-27 05:54:17 +0000325 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000326 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000327
Chris Lattner331de232002-07-22 02:07:59 +0000328 // Check and handle positional arguments now...
329 if (NumPositionalRequired > PositionalVals.size()) {
330 cerr << "Not enough positional command line arguments specified!\n";
331 cerr << "Must specify at least " << NumPositionalRequired
332 << " positional arguments: See: " << argv[0] << " --help\n";
333 ErrorParsing = true;
334
335
336 } else if (ConsumeAfterOpt == 0) {
337 // Positional args have already been handled if ConsumeAfter is specified...
338 unsigned ValNo = 0, NumVals = PositionalVals.size();
339 for (unsigned i = 0, e = PositionalOpts.size(); i != e; ++i) {
340 if (RequiresValue(PositionalOpts[i])) {
341 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo++]);
342 --NumPositionalRequired; // We fulfilled our duty...
343 }
344
345 // If we _can_ give this option more arguments, do so now, as long as we
346 // do not give it values that others need. 'Done' controls whether the
347 // option even _WANTS_ any more.
348 //
349 bool Done = PositionalOpts[i]->getNumOccurancesFlag() == cl::Required;
350 while (NumVals-ValNo > NumPositionalRequired && !Done) {
351 switch (PositionalOpts[i]->getNumOccurancesFlag()) {
352 case cl::Optional:
353 Done = true; // Optional arguments want _at most_ one value
354 // FALL THROUGH
355 case cl::ZeroOrMore: // Zero or more will take all they can get...
356 case cl::OneOrMore: // One or more will take all they can get...
357 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo++]);
358 break;
359 default:
360 assert(0 && "Internal error, unexpected NumOccurances flag in "
361 "positional argument processing!");
362 }
363 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000364 }
Chris Lattner331de232002-07-22 02:07:59 +0000365 } else {
366 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
367 unsigned ValNo = 0;
368 for (unsigned j = 1, e = PositionalOpts.size(); j != e; ++j)
369 if (RequiresValue(PositionalOpts[j]))
Chris Lattnerfaba8092002-07-24 20:15:13 +0000370 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
371 PositionalVals[ValNo++]);
372
373 // Handle the case where there is just one positional option, and it's
374 // optional. In this case, we want to give JUST THE FIRST option to the
375 // positional option and keep the rest for the consume after. The above
376 // loop would have assigned no values to positional options in this case.
377 //
Chris Lattnerb490c202002-08-02 21:51:29 +0000378 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty())
Chris Lattnerfaba8092002-07-24 20:15:13 +0000379 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
380 PositionalVals[ValNo++]);
Chris Lattner331de232002-07-22 02:07:59 +0000381
382 // Handle over all of the rest of the arguments to the
383 // cl::ConsumeAfter command line option...
384 for (; ValNo != PositionalVals.size(); ++ValNo)
385 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
386 PositionalVals[ValNo]);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000387 }
388
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000389 // Loop over args and make sure all required args are specified!
Chris Lattner331de232002-07-22 02:07:59 +0000390 for (map<string, Option*>::iterator I = Opts.begin(),
391 E = Opts.end(); I != E; ++I) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000392 switch (I->second->getNumOccurancesFlag()) {
393 case Required:
394 case OneOrMore:
Chris Lattnerf038acb2001-10-24 06:21:56 +0000395 if (I->second->getNumOccurances() == 0) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000396 I->second->error(" must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000397 ErrorParsing = true;
398 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000399 // Fall through
400 default:
401 break;
402 }
403 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000404
Chris Lattner331de232002-07-22 02:07:59 +0000405 // Free all of the memory allocated to the map. Command line options may only
406 // be processed once!
Chris Lattnere8e258b2002-07-29 20:58:42 +0000407 delete CommandLineOptions;
408 CommandLineOptions = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000409 PositionalOpts.clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000410
411 // If we had an error processing our arguments, don't let the program execute
412 if (ErrorParsing) exit(1);
413}
414
415//===----------------------------------------------------------------------===//
416// Option Base class implementation
417//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000418
Chris Lattner0c0edf82002-07-25 06:17:51 +0000419bool Option::error(string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000420 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000421 if (ArgName[0] == 0)
422 cerr << HelpStr; // Be nice for positional arguments
423 else
424 cerr << "-" << ArgName;
425 cerr << " option" << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000426 return true;
427}
428
429bool Option::addOccurance(const char *ArgName, const string &Value) {
430 NumOccurances++; // Increment the number of times we have been seen
431
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000432 switch (getNumOccurancesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000433 case Optional:
434 if (NumOccurances > 1)
435 return error(": may only occur zero or one times!", ArgName);
436 break;
437 case Required:
438 if (NumOccurances > 1)
439 return error(": must occur exactly one time!", ArgName);
440 // Fall through
441 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000442 case ZeroOrMore:
443 case ConsumeAfter: break;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000444 default: return error(": bad num occurances flag value!");
445 }
446
447 return handleOccurance(ArgName, Value);
448}
449
Chris Lattner331de232002-07-22 02:07:59 +0000450// addArgument - Tell the system that this Option subclass will handle all
451// occurances of -ArgStr on the command line.
452//
453void Option::addArgument(const char *ArgStr) {
454 if (ArgStr[0])
455 AddArgument(ArgStr, this);
456 else if (getFormattingFlag() == Positional)
457 getPositionalOpts().push_back(this);
458 else if (getNumOccurancesFlag() == ConsumeAfter) {
459 assert((getPositionalOpts().empty() ||
460 getPositionalOpts().front()->getNumOccurancesFlag() != ConsumeAfter)
461 && "Cannot specify more than one option with cl::ConsumeAfter "
462 "specified!");
463 getPositionalOpts().insert(getPositionalOpts().begin(), this);
464 }
465}
466
Chris Lattneraa852bb2002-07-23 17:15:12 +0000467void Option::removeArgument(const char *ArgStr) {
468 if (ArgStr[0]) {
Chris Lattnere8e258b2002-07-29 20:58:42 +0000469 RemoveArgument(ArgStr, this);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000470 } else if (getFormattingFlag() == Positional) {
471 vector<Option*>::iterator I =
472 std::find(getPositionalOpts().begin(), getPositionalOpts().end(), this);
473 assert(I != getPositionalOpts().end() && "Arg not registered!");
474 getPositionalOpts().erase(I);
475 } else if (getNumOccurancesFlag() == ConsumeAfter) {
476 assert(!getPositionalOpts().empty() && getPositionalOpts()[0] == this &&
477 "Arg not registered correctly!");
478 getPositionalOpts().erase(getPositionalOpts().begin());
479 }
480}
481
Chris Lattner331de232002-07-22 02:07:59 +0000482
483// getValueStr - Get the value description string, using "DefaultMsg" if nothing
484// has been specified yet.
485//
486static const char *getValueStr(const Option &O, const char *DefaultMsg) {
487 if (O.ValueStr[0] == 0) return DefaultMsg;
488 return O.ValueStr;
489}
490
491//===----------------------------------------------------------------------===//
492// cl::alias class implementation
493//
494
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000495// Return the width of the option tag for printing...
Chris Lattner331de232002-07-22 02:07:59 +0000496unsigned alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000497 return std::strlen(ArgStr)+6;
498}
499
Chris Lattner331de232002-07-22 02:07:59 +0000500// Print out the option for the alias...
501void alias::printOptionInfo(unsigned GlobalWidth) const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000502 unsigned L = std::strlen(ArgStr);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000503 cerr << " -" << ArgStr << string(GlobalWidth-L-6, ' ') << " - "
Chris Lattner697954c2002-01-20 22:54:45 +0000504 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000505}
506
507
Chris Lattner331de232002-07-22 02:07:59 +0000508
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000509//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000510// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000511//
512
Chris Lattner9b14eb52002-08-07 18:36:37 +0000513// basic_parser implementation
514//
515
516// Return the width of the option tag for printing...
517unsigned basic_parser_impl::getOptionWidth(const Option &O) const {
518 unsigned Len = std::strlen(O.ArgStr);
519 if (const char *ValName = getValueName())
520 Len += std::strlen(getValueStr(O, ValName))+3;
521
522 return Len + 6;
523}
524
525// printOptionInfo - Print out information about this option. The
526// to-be-maintained width is specified.
527//
528void basic_parser_impl::printOptionInfo(const Option &O,
529 unsigned GlobalWidth) const {
530 cerr << " -" << O.ArgStr;
531
532 if (const char *ValName = getValueName())
533 cerr << "=<" << getValueStr(O, ValName) << ">";
534
535 cerr << string(GlobalWidth-getOptionWidth(O), ' ') << " - "
536 << O.HelpStr << "\n";
537}
538
539
540
541
Chris Lattner331de232002-07-22 02:07:59 +0000542// parser<bool> implementation
543//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000544bool parser<bool>::parse(Option &O, const char *ArgName,
545 const string &Arg, bool &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000546 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
547 Arg == "1") {
548 Value = true;
549 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
550 Value = false;
551 } else {
Chris Lattner331de232002-07-22 02:07:59 +0000552 return O.error(": '" + Arg +
553 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000554 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000555 return false;
556}
557
Chris Lattner331de232002-07-22 02:07:59 +0000558// parser<int> implementation
559//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000560bool parser<int>::parse(Option &O, const char *ArgName,
561 const string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000562 const char *ArgStart = Arg.c_str();
563 char *End;
564 Value = (int)strtol(ArgStart, &End, 0);
565 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000566 return O.error(": '" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000567 return false;
568}
569
Chris Lattner9b14eb52002-08-07 18:36:37 +0000570// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000571//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000572static bool parseDouble(Option &O, const string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000573 const char *ArgStart = Arg.c_str();
574 char *End;
575 Value = strtod(ArgStart, &End);
576 if (*End != 0)
577 return O.error(": '" +Arg+ "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000578 return false;
579}
580
Chris Lattner9b14eb52002-08-07 18:36:37 +0000581bool parser<double>::parse(Option &O, const char *AN,
582 const std::string &Arg, double &Val) {
583 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000584}
585
Chris Lattner9b14eb52002-08-07 18:36:37 +0000586bool parser<float>::parse(Option &O, const char *AN,
587 const std::string &Arg, float &Val) {
588 double dVal;
589 if (parseDouble(O, Arg, dVal))
590 return true;
591 Val = (float)dVal;
592 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000593}
594
595
Chris Lattner331de232002-07-22 02:07:59 +0000596
597// generic_parser_base implementation
598//
599
Chris Lattneraa852bb2002-07-23 17:15:12 +0000600// findOption - Return the option number corresponding to the specified
601// argument string. If the option is not found, getNumOptions() is returned.
602//
603unsigned generic_parser_base::findOption(const char *Name) {
604 unsigned i = 0, e = getNumOptions();
605 string N(Name);
606
607 while (i != e)
608 if (getOption(i) == N)
609 return i;
610 else
611 ++i;
612 return e;
613}
614
615
Chris Lattner331de232002-07-22 02:07:59 +0000616// Return the width of the option tag for printing...
617unsigned generic_parser_base::getOptionWidth(const Option &O) const {
618 if (O.hasArgStr()) {
619 unsigned Size = std::strlen(O.ArgStr)+6;
620 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
621 Size = std::max(Size, (unsigned)std::strlen(getOption(i))+8);
622 return Size;
623 } else {
624 unsigned BaseSize = 0;
625 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
626 BaseSize = std::max(BaseSize, (unsigned)std::strlen(getOption(i))+8);
627 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000628 }
629}
630
Chris Lattner331de232002-07-22 02:07:59 +0000631// printOptionInfo - Print out information about this option. The
632// to-be-maintained width is specified.
633//
634void generic_parser_base::printOptionInfo(const Option &O,
635 unsigned GlobalWidth) const {
636 if (O.hasArgStr()) {
637 unsigned L = std::strlen(O.ArgStr);
638 cerr << " -" << O.ArgStr << string(GlobalWidth-L-6, ' ')
639 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000640
Chris Lattner331de232002-07-22 02:07:59 +0000641 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
642 unsigned NumSpaces = GlobalWidth-strlen(getOption(i))-8;
643 cerr << " =" << getOption(i) << string(NumSpaces, ' ') << " - "
644 << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +0000645 }
Chris Lattner331de232002-07-22 02:07:59 +0000646 } else {
647 if (O.HelpStr[0])
648 cerr << " " << O.HelpStr << "\n";
649 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
650 unsigned L = std::strlen(getOption(i));
651 cerr << " -" << getOption(i) << string(GlobalWidth-L-8, ' ') << " - "
652 << getDescription(i) << "\n";
653 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000654 }
655}
656
657
658//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000659// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000660//
661namespace {
662
Chris Lattner331de232002-07-22 02:07:59 +0000663class HelpPrinter {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000664 unsigned MaxArgLen;
665 const Option *EmptyArg;
666 const bool ShowHidden;
667
Chris Lattner331de232002-07-22 02:07:59 +0000668 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
669 inline static bool isHidden(pair<string, Option *> &OptPair) {
670 return OptPair.second->getOptionHiddenFlag() >= Hidden;
671 }
672 inline static bool isReallyHidden(pair<string, Option *> &OptPair) {
673 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
674 }
675
676public:
677 HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
678 EmptyArg = 0;
679 }
680
681 void operator=(bool Value) {
682 if (Value == false) return;
683
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000684 // Copy Options into a vector so we can sort them as we like...
685 vector<pair<string, Option*> > Options;
Chris Lattner697954c2002-01-20 22:54:45 +0000686 copy(getOpts().begin(), getOpts().end(), std::back_inserter(Options));
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000687
688 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner331de232002-07-22 02:07:59 +0000689 Options.erase(std::remove_if(Options.begin(), Options.end(),
690 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000691 Options.end());
692
693 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +0000694 { // Give OptionSet a scope
695 std::set<Option*> OptionSet;
696 for (unsigned i = 0; i != Options.size(); ++i)
697 if (OptionSet.count(Options[i].second) == 0)
698 OptionSet.insert(Options[i].second); // Add new entry to set
699 else
700 Options.erase(Options.begin()+i--); // Erase duplicate
701 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000702
703 if (ProgramOverview)
Chris Lattner697954c2002-01-20 22:54:45 +0000704 cerr << "OVERVIEW:" << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000705
Chris Lattner331de232002-07-22 02:07:59 +0000706 cerr << "USAGE: " << ProgramName << " [options]";
707
708 // Print out the positional options...
709 vector<Option*> &PosOpts = getPositionalOpts();
710 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
711 if (!PosOpts.empty() && PosOpts[0]->getNumOccurancesFlag() == ConsumeAfter)
712 CAOpt = PosOpts[0];
713
Chris Lattner9b14eb52002-08-07 18:36:37 +0000714 for (unsigned i = CAOpt != 0, e = PosOpts.size(); i != e; ++i)
Chris Lattner331de232002-07-22 02:07:59 +0000715 cerr << " " << PosOpts[i]->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +0000716
717 // Print the consume after option info if it exists...
718 if (CAOpt) cerr << " " << CAOpt->HelpStr;
719
720 cerr << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000721
722 // Compute the maximum argument length...
723 MaxArgLen = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000724 for (unsigned i = 0, e = Options.size(); i != e; ++i)
725 MaxArgLen = std::max(MaxArgLen, Options[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000726
727 cerr << "OPTIONS:\n";
Chris Lattner331de232002-07-22 02:07:59 +0000728 for (unsigned i = 0, e = Options.size(); i != e; ++i)
729 Options[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000730
Chris Lattner331de232002-07-22 02:07:59 +0000731 // Halt the program if help information is printed
732 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000733 }
734};
735
Chris Lattner331de232002-07-22 02:07:59 +0000736
737
738// Define the two HelpPrinter instances that are used to print out help, or
739// help-hidden...
740//
741HelpPrinter NormalPrinter(false);
742HelpPrinter HiddenPrinter(true);
743
744cl::opt<HelpPrinter, true, parser<bool> >
745HOp("help", cl::desc("display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +0000746 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +0000747
748cl::opt<HelpPrinter, true, parser<bool> >
749HHOp("help-hidden", cl::desc("display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +0000750 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000751
752} // End anonymous namespace