blob: 5aa3b967b07a484ce65a00f1fb3647aaf5dd220e [file] [log] [blame]
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001"""optparse - a powerful, extensible, and easy-to-use option parser.
2
3By Greg Ward <gward@python.net>
4
Greg Ward2492fcf2003-04-21 02:40:34 +00005Originally distributed as Optik; see http://optik.sourceforge.net/ .
Guido van Rossumb9ba4582002-11-14 22:00:19 +00006
Greg Ward4656ed42003-05-08 01:38:52 +00007If you have problems with this module, please do not file bugs,
Greg Ward2492fcf2003-04-21 02:40:34 +00008patches, or feature requests with Python; instead, use Optik's
9SourceForge project page:
10 http://sourceforge.net/projects/optik
11
12For support, use the optik-users@lists.sourceforge.net mailing list
13(http://lists.sourceforge.net/lists/listinfo/optik-users).
Guido van Rossumb9ba4582002-11-14 22:00:19 +000014"""
15
Greg Ward2492fcf2003-04-21 02:40:34 +000016# Python developers: please do not make changes to this file, since
17# it is automatically generated from the Optik source code.
18
Greg Ward48fae7a2006-07-23 16:05:51 +000019__version__ = "1.5.3"
Greg Ward2492fcf2003-04-21 02:40:34 +000020
Greg Ward4656ed42003-05-08 01:38:52 +000021__all__ = ['Option',
22 'SUPPRESS_HELP',
23 'SUPPRESS_USAGE',
Greg Ward4656ed42003-05-08 01:38:52 +000024 'Values',
25 'OptionContainer',
26 'OptionGroup',
27 'OptionParser',
28 'HelpFormatter',
29 'IndentedHelpFormatter',
30 'TitledHelpFormatter',
31 'OptParseError',
32 'OptionError',
33 'OptionConflictError',
34 'OptionValueError',
35 'BadOptionError']
Greg Ward2492fcf2003-04-21 02:40:34 +000036
Guido van Rossumb9ba4582002-11-14 22:00:19 +000037__copyright__ = """
Greg Wardab05edc2006-04-23 03:47:58 +000038Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved.
39Copyright (c) 2002-2006 Python Software Foundation. All rights reserved.
Guido van Rossumb9ba4582002-11-14 22:00:19 +000040
41Redistribution and use in source and binary forms, with or without
42modification, are permitted provided that the following conditions are
43met:
44
45 * Redistributions of source code must retain the above copyright
46 notice, this list of conditions and the following disclaimer.
47
48 * Redistributions in binary form must reproduce the above copyright
49 notice, this list of conditions and the following disclaimer in the
50 documentation and/or other materials provided with the distribution.
51
52 * Neither the name of the author nor the names of its
53 contributors may be used to endorse or promote products derived from
54 this software without specific prior written permission.
55
56THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
57IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
58TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
59PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
60CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
61EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
62PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
63PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
64LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
65NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
66SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
67"""
68
69import sys, os
Greg Wardab05edc2006-04-23 03:47:58 +000070import types
Guido van Rossumb9ba4582002-11-14 22:00:19 +000071import textwrap
Greg Wardeba20e62004-07-31 16:15:44 +000072
73def _repr(self):
74 return "<%s at 0x%x: %s>" % (self.__class__.__name__, id(self), self)
75
76
77# This file was generated from:
Greg Ward48fae7a2006-07-23 16:05:51 +000078# Id: option_parser.py 527 2006-07-23 15:21:30Z greg
Greg Ward0e0c9f42006-06-11 16:24:11 +000079# Id: option.py 522 2006-06-11 16:22:03Z gward
Greg Ward48fae7a2006-07-23 16:05:51 +000080# Id: help.py 527 2006-07-23 15:21:30Z greg
Greg Wardab05edc2006-04-23 03:47:58 +000081# Id: errors.py 509 2006-04-20 00:58:24Z gward
82
83try:
84 from gettext import gettext
85except ImportError:
86 def gettext(message):
87 return message
88_ = gettext
89
Guido van Rossumb9ba4582002-11-14 22:00:19 +000090
Guido van Rossumb9ba4582002-11-14 22:00:19 +000091class OptParseError (Exception):
Greg Wardeba20e62004-07-31 16:15:44 +000092 def __init__(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000093 self.msg = msg
94
Greg Wardeba20e62004-07-31 16:15:44 +000095 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000096 return self.msg
97
Greg Ward2492fcf2003-04-21 02:40:34 +000098
Guido van Rossumb9ba4582002-11-14 22:00:19 +000099class OptionError (OptParseError):
100 """
101 Raised if an Option instance is created with invalid or
102 inconsistent arguments.
103 """
104
Greg Wardeba20e62004-07-31 16:15:44 +0000105 def __init__(self, msg, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000106 self.msg = msg
107 self.option_id = str(option)
108
Greg Wardeba20e62004-07-31 16:15:44 +0000109 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000110 if self.option_id:
111 return "option %s: %s" % (self.option_id, self.msg)
112 else:
113 return self.msg
114
115class OptionConflictError (OptionError):
116 """
117 Raised if conflicting options are added to an OptionParser.
118 """
119
120class OptionValueError (OptParseError):
121 """
122 Raised if an invalid option value is encountered on the command
123 line.
124 """
125
126class BadOptionError (OptParseError):
127 """
Greg Wardab05edc2006-04-23 03:47:58 +0000128 Raised if an invalid option is seen on the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000129 """
Greg Wardab05edc2006-04-23 03:47:58 +0000130 def __init__(self, opt_str):
131 self.opt_str = opt_str
132
133 def __str__(self):
134 return _("no such option: %s") % self.opt_str
135
136class AmbiguousOptionError (BadOptionError):
137 """
138 Raised if an ambiguous option is seen on the command line.
139 """
140 def __init__(self, opt_str, possibilities):
141 BadOptionError.__init__(self, opt_str)
142 self.possibilities = possibilities
143
144 def __str__(self):
145 return (_("ambiguous option: %s (%s?)")
146 % (self.opt_str, ", ".join(self.possibilities)))
Greg Ward2492fcf2003-04-21 02:40:34 +0000147
148
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000149class HelpFormatter:
150
151 """
152 Abstract base class for formatting option help. OptionParser
153 instances should use one of the HelpFormatter subclasses for
154 formatting help; by default IndentedHelpFormatter is used.
155
156 Instance attributes:
Greg Wardeba20e62004-07-31 16:15:44 +0000157 parser : OptionParser
158 the controlling OptionParser instance
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000159 indent_increment : int
160 the number of columns to indent per nesting level
161 max_help_position : int
162 the maximum starting column for option help text
163 help_position : int
164 the calculated starting column for option help text;
165 initially the same as the maximum
166 width : int
Greg Wardeba20e62004-07-31 16:15:44 +0000167 total number of columns for output (pass None to constructor for
168 this value to be taken from the $COLUMNS environment variable)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000169 level : int
170 current indentation level
171 current_indent : int
172 current indentation level (in columns)
173 help_width : int
174 number of columns available for option help text (calculated)
Greg Wardeba20e62004-07-31 16:15:44 +0000175 default_tag : str
176 text to replace with each option's default value, "%default"
177 by default. Set to false value to disable default value expansion.
178 option_strings : { Option : str }
179 maps Option instances to the snippet of help text explaining
180 the syntax of that option, e.g. "-h, --help" or
181 "-fFILE, --file=FILE"
182 _short_opt_fmt : str
183 format string controlling how short options with values are
184 printed in help text. Must be either "%s%s" ("-fFILE") or
185 "%s %s" ("-f FILE"), because those are the two syntaxes that
186 Optik supports.
187 _long_opt_fmt : str
188 similar but for long options; must be either "%s %s" ("--file FILE")
189 or "%s=%s" ("--file=FILE").
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000190 """
191
Greg Wardeba20e62004-07-31 16:15:44 +0000192 NO_DEFAULT_VALUE = "none"
193
194 def __init__(self,
195 indent_increment,
196 max_help_position,
197 width,
198 short_first):
199 self.parser = None
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000200 self.indent_increment = indent_increment
201 self.help_position = self.max_help_position = max_help_position
Greg Wardeba20e62004-07-31 16:15:44 +0000202 if width is None:
203 try:
204 width = int(os.environ['COLUMNS'])
205 except (KeyError, ValueError):
206 width = 80
207 width -= 2
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000208 self.width = width
209 self.current_indent = 0
210 self.level = 0
Greg Wardeba20e62004-07-31 16:15:44 +0000211 self.help_width = None # computed later
Greg Ward2492fcf2003-04-21 02:40:34 +0000212 self.short_first = short_first
Greg Wardeba20e62004-07-31 16:15:44 +0000213 self.default_tag = "%default"
214 self.option_strings = {}
215 self._short_opt_fmt = "%s %s"
216 self._long_opt_fmt = "%s=%s"
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000217
Greg Wardeba20e62004-07-31 16:15:44 +0000218 def set_parser(self, parser):
219 self.parser = parser
220
221 def set_short_opt_delimiter(self, delim):
222 if delim not in ("", " "):
223 raise ValueError(
224 "invalid metavar delimiter for short options: %r" % delim)
225 self._short_opt_fmt = "%s" + delim + "%s"
226
227 def set_long_opt_delimiter(self, delim):
228 if delim not in ("=", " "):
229 raise ValueError(
230 "invalid metavar delimiter for long options: %r" % delim)
231 self._long_opt_fmt = "%s" + delim + "%s"
232
233 def indent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000234 self.current_indent += self.indent_increment
235 self.level += 1
236
Greg Wardeba20e62004-07-31 16:15:44 +0000237 def dedent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000238 self.current_indent -= self.indent_increment
239 assert self.current_indent >= 0, "Indent decreased below 0."
240 self.level -= 1
241
Greg Wardeba20e62004-07-31 16:15:44 +0000242 def format_usage(self, usage):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000243 raise NotImplementedError, "subclasses must implement"
244
Greg Wardeba20e62004-07-31 16:15:44 +0000245 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000246 raise NotImplementedError, "subclasses must implement"
247
Greg Wardab05edc2006-04-23 03:47:58 +0000248 def _format_text(self, text):
249 """
250 Format a paragraph of free-form text for inclusion in the
251 help output at the current indentation level.
252 """
253 text_width = self.width - self.current_indent
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000254 indent = " "*self.current_indent
Greg Wardab05edc2006-04-23 03:47:58 +0000255 return textwrap.fill(text,
256 text_width,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000257 initial_indent=indent,
Greg Wardab05edc2006-04-23 03:47:58 +0000258 subsequent_indent=indent)
Tim Peters4f96f1f2006-06-11 19:42:51 +0000259
Greg Wardab05edc2006-04-23 03:47:58 +0000260 def format_description(self, description):
261 if description:
262 return self._format_text(description) + "\n"
263 else:
264 return ""
265
266 def format_epilog(self, epilog):
267 if epilog:
268 return "\n" + self._format_text(epilog) + "\n"
269 else:
270 return ""
271
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000272
Greg Wardeba20e62004-07-31 16:15:44 +0000273 def expand_default(self, option):
274 if self.parser is None or not self.default_tag:
275 return option.help
276
277 default_value = self.parser.defaults.get(option.dest)
278 if default_value is NO_DEFAULT or default_value is None:
279 default_value = self.NO_DEFAULT_VALUE
280
281 return option.help.replace(self.default_tag, str(default_value))
282
283 def format_option(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000284 # The help for each option consists of two parts:
285 # * the opt strings and metavars
286 # eg. ("-x", or "-fFILENAME, --file=FILENAME")
287 # * the user-supplied help string
288 # eg. ("turn on expert mode", "read data from FILENAME")
289 #
290 # If possible, we write both of these on the same line:
291 # -x turn on expert mode
292 #
293 # But if the opt string list is too long, we put the help
294 # string on a second line, indented to the same column it would
295 # start in if it fit on the first line.
296 # -fFILENAME, --file=FILENAME
297 # read data from FILENAME
298 result = []
Greg Wardeba20e62004-07-31 16:15:44 +0000299 opts = self.option_strings[option]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000300 opt_width = self.help_position - self.current_indent - 2
301 if len(opts) > opt_width:
302 opts = "%*s%s\n" % (self.current_indent, "", opts)
303 indent_first = self.help_position
304 else: # start help on same line as opts
305 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
306 indent_first = 0
307 result.append(opts)
308 if option.help:
Greg Wardeba20e62004-07-31 16:15:44 +0000309 help_text = self.expand_default(option)
310 help_lines = textwrap.wrap(help_text, self.help_width)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000311 result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
312 result.extend(["%*s%s\n" % (self.help_position, "", line)
313 for line in help_lines[1:]])
314 elif opts[-1] != "\n":
315 result.append("\n")
316 return "".join(result)
317
Greg Wardeba20e62004-07-31 16:15:44 +0000318 def store_option_strings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000319 self.indent()
320 max_len = 0
321 for opt in parser.option_list:
322 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000323 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000324 max_len = max(max_len, len(strings) + self.current_indent)
325 self.indent()
326 for group in parser.option_groups:
327 for opt in group.option_list:
328 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000329 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000330 max_len = max(max_len, len(strings) + self.current_indent)
331 self.dedent()
332 self.dedent()
333 self.help_position = min(max_len + 2, self.max_help_position)
Greg Wardeba20e62004-07-31 16:15:44 +0000334 self.help_width = self.width - self.help_position
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000335
Greg Wardeba20e62004-07-31 16:15:44 +0000336 def format_option_strings(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000337 """Return a comma-separated list of option strings & metavariables."""
Greg Ward2492fcf2003-04-21 02:40:34 +0000338 if option.takes_value():
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000339 metavar = option.metavar or option.dest.upper()
Greg Wardeba20e62004-07-31 16:15:44 +0000340 short_opts = [self._short_opt_fmt % (sopt, metavar)
341 for sopt in option._short_opts]
342 long_opts = [self._long_opt_fmt % (lopt, metavar)
343 for lopt in option._long_opts]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000344 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000345 short_opts = option._short_opts
346 long_opts = option._long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000347
Greg Ward2492fcf2003-04-21 02:40:34 +0000348 if self.short_first:
349 opts = short_opts + long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000350 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000351 opts = long_opts + short_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000352
Greg Ward2492fcf2003-04-21 02:40:34 +0000353 return ", ".join(opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000354
355class IndentedHelpFormatter (HelpFormatter):
356 """Format help with indented section bodies.
357 """
358
Greg Wardeba20e62004-07-31 16:15:44 +0000359 def __init__(self,
360 indent_increment=2,
361 max_help_position=24,
362 width=None,
363 short_first=1):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000364 HelpFormatter.__init__(
365 self, indent_increment, max_help_position, width, short_first)
366
Greg Wardeba20e62004-07-31 16:15:44 +0000367 def format_usage(self, usage):
Greg Wardab05edc2006-04-23 03:47:58 +0000368 return _("Usage: %s\n") % usage
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000369
Greg Wardeba20e62004-07-31 16:15:44 +0000370 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000371 return "%*s%s:\n" % (self.current_indent, "", heading)
372
373
374class TitledHelpFormatter (HelpFormatter):
375 """Format help with underlined section headers.
376 """
377
Greg Wardeba20e62004-07-31 16:15:44 +0000378 def __init__(self,
379 indent_increment=0,
380 max_help_position=24,
381 width=None,
382 short_first=0):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000383 HelpFormatter.__init__ (
384 self, indent_increment, max_help_position, width, short_first)
385
Greg Wardeba20e62004-07-31 16:15:44 +0000386 def format_usage(self, usage):
387 return "%s %s\n" % (self.format_heading(_("Usage")), usage)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000388
Greg Wardeba20e62004-07-31 16:15:44 +0000389 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000390 return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading))
Greg Ward2492fcf2003-04-21 02:40:34 +0000391
392
Greg Wardab05edc2006-04-23 03:47:58 +0000393def _parse_num(val, type):
394 if val[:2].lower() == "0x": # hexadecimal
395 radix = 16
396 elif val[:2].lower() == "0b": # binary
397 radix = 2
398 val = val[2:] or "0" # have to remove "0b" prefix
399 elif val[:1] == "0": # octal
400 radix = 8
401 else: # decimal
402 radix = 10
403
404 return type(val, radix)
405
406def _parse_int(val):
407 return _parse_num(val, int)
408
409def _parse_long(val):
410 return _parse_num(val, long)
411
412_builtin_cvt = { "int" : (_parse_int, _("integer")),
413 "long" : (_parse_long, _("long integer")),
Greg Wardeba20e62004-07-31 16:15:44 +0000414 "float" : (float, _("floating-point")),
415 "complex" : (complex, _("complex")) }
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000416
Greg Wardeba20e62004-07-31 16:15:44 +0000417def check_builtin(option, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000418 (cvt, what) = _builtin_cvt[option.type]
419 try:
420 return cvt(value)
421 except ValueError:
422 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000423 _("option %s: invalid %s value: %r") % (opt, what, value))
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000424
425def check_choice(option, opt, value):
426 if value in option.choices:
427 return value
428 else:
429 choices = ", ".join(map(repr, option.choices))
430 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000431 _("option %s: invalid choice: %r (choose from %s)")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000432 % (opt, value, choices))
433
434# Not supplying a default is different from a default of None,
435# so we need an explicit "not supplied" value.
Greg Wardeba20e62004-07-31 16:15:44 +0000436NO_DEFAULT = ("NO", "DEFAULT")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000437
438
439class Option:
440 """
441 Instance attributes:
442 _short_opts : [string]
443 _long_opts : [string]
444
445 action : string
446 type : string
447 dest : string
448 default : any
449 nargs : int
450 const : any
451 choices : [string]
452 callback : function
453 callback_args : (any*)
454 callback_kwargs : { string : any }
455 help : string
456 metavar : string
457 """
458
459 # The list of instance attributes that may be set through
460 # keyword args to the constructor.
461 ATTRS = ['action',
462 'type',
463 'dest',
464 'default',
465 'nargs',
466 'const',
467 'choices',
468 'callback',
469 'callback_args',
470 'callback_kwargs',
471 'help',
472 'metavar']
473
474 # The set of actions allowed by option parsers. Explicitly listed
475 # here so the constructor can validate its arguments.
476 ACTIONS = ("store",
477 "store_const",
478 "store_true",
479 "store_false",
480 "append",
Greg Wardab05edc2006-04-23 03:47:58 +0000481 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000482 "count",
483 "callback",
484 "help",
485 "version")
486
487 # The set of actions that involve storing a value somewhere;
488 # also listed just for constructor argument validation. (If
489 # the action is one of these, there must be a destination.)
490 STORE_ACTIONS = ("store",
491 "store_const",
492 "store_true",
493 "store_false",
494 "append",
Greg Wardab05edc2006-04-23 03:47:58 +0000495 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000496 "count")
497
498 # The set of actions for which it makes sense to supply a value
Greg Ward48aa84b2004-10-27 02:20:04 +0000499 # type, ie. which may consume an argument from the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000500 TYPED_ACTIONS = ("store",
501 "append",
502 "callback")
503
Greg Ward48aa84b2004-10-27 02:20:04 +0000504 # The set of actions which *require* a value type, ie. that
505 # always consume an argument from the command line.
506 ALWAYS_TYPED_ACTIONS = ("store",
507 "append")
508
Greg Wardab05edc2006-04-23 03:47:58 +0000509 # The set of actions which take a 'const' attribute.
510 CONST_ACTIONS = ("store_const",
511 "append_const")
512
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000513 # The set of known types for option parsers. Again, listed here for
514 # constructor argument validation.
515 TYPES = ("string", "int", "long", "float", "complex", "choice")
516
517 # Dictionary of argument checking functions, which convert and
518 # validate option arguments according to the option type.
519 #
520 # Signature of checking functions is:
521 # check(option : Option, opt : string, value : string) -> any
522 # where
523 # option is the Option instance calling the checker
524 # opt is the actual option seen on the command-line
525 # (eg. "-a", "--file")
526 # value is the option argument seen on the command-line
527 #
528 # The return value should be in the appropriate Python type
529 # for option.type -- eg. an integer if option.type == "int".
530 #
531 # If no checker is defined for a type, arguments will be
532 # unchecked and remain strings.
533 TYPE_CHECKER = { "int" : check_builtin,
534 "long" : check_builtin,
535 "float" : check_builtin,
Greg Wardeba20e62004-07-31 16:15:44 +0000536 "complex": check_builtin,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000537 "choice" : check_choice,
538 }
539
540
541 # CHECK_METHODS is a list of unbound method objects; they are called
542 # by the constructor, in order, after all attributes are
543 # initialized. The list is created and filled in later, after all
544 # the methods are actually defined. (I just put it here because I
545 # like to define and document all class attributes in the same
546 # place.) Subclasses that add another _check_*() method should
547 # define their own CHECK_METHODS list that adds their check method
548 # to those from this class.
549 CHECK_METHODS = None
550
551
552 # -- Constructor/initialization methods ----------------------------
553
Greg Wardeba20e62004-07-31 16:15:44 +0000554 def __init__(self, *opts, **attrs):
Greg Ward2492fcf2003-04-21 02:40:34 +0000555 # Set _short_opts, _long_opts attrs from 'opts' tuple.
556 # Have to be set now, in case no option strings are supplied.
557 self._short_opts = []
558 self._long_opts = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000559 opts = self._check_opt_strings(opts)
560 self._set_opt_strings(opts)
561
562 # Set all other attrs (action, type, etc.) from 'attrs' dict
563 self._set_attrs(attrs)
564
565 # Check all the attributes we just set. There are lots of
566 # complicated interdependencies, but luckily they can be farmed
567 # out to the _check_*() methods listed in CHECK_METHODS -- which
568 # could be handy for subclasses! The one thing these all share
569 # is that they raise OptionError if they discover a problem.
570 for checker in self.CHECK_METHODS:
571 checker(self)
572
Greg Wardeba20e62004-07-31 16:15:44 +0000573 def _check_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000574 # Filter out None because early versions of Optik had exactly
575 # one short option and one long option, either of which
576 # could be None.
577 opts = filter(None, opts)
578 if not opts:
Greg Ward2492fcf2003-04-21 02:40:34 +0000579 raise TypeError("at least one option string must be supplied")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000580 return opts
581
Greg Wardeba20e62004-07-31 16:15:44 +0000582 def _set_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000583 for opt in opts:
584 if len(opt) < 2:
585 raise OptionError(
586 "invalid option string %r: "
587 "must be at least two characters long" % opt, self)
588 elif len(opt) == 2:
589 if not (opt[0] == "-" and opt[1] != "-"):
590 raise OptionError(
591 "invalid short option string %r: "
592 "must be of the form -x, (x any non-dash char)" % opt,
593 self)
594 self._short_opts.append(opt)
595 else:
596 if not (opt[0:2] == "--" and opt[2] != "-"):
597 raise OptionError(
598 "invalid long option string %r: "
599 "must start with --, followed by non-dash" % opt,
600 self)
601 self._long_opts.append(opt)
602
Greg Wardeba20e62004-07-31 16:15:44 +0000603 def _set_attrs(self, attrs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000604 for attr in self.ATTRS:
605 if attrs.has_key(attr):
606 setattr(self, attr, attrs[attr])
607 del attrs[attr]
608 else:
609 if attr == 'default':
610 setattr(self, attr, NO_DEFAULT)
611 else:
612 setattr(self, attr, None)
613 if attrs:
Armin Rigoa3f09272006-05-28 19:13:17 +0000614 attrs = attrs.keys()
615 attrs.sort()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000616 raise OptionError(
Armin Rigoa3f09272006-05-28 19:13:17 +0000617 "invalid keyword arguments: %s" % ", ".join(attrs),
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000618 self)
619
620
621 # -- Constructor validation methods --------------------------------
622
Greg Wardeba20e62004-07-31 16:15:44 +0000623 def _check_action(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000624 if self.action is None:
625 self.action = "store"
626 elif self.action not in self.ACTIONS:
627 raise OptionError("invalid action: %r" % self.action, self)
628
Greg Wardeba20e62004-07-31 16:15:44 +0000629 def _check_type(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000630 if self.type is None:
Greg Ward48aa84b2004-10-27 02:20:04 +0000631 if self.action in self.ALWAYS_TYPED_ACTIONS:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000632 if self.choices is not None:
633 # The "choices" attribute implies "choice" type.
634 self.type = "choice"
635 else:
636 # No type given? "string" is the most sensible default.
637 self.type = "string"
638 else:
Greg Wardab05edc2006-04-23 03:47:58 +0000639 # Allow type objects or builtin type conversion functions
640 # (int, str, etc.) as an alternative to their names. (The
641 # complicated check of __builtin__ is only necessary for
642 # Python 2.1 and earlier, and is short-circuited by the
643 # first check on modern Pythons.)
644 import __builtin__
645 if ( type(self.type) is types.TypeType or
646 (hasattr(self.type, "__name__") and
647 getattr(__builtin__, self.type.__name__, None) is self.type) ):
Greg Wardeba20e62004-07-31 16:15:44 +0000648 self.type = self.type.__name__
Greg Wardab05edc2006-04-23 03:47:58 +0000649
Greg Wardeba20e62004-07-31 16:15:44 +0000650 if self.type == "str":
651 self.type = "string"
652
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000653 if self.type not in self.TYPES:
654 raise OptionError("invalid option type: %r" % self.type, self)
655 if self.action not in self.TYPED_ACTIONS:
656 raise OptionError(
657 "must not supply a type for action %r" % self.action, self)
658
659 def _check_choice(self):
660 if self.type == "choice":
661 if self.choices is None:
662 raise OptionError(
663 "must supply a list of choices for type 'choice'", self)
Greg Wardab05edc2006-04-23 03:47:58 +0000664 elif type(self.choices) not in (types.TupleType, types.ListType):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000665 raise OptionError(
666 "choices must be a list of strings ('%s' supplied)"
667 % str(type(self.choices)).split("'")[1], self)
668 elif self.choices is not None:
669 raise OptionError(
670 "must not supply choices for type %r" % self.type, self)
671
Greg Wardeba20e62004-07-31 16:15:44 +0000672 def _check_dest(self):
673 # No destination given, and we need one for this action. The
674 # self.type check is for callbacks that take a value.
675 takes_value = (self.action in self.STORE_ACTIONS or
676 self.type is not None)
677 if self.dest is None and takes_value:
678
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000679 # Glean a destination from the first long option string,
680 # or from the first short option string if no long options.
681 if self._long_opts:
682 # eg. "--foo-bar" -> "foo_bar"
683 self.dest = self._long_opts[0][2:].replace('-', '_')
684 else:
685 self.dest = self._short_opts[0][1]
686
Greg Wardeba20e62004-07-31 16:15:44 +0000687 def _check_const(self):
Greg Wardab05edc2006-04-23 03:47:58 +0000688 if self.action not in self.CONST_ACTIONS and self.const is not None:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000689 raise OptionError(
690 "'const' must not be supplied for action %r" % self.action,
691 self)
692
Greg Wardeba20e62004-07-31 16:15:44 +0000693 def _check_nargs(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000694 if self.action in self.TYPED_ACTIONS:
695 if self.nargs is None:
696 self.nargs = 1
697 elif self.nargs is not None:
698 raise OptionError(
699 "'nargs' must not be supplied for action %r" % self.action,
700 self)
701
Greg Wardeba20e62004-07-31 16:15:44 +0000702 def _check_callback(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000703 if self.action == "callback":
704 if not callable(self.callback):
705 raise OptionError(
706 "callback not callable: %r" % self.callback, self)
707 if (self.callback_args is not None and
Greg Wardab05edc2006-04-23 03:47:58 +0000708 type(self.callback_args) is not types.TupleType):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000709 raise OptionError(
710 "callback_args, if supplied, must be a tuple: not %r"
711 % self.callback_args, self)
712 if (self.callback_kwargs is not None and
Greg Wardab05edc2006-04-23 03:47:58 +0000713 type(self.callback_kwargs) is not types.DictType):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000714 raise OptionError(
715 "callback_kwargs, if supplied, must be a dict: not %r"
716 % self.callback_kwargs, self)
717 else:
718 if self.callback is not None:
719 raise OptionError(
720 "callback supplied (%r) for non-callback option"
721 % self.callback, self)
722 if self.callback_args is not None:
723 raise OptionError(
724 "callback_args supplied for non-callback option", self)
725 if self.callback_kwargs is not None:
726 raise OptionError(
727 "callback_kwargs supplied for non-callback option", self)
728
729
730 CHECK_METHODS = [_check_action,
731 _check_type,
732 _check_choice,
733 _check_dest,
734 _check_const,
735 _check_nargs,
736 _check_callback]
737
738
739 # -- Miscellaneous methods -----------------------------------------
740
Greg Wardeba20e62004-07-31 16:15:44 +0000741 def __str__(self):
Greg Ward2492fcf2003-04-21 02:40:34 +0000742 return "/".join(self._short_opts + self._long_opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000743
Greg Wardeba20e62004-07-31 16:15:44 +0000744 __repr__ = _repr
745
746 def takes_value(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000747 return self.type is not None
748
Greg Wardeba20e62004-07-31 16:15:44 +0000749 def get_opt_string(self):
750 if self._long_opts:
751 return self._long_opts[0]
752 else:
753 return self._short_opts[0]
754
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000755
756 # -- Processing methods --------------------------------------------
757
Greg Wardeba20e62004-07-31 16:15:44 +0000758 def check_value(self, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000759 checker = self.TYPE_CHECKER.get(self.type)
760 if checker is None:
761 return value
762 else:
763 return checker(self, opt, value)
764
Greg Wardeba20e62004-07-31 16:15:44 +0000765 def convert_value(self, opt, value):
766 if value is not None:
767 if self.nargs == 1:
768 return self.check_value(opt, value)
769 else:
770 return tuple([self.check_value(opt, v) for v in value])
771
772 def process(self, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000773
774 # First, convert the value(s) to the right type. Howl if any
775 # value(s) are bogus.
Greg Wardeba20e62004-07-31 16:15:44 +0000776 value = self.convert_value(opt, value)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000777
778 # And then take whatever action is expected of us.
779 # This is a separate method to make life easier for
780 # subclasses to add new actions.
781 return self.take_action(
782 self.action, self.dest, opt, value, values, parser)
783
Greg Wardeba20e62004-07-31 16:15:44 +0000784 def take_action(self, action, dest, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000785 if action == "store":
786 setattr(values, dest, value)
787 elif action == "store_const":
788 setattr(values, dest, self.const)
789 elif action == "store_true":
Greg Ward2492fcf2003-04-21 02:40:34 +0000790 setattr(values, dest, True)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000791 elif action == "store_false":
Greg Ward2492fcf2003-04-21 02:40:34 +0000792 setattr(values, dest, False)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000793 elif action == "append":
794 values.ensure_value(dest, []).append(value)
Greg Wardab05edc2006-04-23 03:47:58 +0000795 elif action == "append_const":
796 values.ensure_value(dest, []).append(self.const)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000797 elif action == "count":
798 setattr(values, dest, values.ensure_value(dest, 0) + 1)
799 elif action == "callback":
800 args = self.callback_args or ()
801 kwargs = self.callback_kwargs or {}
802 self.callback(self, opt, value, parser, *args, **kwargs)
803 elif action == "help":
804 parser.print_help()
Greg Ward48aa84b2004-10-27 02:20:04 +0000805 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000806 elif action == "version":
807 parser.print_version()
Greg Ward48aa84b2004-10-27 02:20:04 +0000808 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000809 else:
810 raise RuntimeError, "unknown action %r" % self.action
811
812 return 1
813
814# class Option
Greg Ward2492fcf2003-04-21 02:40:34 +0000815
816
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000817SUPPRESS_HELP = "SUPPRESS"+"HELP"
818SUPPRESS_USAGE = "SUPPRESS"+"USAGE"
819
Greg Wardeba20e62004-07-31 16:15:44 +0000820# For compatibility with Python 2.2
821try:
822 True, False
823except NameError:
824 (True, False) = (1, 0)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000825
Christian Heimes0b11c5f2008-01-27 19:01:59 +0000826try:
827 basestring
828except NameError:
829 def isbasestring(x):
830 return isinstance(x, (types.StringType, types.UnicodeType))
831else:
832 def isbasestring(x):
Christian Heimesd2f4cb82008-01-23 14:20:41 +0000833 return isinstance(x, basestring)
Christian Heimesd2f4cb82008-01-23 14:20:41 +0000834
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000835
836class Values:
837
Greg Wardeba20e62004-07-31 16:15:44 +0000838 def __init__(self, defaults=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000839 if defaults:
840 for (attr, val) in defaults.items():
841 setattr(self, attr, val)
842
Greg Wardeba20e62004-07-31 16:15:44 +0000843 def __str__(self):
844 return str(self.__dict__)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000845
Greg Wardeba20e62004-07-31 16:15:44 +0000846 __repr__ = _repr
847
Greg Wardab05edc2006-04-23 03:47:58 +0000848 def __cmp__(self, other):
Greg Wardeba20e62004-07-31 16:15:44 +0000849 if isinstance(other, Values):
Greg Wardab05edc2006-04-23 03:47:58 +0000850 return cmp(self.__dict__, other.__dict__)
851 elif isinstance(other, types.DictType):
852 return cmp(self.__dict__, other)
Greg Wardeba20e62004-07-31 16:15:44 +0000853 else:
Greg Wardab05edc2006-04-23 03:47:58 +0000854 return -1
Greg Wardeba20e62004-07-31 16:15:44 +0000855
856 def _update_careful(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000857 """
858 Update the option values from an arbitrary dictionary, but only
859 use keys from dict that already have a corresponding attribute
860 in self. Any keys in dict without a corresponding attribute
861 are silently ignored.
862 """
863 for attr in dir(self):
864 if dict.has_key(attr):
865 dval = dict[attr]
866 if dval is not None:
867 setattr(self, attr, dval)
868
Greg Wardeba20e62004-07-31 16:15:44 +0000869 def _update_loose(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000870 """
871 Update the option values from an arbitrary dictionary,
872 using all keys from the dictionary regardless of whether
873 they have a corresponding attribute in self or not.
874 """
875 self.__dict__.update(dict)
876
Greg Wardeba20e62004-07-31 16:15:44 +0000877 def _update(self, dict, mode):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000878 if mode == "careful":
879 self._update_careful(dict)
880 elif mode == "loose":
881 self._update_loose(dict)
882 else:
883 raise ValueError, "invalid update mode: %r" % mode
884
Greg Wardeba20e62004-07-31 16:15:44 +0000885 def read_module(self, modname, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000886 __import__(modname)
887 mod = sys.modules[modname]
888 self._update(vars(mod), mode)
889
Greg Wardeba20e62004-07-31 16:15:44 +0000890 def read_file(self, filename, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000891 vars = {}
892 execfile(filename, vars)
893 self._update(vars, mode)
894
Greg Wardeba20e62004-07-31 16:15:44 +0000895 def ensure_value(self, attr, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000896 if not hasattr(self, attr) or getattr(self, attr) is None:
897 setattr(self, attr, value)
898 return getattr(self, attr)
899
900
901class OptionContainer:
902
903 """
904 Abstract base class.
905
906 Class attributes:
907 standard_option_list : [Option]
908 list of standard options that will be accepted by all instances
909 of this parser class (intended to be overridden by subclasses).
910
911 Instance attributes:
912 option_list : [Option]
913 the list of Option objects contained by this OptionContainer
914 _short_opt : { string : Option }
915 dictionary mapping short option strings, eg. "-f" or "-X",
916 to the Option instances that implement them. If an Option
917 has multiple short option strings, it will appears in this
918 dictionary multiple times. [1]
919 _long_opt : { string : Option }
920 dictionary mapping long option strings, eg. "--file" or
921 "--exclude", to the Option instances that implement them.
922 Again, a given Option can occur multiple times in this
923 dictionary. [1]
924 defaults : { string : any }
925 dictionary mapping option destination names to default
926 values for each destination [1]
927
928 [1] These mappings are common to (shared by) all components of the
929 controlling OptionParser, where they are initially created.
930
931 """
932
Greg Wardeba20e62004-07-31 16:15:44 +0000933 def __init__(self, option_class, conflict_handler, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000934 # Initialize the option list and related data structures.
935 # This method must be provided by subclasses, and it must
936 # initialize at least the following instance attributes:
937 # option_list, _short_opt, _long_opt, defaults.
938 self._create_option_list()
939
940 self.option_class = option_class
941 self.set_conflict_handler(conflict_handler)
942 self.set_description(description)
943
Greg Wardeba20e62004-07-31 16:15:44 +0000944 def _create_option_mappings(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000945 # For use by OptionParser constructor -- create the master
946 # option mappings used by this OptionParser and all
947 # OptionGroups that it owns.
948 self._short_opt = {} # single letter -> Option instance
949 self._long_opt = {} # long option -> Option instance
950 self.defaults = {} # maps option dest -> default value
951
952
Greg Wardeba20e62004-07-31 16:15:44 +0000953 def _share_option_mappings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000954 # For use by OptionGroup constructor -- use shared option
955 # mappings from the OptionParser that owns this OptionGroup.
956 self._short_opt = parser._short_opt
957 self._long_opt = parser._long_opt
958 self.defaults = parser.defaults
959
Greg Wardeba20e62004-07-31 16:15:44 +0000960 def set_conflict_handler(self, handler):
Greg Ward48aa84b2004-10-27 02:20:04 +0000961 if handler not in ("error", "resolve"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000962 raise ValueError, "invalid conflict_resolution value %r" % handler
963 self.conflict_handler = handler
964
Greg Wardeba20e62004-07-31 16:15:44 +0000965 def set_description(self, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000966 self.description = description
967
Greg Wardeba20e62004-07-31 16:15:44 +0000968 def get_description(self):
969 return self.description
970
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000971
Greg Wardab05edc2006-04-23 03:47:58 +0000972 def destroy(self):
973 """see OptionParser.destroy()."""
974 del self._short_opt
975 del self._long_opt
976 del self.defaults
977
978
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000979 # -- Option-adding methods -----------------------------------------
980
Greg Wardeba20e62004-07-31 16:15:44 +0000981 def _check_conflict(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000982 conflict_opts = []
983 for opt in option._short_opts:
984 if self._short_opt.has_key(opt):
985 conflict_opts.append((opt, self._short_opt[opt]))
986 for opt in option._long_opts:
987 if self._long_opt.has_key(opt):
988 conflict_opts.append((opt, self._long_opt[opt]))
989
990 if conflict_opts:
991 handler = self.conflict_handler
Greg Ward48aa84b2004-10-27 02:20:04 +0000992 if handler == "error":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000993 raise OptionConflictError(
994 "conflicting option string(s): %s"
995 % ", ".join([co[0] for co in conflict_opts]),
996 option)
Greg Ward48aa84b2004-10-27 02:20:04 +0000997 elif handler == "resolve":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000998 for (opt, c_option) in conflict_opts:
999 if opt.startswith("--"):
1000 c_option._long_opts.remove(opt)
1001 del self._long_opt[opt]
1002 else:
1003 c_option._short_opts.remove(opt)
1004 del self._short_opt[opt]
1005 if not (c_option._short_opts or c_option._long_opts):
1006 c_option.container.option_list.remove(c_option)
1007
Greg Wardeba20e62004-07-31 16:15:44 +00001008 def add_option(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001009 """add_option(Option)
1010 add_option(opt_str, ..., kwarg=val, ...)
1011 """
Greg Wardab05edc2006-04-23 03:47:58 +00001012 if type(args[0]) is types.StringType:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001013 option = self.option_class(*args, **kwargs)
1014 elif len(args) == 1 and not kwargs:
1015 option = args[0]
1016 if not isinstance(option, Option):
1017 raise TypeError, "not an Option instance: %r" % option
1018 else:
1019 raise TypeError, "invalid arguments"
1020
1021 self._check_conflict(option)
1022
1023 self.option_list.append(option)
1024 option.container = self
1025 for opt in option._short_opts:
1026 self._short_opt[opt] = option
1027 for opt in option._long_opts:
1028 self._long_opt[opt] = option
1029
1030 if option.dest is not None: # option has a dest, we need a default
1031 if option.default is not NO_DEFAULT:
1032 self.defaults[option.dest] = option.default
1033 elif not self.defaults.has_key(option.dest):
1034 self.defaults[option.dest] = None
1035
1036 return option
1037
Greg Wardeba20e62004-07-31 16:15:44 +00001038 def add_options(self, option_list):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001039 for option in option_list:
1040 self.add_option(option)
1041
1042 # -- Option query/removal methods ----------------------------------
1043
Greg Wardeba20e62004-07-31 16:15:44 +00001044 def get_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001045 return (self._short_opt.get(opt_str) or
1046 self._long_opt.get(opt_str))
1047
Greg Wardeba20e62004-07-31 16:15:44 +00001048 def has_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001049 return (self._short_opt.has_key(opt_str) or
1050 self._long_opt.has_key(opt_str))
1051
Greg Wardeba20e62004-07-31 16:15:44 +00001052 def remove_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001053 option = self._short_opt.get(opt_str)
1054 if option is None:
1055 option = self._long_opt.get(opt_str)
1056 if option is None:
1057 raise ValueError("no such option %r" % opt_str)
1058
1059 for opt in option._short_opts:
1060 del self._short_opt[opt]
1061 for opt in option._long_opts:
1062 del self._long_opt[opt]
1063 option.container.option_list.remove(option)
1064
1065
1066 # -- Help-formatting methods ---------------------------------------
1067
Greg Wardeba20e62004-07-31 16:15:44 +00001068 def format_option_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001069 if not self.option_list:
1070 return ""
1071 result = []
1072 for option in self.option_list:
1073 if not option.help is SUPPRESS_HELP:
1074 result.append(formatter.format_option(option))
1075 return "".join(result)
1076
Greg Wardeba20e62004-07-31 16:15:44 +00001077 def format_description(self, formatter):
1078 return formatter.format_description(self.get_description())
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001079
Greg Wardeba20e62004-07-31 16:15:44 +00001080 def format_help(self, formatter):
1081 result = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001082 if self.description:
Greg Wardeba20e62004-07-31 16:15:44 +00001083 result.append(self.format_description(formatter))
1084 if self.option_list:
1085 result.append(self.format_option_help(formatter))
1086 return "\n".join(result)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001087
1088
1089class OptionGroup (OptionContainer):
1090
Greg Wardeba20e62004-07-31 16:15:44 +00001091 def __init__(self, parser, title, description=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001092 self.parser = parser
1093 OptionContainer.__init__(
1094 self, parser.option_class, parser.conflict_handler, description)
1095 self.title = title
1096
Greg Wardeba20e62004-07-31 16:15:44 +00001097 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001098 self.option_list = []
1099 self._share_option_mappings(self.parser)
1100
Greg Wardeba20e62004-07-31 16:15:44 +00001101 def set_title(self, title):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001102 self.title = title
1103
Greg Wardab05edc2006-04-23 03:47:58 +00001104 def destroy(self):
1105 """see OptionParser.destroy()."""
1106 OptionContainer.destroy(self)
1107 del self.option_list
1108
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001109 # -- Help-formatting methods ---------------------------------------
1110
Greg Wardeba20e62004-07-31 16:15:44 +00001111 def format_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001112 result = formatter.format_heading(self.title)
1113 formatter.indent()
1114 result += OptionContainer.format_help(self, formatter)
1115 formatter.dedent()
1116 return result
1117
1118
1119class OptionParser (OptionContainer):
1120
1121 """
1122 Class attributes:
1123 standard_option_list : [Option]
1124 list of standard options that will be accepted by all instances
1125 of this parser class (intended to be overridden by subclasses).
1126
1127 Instance attributes:
1128 usage : string
1129 a usage string for your program. Before it is displayed
1130 to the user, "%prog" will be expanded to the name of
Greg Ward2492fcf2003-04-21 02:40:34 +00001131 your program (self.prog or os.path.basename(sys.argv[0])).
1132 prog : string
1133 the name of the current program (to override
1134 os.path.basename(sys.argv[0])).
Greg Wardab05edc2006-04-23 03:47:58 +00001135 epilog : string
1136 paragraph of help text to print after option help
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001137
Greg Wardeba20e62004-07-31 16:15:44 +00001138 option_groups : [OptionGroup]
1139 list of option groups in this parser (option groups are
1140 irrelevant for parsing the command-line, but very useful
1141 for generating help)
1142
1143 allow_interspersed_args : bool = true
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001144 if true, positional arguments may be interspersed with options.
1145 Assuming -a and -b each take a single argument, the command-line
1146 -ablah foo bar -bboo baz
1147 will be interpreted the same as
1148 -ablah -bboo -- foo bar baz
1149 If this flag were false, that command line would be interpreted as
1150 -ablah -- foo bar -bboo baz
1151 -- ie. we stop processing options as soon as we see the first
1152 non-option argument. (This is the tradition followed by
1153 Python's getopt module, Perl's Getopt::Std, and other argument-
1154 parsing libraries, but it is generally annoying to users.)
1155
Greg Wardeba20e62004-07-31 16:15:44 +00001156 process_default_values : bool = true
1157 if true, option default values are processed similarly to option
1158 values from the command line: that is, they are passed to the
1159 type-checking function for the option's type (as long as the
1160 default value is a string). (This really only matters if you
1161 have defined custom types; see SF bug #955889.) Set it to false
1162 to restore the behaviour of Optik 1.4.1 and earlier.
1163
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001164 rargs : [string]
1165 the argument list currently being parsed. Only set when
1166 parse_args() is active, and continually trimmed down as
1167 we consume arguments. Mainly there for the benefit of
1168 callback options.
1169 largs : [string]
1170 the list of leftover arguments that we have skipped while
1171 parsing options. If allow_interspersed_args is false, this
1172 list is always empty.
1173 values : Values
1174 the set of option values currently being accumulated. Only
1175 set when parse_args() is active. Also mainly for callbacks.
1176
1177 Because of the 'rargs', 'largs', and 'values' attributes,
1178 OptionParser is not thread-safe. If, for some perverse reason, you
1179 need to parse command-line arguments simultaneously in different
1180 threads, use different OptionParser instances.
1181
1182 """
1183
1184 standard_option_list = []
1185
Greg Wardeba20e62004-07-31 16:15:44 +00001186 def __init__(self,
1187 usage=None,
1188 option_list=None,
1189 option_class=Option,
1190 version=None,
1191 conflict_handler="error",
1192 description=None,
1193 formatter=None,
1194 add_help_option=True,
Greg Wardab05edc2006-04-23 03:47:58 +00001195 prog=None,
1196 epilog=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001197 OptionContainer.__init__(
1198 self, option_class, conflict_handler, description)
1199 self.set_usage(usage)
Greg Ward2492fcf2003-04-21 02:40:34 +00001200 self.prog = prog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001201 self.version = version
Greg Wardeba20e62004-07-31 16:15:44 +00001202 self.allow_interspersed_args = True
1203 self.process_default_values = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001204 if formatter is None:
1205 formatter = IndentedHelpFormatter()
1206 self.formatter = formatter
Greg Wardeba20e62004-07-31 16:15:44 +00001207 self.formatter.set_parser(self)
Greg Wardab05edc2006-04-23 03:47:58 +00001208 self.epilog = epilog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001209
1210 # Populate the option list; initial sources are the
1211 # standard_option_list class attribute, the 'option_list'
Greg Wardeba20e62004-07-31 16:15:44 +00001212 # argument, and (if applicable) the _add_version_option() and
1213 # _add_help_option() methods.
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001214 self._populate_option_list(option_list,
1215 add_help=add_help_option)
1216
1217 self._init_parsing_state()
1218
Greg Wardab05edc2006-04-23 03:47:58 +00001219
1220 def destroy(self):
1221 """
1222 Declare that you are done with this OptionParser. This cleans up
1223 reference cycles so the OptionParser (and all objects referenced by
Tim Peters4f96f1f2006-06-11 19:42:51 +00001224 it) can be garbage-collected promptly. After calling destroy(), the
Greg Wardab05edc2006-04-23 03:47:58 +00001225 OptionParser is unusable.
1226 """
1227 OptionContainer.destroy(self)
1228 for group in self.option_groups:
1229 group.destroy()
1230 del self.option_list
1231 del self.option_groups
1232 del self.formatter
1233
1234
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001235 # -- Private methods -----------------------------------------------
1236 # (used by our or OptionContainer's constructor)
1237
Greg Wardeba20e62004-07-31 16:15:44 +00001238 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001239 self.option_list = []
1240 self.option_groups = []
1241 self._create_option_mappings()
1242
Greg Wardeba20e62004-07-31 16:15:44 +00001243 def _add_help_option(self):
1244 self.add_option("-h", "--help",
1245 action="help",
1246 help=_("show this help message and exit"))
1247
1248 def _add_version_option(self):
1249 self.add_option("--version",
1250 action="version",
1251 help=_("show program's version number and exit"))
1252
1253 def _populate_option_list(self, option_list, add_help=True):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001254 if self.standard_option_list:
1255 self.add_options(self.standard_option_list)
1256 if option_list:
1257 self.add_options(option_list)
1258 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001259 self._add_version_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001260 if add_help:
Greg Wardeba20e62004-07-31 16:15:44 +00001261 self._add_help_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001262
Greg Wardeba20e62004-07-31 16:15:44 +00001263 def _init_parsing_state(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001264 # These are set in parse_args() for the convenience of callbacks.
1265 self.rargs = None
1266 self.largs = None
1267 self.values = None
1268
1269
1270 # -- Simple modifier methods ---------------------------------------
1271
Greg Wardeba20e62004-07-31 16:15:44 +00001272 def set_usage(self, usage):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001273 if usage is None:
Greg Wardeba20e62004-07-31 16:15:44 +00001274 self.usage = _("%prog [options]")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001275 elif usage is SUPPRESS_USAGE:
1276 self.usage = None
Greg Wardeba20e62004-07-31 16:15:44 +00001277 # For backwards compatibility with Optik 1.3 and earlier.
Greg Wardab05edc2006-04-23 03:47:58 +00001278 elif usage.lower().startswith("usage: "):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001279 self.usage = usage[7:]
1280 else:
1281 self.usage = usage
1282
Greg Wardeba20e62004-07-31 16:15:44 +00001283 def enable_interspersed_args(self):
1284 self.allow_interspersed_args = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001285
Greg Wardeba20e62004-07-31 16:15:44 +00001286 def disable_interspersed_args(self):
1287 self.allow_interspersed_args = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001288
Greg Wardeba20e62004-07-31 16:15:44 +00001289 def set_process_default_values(self, process):
1290 self.process_default_values = process
1291
1292 def set_default(self, dest, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001293 self.defaults[dest] = value
1294
Greg Wardeba20e62004-07-31 16:15:44 +00001295 def set_defaults(self, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001296 self.defaults.update(kwargs)
1297
Greg Wardeba20e62004-07-31 16:15:44 +00001298 def _get_all_options(self):
1299 options = self.option_list[:]
1300 for group in self.option_groups:
1301 options.extend(group.option_list)
1302 return options
1303
1304 def get_default_values(self):
1305 if not self.process_default_values:
1306 # Old, pre-Optik 1.5 behaviour.
1307 return Values(self.defaults)
1308
1309 defaults = self.defaults.copy()
1310 for option in self._get_all_options():
1311 default = defaults.get(option.dest)
Greg Wardab05edc2006-04-23 03:47:58 +00001312 if isbasestring(default):
Greg Wardeba20e62004-07-31 16:15:44 +00001313 opt_str = option.get_opt_string()
1314 defaults[option.dest] = option.check_value(opt_str, default)
1315
1316 return Values(defaults)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001317
1318
1319 # -- OptionGroup methods -------------------------------------------
1320
Greg Wardeba20e62004-07-31 16:15:44 +00001321 def add_option_group(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001322 # XXX lots of overlap with OptionContainer.add_option()
Greg Wardab05edc2006-04-23 03:47:58 +00001323 if type(args[0]) is types.StringType:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001324 group = OptionGroup(self, *args, **kwargs)
1325 elif len(args) == 1 and not kwargs:
1326 group = args[0]
1327 if not isinstance(group, OptionGroup):
1328 raise TypeError, "not an OptionGroup instance: %r" % group
1329 if group.parser is not self:
1330 raise ValueError, "invalid OptionGroup (wrong parser)"
1331 else:
1332 raise TypeError, "invalid arguments"
1333
1334 self.option_groups.append(group)
1335 return group
1336
Greg Wardeba20e62004-07-31 16:15:44 +00001337 def get_option_group(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001338 option = (self._short_opt.get(opt_str) or
1339 self._long_opt.get(opt_str))
1340 if option and option.container is not self:
1341 return option.container
1342 return None
1343
1344
1345 # -- Option-parsing methods ----------------------------------------
1346
Greg Wardeba20e62004-07-31 16:15:44 +00001347 def _get_args(self, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001348 if args is None:
1349 return sys.argv[1:]
1350 else:
1351 return args[:] # don't modify caller's list
1352
Greg Wardeba20e62004-07-31 16:15:44 +00001353 def parse_args(self, args=None, values=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001354 """
1355 parse_args(args : [string] = sys.argv[1:],
1356 values : Values = None)
1357 -> (values : Values, args : [string])
1358
1359 Parse the command-line options found in 'args' (default:
1360 sys.argv[1:]). Any errors result in a call to 'error()', which
1361 by default prints the usage message to stderr and calls
1362 sys.exit() with an error message. On success returns a pair
1363 (values, args) where 'values' is an Values instance (with all
1364 your option values) and 'args' is the list of arguments left
1365 over after parsing options.
1366 """
1367 rargs = self._get_args(args)
1368 if values is None:
1369 values = self.get_default_values()
1370
1371 # Store the halves of the argument list as attributes for the
1372 # convenience of callbacks:
1373 # rargs
1374 # the rest of the command-line (the "r" stands for
1375 # "remaining" or "right-hand")
1376 # largs
1377 # the leftover arguments -- ie. what's left after removing
1378 # options and their arguments (the "l" stands for "leftover"
1379 # or "left-hand")
1380 self.rargs = rargs
1381 self.largs = largs = []
1382 self.values = values
1383
1384 try:
1385 stop = self._process_args(largs, rargs, values)
1386 except (BadOptionError, OptionValueError), err:
Greg Wardab05edc2006-04-23 03:47:58 +00001387 self.error(str(err))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001388
1389 args = largs + rargs
1390 return self.check_values(values, args)
1391
Greg Wardeba20e62004-07-31 16:15:44 +00001392 def check_values(self, values, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001393 """
1394 check_values(values : Values, args : [string])
1395 -> (values : Values, args : [string])
1396
1397 Check that the supplied option values and leftover arguments are
1398 valid. Returns the option values and leftover arguments
1399 (possibly adjusted, possibly completely new -- whatever you
1400 like). Default implementation just returns the passed-in
1401 values; subclasses may override as desired.
1402 """
1403 return (values, args)
1404
Greg Wardeba20e62004-07-31 16:15:44 +00001405 def _process_args(self, largs, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001406 """_process_args(largs : [string],
1407 rargs : [string],
1408 values : Values)
1409
1410 Process command-line arguments and populate 'values', consuming
1411 options and arguments from 'rargs'. If 'allow_interspersed_args' is
1412 false, stop at the first non-option argument. If true, accumulate any
1413 interspersed non-option arguments in 'largs'.
1414 """
1415 while rargs:
1416 arg = rargs[0]
1417 # We handle bare "--" explicitly, and bare "-" is handled by the
1418 # standard arg handler since the short arg case ensures that the
1419 # len of the opt string is greater than 1.
1420 if arg == "--":
1421 del rargs[0]
1422 return
1423 elif arg[0:2] == "--":
1424 # process a single long option (possibly with value(s))
1425 self._process_long_opt(rargs, values)
1426 elif arg[:1] == "-" and len(arg) > 1:
1427 # process a cluster of short options (possibly with
1428 # value(s) for the last one only)
1429 self._process_short_opts(rargs, values)
1430 elif self.allow_interspersed_args:
1431 largs.append(arg)
1432 del rargs[0]
1433 else:
1434 return # stop now, leave this arg in rargs
1435
1436 # Say this is the original argument list:
1437 # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)]
1438 # ^
1439 # (we are about to process arg(i)).
1440 #
1441 # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of
1442 # [arg0, ..., arg(i-1)] (any options and their arguments will have
1443 # been removed from largs).
1444 #
1445 # The while loop will usually consume 1 or more arguments per pass.
1446 # If it consumes 1 (eg. arg is an option that takes no arguments),
1447 # then after _process_arg() is done the situation is:
1448 #
1449 # largs = subset of [arg0, ..., arg(i)]
1450 # rargs = [arg(i+1), ..., arg(N-1)]
1451 #
1452 # If allow_interspersed_args is false, largs will always be
1453 # *empty* -- still a subset of [arg0, ..., arg(i-1)], but
1454 # not a very interesting subset!
1455
Greg Wardeba20e62004-07-31 16:15:44 +00001456 def _match_long_opt(self, opt):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001457 """_match_long_opt(opt : string) -> string
1458
1459 Determine which long option string 'opt' matches, ie. which one
1460 it is an unambiguous abbrevation for. Raises BadOptionError if
1461 'opt' doesn't unambiguously match any long option string.
1462 """
1463 return _match_abbrev(opt, self._long_opt)
1464
Greg Wardeba20e62004-07-31 16:15:44 +00001465 def _process_long_opt(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001466 arg = rargs.pop(0)
1467
1468 # Value explicitly attached to arg? Pretend it's the next
1469 # argument.
1470 if "=" in arg:
1471 (opt, next_arg) = arg.split("=", 1)
1472 rargs.insert(0, next_arg)
Greg Wardeba20e62004-07-31 16:15:44 +00001473 had_explicit_value = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001474 else:
1475 opt = arg
Greg Wardeba20e62004-07-31 16:15:44 +00001476 had_explicit_value = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001477
1478 opt = self._match_long_opt(opt)
1479 option = self._long_opt[opt]
1480 if option.takes_value():
1481 nargs = option.nargs
1482 if len(rargs) < nargs:
1483 if nargs == 1:
Greg Wardeba20e62004-07-31 16:15:44 +00001484 self.error(_("%s option requires an argument") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001485 else:
Greg Wardeba20e62004-07-31 16:15:44 +00001486 self.error(_("%s option requires %d arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001487 % (opt, nargs))
1488 elif nargs == 1:
1489 value = rargs.pop(0)
1490 else:
1491 value = tuple(rargs[0:nargs])
1492 del rargs[0:nargs]
1493
1494 elif had_explicit_value:
Greg Wardeba20e62004-07-31 16:15:44 +00001495 self.error(_("%s option does not take a value") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001496
1497 else:
1498 value = None
1499
1500 option.process(opt, value, values, self)
1501
Greg Wardeba20e62004-07-31 16:15:44 +00001502 def _process_short_opts(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001503 arg = rargs.pop(0)
Greg Wardeba20e62004-07-31 16:15:44 +00001504 stop = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001505 i = 1
1506 for ch in arg[1:]:
1507 opt = "-" + ch
1508 option = self._short_opt.get(opt)
1509 i += 1 # we have consumed a character
1510
1511 if not option:
Greg Wardab05edc2006-04-23 03:47:58 +00001512 raise BadOptionError(opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001513 if option.takes_value():
1514 # Any characters left in arg? Pretend they're the
1515 # next arg, and stop consuming characters of arg.
1516 if i < len(arg):
1517 rargs.insert(0, arg[i:])
Greg Wardeba20e62004-07-31 16:15:44 +00001518 stop = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001519
1520 nargs = option.nargs
1521 if len(rargs) < nargs:
1522 if nargs == 1:
Greg Wardeba20e62004-07-31 16:15:44 +00001523 self.error(_("%s option requires an argument") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001524 else:
Greg Wardeba20e62004-07-31 16:15:44 +00001525 self.error(_("%s option requires %d arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001526 % (opt, nargs))
1527 elif nargs == 1:
1528 value = rargs.pop(0)
1529 else:
1530 value = tuple(rargs[0:nargs])
1531 del rargs[0:nargs]
1532
1533 else: # option doesn't take a value
1534 value = None
1535
1536 option.process(opt, value, values, self)
1537
1538 if stop:
1539 break
1540
1541
1542 # -- Feedback methods ----------------------------------------------
1543
Greg Wardeba20e62004-07-31 16:15:44 +00001544 def get_prog_name(self):
1545 if self.prog is None:
1546 return os.path.basename(sys.argv[0])
1547 else:
1548 return self.prog
1549
1550 def expand_prog_name(self, s):
1551 return s.replace("%prog", self.get_prog_name())
1552
1553 def get_description(self):
1554 return self.expand_prog_name(self.description)
1555
Greg Ward48aa84b2004-10-27 02:20:04 +00001556 def exit(self, status=0, msg=None):
1557 if msg:
1558 sys.stderr.write(msg)
1559 sys.exit(status)
1560
Greg Wardeba20e62004-07-31 16:15:44 +00001561 def error(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001562 """error(msg : string)
1563
1564 Print a usage message incorporating 'msg' to stderr and exit.
1565 If you override this in a subclass, it should not return -- it
1566 should either exit or raise an exception.
1567 """
1568 self.print_usage(sys.stderr)
Greg Ward48aa84b2004-10-27 02:20:04 +00001569 self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001570
Greg Wardeba20e62004-07-31 16:15:44 +00001571 def get_usage(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001572 if self.usage:
1573 return self.formatter.format_usage(
Greg Wardeba20e62004-07-31 16:15:44 +00001574 self.expand_prog_name(self.usage))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001575 else:
1576 return ""
1577
Greg Wardeba20e62004-07-31 16:15:44 +00001578 def print_usage(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001579 """print_usage(file : file = stdout)
1580
1581 Print the usage message for the current program (self.usage) to
1582 'file' (default stdout). Any occurence of the string "%prog" in
1583 self.usage is replaced with the name of the current program
1584 (basename of sys.argv[0]). Does nothing if self.usage is empty
1585 or not defined.
1586 """
1587 if self.usage:
1588 print >>file, self.get_usage()
1589
Greg Wardeba20e62004-07-31 16:15:44 +00001590 def get_version(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001591 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001592 return self.expand_prog_name(self.version)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001593 else:
1594 return ""
1595
Greg Wardeba20e62004-07-31 16:15:44 +00001596 def print_version(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001597 """print_version(file : file = stdout)
1598
1599 Print the version message for this program (self.version) to
1600 'file' (default stdout). As with print_usage(), any occurence
1601 of "%prog" in self.version is replaced by the current program's
1602 name. Does nothing if self.version is empty or undefined.
1603 """
1604 if self.version:
1605 print >>file, self.get_version()
1606
Greg Wardeba20e62004-07-31 16:15:44 +00001607 def format_option_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001608 if formatter is None:
1609 formatter = self.formatter
1610 formatter.store_option_strings(self)
1611 result = []
Greg Wardab05edc2006-04-23 03:47:58 +00001612 result.append(formatter.format_heading(_("Options")))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001613 formatter.indent()
1614 if self.option_list:
1615 result.append(OptionContainer.format_option_help(self, formatter))
1616 result.append("\n")
1617 for group in self.option_groups:
1618 result.append(group.format_help(formatter))
1619 result.append("\n")
1620 formatter.dedent()
1621 # Drop the last "\n", or the header if no options or option groups:
1622 return "".join(result[:-1])
1623
Greg Wardab05edc2006-04-23 03:47:58 +00001624 def format_epilog(self, formatter):
1625 return formatter.format_epilog(self.epilog)
1626
Greg Wardeba20e62004-07-31 16:15:44 +00001627 def format_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001628 if formatter is None:
1629 formatter = self.formatter
1630 result = []
1631 if self.usage:
1632 result.append(self.get_usage() + "\n")
1633 if self.description:
1634 result.append(self.format_description(formatter) + "\n")
1635 result.append(self.format_option_help(formatter))
Greg Wardab05edc2006-04-23 03:47:58 +00001636 result.append(self.format_epilog(formatter))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001637 return "".join(result)
1638
Greg Ward0e0c9f42006-06-11 16:24:11 +00001639 # used by test suite
1640 def _get_encoding(self, file):
Greg Ward48fae7a2006-07-23 16:05:51 +00001641 encoding = getattr(file, "encoding", None)
1642 if not encoding:
1643 encoding = sys.getdefaultencoding()
1644 return encoding
Greg Ward0e0c9f42006-06-11 16:24:11 +00001645
Greg Wardeba20e62004-07-31 16:15:44 +00001646 def print_help(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001647 """print_help(file : file = stdout)
1648
1649 Print an extended help message, listing all options and any
1650 help text provided with them, to 'file' (default stdout).
1651 """
1652 if file is None:
1653 file = sys.stdout
Greg Ward0e0c9f42006-06-11 16:24:11 +00001654 encoding = self._get_encoding(file)
1655 file.write(self.format_help().encode(encoding, "replace"))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001656
1657# class OptionParser
1658
1659
Greg Wardeba20e62004-07-31 16:15:44 +00001660def _match_abbrev(s, wordmap):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001661 """_match_abbrev(s : string, wordmap : {string : Option}) -> string
1662
1663 Return the string key in 'wordmap' for which 's' is an unambiguous
1664 abbreviation. If 's' is found to be ambiguous or doesn't match any of
1665 'words', raise BadOptionError.
1666 """
1667 # Is there an exact match?
1668 if wordmap.has_key(s):
1669 return s
1670 else:
1671 # Isolate all words with s as a prefix.
1672 possibilities = [word for word in wordmap.keys()
1673 if word.startswith(s)]
1674 # No exact match, so there had better be just one possibility.
1675 if len(possibilities) == 1:
1676 return possibilities[0]
1677 elif not possibilities:
Greg Wardab05edc2006-04-23 03:47:58 +00001678 raise BadOptionError(s)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001679 else:
1680 # More than one possible completion: ambiguous prefix.
Armin Rigoa3f09272006-05-28 19:13:17 +00001681 possibilities.sort()
Greg Wardab05edc2006-04-23 03:47:58 +00001682 raise AmbiguousOptionError(s, possibilities)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001683
1684
1685# Some day, there might be many Option classes. As of Optik 1.3, the
1686# preferred way to instantiate Options is indirectly, via make_option(),
1687# which will become a factory function when there are many Option
1688# classes.
1689make_option = Option