blob: aeb5716a8757a351c5e38cf98c9cafd796188ba6 [file] [log] [blame]
Andrew M. Kuchlingddbce9e2008-10-06 12:07:04 +00001"""A powerful, extensible, and easy-to-use option parser.
Guido van Rossumb9ba4582002-11-14 22:00:19 +00002
3By Greg Ward <gward@python.net>
4
Andrew M. Kuchlingddbce9e2008-10-06 12:07:04 +00005Originally distributed as Optik.
Greg Ward2492fcf2003-04-21 02:40:34 +00006
7For support, use the optik-users@lists.sourceforge.net mailing list
8(http://lists.sourceforge.net/lists/listinfo/optik-users).
Guido van Rossumb9ba4582002-11-14 22:00:19 +00009"""
10
Greg Ward48fae7a2006-07-23 16:05:51 +000011__version__ = "1.5.3"
Greg Ward2492fcf2003-04-21 02:40:34 +000012
Greg Ward4656ed42003-05-08 01:38:52 +000013__all__ = ['Option',
Georg Brandlc5d8c632009-03-31 19:12:17 +000014 'make_option',
Greg Ward4656ed42003-05-08 01:38:52 +000015 'SUPPRESS_HELP',
16 'SUPPRESS_USAGE',
Greg Ward4656ed42003-05-08 01:38:52 +000017 'Values',
18 'OptionContainer',
19 'OptionGroup',
20 'OptionParser',
21 'HelpFormatter',
22 'IndentedHelpFormatter',
23 'TitledHelpFormatter',
24 'OptParseError',
25 'OptionError',
26 'OptionConflictError',
27 'OptionValueError',
28 'BadOptionError']
Greg Ward2492fcf2003-04-21 02:40:34 +000029
Guido van Rossumb9ba4582002-11-14 22:00:19 +000030__copyright__ = """
Greg Wardab05edc2006-04-23 03:47:58 +000031Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved.
32Copyright (c) 2002-2006 Python Software Foundation. All rights reserved.
Guido van Rossumb9ba4582002-11-14 22:00:19 +000033
34Redistribution and use in source and binary forms, with or without
35modification, are permitted provided that the following conditions are
36met:
37
38 * Redistributions of source code must retain the above copyright
39 notice, this list of conditions and the following disclaimer.
40
41 * Redistributions in binary form must reproduce the above copyright
42 notice, this list of conditions and the following disclaimer in the
43 documentation and/or other materials provided with the distribution.
44
45 * Neither the name of the author nor the names of its
46 contributors may be used to endorse or promote products derived from
47 this software without specific prior written permission.
48
49THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
50IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
51TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
52PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
53CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
54EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
55PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
56PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
57LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
58NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60"""
61
62import sys, os
Greg Wardab05edc2006-04-23 03:47:58 +000063import types
Guido van Rossumb9ba4582002-11-14 22:00:19 +000064import textwrap
Greg Wardeba20e62004-07-31 16:15:44 +000065
66def _repr(self):
67 return "<%s at 0x%x: %s>" % (self.__class__.__name__, id(self), self)
68
69
70# This file was generated from:
Greg Ward48fae7a2006-07-23 16:05:51 +000071# Id: option_parser.py 527 2006-07-23 15:21:30Z greg
Greg Ward0e0c9f42006-06-11 16:24:11 +000072# Id: option.py 522 2006-06-11 16:22:03Z gward
Greg Ward48fae7a2006-07-23 16:05:51 +000073# Id: help.py 527 2006-07-23 15:21:30Z greg
Greg Wardab05edc2006-04-23 03:47:58 +000074# Id: errors.py 509 2006-04-20 00:58:24Z gward
75
76try:
77 from gettext import gettext
78except ImportError:
79 def gettext(message):
80 return message
81_ = gettext
82
Guido van Rossumb9ba4582002-11-14 22:00:19 +000083
Guido van Rossumb9ba4582002-11-14 22:00:19 +000084class OptParseError (Exception):
Greg Wardeba20e62004-07-31 16:15:44 +000085 def __init__(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000086 self.msg = msg
87
Greg Wardeba20e62004-07-31 16:15:44 +000088 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000089 return self.msg
90
Greg Ward2492fcf2003-04-21 02:40:34 +000091
Guido van Rossumb9ba4582002-11-14 22:00:19 +000092class OptionError (OptParseError):
93 """
94 Raised if an Option instance is created with invalid or
95 inconsistent arguments.
96 """
97
Greg Wardeba20e62004-07-31 16:15:44 +000098 def __init__(self, msg, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000099 self.msg = msg
100 self.option_id = str(option)
101
Greg Wardeba20e62004-07-31 16:15:44 +0000102 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000103 if self.option_id:
104 return "option %s: %s" % (self.option_id, self.msg)
105 else:
106 return self.msg
107
108class OptionConflictError (OptionError):
109 """
110 Raised if conflicting options are added to an OptionParser.
111 """
112
113class OptionValueError (OptParseError):
114 """
115 Raised if an invalid option value is encountered on the command
116 line.
117 """
118
119class BadOptionError (OptParseError):
120 """
Greg Wardab05edc2006-04-23 03:47:58 +0000121 Raised if an invalid option is seen on the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000122 """
Greg Wardab05edc2006-04-23 03:47:58 +0000123 def __init__(self, opt_str):
124 self.opt_str = opt_str
125
126 def __str__(self):
127 return _("no such option: %s") % self.opt_str
128
129class AmbiguousOptionError (BadOptionError):
130 """
131 Raised if an ambiguous option is seen on the command line.
132 """
133 def __init__(self, opt_str, possibilities):
134 BadOptionError.__init__(self, opt_str)
135 self.possibilities = possibilities
136
137 def __str__(self):
138 return (_("ambiguous option: %s (%s?)")
139 % (self.opt_str, ", ".join(self.possibilities)))
Greg Ward2492fcf2003-04-21 02:40:34 +0000140
141
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000142class HelpFormatter:
143
144 """
145 Abstract base class for formatting option help. OptionParser
146 instances should use one of the HelpFormatter subclasses for
147 formatting help; by default IndentedHelpFormatter is used.
148
149 Instance attributes:
Greg Wardeba20e62004-07-31 16:15:44 +0000150 parser : OptionParser
151 the controlling OptionParser instance
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000152 indent_increment : int
153 the number of columns to indent per nesting level
154 max_help_position : int
155 the maximum starting column for option help text
156 help_position : int
157 the calculated starting column for option help text;
158 initially the same as the maximum
159 width : int
Greg Wardeba20e62004-07-31 16:15:44 +0000160 total number of columns for output (pass None to constructor for
161 this value to be taken from the $COLUMNS environment variable)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000162 level : int
163 current indentation level
164 current_indent : int
165 current indentation level (in columns)
166 help_width : int
167 number of columns available for option help text (calculated)
Greg Wardeba20e62004-07-31 16:15:44 +0000168 default_tag : str
169 text to replace with each option's default value, "%default"
170 by default. Set to false value to disable default value expansion.
171 option_strings : { Option : str }
172 maps Option instances to the snippet of help text explaining
173 the syntax of that option, e.g. "-h, --help" or
174 "-fFILE, --file=FILE"
175 _short_opt_fmt : str
176 format string controlling how short options with values are
177 printed in help text. Must be either "%s%s" ("-fFILE") or
178 "%s %s" ("-f FILE"), because those are the two syntaxes that
179 Optik supports.
180 _long_opt_fmt : str
181 similar but for long options; must be either "%s %s" ("--file FILE")
182 or "%s=%s" ("--file=FILE").
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000183 """
184
Greg Wardeba20e62004-07-31 16:15:44 +0000185 NO_DEFAULT_VALUE = "none"
186
187 def __init__(self,
188 indent_increment,
189 max_help_position,
190 width,
191 short_first):
192 self.parser = None
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000193 self.indent_increment = indent_increment
194 self.help_position = self.max_help_position = max_help_position
Greg Wardeba20e62004-07-31 16:15:44 +0000195 if width is None:
196 try:
197 width = int(os.environ['COLUMNS'])
198 except (KeyError, ValueError):
199 width = 80
200 width -= 2
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000201 self.width = width
202 self.current_indent = 0
203 self.level = 0
Greg Wardeba20e62004-07-31 16:15:44 +0000204 self.help_width = None # computed later
Greg Ward2492fcf2003-04-21 02:40:34 +0000205 self.short_first = short_first
Greg Wardeba20e62004-07-31 16:15:44 +0000206 self.default_tag = "%default"
207 self.option_strings = {}
208 self._short_opt_fmt = "%s %s"
209 self._long_opt_fmt = "%s=%s"
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000210
Greg Wardeba20e62004-07-31 16:15:44 +0000211 def set_parser(self, parser):
212 self.parser = parser
213
214 def set_short_opt_delimiter(self, delim):
215 if delim not in ("", " "):
216 raise ValueError(
217 "invalid metavar delimiter for short options: %r" % delim)
218 self._short_opt_fmt = "%s" + delim + "%s"
219
220 def set_long_opt_delimiter(self, delim):
221 if delim not in ("=", " "):
222 raise ValueError(
223 "invalid metavar delimiter for long options: %r" % delim)
224 self._long_opt_fmt = "%s" + delim + "%s"
225
226 def indent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000227 self.current_indent += self.indent_increment
228 self.level += 1
229
Greg Wardeba20e62004-07-31 16:15:44 +0000230 def dedent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000231 self.current_indent -= self.indent_increment
232 assert self.current_indent >= 0, "Indent decreased below 0."
233 self.level -= 1
234
Greg Wardeba20e62004-07-31 16:15:44 +0000235 def format_usage(self, usage):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000236 raise NotImplementedError, "subclasses must implement"
237
Greg Wardeba20e62004-07-31 16:15:44 +0000238 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000239 raise NotImplementedError, "subclasses must implement"
240
Greg Wardab05edc2006-04-23 03:47:58 +0000241 def _format_text(self, text):
242 """
243 Format a paragraph of free-form text for inclusion in the
244 help output at the current indentation level.
245 """
246 text_width = self.width - self.current_indent
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000247 indent = " "*self.current_indent
Greg Wardab05edc2006-04-23 03:47:58 +0000248 return textwrap.fill(text,
249 text_width,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000250 initial_indent=indent,
Greg Wardab05edc2006-04-23 03:47:58 +0000251 subsequent_indent=indent)
Tim Peters4f96f1f2006-06-11 19:42:51 +0000252
Greg Wardab05edc2006-04-23 03:47:58 +0000253 def format_description(self, description):
254 if description:
255 return self._format_text(description) + "\n"
256 else:
257 return ""
258
259 def format_epilog(self, epilog):
260 if epilog:
261 return "\n" + self._format_text(epilog) + "\n"
262 else:
263 return ""
264
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000265
Greg Wardeba20e62004-07-31 16:15:44 +0000266 def expand_default(self, option):
267 if self.parser is None or not self.default_tag:
268 return option.help
269
270 default_value = self.parser.defaults.get(option.dest)
271 if default_value is NO_DEFAULT or default_value is None:
272 default_value = self.NO_DEFAULT_VALUE
273
274 return option.help.replace(self.default_tag, str(default_value))
275
276 def format_option(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000277 # The help for each option consists of two parts:
278 # * the opt strings and metavars
279 # eg. ("-x", or "-fFILENAME, --file=FILENAME")
280 # * the user-supplied help string
281 # eg. ("turn on expert mode", "read data from FILENAME")
282 #
283 # If possible, we write both of these on the same line:
284 # -x turn on expert mode
285 #
286 # But if the opt string list is too long, we put the help
287 # string on a second line, indented to the same column it would
288 # start in if it fit on the first line.
289 # -fFILENAME, --file=FILENAME
290 # read data from FILENAME
291 result = []
Greg Wardeba20e62004-07-31 16:15:44 +0000292 opts = self.option_strings[option]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000293 opt_width = self.help_position - self.current_indent - 2
294 if len(opts) > opt_width:
295 opts = "%*s%s\n" % (self.current_indent, "", opts)
296 indent_first = self.help_position
297 else: # start help on same line as opts
298 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
299 indent_first = 0
300 result.append(opts)
301 if option.help:
Greg Wardeba20e62004-07-31 16:15:44 +0000302 help_text = self.expand_default(option)
303 help_lines = textwrap.wrap(help_text, self.help_width)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000304 result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
305 result.extend(["%*s%s\n" % (self.help_position, "", line)
306 for line in help_lines[1:]])
307 elif opts[-1] != "\n":
308 result.append("\n")
309 return "".join(result)
310
Greg Wardeba20e62004-07-31 16:15:44 +0000311 def store_option_strings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000312 self.indent()
313 max_len = 0
314 for opt in parser.option_list:
315 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000316 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000317 max_len = max(max_len, len(strings) + self.current_indent)
318 self.indent()
319 for group in parser.option_groups:
320 for opt in group.option_list:
321 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000322 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000323 max_len = max(max_len, len(strings) + self.current_indent)
324 self.dedent()
325 self.dedent()
326 self.help_position = min(max_len + 2, self.max_help_position)
Greg Wardeba20e62004-07-31 16:15:44 +0000327 self.help_width = self.width - self.help_position
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000328
Greg Wardeba20e62004-07-31 16:15:44 +0000329 def format_option_strings(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000330 """Return a comma-separated list of option strings & metavariables."""
Greg Ward2492fcf2003-04-21 02:40:34 +0000331 if option.takes_value():
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000332 metavar = option.metavar or option.dest.upper()
Greg Wardeba20e62004-07-31 16:15:44 +0000333 short_opts = [self._short_opt_fmt % (sopt, metavar)
334 for sopt in option._short_opts]
335 long_opts = [self._long_opt_fmt % (lopt, metavar)
336 for lopt in option._long_opts]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000337 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000338 short_opts = option._short_opts
339 long_opts = option._long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000340
Greg Ward2492fcf2003-04-21 02:40:34 +0000341 if self.short_first:
342 opts = short_opts + long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000343 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000344 opts = long_opts + short_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000345
Greg Ward2492fcf2003-04-21 02:40:34 +0000346 return ", ".join(opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000347
348class IndentedHelpFormatter (HelpFormatter):
349 """Format help with indented section bodies.
350 """
351
Greg Wardeba20e62004-07-31 16:15:44 +0000352 def __init__(self,
353 indent_increment=2,
354 max_help_position=24,
355 width=None,
356 short_first=1):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000357 HelpFormatter.__init__(
358 self, indent_increment, max_help_position, width, short_first)
359
Greg Wardeba20e62004-07-31 16:15:44 +0000360 def format_usage(self, usage):
Greg Wardab05edc2006-04-23 03:47:58 +0000361 return _("Usage: %s\n") % usage
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000362
Greg Wardeba20e62004-07-31 16:15:44 +0000363 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000364 return "%*s%s:\n" % (self.current_indent, "", heading)
365
366
367class TitledHelpFormatter (HelpFormatter):
368 """Format help with underlined section headers.
369 """
370
Greg Wardeba20e62004-07-31 16:15:44 +0000371 def __init__(self,
372 indent_increment=0,
373 max_help_position=24,
374 width=None,
375 short_first=0):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000376 HelpFormatter.__init__ (
377 self, indent_increment, max_help_position, width, short_first)
378
Greg Wardeba20e62004-07-31 16:15:44 +0000379 def format_usage(self, usage):
380 return "%s %s\n" % (self.format_heading(_("Usage")), usage)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000381
Greg Wardeba20e62004-07-31 16:15:44 +0000382 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000383 return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading))
Greg Ward2492fcf2003-04-21 02:40:34 +0000384
385
Greg Wardab05edc2006-04-23 03:47:58 +0000386def _parse_num(val, type):
387 if val[:2].lower() == "0x": # hexadecimal
388 radix = 16
389 elif val[:2].lower() == "0b": # binary
390 radix = 2
391 val = val[2:] or "0" # have to remove "0b" prefix
392 elif val[:1] == "0": # octal
393 radix = 8
394 else: # decimal
395 radix = 10
396
397 return type(val, radix)
398
399def _parse_int(val):
400 return _parse_num(val, int)
401
402def _parse_long(val):
403 return _parse_num(val, long)
404
405_builtin_cvt = { "int" : (_parse_int, _("integer")),
406 "long" : (_parse_long, _("long integer")),
Greg Wardeba20e62004-07-31 16:15:44 +0000407 "float" : (float, _("floating-point")),
408 "complex" : (complex, _("complex")) }
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000409
Greg Wardeba20e62004-07-31 16:15:44 +0000410def check_builtin(option, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000411 (cvt, what) = _builtin_cvt[option.type]
412 try:
413 return cvt(value)
414 except ValueError:
415 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000416 _("option %s: invalid %s value: %r") % (opt, what, value))
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000417
418def check_choice(option, opt, value):
419 if value in option.choices:
420 return value
421 else:
422 choices = ", ".join(map(repr, option.choices))
423 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000424 _("option %s: invalid choice: %r (choose from %s)")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000425 % (opt, value, choices))
426
427# Not supplying a default is different from a default of None,
428# so we need an explicit "not supplied" value.
Greg Wardeba20e62004-07-31 16:15:44 +0000429NO_DEFAULT = ("NO", "DEFAULT")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000430
431
432class Option:
433 """
434 Instance attributes:
435 _short_opts : [string]
436 _long_opts : [string]
437
438 action : string
439 type : string
440 dest : string
441 default : any
442 nargs : int
443 const : any
444 choices : [string]
445 callback : function
446 callback_args : (any*)
447 callback_kwargs : { string : any }
448 help : string
449 metavar : string
450 """
451
452 # The list of instance attributes that may be set through
453 # keyword args to the constructor.
454 ATTRS = ['action',
455 'type',
456 'dest',
457 'default',
458 'nargs',
459 'const',
460 'choices',
461 'callback',
462 'callback_args',
463 'callback_kwargs',
464 'help',
465 'metavar']
466
467 # The set of actions allowed by option parsers. Explicitly listed
468 # here so the constructor can validate its arguments.
469 ACTIONS = ("store",
470 "store_const",
471 "store_true",
472 "store_false",
473 "append",
Greg Wardab05edc2006-04-23 03:47:58 +0000474 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000475 "count",
476 "callback",
477 "help",
478 "version")
479
480 # The set of actions that involve storing a value somewhere;
481 # also listed just for constructor argument validation. (If
482 # the action is one of these, there must be a destination.)
483 STORE_ACTIONS = ("store",
484 "store_const",
485 "store_true",
486 "store_false",
487 "append",
Greg Wardab05edc2006-04-23 03:47:58 +0000488 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000489 "count")
490
491 # The set of actions for which it makes sense to supply a value
Greg Ward48aa84b2004-10-27 02:20:04 +0000492 # type, ie. which may consume an argument from the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000493 TYPED_ACTIONS = ("store",
494 "append",
495 "callback")
496
Greg Ward48aa84b2004-10-27 02:20:04 +0000497 # The set of actions which *require* a value type, ie. that
498 # always consume an argument from the command line.
499 ALWAYS_TYPED_ACTIONS = ("store",
500 "append")
501
Greg Wardab05edc2006-04-23 03:47:58 +0000502 # The set of actions which take a 'const' attribute.
503 CONST_ACTIONS = ("store_const",
504 "append_const")
505
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000506 # The set of known types for option parsers. Again, listed here for
507 # constructor argument validation.
508 TYPES = ("string", "int", "long", "float", "complex", "choice")
509
510 # Dictionary of argument checking functions, which convert and
511 # validate option arguments according to the option type.
512 #
513 # Signature of checking functions is:
514 # check(option : Option, opt : string, value : string) -> any
515 # where
516 # option is the Option instance calling the checker
517 # opt is the actual option seen on the command-line
518 # (eg. "-a", "--file")
519 # value is the option argument seen on the command-line
520 #
521 # The return value should be in the appropriate Python type
522 # for option.type -- eg. an integer if option.type == "int".
523 #
524 # If no checker is defined for a type, arguments will be
525 # unchecked and remain strings.
526 TYPE_CHECKER = { "int" : check_builtin,
527 "long" : check_builtin,
528 "float" : check_builtin,
Greg Wardeba20e62004-07-31 16:15:44 +0000529 "complex": check_builtin,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000530 "choice" : check_choice,
531 }
532
533
534 # CHECK_METHODS is a list of unbound method objects; they are called
535 # by the constructor, in order, after all attributes are
536 # initialized. The list is created and filled in later, after all
537 # the methods are actually defined. (I just put it here because I
538 # like to define and document all class attributes in the same
539 # place.) Subclasses that add another _check_*() method should
540 # define their own CHECK_METHODS list that adds their check method
541 # to those from this class.
542 CHECK_METHODS = None
543
544
545 # -- Constructor/initialization methods ----------------------------
546
Greg Wardeba20e62004-07-31 16:15:44 +0000547 def __init__(self, *opts, **attrs):
Greg Ward2492fcf2003-04-21 02:40:34 +0000548 # Set _short_opts, _long_opts attrs from 'opts' tuple.
549 # Have to be set now, in case no option strings are supplied.
550 self._short_opts = []
551 self._long_opts = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000552 opts = self._check_opt_strings(opts)
553 self._set_opt_strings(opts)
554
555 # Set all other attrs (action, type, etc.) from 'attrs' dict
556 self._set_attrs(attrs)
557
558 # Check all the attributes we just set. There are lots of
559 # complicated interdependencies, but luckily they can be farmed
560 # out to the _check_*() methods listed in CHECK_METHODS -- which
561 # could be handy for subclasses! The one thing these all share
562 # is that they raise OptionError if they discover a problem.
563 for checker in self.CHECK_METHODS:
564 checker(self)
565
Greg Wardeba20e62004-07-31 16:15:44 +0000566 def _check_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000567 # Filter out None because early versions of Optik had exactly
568 # one short option and one long option, either of which
569 # could be None.
570 opts = filter(None, opts)
571 if not opts:
Greg Ward2492fcf2003-04-21 02:40:34 +0000572 raise TypeError("at least one option string must be supplied")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000573 return opts
574
Greg Wardeba20e62004-07-31 16:15:44 +0000575 def _set_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000576 for opt in opts:
577 if len(opt) < 2:
578 raise OptionError(
579 "invalid option string %r: "
580 "must be at least two characters long" % opt, self)
581 elif len(opt) == 2:
582 if not (opt[0] == "-" and opt[1] != "-"):
583 raise OptionError(
584 "invalid short option string %r: "
585 "must be of the form -x, (x any non-dash char)" % opt,
586 self)
587 self._short_opts.append(opt)
588 else:
589 if not (opt[0:2] == "--" and opt[2] != "-"):
590 raise OptionError(
591 "invalid long option string %r: "
592 "must start with --, followed by non-dash" % opt,
593 self)
594 self._long_opts.append(opt)
595
Greg Wardeba20e62004-07-31 16:15:44 +0000596 def _set_attrs(self, attrs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000597 for attr in self.ATTRS:
Raymond Hettinger930795b2008-07-10 15:37:08 +0000598 if attr in attrs:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000599 setattr(self, attr, attrs[attr])
600 del attrs[attr]
601 else:
602 if attr == 'default':
603 setattr(self, attr, NO_DEFAULT)
604 else:
605 setattr(self, attr, None)
606 if attrs:
Armin Rigoa3f09272006-05-28 19:13:17 +0000607 attrs = attrs.keys()
608 attrs.sort()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000609 raise OptionError(
Armin Rigoa3f09272006-05-28 19:13:17 +0000610 "invalid keyword arguments: %s" % ", ".join(attrs),
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000611 self)
612
613
614 # -- Constructor validation methods --------------------------------
615
Greg Wardeba20e62004-07-31 16:15:44 +0000616 def _check_action(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000617 if self.action is None:
618 self.action = "store"
619 elif self.action not in self.ACTIONS:
620 raise OptionError("invalid action: %r" % self.action, self)
621
Greg Wardeba20e62004-07-31 16:15:44 +0000622 def _check_type(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000623 if self.type is None:
Greg Ward48aa84b2004-10-27 02:20:04 +0000624 if self.action in self.ALWAYS_TYPED_ACTIONS:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000625 if self.choices is not None:
626 # The "choices" attribute implies "choice" type.
627 self.type = "choice"
628 else:
629 # No type given? "string" is the most sensible default.
630 self.type = "string"
631 else:
Greg Wardab05edc2006-04-23 03:47:58 +0000632 # Allow type objects or builtin type conversion functions
633 # (int, str, etc.) as an alternative to their names. (The
634 # complicated check of __builtin__ is only necessary for
635 # Python 2.1 and earlier, and is short-circuited by the
636 # first check on modern Pythons.)
637 import __builtin__
638 if ( type(self.type) is types.TypeType or
639 (hasattr(self.type, "__name__") and
640 getattr(__builtin__, self.type.__name__, None) is self.type) ):
Greg Wardeba20e62004-07-31 16:15:44 +0000641 self.type = self.type.__name__
Greg Wardab05edc2006-04-23 03:47:58 +0000642
Greg Wardeba20e62004-07-31 16:15:44 +0000643 if self.type == "str":
644 self.type = "string"
645
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000646 if self.type not in self.TYPES:
647 raise OptionError("invalid option type: %r" % self.type, self)
648 if self.action not in self.TYPED_ACTIONS:
649 raise OptionError(
650 "must not supply a type for action %r" % self.action, self)
651
652 def _check_choice(self):
653 if self.type == "choice":
654 if self.choices is None:
655 raise OptionError(
656 "must supply a list of choices for type 'choice'", self)
Greg Wardab05edc2006-04-23 03:47:58 +0000657 elif type(self.choices) not in (types.TupleType, types.ListType):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000658 raise OptionError(
659 "choices must be a list of strings ('%s' supplied)"
660 % str(type(self.choices)).split("'")[1], self)
661 elif self.choices is not None:
662 raise OptionError(
663 "must not supply choices for type %r" % self.type, self)
664
Greg Wardeba20e62004-07-31 16:15:44 +0000665 def _check_dest(self):
666 # No destination given, and we need one for this action. The
667 # self.type check is for callbacks that take a value.
668 takes_value = (self.action in self.STORE_ACTIONS or
669 self.type is not None)
670 if self.dest is None and takes_value:
671
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000672 # Glean a destination from the first long option string,
673 # or from the first short option string if no long options.
674 if self._long_opts:
675 # eg. "--foo-bar" -> "foo_bar"
676 self.dest = self._long_opts[0][2:].replace('-', '_')
677 else:
678 self.dest = self._short_opts[0][1]
679
Greg Wardeba20e62004-07-31 16:15:44 +0000680 def _check_const(self):
Greg Wardab05edc2006-04-23 03:47:58 +0000681 if self.action not in self.CONST_ACTIONS and self.const is not None:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000682 raise OptionError(
683 "'const' must not be supplied for action %r" % self.action,
684 self)
685
Greg Wardeba20e62004-07-31 16:15:44 +0000686 def _check_nargs(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000687 if self.action in self.TYPED_ACTIONS:
688 if self.nargs is None:
689 self.nargs = 1
690 elif self.nargs is not None:
691 raise OptionError(
692 "'nargs' must not be supplied for action %r" % self.action,
693 self)
694
Greg Wardeba20e62004-07-31 16:15:44 +0000695 def _check_callback(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000696 if self.action == "callback":
Raymond Hettinger930795b2008-07-10 15:37:08 +0000697 if not hasattr(self.callback, '__call__'):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000698 raise OptionError(
699 "callback not callable: %r" % self.callback, self)
700 if (self.callback_args is not None and
Greg Wardab05edc2006-04-23 03:47:58 +0000701 type(self.callback_args) is not types.TupleType):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000702 raise OptionError(
703 "callback_args, if supplied, must be a tuple: not %r"
704 % self.callback_args, self)
705 if (self.callback_kwargs is not None and
Greg Wardab05edc2006-04-23 03:47:58 +0000706 type(self.callback_kwargs) is not types.DictType):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000707 raise OptionError(
708 "callback_kwargs, if supplied, must be a dict: not %r"
709 % self.callback_kwargs, self)
710 else:
711 if self.callback is not None:
712 raise OptionError(
713 "callback supplied (%r) for non-callback option"
714 % self.callback, self)
715 if self.callback_args is not None:
716 raise OptionError(
717 "callback_args supplied for non-callback option", self)
718 if self.callback_kwargs is not None:
719 raise OptionError(
720 "callback_kwargs supplied for non-callback option", self)
721
722
723 CHECK_METHODS = [_check_action,
724 _check_type,
725 _check_choice,
726 _check_dest,
727 _check_const,
728 _check_nargs,
729 _check_callback]
730
731
732 # -- Miscellaneous methods -----------------------------------------
733
Greg Wardeba20e62004-07-31 16:15:44 +0000734 def __str__(self):
Greg Ward2492fcf2003-04-21 02:40:34 +0000735 return "/".join(self._short_opts + self._long_opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000736
Greg Wardeba20e62004-07-31 16:15:44 +0000737 __repr__ = _repr
738
739 def takes_value(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000740 return self.type is not None
741
Greg Wardeba20e62004-07-31 16:15:44 +0000742 def get_opt_string(self):
743 if self._long_opts:
744 return self._long_opts[0]
745 else:
746 return self._short_opts[0]
747
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000748
749 # -- Processing methods --------------------------------------------
750
Greg Wardeba20e62004-07-31 16:15:44 +0000751 def check_value(self, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000752 checker = self.TYPE_CHECKER.get(self.type)
753 if checker is None:
754 return value
755 else:
756 return checker(self, opt, value)
757
Greg Wardeba20e62004-07-31 16:15:44 +0000758 def convert_value(self, opt, value):
759 if value is not None:
760 if self.nargs == 1:
761 return self.check_value(opt, value)
762 else:
763 return tuple([self.check_value(opt, v) for v in value])
764
765 def process(self, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000766
767 # First, convert the value(s) to the right type. Howl if any
768 # value(s) are bogus.
Greg Wardeba20e62004-07-31 16:15:44 +0000769 value = self.convert_value(opt, value)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000770
771 # And then take whatever action is expected of us.
772 # This is a separate method to make life easier for
773 # subclasses to add new actions.
774 return self.take_action(
775 self.action, self.dest, opt, value, values, parser)
776
Greg Wardeba20e62004-07-31 16:15:44 +0000777 def take_action(self, action, dest, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000778 if action == "store":
779 setattr(values, dest, value)
780 elif action == "store_const":
781 setattr(values, dest, self.const)
782 elif action == "store_true":
Greg Ward2492fcf2003-04-21 02:40:34 +0000783 setattr(values, dest, True)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000784 elif action == "store_false":
Greg Ward2492fcf2003-04-21 02:40:34 +0000785 setattr(values, dest, False)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000786 elif action == "append":
787 values.ensure_value(dest, []).append(value)
Greg Wardab05edc2006-04-23 03:47:58 +0000788 elif action == "append_const":
789 values.ensure_value(dest, []).append(self.const)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000790 elif action == "count":
791 setattr(values, dest, values.ensure_value(dest, 0) + 1)
792 elif action == "callback":
793 args = self.callback_args or ()
794 kwargs = self.callback_kwargs or {}
795 self.callback(self, opt, value, parser, *args, **kwargs)
796 elif action == "help":
797 parser.print_help()
Greg Ward48aa84b2004-10-27 02:20:04 +0000798 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000799 elif action == "version":
800 parser.print_version()
Greg Ward48aa84b2004-10-27 02:20:04 +0000801 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000802 else:
Benjamin Peterson21f25d32008-11-23 02:09:41 +0000803 raise ValueError("unknown action %r" % self.action)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000804
805 return 1
806
807# class Option
Greg Ward2492fcf2003-04-21 02:40:34 +0000808
809
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000810SUPPRESS_HELP = "SUPPRESS"+"HELP"
811SUPPRESS_USAGE = "SUPPRESS"+"USAGE"
812
Christian Heimes5b25bc02008-01-27 19:01:45 +0000813try:
814 basestring
815except NameError:
816 def isbasestring(x):
817 return isinstance(x, (types.StringType, types.UnicodeType))
818else:
819 def isbasestring(x):
Christian Heimes082c9b02008-01-23 14:20:50 +0000820 return isinstance(x, basestring)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000821
822class Values:
823
Greg Wardeba20e62004-07-31 16:15:44 +0000824 def __init__(self, defaults=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000825 if defaults:
826 for (attr, val) in defaults.items():
827 setattr(self, attr, val)
828
Greg Wardeba20e62004-07-31 16:15:44 +0000829 def __str__(self):
830 return str(self.__dict__)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000831
Greg Wardeba20e62004-07-31 16:15:44 +0000832 __repr__ = _repr
833
Greg Wardab05edc2006-04-23 03:47:58 +0000834 def __cmp__(self, other):
Greg Wardeba20e62004-07-31 16:15:44 +0000835 if isinstance(other, Values):
Greg Wardab05edc2006-04-23 03:47:58 +0000836 return cmp(self.__dict__, other.__dict__)
837 elif isinstance(other, types.DictType):
838 return cmp(self.__dict__, other)
Greg Wardeba20e62004-07-31 16:15:44 +0000839 else:
Greg Wardab05edc2006-04-23 03:47:58 +0000840 return -1
Greg Wardeba20e62004-07-31 16:15:44 +0000841
842 def _update_careful(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000843 """
844 Update the option values from an arbitrary dictionary, but only
845 use keys from dict that already have a corresponding attribute
846 in self. Any keys in dict without a corresponding attribute
847 are silently ignored.
848 """
849 for attr in dir(self):
Raymond Hettinger930795b2008-07-10 15:37:08 +0000850 if attr in dict:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000851 dval = dict[attr]
852 if dval is not None:
853 setattr(self, attr, dval)
854
Greg Wardeba20e62004-07-31 16:15:44 +0000855 def _update_loose(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000856 """
857 Update the option values from an arbitrary dictionary,
858 using all keys from the dictionary regardless of whether
859 they have a corresponding attribute in self or not.
860 """
861 self.__dict__.update(dict)
862
Greg Wardeba20e62004-07-31 16:15:44 +0000863 def _update(self, dict, mode):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000864 if mode == "careful":
865 self._update_careful(dict)
866 elif mode == "loose":
867 self._update_loose(dict)
868 else:
869 raise ValueError, "invalid update mode: %r" % mode
870
Greg Wardeba20e62004-07-31 16:15:44 +0000871 def read_module(self, modname, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000872 __import__(modname)
873 mod = sys.modules[modname]
874 self._update(vars(mod), mode)
875
Greg Wardeba20e62004-07-31 16:15:44 +0000876 def read_file(self, filename, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000877 vars = {}
878 execfile(filename, vars)
879 self._update(vars, mode)
880
Greg Wardeba20e62004-07-31 16:15:44 +0000881 def ensure_value(self, attr, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000882 if not hasattr(self, attr) or getattr(self, attr) is None:
883 setattr(self, attr, value)
884 return getattr(self, attr)
885
886
887class OptionContainer:
888
889 """
890 Abstract base class.
891
892 Class attributes:
893 standard_option_list : [Option]
894 list of standard options that will be accepted by all instances
895 of this parser class (intended to be overridden by subclasses).
896
897 Instance attributes:
898 option_list : [Option]
899 the list of Option objects contained by this OptionContainer
900 _short_opt : { string : Option }
901 dictionary mapping short option strings, eg. "-f" or "-X",
902 to the Option instances that implement them. If an Option
903 has multiple short option strings, it will appears in this
904 dictionary multiple times. [1]
905 _long_opt : { string : Option }
906 dictionary mapping long option strings, eg. "--file" or
907 "--exclude", to the Option instances that implement them.
908 Again, a given Option can occur multiple times in this
909 dictionary. [1]
910 defaults : { string : any }
911 dictionary mapping option destination names to default
912 values for each destination [1]
913
914 [1] These mappings are common to (shared by) all components of the
915 controlling OptionParser, where they are initially created.
916
917 """
918
Greg Wardeba20e62004-07-31 16:15:44 +0000919 def __init__(self, option_class, conflict_handler, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000920 # Initialize the option list and related data structures.
921 # This method must be provided by subclasses, and it must
922 # initialize at least the following instance attributes:
923 # option_list, _short_opt, _long_opt, defaults.
924 self._create_option_list()
925
926 self.option_class = option_class
927 self.set_conflict_handler(conflict_handler)
928 self.set_description(description)
929
Greg Wardeba20e62004-07-31 16:15:44 +0000930 def _create_option_mappings(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000931 # For use by OptionParser constructor -- create the master
932 # option mappings used by this OptionParser and all
933 # OptionGroups that it owns.
934 self._short_opt = {} # single letter -> Option instance
935 self._long_opt = {} # long option -> Option instance
936 self.defaults = {} # maps option dest -> default value
937
938
Greg Wardeba20e62004-07-31 16:15:44 +0000939 def _share_option_mappings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000940 # For use by OptionGroup constructor -- use shared option
941 # mappings from the OptionParser that owns this OptionGroup.
942 self._short_opt = parser._short_opt
943 self._long_opt = parser._long_opt
944 self.defaults = parser.defaults
945
Greg Wardeba20e62004-07-31 16:15:44 +0000946 def set_conflict_handler(self, handler):
Greg Ward48aa84b2004-10-27 02:20:04 +0000947 if handler not in ("error", "resolve"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000948 raise ValueError, "invalid conflict_resolution value %r" % handler
949 self.conflict_handler = handler
950
Greg Wardeba20e62004-07-31 16:15:44 +0000951 def set_description(self, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000952 self.description = description
953
Greg Wardeba20e62004-07-31 16:15:44 +0000954 def get_description(self):
955 return self.description
956
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000957
Greg Wardab05edc2006-04-23 03:47:58 +0000958 def destroy(self):
959 """see OptionParser.destroy()."""
960 del self._short_opt
961 del self._long_opt
962 del self.defaults
963
964
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000965 # -- Option-adding methods -----------------------------------------
966
Greg Wardeba20e62004-07-31 16:15:44 +0000967 def _check_conflict(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000968 conflict_opts = []
969 for opt in option._short_opts:
Raymond Hettinger930795b2008-07-10 15:37:08 +0000970 if opt in self._short_opt:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000971 conflict_opts.append((opt, self._short_opt[opt]))
972 for opt in option._long_opts:
Raymond Hettinger930795b2008-07-10 15:37:08 +0000973 if opt in self._long_opt:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000974 conflict_opts.append((opt, self._long_opt[opt]))
975
976 if conflict_opts:
977 handler = self.conflict_handler
Greg Ward48aa84b2004-10-27 02:20:04 +0000978 if handler == "error":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000979 raise OptionConflictError(
980 "conflicting option string(s): %s"
981 % ", ".join([co[0] for co in conflict_opts]),
982 option)
Greg Ward48aa84b2004-10-27 02:20:04 +0000983 elif handler == "resolve":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000984 for (opt, c_option) in conflict_opts:
985 if opt.startswith("--"):
986 c_option._long_opts.remove(opt)
987 del self._long_opt[opt]
988 else:
989 c_option._short_opts.remove(opt)
990 del self._short_opt[opt]
991 if not (c_option._short_opts or c_option._long_opts):
992 c_option.container.option_list.remove(c_option)
993
Greg Wardeba20e62004-07-31 16:15:44 +0000994 def add_option(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000995 """add_option(Option)
996 add_option(opt_str, ..., kwarg=val, ...)
997 """
Greg Wardab05edc2006-04-23 03:47:58 +0000998 if type(args[0]) is types.StringType:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000999 option = self.option_class(*args, **kwargs)
1000 elif len(args) == 1 and not kwargs:
1001 option = args[0]
1002 if not isinstance(option, Option):
1003 raise TypeError, "not an Option instance: %r" % option
1004 else:
1005 raise TypeError, "invalid arguments"
1006
1007 self._check_conflict(option)
1008
1009 self.option_list.append(option)
1010 option.container = self
1011 for opt in option._short_opts:
1012 self._short_opt[opt] = option
1013 for opt in option._long_opts:
1014 self._long_opt[opt] = option
1015
1016 if option.dest is not None: # option has a dest, we need a default
1017 if option.default is not NO_DEFAULT:
1018 self.defaults[option.dest] = option.default
Raymond Hettinger930795b2008-07-10 15:37:08 +00001019 elif option.dest not in self.defaults:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001020 self.defaults[option.dest] = None
1021
1022 return option
1023
Greg Wardeba20e62004-07-31 16:15:44 +00001024 def add_options(self, option_list):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001025 for option in option_list:
1026 self.add_option(option)
1027
1028 # -- Option query/removal methods ----------------------------------
1029
Greg Wardeba20e62004-07-31 16:15:44 +00001030 def get_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001031 return (self._short_opt.get(opt_str) or
1032 self._long_opt.get(opt_str))
1033
Greg Wardeba20e62004-07-31 16:15:44 +00001034 def has_option(self, opt_str):
Raymond Hettinger930795b2008-07-10 15:37:08 +00001035 return (opt_str in self._short_opt or
1036 opt_str in self._long_opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001037
Greg Wardeba20e62004-07-31 16:15:44 +00001038 def remove_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001039 option = self._short_opt.get(opt_str)
1040 if option is None:
1041 option = self._long_opt.get(opt_str)
1042 if option is None:
1043 raise ValueError("no such option %r" % opt_str)
1044
1045 for opt in option._short_opts:
1046 del self._short_opt[opt]
1047 for opt in option._long_opts:
1048 del self._long_opt[opt]
1049 option.container.option_list.remove(option)
1050
1051
1052 # -- Help-formatting methods ---------------------------------------
1053
Greg Wardeba20e62004-07-31 16:15:44 +00001054 def format_option_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001055 if not self.option_list:
1056 return ""
1057 result = []
1058 for option in self.option_list:
1059 if not option.help is SUPPRESS_HELP:
1060 result.append(formatter.format_option(option))
1061 return "".join(result)
1062
Greg Wardeba20e62004-07-31 16:15:44 +00001063 def format_description(self, formatter):
1064 return formatter.format_description(self.get_description())
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001065
Greg Wardeba20e62004-07-31 16:15:44 +00001066 def format_help(self, formatter):
1067 result = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001068 if self.description:
Greg Wardeba20e62004-07-31 16:15:44 +00001069 result.append(self.format_description(formatter))
1070 if self.option_list:
1071 result.append(self.format_option_help(formatter))
1072 return "\n".join(result)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001073
1074
1075class OptionGroup (OptionContainer):
1076
Greg Wardeba20e62004-07-31 16:15:44 +00001077 def __init__(self, parser, title, description=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001078 self.parser = parser
1079 OptionContainer.__init__(
1080 self, parser.option_class, parser.conflict_handler, description)
1081 self.title = title
1082
Greg Wardeba20e62004-07-31 16:15:44 +00001083 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001084 self.option_list = []
1085 self._share_option_mappings(self.parser)
1086
Greg Wardeba20e62004-07-31 16:15:44 +00001087 def set_title(self, title):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001088 self.title = title
1089
Greg Wardab05edc2006-04-23 03:47:58 +00001090 def destroy(self):
1091 """see OptionParser.destroy()."""
1092 OptionContainer.destroy(self)
1093 del self.option_list
1094
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001095 # -- Help-formatting methods ---------------------------------------
1096
Greg Wardeba20e62004-07-31 16:15:44 +00001097 def format_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001098 result = formatter.format_heading(self.title)
1099 formatter.indent()
1100 result += OptionContainer.format_help(self, formatter)
1101 formatter.dedent()
1102 return result
1103
1104
1105class OptionParser (OptionContainer):
1106
1107 """
1108 Class attributes:
1109 standard_option_list : [Option]
1110 list of standard options that will be accepted by all instances
1111 of this parser class (intended to be overridden by subclasses).
1112
1113 Instance attributes:
1114 usage : string
1115 a usage string for your program. Before it is displayed
1116 to the user, "%prog" will be expanded to the name of
Greg Ward2492fcf2003-04-21 02:40:34 +00001117 your program (self.prog or os.path.basename(sys.argv[0])).
1118 prog : string
1119 the name of the current program (to override
1120 os.path.basename(sys.argv[0])).
Greg Wardab05edc2006-04-23 03:47:58 +00001121 epilog : string
1122 paragraph of help text to print after option help
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001123
Greg Wardeba20e62004-07-31 16:15:44 +00001124 option_groups : [OptionGroup]
1125 list of option groups in this parser (option groups are
1126 irrelevant for parsing the command-line, but very useful
1127 for generating help)
1128
1129 allow_interspersed_args : bool = true
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001130 if true, positional arguments may be interspersed with options.
1131 Assuming -a and -b each take a single argument, the command-line
1132 -ablah foo bar -bboo baz
1133 will be interpreted the same as
1134 -ablah -bboo -- foo bar baz
1135 If this flag were false, that command line would be interpreted as
1136 -ablah -- foo bar -bboo baz
1137 -- ie. we stop processing options as soon as we see the first
1138 non-option argument. (This is the tradition followed by
1139 Python's getopt module, Perl's Getopt::Std, and other argument-
1140 parsing libraries, but it is generally annoying to users.)
1141
Greg Wardeba20e62004-07-31 16:15:44 +00001142 process_default_values : bool = true
1143 if true, option default values are processed similarly to option
1144 values from the command line: that is, they are passed to the
1145 type-checking function for the option's type (as long as the
1146 default value is a string). (This really only matters if you
1147 have defined custom types; see SF bug #955889.) Set it to false
1148 to restore the behaviour of Optik 1.4.1 and earlier.
1149
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001150 rargs : [string]
1151 the argument list currently being parsed. Only set when
1152 parse_args() is active, and continually trimmed down as
1153 we consume arguments. Mainly there for the benefit of
1154 callback options.
1155 largs : [string]
1156 the list of leftover arguments that we have skipped while
1157 parsing options. If allow_interspersed_args is false, this
1158 list is always empty.
1159 values : Values
1160 the set of option values currently being accumulated. Only
1161 set when parse_args() is active. Also mainly for callbacks.
1162
1163 Because of the 'rargs', 'largs', and 'values' attributes,
1164 OptionParser is not thread-safe. If, for some perverse reason, you
1165 need to parse command-line arguments simultaneously in different
1166 threads, use different OptionParser instances.
1167
1168 """
1169
1170 standard_option_list = []
1171
Greg Wardeba20e62004-07-31 16:15:44 +00001172 def __init__(self,
1173 usage=None,
1174 option_list=None,
1175 option_class=Option,
1176 version=None,
1177 conflict_handler="error",
1178 description=None,
1179 formatter=None,
1180 add_help_option=True,
Greg Wardab05edc2006-04-23 03:47:58 +00001181 prog=None,
1182 epilog=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001183 OptionContainer.__init__(
1184 self, option_class, conflict_handler, description)
1185 self.set_usage(usage)
Greg Ward2492fcf2003-04-21 02:40:34 +00001186 self.prog = prog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001187 self.version = version
Greg Wardeba20e62004-07-31 16:15:44 +00001188 self.allow_interspersed_args = True
1189 self.process_default_values = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001190 if formatter is None:
1191 formatter = IndentedHelpFormatter()
1192 self.formatter = formatter
Greg Wardeba20e62004-07-31 16:15:44 +00001193 self.formatter.set_parser(self)
Greg Wardab05edc2006-04-23 03:47:58 +00001194 self.epilog = epilog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001195
1196 # Populate the option list; initial sources are the
1197 # standard_option_list class attribute, the 'option_list'
Greg Wardeba20e62004-07-31 16:15:44 +00001198 # argument, and (if applicable) the _add_version_option() and
1199 # _add_help_option() methods.
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001200 self._populate_option_list(option_list,
1201 add_help=add_help_option)
1202
1203 self._init_parsing_state()
1204
Greg Wardab05edc2006-04-23 03:47:58 +00001205
1206 def destroy(self):
1207 """
1208 Declare that you are done with this OptionParser. This cleans up
1209 reference cycles so the OptionParser (and all objects referenced by
Tim Peters4f96f1f2006-06-11 19:42:51 +00001210 it) can be garbage-collected promptly. After calling destroy(), the
Greg Wardab05edc2006-04-23 03:47:58 +00001211 OptionParser is unusable.
1212 """
1213 OptionContainer.destroy(self)
1214 for group in self.option_groups:
1215 group.destroy()
1216 del self.option_list
1217 del self.option_groups
1218 del self.formatter
1219
1220
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001221 # -- Private methods -----------------------------------------------
1222 # (used by our or OptionContainer's constructor)
1223
Greg Wardeba20e62004-07-31 16:15:44 +00001224 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001225 self.option_list = []
1226 self.option_groups = []
1227 self._create_option_mappings()
1228
Greg Wardeba20e62004-07-31 16:15:44 +00001229 def _add_help_option(self):
1230 self.add_option("-h", "--help",
1231 action="help",
1232 help=_("show this help message and exit"))
1233
1234 def _add_version_option(self):
1235 self.add_option("--version",
1236 action="version",
1237 help=_("show program's version number and exit"))
1238
1239 def _populate_option_list(self, option_list, add_help=True):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001240 if self.standard_option_list:
1241 self.add_options(self.standard_option_list)
1242 if option_list:
1243 self.add_options(option_list)
1244 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001245 self._add_version_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001246 if add_help:
Greg Wardeba20e62004-07-31 16:15:44 +00001247 self._add_help_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001248
Greg Wardeba20e62004-07-31 16:15:44 +00001249 def _init_parsing_state(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001250 # These are set in parse_args() for the convenience of callbacks.
1251 self.rargs = None
1252 self.largs = None
1253 self.values = None
1254
1255
1256 # -- Simple modifier methods ---------------------------------------
1257
Greg Wardeba20e62004-07-31 16:15:44 +00001258 def set_usage(self, usage):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001259 if usage is None:
Greg Wardeba20e62004-07-31 16:15:44 +00001260 self.usage = _("%prog [options]")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001261 elif usage is SUPPRESS_USAGE:
1262 self.usage = None
Greg Wardeba20e62004-07-31 16:15:44 +00001263 # For backwards compatibility with Optik 1.3 and earlier.
Greg Wardab05edc2006-04-23 03:47:58 +00001264 elif usage.lower().startswith("usage: "):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001265 self.usage = usage[7:]
1266 else:
1267 self.usage = usage
1268
Greg Wardeba20e62004-07-31 16:15:44 +00001269 def enable_interspersed_args(self):
Andrew M. Kuchlingdcf3b1c2008-10-05 00:11:56 +00001270 """Set parsing to not stop on the first non-option, allowing
1271 interspersing switches with command arguments. This is the
1272 default behavior. See also disable_interspersed_args() and the
1273 class documentation description of the attribute
1274 allow_interspersed_args."""
Greg Wardeba20e62004-07-31 16:15:44 +00001275 self.allow_interspersed_args = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001276
Greg Wardeba20e62004-07-31 16:15:44 +00001277 def disable_interspersed_args(self):
Andrew M. Kuchlingdcf3b1c2008-10-05 00:11:56 +00001278 """Set parsing to stop on the first non-option. Use this if
1279 you have a command processor which runs another command that
1280 has options of its own and you want to make sure these options
1281 don't get confused.
1282 """
Greg Wardeba20e62004-07-31 16:15:44 +00001283 self.allow_interspersed_args = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001284
Greg Wardeba20e62004-07-31 16:15:44 +00001285 def set_process_default_values(self, process):
1286 self.process_default_values = process
1287
1288 def set_default(self, dest, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001289 self.defaults[dest] = value
1290
Greg Wardeba20e62004-07-31 16:15:44 +00001291 def set_defaults(self, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001292 self.defaults.update(kwargs)
1293
Greg Wardeba20e62004-07-31 16:15:44 +00001294 def _get_all_options(self):
1295 options = self.option_list[:]
1296 for group in self.option_groups:
1297 options.extend(group.option_list)
1298 return options
1299
1300 def get_default_values(self):
1301 if not self.process_default_values:
1302 # Old, pre-Optik 1.5 behaviour.
1303 return Values(self.defaults)
1304
1305 defaults = self.defaults.copy()
1306 for option in self._get_all_options():
1307 default = defaults.get(option.dest)
Greg Wardab05edc2006-04-23 03:47:58 +00001308 if isbasestring(default):
Greg Wardeba20e62004-07-31 16:15:44 +00001309 opt_str = option.get_opt_string()
1310 defaults[option.dest] = option.check_value(opt_str, default)
1311
1312 return Values(defaults)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001313
1314
1315 # -- OptionGroup methods -------------------------------------------
1316
Greg Wardeba20e62004-07-31 16:15:44 +00001317 def add_option_group(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001318 # XXX lots of overlap with OptionContainer.add_option()
Greg Wardab05edc2006-04-23 03:47:58 +00001319 if type(args[0]) is types.StringType:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001320 group = OptionGroup(self, *args, **kwargs)
1321 elif len(args) == 1 and not kwargs:
1322 group = args[0]
1323 if not isinstance(group, OptionGroup):
1324 raise TypeError, "not an OptionGroup instance: %r" % group
1325 if group.parser is not self:
1326 raise ValueError, "invalid OptionGroup (wrong parser)"
1327 else:
1328 raise TypeError, "invalid arguments"
1329
1330 self.option_groups.append(group)
1331 return group
1332
Greg Wardeba20e62004-07-31 16:15:44 +00001333 def get_option_group(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001334 option = (self._short_opt.get(opt_str) or
1335 self._long_opt.get(opt_str))
1336 if option and option.container is not self:
1337 return option.container
1338 return None
1339
1340
1341 # -- Option-parsing methods ----------------------------------------
1342
Greg Wardeba20e62004-07-31 16:15:44 +00001343 def _get_args(self, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001344 if args is None:
1345 return sys.argv[1:]
1346 else:
1347 return args[:] # don't modify caller's list
1348
Greg Wardeba20e62004-07-31 16:15:44 +00001349 def parse_args(self, args=None, values=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001350 """
1351 parse_args(args : [string] = sys.argv[1:],
1352 values : Values = None)
1353 -> (values : Values, args : [string])
1354
1355 Parse the command-line options found in 'args' (default:
1356 sys.argv[1:]). Any errors result in a call to 'error()', which
1357 by default prints the usage message to stderr and calls
1358 sys.exit() with an error message. On success returns a pair
1359 (values, args) where 'values' is an Values instance (with all
1360 your option values) and 'args' is the list of arguments left
1361 over after parsing options.
1362 """
1363 rargs = self._get_args(args)
1364 if values is None:
1365 values = self.get_default_values()
1366
1367 # Store the halves of the argument list as attributes for the
1368 # convenience of callbacks:
1369 # rargs
1370 # the rest of the command-line (the "r" stands for
1371 # "remaining" or "right-hand")
1372 # largs
1373 # the leftover arguments -- ie. what's left after removing
1374 # options and their arguments (the "l" stands for "leftover"
1375 # or "left-hand")
1376 self.rargs = rargs
1377 self.largs = largs = []
1378 self.values = values
1379
1380 try:
1381 stop = self._process_args(largs, rargs, values)
1382 except (BadOptionError, OptionValueError), err:
Greg Wardab05edc2006-04-23 03:47:58 +00001383 self.error(str(err))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001384
1385 args = largs + rargs
1386 return self.check_values(values, args)
1387
Greg Wardeba20e62004-07-31 16:15:44 +00001388 def check_values(self, values, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001389 """
1390 check_values(values : Values, args : [string])
1391 -> (values : Values, args : [string])
1392
1393 Check that the supplied option values and leftover arguments are
1394 valid. Returns the option values and leftover arguments
1395 (possibly adjusted, possibly completely new -- whatever you
1396 like). Default implementation just returns the passed-in
1397 values; subclasses may override as desired.
1398 """
1399 return (values, args)
1400
Greg Wardeba20e62004-07-31 16:15:44 +00001401 def _process_args(self, largs, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001402 """_process_args(largs : [string],
1403 rargs : [string],
1404 values : Values)
1405
1406 Process command-line arguments and populate 'values', consuming
1407 options and arguments from 'rargs'. If 'allow_interspersed_args' is
1408 false, stop at the first non-option argument. If true, accumulate any
1409 interspersed non-option arguments in 'largs'.
1410 """
1411 while rargs:
1412 arg = rargs[0]
1413 # We handle bare "--" explicitly, and bare "-" is handled by the
1414 # standard arg handler since the short arg case ensures that the
1415 # len of the opt string is greater than 1.
1416 if arg == "--":
1417 del rargs[0]
1418 return
1419 elif arg[0:2] == "--":
1420 # process a single long option (possibly with value(s))
1421 self._process_long_opt(rargs, values)
1422 elif arg[:1] == "-" and len(arg) > 1:
1423 # process a cluster of short options (possibly with
1424 # value(s) for the last one only)
1425 self._process_short_opts(rargs, values)
1426 elif self.allow_interspersed_args:
1427 largs.append(arg)
1428 del rargs[0]
1429 else:
1430 return # stop now, leave this arg in rargs
1431
1432 # Say this is the original argument list:
1433 # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)]
1434 # ^
1435 # (we are about to process arg(i)).
1436 #
1437 # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of
1438 # [arg0, ..., arg(i-1)] (any options and their arguments will have
1439 # been removed from largs).
1440 #
1441 # The while loop will usually consume 1 or more arguments per pass.
1442 # If it consumes 1 (eg. arg is an option that takes no arguments),
1443 # then after _process_arg() is done the situation is:
1444 #
1445 # largs = subset of [arg0, ..., arg(i)]
1446 # rargs = [arg(i+1), ..., arg(N-1)]
1447 #
1448 # If allow_interspersed_args is false, largs will always be
1449 # *empty* -- still a subset of [arg0, ..., arg(i-1)], but
1450 # not a very interesting subset!
1451
Greg Wardeba20e62004-07-31 16:15:44 +00001452 def _match_long_opt(self, opt):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001453 """_match_long_opt(opt : string) -> string
1454
1455 Determine which long option string 'opt' matches, ie. which one
1456 it is an unambiguous abbrevation for. Raises BadOptionError if
1457 'opt' doesn't unambiguously match any long option string.
1458 """
1459 return _match_abbrev(opt, self._long_opt)
1460
Greg Wardeba20e62004-07-31 16:15:44 +00001461 def _process_long_opt(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001462 arg = rargs.pop(0)
1463
1464 # Value explicitly attached to arg? Pretend it's the next
1465 # argument.
1466 if "=" in arg:
1467 (opt, next_arg) = arg.split("=", 1)
1468 rargs.insert(0, next_arg)
Greg Wardeba20e62004-07-31 16:15:44 +00001469 had_explicit_value = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001470 else:
1471 opt = arg
Greg Wardeba20e62004-07-31 16:15:44 +00001472 had_explicit_value = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001473
1474 opt = self._match_long_opt(opt)
1475 option = self._long_opt[opt]
1476 if option.takes_value():
1477 nargs = option.nargs
1478 if len(rargs) < nargs:
1479 if nargs == 1:
Greg Wardeba20e62004-07-31 16:15:44 +00001480 self.error(_("%s option requires an argument") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001481 else:
Greg Wardeba20e62004-07-31 16:15:44 +00001482 self.error(_("%s option requires %d arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001483 % (opt, nargs))
1484 elif nargs == 1:
1485 value = rargs.pop(0)
1486 else:
1487 value = tuple(rargs[0:nargs])
1488 del rargs[0:nargs]
1489
1490 elif had_explicit_value:
Greg Wardeba20e62004-07-31 16:15:44 +00001491 self.error(_("%s option does not take a value") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001492
1493 else:
1494 value = None
1495
1496 option.process(opt, value, values, self)
1497
Greg Wardeba20e62004-07-31 16:15:44 +00001498 def _process_short_opts(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001499 arg = rargs.pop(0)
Greg Wardeba20e62004-07-31 16:15:44 +00001500 stop = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001501 i = 1
1502 for ch in arg[1:]:
1503 opt = "-" + ch
1504 option = self._short_opt.get(opt)
1505 i += 1 # we have consumed a character
1506
1507 if not option:
Greg Wardab05edc2006-04-23 03:47:58 +00001508 raise BadOptionError(opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001509 if option.takes_value():
1510 # Any characters left in arg? Pretend they're the
1511 # next arg, and stop consuming characters of arg.
1512 if i < len(arg):
1513 rargs.insert(0, arg[i:])
Greg Wardeba20e62004-07-31 16:15:44 +00001514 stop = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001515
1516 nargs = option.nargs
1517 if len(rargs) < nargs:
1518 if nargs == 1:
Greg Wardeba20e62004-07-31 16:15:44 +00001519 self.error(_("%s option requires an argument") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001520 else:
Greg Wardeba20e62004-07-31 16:15:44 +00001521 self.error(_("%s option requires %d arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001522 % (opt, nargs))
1523 elif nargs == 1:
1524 value = rargs.pop(0)
1525 else:
1526 value = tuple(rargs[0:nargs])
1527 del rargs[0:nargs]
1528
1529 else: # option doesn't take a value
1530 value = None
1531
1532 option.process(opt, value, values, self)
1533
1534 if stop:
1535 break
1536
1537
1538 # -- Feedback methods ----------------------------------------------
1539
Greg Wardeba20e62004-07-31 16:15:44 +00001540 def get_prog_name(self):
1541 if self.prog is None:
1542 return os.path.basename(sys.argv[0])
1543 else:
1544 return self.prog
1545
1546 def expand_prog_name(self, s):
1547 return s.replace("%prog", self.get_prog_name())
1548
1549 def get_description(self):
1550 return self.expand_prog_name(self.description)
1551
Greg Ward48aa84b2004-10-27 02:20:04 +00001552 def exit(self, status=0, msg=None):
1553 if msg:
1554 sys.stderr.write(msg)
1555 sys.exit(status)
1556
Greg Wardeba20e62004-07-31 16:15:44 +00001557 def error(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001558 """error(msg : string)
1559
1560 Print a usage message incorporating 'msg' to stderr and exit.
1561 If you override this in a subclass, it should not return -- it
1562 should either exit or raise an exception.
1563 """
1564 self.print_usage(sys.stderr)
Greg Ward48aa84b2004-10-27 02:20:04 +00001565 self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001566
Greg Wardeba20e62004-07-31 16:15:44 +00001567 def get_usage(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001568 if self.usage:
1569 return self.formatter.format_usage(
Greg Wardeba20e62004-07-31 16:15:44 +00001570 self.expand_prog_name(self.usage))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001571 else:
1572 return ""
1573
Greg Wardeba20e62004-07-31 16:15:44 +00001574 def print_usage(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001575 """print_usage(file : file = stdout)
1576
1577 Print the usage message for the current program (self.usage) to
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00001578 'file' (default stdout). Any occurrence of the string "%prog" in
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001579 self.usage is replaced with the name of the current program
1580 (basename of sys.argv[0]). Does nothing if self.usage is empty
1581 or not defined.
1582 """
1583 if self.usage:
1584 print >>file, self.get_usage()
1585
Greg Wardeba20e62004-07-31 16:15:44 +00001586 def get_version(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001587 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001588 return self.expand_prog_name(self.version)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001589 else:
1590 return ""
1591
Greg Wardeba20e62004-07-31 16:15:44 +00001592 def print_version(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001593 """print_version(file : file = stdout)
1594
1595 Print the version message for this program (self.version) to
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00001596 'file' (default stdout). As with print_usage(), any occurrence
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001597 of "%prog" in self.version is replaced by the current program's
1598 name. Does nothing if self.version is empty or undefined.
1599 """
1600 if self.version:
1601 print >>file, self.get_version()
1602
Greg Wardeba20e62004-07-31 16:15:44 +00001603 def format_option_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001604 if formatter is None:
1605 formatter = self.formatter
1606 formatter.store_option_strings(self)
1607 result = []
Greg Wardab05edc2006-04-23 03:47:58 +00001608 result.append(formatter.format_heading(_("Options")))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001609 formatter.indent()
1610 if self.option_list:
1611 result.append(OptionContainer.format_option_help(self, formatter))
1612 result.append("\n")
1613 for group in self.option_groups:
1614 result.append(group.format_help(formatter))
1615 result.append("\n")
1616 formatter.dedent()
1617 # Drop the last "\n", or the header if no options or option groups:
1618 return "".join(result[:-1])
1619
Greg Wardab05edc2006-04-23 03:47:58 +00001620 def format_epilog(self, formatter):
1621 return formatter.format_epilog(self.epilog)
1622
Greg Wardeba20e62004-07-31 16:15:44 +00001623 def format_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001624 if formatter is None:
1625 formatter = self.formatter
1626 result = []
1627 if self.usage:
1628 result.append(self.get_usage() + "\n")
1629 if self.description:
1630 result.append(self.format_description(formatter) + "\n")
1631 result.append(self.format_option_help(formatter))
Greg Wardab05edc2006-04-23 03:47:58 +00001632 result.append(self.format_epilog(formatter))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001633 return "".join(result)
1634
Greg Ward0e0c9f42006-06-11 16:24:11 +00001635 # used by test suite
1636 def _get_encoding(self, file):
Greg Ward48fae7a2006-07-23 16:05:51 +00001637 encoding = getattr(file, "encoding", None)
1638 if not encoding:
1639 encoding = sys.getdefaultencoding()
1640 return encoding
Greg Ward0e0c9f42006-06-11 16:24:11 +00001641
Greg Wardeba20e62004-07-31 16:15:44 +00001642 def print_help(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001643 """print_help(file : file = stdout)
1644
1645 Print an extended help message, listing all options and any
1646 help text provided with them, to 'file' (default stdout).
1647 """
1648 if file is None:
1649 file = sys.stdout
Greg Ward0e0c9f42006-06-11 16:24:11 +00001650 encoding = self._get_encoding(file)
1651 file.write(self.format_help().encode(encoding, "replace"))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001652
1653# class OptionParser
1654
1655
Greg Wardeba20e62004-07-31 16:15:44 +00001656def _match_abbrev(s, wordmap):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001657 """_match_abbrev(s : string, wordmap : {string : Option}) -> string
1658
1659 Return the string key in 'wordmap' for which 's' is an unambiguous
1660 abbreviation. If 's' is found to be ambiguous or doesn't match any of
1661 'words', raise BadOptionError.
1662 """
1663 # Is there an exact match?
Raymond Hettinger930795b2008-07-10 15:37:08 +00001664 if s in wordmap:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001665 return s
1666 else:
1667 # Isolate all words with s as a prefix.
1668 possibilities = [word for word in wordmap.keys()
1669 if word.startswith(s)]
1670 # No exact match, so there had better be just one possibility.
1671 if len(possibilities) == 1:
1672 return possibilities[0]
1673 elif not possibilities:
Greg Wardab05edc2006-04-23 03:47:58 +00001674 raise BadOptionError(s)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001675 else:
1676 # More than one possible completion: ambiguous prefix.
Armin Rigoa3f09272006-05-28 19:13:17 +00001677 possibilities.sort()
Greg Wardab05edc2006-04-23 03:47:58 +00001678 raise AmbiguousOptionError(s, possibilities)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001679
1680
1681# Some day, there might be many Option classes. As of Optik 1.3, the
1682# preferred way to instantiate Options is indirectly, via make_option(),
1683# which will become a factory function when there are many Option
1684# classes.
1685make_option = Option