blob: 2c699d948888a68981fc8b6a61e3cc99ce83dd8c [file] [log] [blame]
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001//===-- CommandLine.cpp - Command line parser implementation --------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattnerdbab15a2001-07-23 17:17:47 +00009//
10// This class implements a command line argument processor that is useful when
11// creating a tool. It provides a simple, minimalistic interface that is easily
12// extensible and supports nonlocal (library) command line options.
13//
Chris Lattner03fe1bd2001-07-23 23:04:07 +000014// Note that rather than trying to figure out what this code does, you could try
15// reading the library documentation located in docs/CommandLine.html
16//
Chris Lattnerdbab15a2001-07-23 17:17:47 +000017//===----------------------------------------------------------------------===//
18
Chris Lattnercee8f9a2001-11-27 00:03:19 +000019#include "Support/CommandLine.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000020#include <algorithm>
21#include <map>
22#include <set>
Chris Lattner697954c2002-01-20 22:54:45 +000023#include <iostream>
Brian Gaeke2d6a2362003-10-10 17:01:36 +000024#include <cstdlib>
25#include <cerrno>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000026using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000027
Chris Lattnerdbab15a2001-07-23 17:17:47 +000028using namespace cl;
29
Chris Lattner331de232002-07-22 02:07:59 +000030//===----------------------------------------------------------------------===//
31// Basic, shared command line option processing machinery...
32//
33
Chris Lattnerdbab15a2001-07-23 17:17:47 +000034// Return the global command line option vector. Making it a function scoped
Chris Lattnerf78032f2001-11-26 18:58:34 +000035// static ensures that it will be initialized correctly before its first use.
Chris Lattnerdbab15a2001-07-23 17:17:47 +000036//
Chris Lattnerca6433f2003-05-22 20:06:43 +000037static std::map<std::string, Option*> *CommandLineOptions = 0;
38static std::map<std::string, Option*> &getOpts() {
39 if (CommandLineOptions == 0)
40 CommandLineOptions = new std::map<std::string,Option*>();
Chris Lattnere8e258b2002-07-29 20:58:42 +000041 return *CommandLineOptions;
42}
43
Chris Lattnerca6433f2003-05-22 20:06:43 +000044static Option *getOption(const std::string &Str) {
Chris Lattnere8e258b2002-07-29 20:58:42 +000045 if (CommandLineOptions == 0) return 0;
Chris Lattnerca6433f2003-05-22 20:06:43 +000046 std::map<std::string,Option*>::iterator I = CommandLineOptions->find(Str);
Chris Lattnere8e258b2002-07-29 20:58:42 +000047 return I != CommandLineOptions->end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000048}
49
Chris Lattnerca6433f2003-05-22 20:06:43 +000050static std::vector<Option*> &getPositionalOpts() {
Alkis Evlogimenos5f65add2004-03-04 17:50:44 +000051 static std::vector<Option*> *Positional = 0;
52 if (!Positional) Positional = new std::vector<Option*>();
53 return *Positional;
Chris Lattner331de232002-07-22 02:07:59 +000054}
55
Chris Lattnere8e258b2002-07-29 20:58:42 +000056static void AddArgument(const char *ArgName, Option *Opt) {
57 if (getOption(ArgName)) {
Chris Lattnerca6433f2003-05-22 20:06:43 +000058 std::cerr << "CommandLine Error: Argument '" << ArgName
59 << "' defined more than once!\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +000060 } else {
Chris Lattnerf78032f2001-11-26 18:58:34 +000061 // Add argument to the argument map!
Chris Lattnere8e258b2002-07-29 20:58:42 +000062 getOpts()[ArgName] = Opt;
63 }
64}
65
66// RemoveArgument - It's possible that the argument is no longer in the map if
67// options have already been processed and the map has been deleted!
68//
69static void RemoveArgument(const char *ArgName, Option *Opt) {
70 if (CommandLineOptions == 0) return;
71 assert(getOption(ArgName) == Opt && "Arg not in map!");
72 CommandLineOptions->erase(ArgName);
73 if (CommandLineOptions->empty()) {
74 delete CommandLineOptions;
75 CommandLineOptions = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000076 }
77}
78
79static const char *ProgramName = 0;
80static const char *ProgramOverview = 0;
81
Chris Lattnercaccd762001-10-27 05:54:17 +000082static inline bool ProvideOption(Option *Handler, const char *ArgName,
83 const char *Value, int argc, char **argv,
84 int &i) {
85 // Enforce value requirements
86 switch (Handler->getValueExpectedFlag()) {
87 case ValueRequired:
88 if (Value == 0 || *Value == 0) { // No value specified?
89 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
90 Value = argv[++i];
91 } else {
92 return Handler->error(" requires a value!");
93 }
94 }
95 break;
96 case ValueDisallowed:
97 if (*Value != 0)
98 return Handler->error(" does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +000099 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000100 break;
101 case ValueOptional: break;
Chris Lattnerca6433f2003-05-22 20:06:43 +0000102 default: std::cerr << "Bad ValueMask flag! CommandLine usage error:"
103 << Handler->getValueExpectedFlag() << "\n"; abort();
Chris Lattnercaccd762001-10-27 05:54:17 +0000104 }
105
106 // Run the handler now!
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000107 return Handler->addOccurrence(ArgName, Value);
Chris Lattnercaccd762001-10-27 05:54:17 +0000108}
109
Chris Lattner9cf3d472003-07-30 17:34:02 +0000110static bool ProvidePositionalOption(Option *Handler, const std::string &Arg) {
Chris Lattner331de232002-07-22 02:07:59 +0000111 int Dummy;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000112 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000113}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000114
Chris Lattner331de232002-07-22 02:07:59 +0000115
116// Option predicates...
117static inline bool isGrouping(const Option *O) {
118 return O->getFormattingFlag() == cl::Grouping;
119}
120static inline bool isPrefixedOrGrouping(const Option *O) {
121 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
122}
123
124// getOptionPred - Check to see if there are any options that satisfy the
125// specified predicate with names that are the prefixes in Name. This is
126// checked by progressively stripping characters off of the name, checking to
127// see if there options that satisfy the predicate. If we find one, return it,
128// otherwise return null.
129//
130static Option *getOptionPred(std::string Name, unsigned &Length,
131 bool (*Pred)(const Option*)) {
132
Chris Lattnere8e258b2002-07-29 20:58:42 +0000133 Option *Op = getOption(Name);
134 if (Op && Pred(Op)) {
Chris Lattner331de232002-07-22 02:07:59 +0000135 Length = Name.length();
Chris Lattnere8e258b2002-07-29 20:58:42 +0000136 return Op;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000137 }
138
Chris Lattner331de232002-07-22 02:07:59 +0000139 if (Name.size() == 1) return 0;
140 do {
141 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattnere8e258b2002-07-29 20:58:42 +0000142 Op = getOption(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000143
144 // Loop while we haven't found an option and Name still has at least two
145 // characters in it (so that the next iteration will not be the empty
146 // string...
Chris Lattnere8e258b2002-07-29 20:58:42 +0000147 } while ((Op == 0 || !Pred(Op)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000148
Chris Lattnere8e258b2002-07-29 20:58:42 +0000149 if (Op && Pred(Op)) {
Chris Lattner331de232002-07-22 02:07:59 +0000150 Length = Name.length();
Chris Lattnere8e258b2002-07-29 20:58:42 +0000151 return Op; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000152 }
153 return 0; // No option found!
154}
155
156static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000157 return O->getNumOccurrencesFlag() == cl::Required ||
158 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000159}
160
161static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000162 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
163 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000164}
Chris Lattnercaccd762001-10-27 05:54:17 +0000165
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000166/// ParseCStringVector - Break INPUT up wherever one or more
167/// whitespace characters are found, and store the resulting tokens in
168/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
169/// using strdup (), so it is the caller's responsibility to free ()
170/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000171///
172static void ParseCStringVector (std::vector<char *> &output,
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000173 const char *input) {
174 // Characters which will be treated as token separators:
175 static const char *delims = " \v\f\t\r\n";
176
177 std::string work (input);
178 // Skip past any delims at head of input string.
179 size_t pos = work.find_first_not_of (delims);
180 // If the string consists entirely of delims, then exit early.
181 if (pos == std::string::npos) return;
182 // Otherwise, jump forward to beginning of first word.
183 work = work.substr (pos);
184 // Find position of first delimiter.
185 pos = work.find_first_of (delims);
186
187 while (!work.empty() && pos != std::string::npos) {
188 // Everything from 0 to POS is the next word to copy.
189 output.push_back (strdup (work.substr (0,pos).c_str ()));
190 // Is there another word in the string?
191 size_t nextpos = work.find_first_not_of (delims, pos + 1);
192 if (nextpos != std::string::npos) {
193 // Yes? Then remove delims from beginning ...
194 work = work.substr (work.find_first_not_of (delims, pos + 1));
195 // and find the end of the word.
196 pos = work.find_first_of (delims);
197 } else {
198 // No? (Remainder of string is delims.) End the loop.
199 work = "";
200 pos = std::string::npos;
201 }
202 }
203
204 // If `input' ended with non-delim char, then we'll get here with
205 // the last word of `input' in `work'; copy it now.
206 if (!work.empty ()) {
207 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000208 }
209}
210
211/// ParseEnvironmentOptions - An alternative entry point to the
212/// CommandLine library, which allows you to read the program's name
213/// from the caller (as PROGNAME) and its command-line arguments from
214/// an environment variable (whose name is given in ENVVAR).
215///
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000216void cl::ParseEnvironmentOptions (const char *progName, const char *envVar,
Brian Gaeke06b06c52003-08-14 22:00:59 +0000217 const char *Overview) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000218 // Check args.
219 assert (progName && "Program name not specified");
220 assert (envVar && "Environment variable name missing");
221
222 // Get the environment variable they want us to parse options out of.
223 const char *envValue = getenv (envVar);
224 if (!envValue)
225 return;
226
Brian Gaeke06b06c52003-08-14 22:00:59 +0000227 // Get program's "name", which we wouldn't know without the caller
228 // telling us.
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000229 std::vector<char *> newArgv;
230 newArgv.push_back (strdup (progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000231
232 // Parse the value of the environment variable into a "command line"
233 // and hand it off to ParseCommandLineOptions().
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000234 ParseCStringVector (newArgv, envValue);
235 int newArgc = newArgv.size ();
236 ParseCommandLineOptions (newArgc, &newArgv[0], Overview);
237
238 // Free all the strdup()ed strings.
239 for (std::vector<char *>::iterator i = newArgv.begin (), e = newArgv.end ();
240 i != e; ++i) {
241 free (*i);
242 }
Brian Gaeke06b06c52003-08-14 22:00:59 +0000243}
244
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000245void cl::ParseCommandLineOptions(int &argc, char **argv,
Chris Lattner0c0edf82002-07-25 06:17:51 +0000246 const char *Overview) {
Chris Lattner331de232002-07-22 02:07:59 +0000247 assert((!getOpts().empty() || !getPositionalOpts().empty()) &&
248 "No options specified, or ParseCommandLineOptions called more"
249 " than once!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000250 ProgramName = argv[0]; // Save this away safe and snug
251 ProgramOverview = Overview;
252 bool ErrorParsing = false;
253
Chris Lattnerca6433f2003-05-22 20:06:43 +0000254 std::map<std::string, Option*> &Opts = getOpts();
255 std::vector<Option*> &PositionalOpts = getPositionalOpts();
Chris Lattner331de232002-07-22 02:07:59 +0000256
257 // Check out the positional arguments to collect information about them.
258 unsigned NumPositionalRequired = 0;
259 Option *ConsumeAfterOpt = 0;
260 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000261 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000262 assert(PositionalOpts.size() > 1 &&
263 "Cannot specify cl::ConsumeAfter without a positional argument!");
264 ConsumeAfterOpt = PositionalOpts[0];
265 }
266
267 // Calculate how many positional values are _required_.
268 bool UnboundedFound = false;
269 for (unsigned i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
270 i != e; ++i) {
271 Option *Opt = PositionalOpts[i];
272 if (RequiresValue(Opt))
273 ++NumPositionalRequired;
274 else if (ConsumeAfterOpt) {
275 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000276 // unless there is only one positional argument...
277 if (PositionalOpts.size() > 2)
278 ErrorParsing |=
279 Opt->error(" error - this positional option will never be matched, "
280 "because it does not Require a value, and a "
281 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000282 } else if (UnboundedFound && !Opt->ArgStr[0]) {
283 // This option does not "require" a value... Make sure this option is
284 // not specified after an option that eats all extra arguments, or this
285 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000286 //
287 ErrorParsing |= Opt->error(" error - option can never match, because "
288 "another positional argument will match an "
289 "unbounded number of values, and this option"
290 " does not require a value!");
291 }
292 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
293 }
294 }
295
296 // PositionalVals - A vector of "positional" arguments we accumulate into to
297 // processes at the end...
298 //
Chris Lattnerca6433f2003-05-22 20:06:43 +0000299 std::vector<std::string> PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000300
Chris Lattner9cf3d472003-07-30 17:34:02 +0000301 // If the program has named positional arguments, and the name has been run
302 // across, keep track of which positional argument was named. Otherwise put
303 // the positional args into the PositionalVals list...
304 Option *ActivePositionalArg = 0;
305
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000306 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000307 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000308 for (int i = 1; i < argc; ++i) {
309 Option *Handler = 0;
310 const char *Value = "";
311 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000312
313 // Check to see if this is a positional argument. This argument is
314 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000315 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000316 //
317 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
318 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000319 if (ActivePositionalArg) {
320 ProvidePositionalOption(ActivePositionalArg, argv[i]);
321 continue; // We are done!
322 } else if (!PositionalOpts.empty()) {
Chris Lattner331de232002-07-22 02:07:59 +0000323 PositionalVals.push_back(argv[i]);
324
325 // All of the positional arguments have been fulfulled, give the rest to
326 // the consume after option... if it's specified...
327 //
Chris Lattnerd16714b2002-07-31 16:29:43 +0000328 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000329 ConsumeAfterOpt != 0) {
330 for (++i; i < argc; ++i)
331 PositionalVals.push_back(argv[i]);
332 break; // Handle outside of the argument processing loop...
333 }
334
335 // Delay processing positional arguments until the end...
336 continue;
337 }
338 } else { // We start with a '-', must be an argument...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000339 ArgName = argv[i]+1;
340 while (*ArgName == '-') ++ArgName; // Eat leading dashes
341
Chris Lattner331de232002-07-22 02:07:59 +0000342 if (*ArgName == 0 && !DashDashFound) { // Is this the mythical "--"?
343 DashDashFound = true; // Yup, take note of that fact...
Misha Brukman950971d2003-09-16 15:31:46 +0000344 continue; // Don't try to process it as an argument itself.
Chris Lattner331de232002-07-22 02:07:59 +0000345 }
346
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000347 const char *ArgNameEnd = ArgName;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000348 while (*ArgNameEnd && *ArgNameEnd != '=')
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000349 ++ArgNameEnd; // Scan till end of argument name...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000350
351 Value = ArgNameEnd;
352 if (*Value) // If we have an equals sign...
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000353 ++Value; // Advance to value...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000354
355 if (*ArgName != 0) {
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000356 std::string RealName(ArgName, ArgNameEnd);
357 // Extract arg name part
Chris Lattnerca6433f2003-05-22 20:06:43 +0000358 std::map<std::string, Option*>::iterator I = Opts.find(RealName);
Chris Lattnerf78032f2001-11-26 18:58:34 +0000359
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000360 if (I == Opts.end() && !*Value && RealName.size() > 1) {
Chris Lattner331de232002-07-22 02:07:59 +0000361 // Check to see if this "option" is really a prefixed or grouped
362 // argument...
363 //
364 unsigned Length = 0;
365 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping);
Chris Lattnerf78032f2001-11-26 18:58:34 +0000366
Chris Lattner331de232002-07-22 02:07:59 +0000367 // If the option is a prefixed option, then the value is simply the
368 // rest of the name... so fall through to later processing, by
369 // setting up the argument name flags and value fields.
370 //
371 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
372 ArgNameEnd = ArgName+Length;
373 Value = ArgNameEnd;
Chris Lattnerca6433f2003-05-22 20:06:43 +0000374 I = Opts.find(std::string(ArgName, ArgNameEnd));
Chris Lattner331de232002-07-22 02:07:59 +0000375 assert(I->second == PGOpt);
376 } else if (PGOpt) {
377 // This must be a grouped option... handle all of them now...
378 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
379
380 do {
381 // Move current arg name out of RealName into RealArgName...
Chris Lattnerca6433f2003-05-22 20:06:43 +0000382 std::string RealArgName(RealName.begin(),RealName.begin()+Length);
Chris Lattner331de232002-07-22 02:07:59 +0000383 RealName.erase(RealName.begin(), RealName.begin()+Length);
Chris Lattnerf78032f2001-11-26 18:58:34 +0000384
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000385 // Because ValueRequired is an invalid flag for grouped arguments,
386 // we don't need to pass argc/argv in...
387 //
Chris Lattner331de232002-07-22 02:07:59 +0000388 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
389 "Option can not be cl::Grouping AND cl::ValueRequired!");
390 int Dummy;
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000391 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(), "",
Chris Lattner331de232002-07-22 02:07:59 +0000392 0, 0, Dummy);
393
394 // Get the next grouping option...
395 if (!RealName.empty())
396 PGOpt = getOptionPred(RealName, Length, isGrouping);
397 } while (!RealName.empty() && PGOpt);
398
399 if (RealName.empty()) // Processed all of the options, move on
400 continue; // to the next argv[] value...
401
402 // If RealName is not empty, that means we did not match one of the
403 // options! This is an error.
404 //
405 I = Opts.end();
406 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000407 }
Chris Lattnerf78032f2001-11-26 18:58:34 +0000408
Chris Lattner331de232002-07-22 02:07:59 +0000409 Handler = I != Opts.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000410 }
411 }
412
413 if (Handler == 0) {
Brian Gaekec86e84b2003-09-16 18:00:35 +0000414 std::cerr << "Unknown command line argument '" << argv[i] << "'. Try: '"
Chris Lattnerca6433f2003-05-22 20:06:43 +0000415 << argv[0] << " --help'\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000416 ErrorParsing = true;
417 continue;
418 }
419
Chris Lattner72fb8e52003-05-22 20:26:17 +0000420 // Check to see if this option accepts a comma separated list of values. If
421 // it does, we have to split up the value into multiple values...
422 if (Handler->getMiscFlags() & CommaSeparated) {
423 std::string Val(Value);
424 std::string::size_type Pos = Val.find(',');
425
426 while (Pos != std::string::npos) {
427 // Process the portion before the comma...
428 ErrorParsing |= ProvideOption(Handler, ArgName,
429 std::string(Val.begin(),
430 Val.begin()+Pos).c_str(),
431 argc, argv, i);
432 // Erase the portion before the comma, AND the comma...
433 Val.erase(Val.begin(), Val.begin()+Pos+1);
434 Value += Pos+1; // Increment the original value pointer as well...
435
436 // Check for another comma...
437 Pos = Val.find(',');
438 }
439 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000440
441 // If this is a named positional argument, just remember that it is the
442 // active one...
443 if (Handler->getFormattingFlag() == cl::Positional)
444 ActivePositionalArg = Handler;
445 else
446 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000447 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000448
Chris Lattner331de232002-07-22 02:07:59 +0000449 // Check and handle positional arguments now...
450 if (NumPositionalRequired > PositionalVals.size()) {
Chris Lattnerca6433f2003-05-22 20:06:43 +0000451 std::cerr << "Not enough positional command line arguments specified!\n"
452 << "Must specify at least " << NumPositionalRequired
453 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattner331de232002-07-22 02:07:59 +0000454 ErrorParsing = true;
455
456
457 } else if (ConsumeAfterOpt == 0) {
458 // Positional args have already been handled if ConsumeAfter is specified...
459 unsigned ValNo = 0, NumVals = PositionalVals.size();
460 for (unsigned i = 0, e = PositionalOpts.size(); i != e; ++i) {
461 if (RequiresValue(PositionalOpts[i])) {
462 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo++]);
463 --NumPositionalRequired; // We fulfilled our duty...
464 }
465
466 // If we _can_ give this option more arguments, do so now, as long as we
467 // do not give it values that others need. 'Done' controls whether the
468 // option even _WANTS_ any more.
469 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000470 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000471 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000472 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000473 case cl::Optional:
474 Done = true; // Optional arguments want _at most_ one value
475 // FALL THROUGH
476 case cl::ZeroOrMore: // Zero or more will take all they can get...
477 case cl::OneOrMore: // One or more will take all they can get...
478 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo++]);
479 break;
480 default:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000481 assert(0 && "Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000482 "positional argument processing!");
483 }
484 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000485 }
Chris Lattner331de232002-07-22 02:07:59 +0000486 } else {
487 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
488 unsigned ValNo = 0;
489 for (unsigned j = 1, e = PositionalOpts.size(); j != e; ++j)
490 if (RequiresValue(PositionalOpts[j]))
Chris Lattnerfaba8092002-07-24 20:15:13 +0000491 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
492 PositionalVals[ValNo++]);
493
494 // Handle the case where there is just one positional option, and it's
495 // optional. In this case, we want to give JUST THE FIRST option to the
496 // positional option and keep the rest for the consume after. The above
497 // loop would have assigned no values to positional options in this case.
498 //
Chris Lattnerb490c202002-08-02 21:51:29 +0000499 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty())
Chris Lattnerfaba8092002-07-24 20:15:13 +0000500 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
501 PositionalVals[ValNo++]);
Chris Lattner331de232002-07-22 02:07:59 +0000502
503 // Handle over all of the rest of the arguments to the
504 // cl::ConsumeAfter command line option...
505 for (; ValNo != PositionalVals.size(); ++ValNo)
506 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
507 PositionalVals[ValNo]);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000508 }
509
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000510 // Loop over args and make sure all required args are specified!
Chris Lattnerca6433f2003-05-22 20:06:43 +0000511 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000512 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000513 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000514 case Required:
515 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000516 if (I->second->getNumOccurrences() == 0) {
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000517 I->second->error(" must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000518 ErrorParsing = true;
519 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000520 // Fall through
521 default:
522 break;
523 }
524 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000525
Chris Lattner331de232002-07-22 02:07:59 +0000526 // Free all of the memory allocated to the map. Command line options may only
527 // be processed once!
Chris Lattnere8e258b2002-07-29 20:58:42 +0000528 delete CommandLineOptions;
529 CommandLineOptions = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000530 PositionalOpts.clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000531
532 // If we had an error processing our arguments, don't let the program execute
533 if (ErrorParsing) exit(1);
534}
535
536//===----------------------------------------------------------------------===//
537// Option Base class implementation
538//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000539
Chris Lattnerca6433f2003-05-22 20:06:43 +0000540bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000541 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000542 if (ArgName[0] == 0)
Chris Lattnerca6433f2003-05-22 20:06:43 +0000543 std::cerr << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000544 else
Chris Lattnerca6433f2003-05-22 20:06:43 +0000545 std::cerr << "-" << ArgName;
546 std::cerr << " option" << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000547 return true;
548}
549
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000550bool Option::addOccurrence(const char *ArgName, const std::string &Value) {
551 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000552
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000553 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000554 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000555 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000556 return error(": may only occur zero or one times!", ArgName);
557 break;
558 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000559 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000560 return error(": must occur exactly one time!", ArgName);
561 // Fall through
562 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000563 case ZeroOrMore:
564 case ConsumeAfter: break;
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000565 default: return error(": bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000566 }
567
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000568 return handleOccurrence(ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000569}
570
Chris Lattner331de232002-07-22 02:07:59 +0000571// addArgument - Tell the system that this Option subclass will handle all
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000572// occurrences of -ArgStr on the command line.
Chris Lattner331de232002-07-22 02:07:59 +0000573//
574void Option::addArgument(const char *ArgStr) {
575 if (ArgStr[0])
576 AddArgument(ArgStr, this);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000577
578 if (getFormattingFlag() == Positional)
Chris Lattner331de232002-07-22 02:07:59 +0000579 getPositionalOpts().push_back(this);
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000580 else if (getNumOccurrencesFlag() == ConsumeAfter) {
Chris Lattner9cf3d472003-07-30 17:34:02 +0000581 if (!getPositionalOpts().empty() &&
582 getPositionalOpts().front()->getNumOccurrencesFlag() == ConsumeAfter)
583 error("Cannot specify more than one option with cl::ConsumeAfter!");
Chris Lattner331de232002-07-22 02:07:59 +0000584 getPositionalOpts().insert(getPositionalOpts().begin(), this);
585 }
586}
587
Chris Lattneraa852bb2002-07-23 17:15:12 +0000588void Option::removeArgument(const char *ArgStr) {
Chris Lattner9cf3d472003-07-30 17:34:02 +0000589 if (ArgStr[0])
Chris Lattnere8e258b2002-07-29 20:58:42 +0000590 RemoveArgument(ArgStr, this);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000591
592 if (getFormattingFlag() == Positional) {
Chris Lattnerca6433f2003-05-22 20:06:43 +0000593 std::vector<Option*>::iterator I =
Chris Lattneraa852bb2002-07-23 17:15:12 +0000594 std::find(getPositionalOpts().begin(), getPositionalOpts().end(), this);
595 assert(I != getPositionalOpts().end() && "Arg not registered!");
596 getPositionalOpts().erase(I);
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000597 } else if (getNumOccurrencesFlag() == ConsumeAfter) {
Chris Lattneraa852bb2002-07-23 17:15:12 +0000598 assert(!getPositionalOpts().empty() && getPositionalOpts()[0] == this &&
599 "Arg not registered correctly!");
600 getPositionalOpts().erase(getPositionalOpts().begin());
601 }
602}
603
Chris Lattner331de232002-07-22 02:07:59 +0000604
605// getValueStr - Get the value description string, using "DefaultMsg" if nothing
606// has been specified yet.
607//
608static const char *getValueStr(const Option &O, const char *DefaultMsg) {
609 if (O.ValueStr[0] == 0) return DefaultMsg;
610 return O.ValueStr;
611}
612
613//===----------------------------------------------------------------------===//
614// cl::alias class implementation
615//
616
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000617// Return the width of the option tag for printing...
Chris Lattner331de232002-07-22 02:07:59 +0000618unsigned alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000619 return std::strlen(ArgStr)+6;
620}
621
Chris Lattner331de232002-07-22 02:07:59 +0000622// Print out the option for the alias...
623void alias::printOptionInfo(unsigned GlobalWidth) const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000624 unsigned L = std::strlen(ArgStr);
Chris Lattnerca6433f2003-05-22 20:06:43 +0000625 std::cerr << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
626 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000627}
628
629
Chris Lattner331de232002-07-22 02:07:59 +0000630
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000631//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000632// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000633//
634
Chris Lattner9b14eb52002-08-07 18:36:37 +0000635// basic_parser implementation
636//
637
638// Return the width of the option tag for printing...
639unsigned basic_parser_impl::getOptionWidth(const Option &O) const {
640 unsigned Len = std::strlen(O.ArgStr);
641 if (const char *ValName = getValueName())
642 Len += std::strlen(getValueStr(O, ValName))+3;
643
644 return Len + 6;
645}
646
647// printOptionInfo - Print out information about this option. The
648// to-be-maintained width is specified.
649//
650void basic_parser_impl::printOptionInfo(const Option &O,
651 unsigned GlobalWidth) const {
Chris Lattnerca6433f2003-05-22 20:06:43 +0000652 std::cerr << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000653
654 if (const char *ValName = getValueName())
Chris Lattnerca6433f2003-05-22 20:06:43 +0000655 std::cerr << "=<" << getValueStr(O, ValName) << ">";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000656
Chris Lattnerca6433f2003-05-22 20:06:43 +0000657 std::cerr << std::string(GlobalWidth-getOptionWidth(O), ' ') << " - "
658 << O.HelpStr << "\n";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000659}
660
661
662
663
Chris Lattner331de232002-07-22 02:07:59 +0000664// parser<bool> implementation
665//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000666bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000667 const std::string &Arg, bool &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000668 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
669 Arg == "1") {
670 Value = true;
671 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
672 Value = false;
673 } else {
Chris Lattner331de232002-07-22 02:07:59 +0000674 return O.error(": '" + Arg +
675 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000676 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000677 return false;
678}
679
Chris Lattner331de232002-07-22 02:07:59 +0000680// parser<int> implementation
681//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000682bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000683 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000684 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000685 Value = (int)strtol(Arg.c_str(), &End, 0);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000686 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000687 return O.error(": '" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000688 return false;
689}
690
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000691// parser<unsigned> implementation
692//
693bool parser<unsigned>::parse(Option &O, const char *ArgName,
694 const std::string &Arg, unsigned &Value) {
695 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000696 errno = 0;
697 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000698 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000699 if (((V == ULONG_MAX) && (errno == ERANGE))
700 || (*End != 0)
701 || (Value != V))
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000702 return O.error(": '" + Arg + "' value invalid for uint argument!");
703 return false;
704}
705
Chris Lattner9b14eb52002-08-07 18:36:37 +0000706// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000707//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000708static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000709 const char *ArgStart = Arg.c_str();
710 char *End;
711 Value = strtod(ArgStart, &End);
712 if (*End != 0)
713 return O.error(": '" +Arg+ "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000714 return false;
715}
716
Chris Lattner9b14eb52002-08-07 18:36:37 +0000717bool parser<double>::parse(Option &O, const char *AN,
718 const std::string &Arg, double &Val) {
719 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000720}
721
Chris Lattner9b14eb52002-08-07 18:36:37 +0000722bool parser<float>::parse(Option &O, const char *AN,
723 const std::string &Arg, float &Val) {
724 double dVal;
725 if (parseDouble(O, Arg, dVal))
726 return true;
727 Val = (float)dVal;
728 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000729}
730
731
Chris Lattner331de232002-07-22 02:07:59 +0000732
733// generic_parser_base implementation
734//
735
Chris Lattneraa852bb2002-07-23 17:15:12 +0000736// findOption - Return the option number corresponding to the specified
737// argument string. If the option is not found, getNumOptions() is returned.
738//
739unsigned generic_parser_base::findOption(const char *Name) {
740 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000741 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000742
743 while (i != e)
744 if (getOption(i) == N)
745 return i;
746 else
747 ++i;
748 return e;
749}
750
751
Chris Lattner331de232002-07-22 02:07:59 +0000752// Return the width of the option tag for printing...
753unsigned generic_parser_base::getOptionWidth(const Option &O) const {
754 if (O.hasArgStr()) {
755 unsigned Size = std::strlen(O.ArgStr)+6;
756 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
757 Size = std::max(Size, (unsigned)std::strlen(getOption(i))+8);
758 return Size;
759 } else {
760 unsigned BaseSize = 0;
761 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
762 BaseSize = std::max(BaseSize, (unsigned)std::strlen(getOption(i))+8);
763 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000764 }
765}
766
Chris Lattner331de232002-07-22 02:07:59 +0000767// printOptionInfo - Print out information about this option. The
768// to-be-maintained width is specified.
769//
770void generic_parser_base::printOptionInfo(const Option &O,
771 unsigned GlobalWidth) const {
772 if (O.hasArgStr()) {
773 unsigned L = std::strlen(O.ArgStr);
Chris Lattnerca6433f2003-05-22 20:06:43 +0000774 std::cerr << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
775 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000776
Chris Lattner331de232002-07-22 02:07:59 +0000777 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
778 unsigned NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattnerca6433f2003-05-22 20:06:43 +0000779 std::cerr << " =" << getOption(i) << std::string(NumSpaces, ' ')
780 << " - " << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +0000781 }
Chris Lattner331de232002-07-22 02:07:59 +0000782 } else {
783 if (O.HelpStr[0])
Chris Lattnerca6433f2003-05-22 20:06:43 +0000784 std::cerr << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000785 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
786 unsigned L = std::strlen(getOption(i));
Chris Lattnerca6433f2003-05-22 20:06:43 +0000787 std::cerr << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
788 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000789 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000790 }
791}
792
793
794//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000795// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000796//
797namespace {
798
Chris Lattner331de232002-07-22 02:07:59 +0000799class HelpPrinter {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000800 unsigned MaxArgLen;
801 const Option *EmptyArg;
802 const bool ShowHidden;
803
Chris Lattner331de232002-07-22 02:07:59 +0000804 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +0000805 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +0000806 return OptPair.second->getOptionHiddenFlag() >= Hidden;
807 }
Chris Lattnerca6433f2003-05-22 20:06:43 +0000808 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +0000809 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
810 }
811
812public:
813 HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
814 EmptyArg = 0;
815 }
816
817 void operator=(bool Value) {
818 if (Value == false) return;
819
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000820 // Copy Options into a vector so we can sort them as we like...
Chris Lattnerca6433f2003-05-22 20:06:43 +0000821 std::vector<std::pair<std::string, Option*> > Options;
Chris Lattner697954c2002-01-20 22:54:45 +0000822 copy(getOpts().begin(), getOpts().end(), std::back_inserter(Options));
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000823
824 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner331de232002-07-22 02:07:59 +0000825 Options.erase(std::remove_if(Options.begin(), Options.end(),
826 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000827 Options.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000828
829 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +0000830 { // Give OptionSet a scope
831 std::set<Option*> OptionSet;
832 for (unsigned i = 0; i != Options.size(); ++i)
833 if (OptionSet.count(Options[i].second) == 0)
834 OptionSet.insert(Options[i].second); // Add new entry to set
835 else
836 Options.erase(Options.begin()+i--); // Erase duplicate
837 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000838
839 if (ProgramOverview)
Chris Lattnerca6433f2003-05-22 20:06:43 +0000840 std::cerr << "OVERVIEW:" << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000841
Chris Lattnerca6433f2003-05-22 20:06:43 +0000842 std::cerr << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +0000843
844 // Print out the positional options...
Chris Lattnerca6433f2003-05-22 20:06:43 +0000845 std::vector<Option*> &PosOpts = getPositionalOpts();
Chris Lattner331de232002-07-22 02:07:59 +0000846 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000847 if (!PosOpts.empty() && PosOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
Chris Lattner331de232002-07-22 02:07:59 +0000848 CAOpt = PosOpts[0];
849
Chris Lattner9cf3d472003-07-30 17:34:02 +0000850 for (unsigned i = CAOpt != 0, e = PosOpts.size(); i != e; ++i) {
851 if (PosOpts[i]->ArgStr[0])
852 std::cerr << " --" << PosOpts[i]->ArgStr;
Chris Lattnerca6433f2003-05-22 20:06:43 +0000853 std::cerr << " " << PosOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000854 }
Chris Lattner331de232002-07-22 02:07:59 +0000855
856 // Print the consume after option info if it exists...
Chris Lattnerca6433f2003-05-22 20:06:43 +0000857 if (CAOpt) std::cerr << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +0000858
Chris Lattnerca6433f2003-05-22 20:06:43 +0000859 std::cerr << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000860
861 // Compute the maximum argument length...
862 MaxArgLen = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000863 for (unsigned i = 0, e = Options.size(); i != e; ++i)
864 MaxArgLen = std::max(MaxArgLen, Options[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000865
Chris Lattnerca6433f2003-05-22 20:06:43 +0000866 std::cerr << "OPTIONS:\n";
Chris Lattner331de232002-07-22 02:07:59 +0000867 for (unsigned i = 0, e = Options.size(); i != e; ++i)
868 Options[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000869
Chris Lattner331de232002-07-22 02:07:59 +0000870 // Halt the program if help information is printed
871 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000872 }
873};
874
Chris Lattner331de232002-07-22 02:07:59 +0000875
876
877// Define the two HelpPrinter instances that are used to print out help, or
878// help-hidden...
879//
880HelpPrinter NormalPrinter(false);
881HelpPrinter HiddenPrinter(true);
882
883cl::opt<HelpPrinter, true, parser<bool> >
884HOp("help", cl::desc("display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +0000885 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +0000886
887cl::opt<HelpPrinter, true, parser<bool> >
888HHOp("help-hidden", cl::desc("display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +0000889 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000890
891} // End anonymous namespace