blob: d9225e1c809f6ee218409774c1a1ac471fba608f [file] [log] [blame]
Benjamin Petersonf10a79a2008-10-11 00:49:57 +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
Benjamin Petersonf10a79a2008-10-11 00:49:57 +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
Thomas Wouters0e3f5912006-08-11 14:57:12 +000011__version__ = "1.5.3"
Greg Ward2492fcf2003-04-21 02:40:34 +000012
Greg Ward4656ed42003-05-08 01:38:52 +000013__all__ = ['Option',
Benjamin Petersond23f8222009-04-05 19:13:16 +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__ = """
Thomas Wouters477c8d52006-05-27 19:21:47 +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
Guido van Rossumb9ba4582002-11-14 22:00:19 +000063import textwrap
Greg Wardeba20e62004-07-31 16:15:44 +000064
65def _repr(self):
66 return "<%s at 0x%x: %s>" % (self.__class__.__name__, id(self), self)
67
68
69# This file was generated from:
Thomas Wouters0e3f5912006-08-11 14:57:12 +000070# Id: option_parser.py 527 2006-07-23 15:21:30Z greg
71# Id: option.py 522 2006-06-11 16:22:03Z gward
72# Id: help.py 527 2006-07-23 15:21:30Z greg
Thomas Wouters477c8d52006-05-27 19:21:47 +000073# Id: errors.py 509 2006-04-20 00:58:24Z gward
74
75try:
76 from gettext import gettext
77except ImportError:
78 def gettext(message):
79 return message
80_ = gettext
81
Guido van Rossumb9ba4582002-11-14 22:00:19 +000082
Guido van Rossumb9ba4582002-11-14 22:00:19 +000083class OptParseError (Exception):
Greg Wardeba20e62004-07-31 16:15:44 +000084 def __init__(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000085 self.msg = msg
86
Greg Wardeba20e62004-07-31 16:15:44 +000087 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000088 return self.msg
89
Greg Ward2492fcf2003-04-21 02:40:34 +000090
Guido van Rossumb9ba4582002-11-14 22:00:19 +000091class OptionError (OptParseError):
92 """
93 Raised if an Option instance is created with invalid or
94 inconsistent arguments.
95 """
96
Greg Wardeba20e62004-07-31 16:15:44 +000097 def __init__(self, msg, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +000098 self.msg = msg
99 self.option_id = str(option)
100
Greg Wardeba20e62004-07-31 16:15:44 +0000101 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000102 if self.option_id:
103 return "option %s: %s" % (self.option_id, self.msg)
104 else:
105 return self.msg
106
107class OptionConflictError (OptionError):
108 """
109 Raised if conflicting options are added to an OptionParser.
110 """
111
112class OptionValueError (OptParseError):
113 """
114 Raised if an invalid option value is encountered on the command
115 line.
116 """
117
118class BadOptionError (OptParseError):
119 """
Thomas Wouters477c8d52006-05-27 19:21:47 +0000120 Raised if an invalid option is seen on the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000121 """
Thomas Wouters477c8d52006-05-27 19:21:47 +0000122 def __init__(self, opt_str):
123 self.opt_str = opt_str
124
125 def __str__(self):
126 return _("no such option: %s") % self.opt_str
127
128class AmbiguousOptionError (BadOptionError):
129 """
130 Raised if an ambiguous option is seen on the command line.
131 """
132 def __init__(self, opt_str, possibilities):
133 BadOptionError.__init__(self, opt_str)
134 self.possibilities = possibilities
135
136 def __str__(self):
137 return (_("ambiguous option: %s (%s?)")
138 % (self.opt_str, ", ".join(self.possibilities)))
Greg Ward2492fcf2003-04-21 02:40:34 +0000139
140
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000141class HelpFormatter:
142
143 """
144 Abstract base class for formatting option help. OptionParser
145 instances should use one of the HelpFormatter subclasses for
146 formatting help; by default IndentedHelpFormatter is used.
147
148 Instance attributes:
Greg Wardeba20e62004-07-31 16:15:44 +0000149 parser : OptionParser
150 the controlling OptionParser instance
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000151 indent_increment : int
152 the number of columns to indent per nesting level
153 max_help_position : int
154 the maximum starting column for option help text
155 help_position : int
156 the calculated starting column for option help text;
157 initially the same as the maximum
158 width : int
Greg Wardeba20e62004-07-31 16:15:44 +0000159 total number of columns for output (pass None to constructor for
160 this value to be taken from the $COLUMNS environment variable)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000161 level : int
162 current indentation level
163 current_indent : int
164 current indentation level (in columns)
165 help_width : int
166 number of columns available for option help text (calculated)
Greg Wardeba20e62004-07-31 16:15:44 +0000167 default_tag : str
168 text to replace with each option's default value, "%default"
169 by default. Set to false value to disable default value expansion.
170 option_strings : { Option : str }
171 maps Option instances to the snippet of help text explaining
172 the syntax of that option, e.g. "-h, --help" or
173 "-fFILE, --file=FILE"
174 _short_opt_fmt : str
175 format string controlling how short options with values are
176 printed in help text. Must be either "%s%s" ("-fFILE") or
177 "%s %s" ("-f FILE"), because those are the two syntaxes that
178 Optik supports.
179 _long_opt_fmt : str
180 similar but for long options; must be either "%s %s" ("--file FILE")
181 or "%s=%s" ("--file=FILE").
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000182 """
183
Greg Wardeba20e62004-07-31 16:15:44 +0000184 NO_DEFAULT_VALUE = "none"
185
186 def __init__(self,
187 indent_increment,
188 max_help_position,
189 width,
190 short_first):
191 self.parser = None
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000192 self.indent_increment = indent_increment
193 self.help_position = self.max_help_position = max_help_position
Greg Wardeba20e62004-07-31 16:15:44 +0000194 if width is None:
195 try:
196 width = int(os.environ['COLUMNS'])
197 except (KeyError, ValueError):
198 width = 80
199 width -= 2
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000200 self.width = width
201 self.current_indent = 0
202 self.level = 0
Greg Wardeba20e62004-07-31 16:15:44 +0000203 self.help_width = None # computed later
Greg Ward2492fcf2003-04-21 02:40:34 +0000204 self.short_first = short_first
Greg Wardeba20e62004-07-31 16:15:44 +0000205 self.default_tag = "%default"
206 self.option_strings = {}
207 self._short_opt_fmt = "%s %s"
208 self._long_opt_fmt = "%s=%s"
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000209
Greg Wardeba20e62004-07-31 16:15:44 +0000210 def set_parser(self, parser):
211 self.parser = parser
212
213 def set_short_opt_delimiter(self, delim):
214 if delim not in ("", " "):
215 raise ValueError(
216 "invalid metavar delimiter for short options: %r" % delim)
217 self._short_opt_fmt = "%s" + delim + "%s"
218
219 def set_long_opt_delimiter(self, delim):
220 if delim not in ("=", " "):
221 raise ValueError(
222 "invalid metavar delimiter for long options: %r" % delim)
223 self._long_opt_fmt = "%s" + delim + "%s"
224
225 def indent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000226 self.current_indent += self.indent_increment
227 self.level += 1
228
Greg Wardeba20e62004-07-31 16:15:44 +0000229 def dedent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000230 self.current_indent -= self.indent_increment
231 assert self.current_indent >= 0, "Indent decreased below 0."
232 self.level -= 1
233
Greg Wardeba20e62004-07-31 16:15:44 +0000234 def format_usage(self, usage):
Collin Winterce36ad82007-08-30 01:19:48 +0000235 raise NotImplementedError("subclasses must implement")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000236
Greg Wardeba20e62004-07-31 16:15:44 +0000237 def format_heading(self, heading):
Collin Winterce36ad82007-08-30 01:19:48 +0000238 raise NotImplementedError("subclasses must implement")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000239
Thomas Wouters477c8d52006-05-27 19:21:47 +0000240 def _format_text(self, text):
241 """
242 Format a paragraph of free-form text for inclusion in the
243 help output at the current indentation level.
244 """
245 text_width = self.width - self.current_indent
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000246 indent = " "*self.current_indent
Thomas Wouters477c8d52006-05-27 19:21:47 +0000247 return textwrap.fill(text,
248 text_width,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000249 initial_indent=indent,
Thomas Wouters477c8d52006-05-27 19:21:47 +0000250 subsequent_indent=indent)
251
252 def format_description(self, description):
253 if description:
254 return self._format_text(description) + "\n"
255 else:
256 return ""
257
258 def format_epilog(self, epilog):
259 if epilog:
260 return "\n" + self._format_text(epilog) + "\n"
261 else:
262 return ""
263
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000264
Greg Wardeba20e62004-07-31 16:15:44 +0000265 def expand_default(self, option):
266 if self.parser is None or not self.default_tag:
267 return option.help
268
269 default_value = self.parser.defaults.get(option.dest)
270 if default_value is NO_DEFAULT or default_value is None:
271 default_value = self.NO_DEFAULT_VALUE
272
273 return option.help.replace(self.default_tag, str(default_value))
274
275 def format_option(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000276 # The help for each option consists of two parts:
277 # * the opt strings and metavars
278 # eg. ("-x", or "-fFILENAME, --file=FILENAME")
279 # * the user-supplied help string
280 # eg. ("turn on expert mode", "read data from FILENAME")
281 #
282 # If possible, we write both of these on the same line:
283 # -x turn on expert mode
284 #
285 # But if the opt string list is too long, we put the help
286 # string on a second line, indented to the same column it would
287 # start in if it fit on the first line.
288 # -fFILENAME, --file=FILENAME
289 # read data from FILENAME
290 result = []
Greg Wardeba20e62004-07-31 16:15:44 +0000291 opts = self.option_strings[option]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000292 opt_width = self.help_position - self.current_indent - 2
293 if len(opts) > opt_width:
294 opts = "%*s%s\n" % (self.current_indent, "", opts)
295 indent_first = self.help_position
296 else: # start help on same line as opts
297 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
298 indent_first = 0
299 result.append(opts)
300 if option.help:
Greg Wardeba20e62004-07-31 16:15:44 +0000301 help_text = self.expand_default(option)
302 help_lines = textwrap.wrap(help_text, self.help_width)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000303 result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
304 result.extend(["%*s%s\n" % (self.help_position, "", line)
305 for line in help_lines[1:]])
306 elif opts[-1] != "\n":
307 result.append("\n")
308 return "".join(result)
309
Greg Wardeba20e62004-07-31 16:15:44 +0000310 def store_option_strings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000311 self.indent()
312 max_len = 0
313 for opt in parser.option_list:
314 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000315 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000316 max_len = max(max_len, len(strings) + self.current_indent)
317 self.indent()
318 for group in parser.option_groups:
319 for opt in group.option_list:
320 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000321 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000322 max_len = max(max_len, len(strings) + self.current_indent)
323 self.dedent()
324 self.dedent()
325 self.help_position = min(max_len + 2, self.max_help_position)
Greg Wardeba20e62004-07-31 16:15:44 +0000326 self.help_width = self.width - self.help_position
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000327
Greg Wardeba20e62004-07-31 16:15:44 +0000328 def format_option_strings(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000329 """Return a comma-separated list of option strings & metavariables."""
Greg Ward2492fcf2003-04-21 02:40:34 +0000330 if option.takes_value():
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000331 metavar = option.metavar or option.dest.upper()
Greg Wardeba20e62004-07-31 16:15:44 +0000332 short_opts = [self._short_opt_fmt % (sopt, metavar)
333 for sopt in option._short_opts]
334 long_opts = [self._long_opt_fmt % (lopt, metavar)
335 for lopt in option._long_opts]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000336 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000337 short_opts = option._short_opts
338 long_opts = option._long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000339
Greg Ward2492fcf2003-04-21 02:40:34 +0000340 if self.short_first:
341 opts = short_opts + long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000342 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000343 opts = long_opts + short_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000344
Greg Ward2492fcf2003-04-21 02:40:34 +0000345 return ", ".join(opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000346
347class IndentedHelpFormatter (HelpFormatter):
348 """Format help with indented section bodies.
349 """
350
Greg Wardeba20e62004-07-31 16:15:44 +0000351 def __init__(self,
352 indent_increment=2,
353 max_help_position=24,
354 width=None,
355 short_first=1):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000356 HelpFormatter.__init__(
357 self, indent_increment, max_help_position, width, short_first)
358
Greg Wardeba20e62004-07-31 16:15:44 +0000359 def format_usage(self, usage):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000360 return _("Usage: %s\n") % usage
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000361
Greg Wardeba20e62004-07-31 16:15:44 +0000362 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000363 return "%*s%s:\n" % (self.current_indent, "", heading)
364
365
366class TitledHelpFormatter (HelpFormatter):
367 """Format help with underlined section headers.
368 """
369
Greg Wardeba20e62004-07-31 16:15:44 +0000370 def __init__(self,
371 indent_increment=0,
372 max_help_position=24,
373 width=None,
374 short_first=0):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000375 HelpFormatter.__init__ (
376 self, indent_increment, max_help_position, width, short_first)
377
Greg Wardeba20e62004-07-31 16:15:44 +0000378 def format_usage(self, usage):
379 return "%s %s\n" % (self.format_heading(_("Usage")), usage)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000380
Greg Wardeba20e62004-07-31 16:15:44 +0000381 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000382 return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading))
Greg Ward2492fcf2003-04-21 02:40:34 +0000383
384
Thomas Wouters477c8d52006-05-27 19:21:47 +0000385def _parse_num(val, type):
386 if val[:2].lower() == "0x": # hexadecimal
387 radix = 16
388 elif val[:2].lower() == "0b": # binary
389 radix = 2
390 val = val[2:] or "0" # have to remove "0b" prefix
391 elif val[:1] == "0": # octal
392 radix = 8
393 else: # decimal
394 radix = 10
395
396 return type(val, radix)
397
398def _parse_int(val):
399 return _parse_num(val, int)
400
401def _parse_long(val):
Guido van Rossume2a383d2007-01-15 16:59:06 +0000402 return _parse_num(val, int)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000403
404_builtin_cvt = { "int" : (_parse_int, _("integer")),
405 "long" : (_parse_long, _("long integer")),
Greg Wardeba20e62004-07-31 16:15:44 +0000406 "float" : (float, _("floating-point")),
407 "complex" : (complex, _("complex")) }
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000408
Greg Wardeba20e62004-07-31 16:15:44 +0000409def check_builtin(option, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000410 (cvt, what) = _builtin_cvt[option.type]
411 try:
412 return cvt(value)
413 except ValueError:
414 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000415 _("option %s: invalid %s value: %r") % (opt, what, value))
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000416
417def check_choice(option, opt, value):
418 if value in option.choices:
419 return value
420 else:
421 choices = ", ".join(map(repr, option.choices))
422 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000423 _("option %s: invalid choice: %r (choose from %s)")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000424 % (opt, value, choices))
425
426# Not supplying a default is different from a default of None,
427# so we need an explicit "not supplied" value.
Greg Wardeba20e62004-07-31 16:15:44 +0000428NO_DEFAULT = ("NO", "DEFAULT")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000429
430
431class Option:
432 """
433 Instance attributes:
434 _short_opts : [string]
435 _long_opts : [string]
436
437 action : string
438 type : string
439 dest : string
440 default : any
441 nargs : int
442 const : any
443 choices : [string]
444 callback : function
445 callback_args : (any*)
446 callback_kwargs : { string : any }
447 help : string
448 metavar : string
449 """
450
451 # The list of instance attributes that may be set through
452 # keyword args to the constructor.
453 ATTRS = ['action',
454 'type',
455 'dest',
456 'default',
457 'nargs',
458 'const',
459 'choices',
460 'callback',
461 'callback_args',
462 'callback_kwargs',
463 'help',
464 'metavar']
465
466 # The set of actions allowed by option parsers. Explicitly listed
467 # here so the constructor can validate its arguments.
468 ACTIONS = ("store",
469 "store_const",
470 "store_true",
471 "store_false",
472 "append",
Thomas Wouters477c8d52006-05-27 19:21:47 +0000473 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000474 "count",
475 "callback",
476 "help",
477 "version")
478
479 # The set of actions that involve storing a value somewhere;
480 # also listed just for constructor argument validation. (If
481 # the action is one of these, there must be a destination.)
482 STORE_ACTIONS = ("store",
483 "store_const",
484 "store_true",
485 "store_false",
486 "append",
Thomas Wouters477c8d52006-05-27 19:21:47 +0000487 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000488 "count")
489
490 # The set of actions for which it makes sense to supply a value
Greg Ward48aa84b2004-10-27 02:20:04 +0000491 # type, ie. which may consume an argument from the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000492 TYPED_ACTIONS = ("store",
493 "append",
494 "callback")
495
Greg Ward48aa84b2004-10-27 02:20:04 +0000496 # The set of actions which *require* a value type, ie. that
497 # always consume an argument from the command line.
498 ALWAYS_TYPED_ACTIONS = ("store",
499 "append")
500
Thomas Wouters477c8d52006-05-27 19:21:47 +0000501 # The set of actions which take a 'const' attribute.
502 CONST_ACTIONS = ("store_const",
503 "append_const")
504
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000505 # The set of known types for option parsers. Again, listed here for
506 # constructor argument validation.
507 TYPES = ("string", "int", "long", "float", "complex", "choice")
508
509 # Dictionary of argument checking functions, which convert and
510 # validate option arguments according to the option type.
511 #
512 # Signature of checking functions is:
513 # check(option : Option, opt : string, value : string) -> any
514 # where
515 # option is the Option instance calling the checker
516 # opt is the actual option seen on the command-line
517 # (eg. "-a", "--file")
518 # value is the option argument seen on the command-line
519 #
520 # The return value should be in the appropriate Python type
521 # for option.type -- eg. an integer if option.type == "int".
522 #
523 # If no checker is defined for a type, arguments will be
524 # unchecked and remain strings.
525 TYPE_CHECKER = { "int" : check_builtin,
526 "long" : check_builtin,
527 "float" : check_builtin,
Greg Wardeba20e62004-07-31 16:15:44 +0000528 "complex": check_builtin,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000529 "choice" : check_choice,
530 }
531
532
533 # CHECK_METHODS is a list of unbound method objects; they are called
534 # by the constructor, in order, after all attributes are
535 # initialized. The list is created and filled in later, after all
536 # the methods are actually defined. (I just put it here because I
537 # like to define and document all class attributes in the same
538 # place.) Subclasses that add another _check_*() method should
539 # define their own CHECK_METHODS list that adds their check method
540 # to those from this class.
541 CHECK_METHODS = None
542
543
544 # -- Constructor/initialization methods ----------------------------
545
Greg Wardeba20e62004-07-31 16:15:44 +0000546 def __init__(self, *opts, **attrs):
Greg Ward2492fcf2003-04-21 02:40:34 +0000547 # Set _short_opts, _long_opts attrs from 'opts' tuple.
548 # Have to be set now, in case no option strings are supplied.
549 self._short_opts = []
550 self._long_opts = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000551 opts = self._check_opt_strings(opts)
552 self._set_opt_strings(opts)
553
554 # Set all other attrs (action, type, etc.) from 'attrs' dict
555 self._set_attrs(attrs)
556
557 # Check all the attributes we just set. There are lots of
558 # complicated interdependencies, but luckily they can be farmed
559 # out to the _check_*() methods listed in CHECK_METHODS -- which
560 # could be handy for subclasses! The one thing these all share
561 # is that they raise OptionError if they discover a problem.
562 for checker in self.CHECK_METHODS:
563 checker(self)
564
Greg Wardeba20e62004-07-31 16:15:44 +0000565 def _check_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000566 # Filter out None because early versions of Optik had exactly
567 # one short option and one long option, either of which
568 # could be None.
Guido van Rossumc1f779c2007-07-03 08:25:58 +0000569 opts = [opt for opt in opts if opt]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000570 if not opts:
Greg Ward2492fcf2003-04-21 02:40:34 +0000571 raise TypeError("at least one option string must be supplied")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000572 return opts
573
Greg Wardeba20e62004-07-31 16:15:44 +0000574 def _set_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000575 for opt in opts:
576 if len(opt) < 2:
577 raise OptionError(
578 "invalid option string %r: "
579 "must be at least two characters long" % opt, self)
580 elif len(opt) == 2:
581 if not (opt[0] == "-" and opt[1] != "-"):
582 raise OptionError(
583 "invalid short option string %r: "
584 "must be of the form -x, (x any non-dash char)" % opt,
585 self)
586 self._short_opts.append(opt)
587 else:
588 if not (opt[0:2] == "--" and opt[2] != "-"):
589 raise OptionError(
590 "invalid long option string %r: "
591 "must start with --, followed by non-dash" % opt,
592 self)
593 self._long_opts.append(opt)
594
Greg Wardeba20e62004-07-31 16:15:44 +0000595 def _set_attrs(self, attrs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000596 for attr in self.ATTRS:
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000597 if attr in attrs:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000598 setattr(self, attr, attrs[attr])
599 del attrs[attr]
600 else:
601 if attr == 'default':
602 setattr(self, attr, NO_DEFAULT)
603 else:
604 setattr(self, attr, None)
605 if attrs:
Georg Brandlc2d9d7f2007-02-11 23:06:17 +0000606 attrs = sorted(attrs.keys())
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000607 raise OptionError(
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000608 "invalid keyword arguments: %s" % ", ".join(attrs),
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000609 self)
610
611
612 # -- Constructor validation methods --------------------------------
613
Greg Wardeba20e62004-07-31 16:15:44 +0000614 def _check_action(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000615 if self.action is None:
616 self.action = "store"
617 elif self.action not in self.ACTIONS:
618 raise OptionError("invalid action: %r" % self.action, self)
619
Greg Wardeba20e62004-07-31 16:15:44 +0000620 def _check_type(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000621 if self.type is None:
Greg Ward48aa84b2004-10-27 02:20:04 +0000622 if self.action in self.ALWAYS_TYPED_ACTIONS:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000623 if self.choices is not None:
624 # The "choices" attribute implies "choice" type.
625 self.type = "choice"
626 else:
627 # No type given? "string" is the most sensible default.
628 self.type = "string"
629 else:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000630 # Allow type objects or builtin type conversion functions
631 # (int, str, etc.) as an alternative to their names. (The
Georg Brandl1a3284e2007-12-02 09:40:06 +0000632 # complicated check of builtins is only necessary for
Thomas Wouters477c8d52006-05-27 19:21:47 +0000633 # Python 2.1 and earlier, and is short-circuited by the
634 # first check on modern Pythons.)
Georg Brandl1a3284e2007-12-02 09:40:06 +0000635 import builtins
Guido van Rossum13257902007-06-07 23:15:56 +0000636 if ( isinstance(self.type, type) or
Thomas Wouters477c8d52006-05-27 19:21:47 +0000637 (hasattr(self.type, "__name__") and
Georg Brandl1a3284e2007-12-02 09:40:06 +0000638 getattr(builtins, self.type.__name__, None) is self.type) ):
Greg Wardeba20e62004-07-31 16:15:44 +0000639 self.type = self.type.__name__
Thomas Wouters477c8d52006-05-27 19:21:47 +0000640
Greg Wardeba20e62004-07-31 16:15:44 +0000641 if self.type == "str":
642 self.type = "string"
643
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000644 if self.type not in self.TYPES:
645 raise OptionError("invalid option type: %r" % self.type, self)
646 if self.action not in self.TYPED_ACTIONS:
647 raise OptionError(
648 "must not supply a type for action %r" % self.action, self)
649
650 def _check_choice(self):
651 if self.type == "choice":
652 if self.choices is None:
653 raise OptionError(
654 "must supply a list of choices for type 'choice'", self)
Guido van Rossum13257902007-06-07 23:15:56 +0000655 elif not isinstance(self.choices, (tuple, list)):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000656 raise OptionError(
657 "choices must be a list of strings ('%s' supplied)"
658 % str(type(self.choices)).split("'")[1], self)
659 elif self.choices is not None:
660 raise OptionError(
661 "must not supply choices for type %r" % self.type, self)
662
Greg Wardeba20e62004-07-31 16:15:44 +0000663 def _check_dest(self):
664 # No destination given, and we need one for this action. The
665 # self.type check is for callbacks that take a value.
666 takes_value = (self.action in self.STORE_ACTIONS or
667 self.type is not None)
668 if self.dest is None and takes_value:
669
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000670 # Glean a destination from the first long option string,
671 # or from the first short option string if no long options.
672 if self._long_opts:
673 # eg. "--foo-bar" -> "foo_bar"
674 self.dest = self._long_opts[0][2:].replace('-', '_')
675 else:
676 self.dest = self._short_opts[0][1]
677
Greg Wardeba20e62004-07-31 16:15:44 +0000678 def _check_const(self):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000679 if self.action not in self.CONST_ACTIONS and self.const is not None:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000680 raise OptionError(
681 "'const' must not be supplied for action %r" % self.action,
682 self)
683
Greg Wardeba20e62004-07-31 16:15:44 +0000684 def _check_nargs(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000685 if self.action in self.TYPED_ACTIONS:
686 if self.nargs is None:
687 self.nargs = 1
688 elif self.nargs is not None:
689 raise OptionError(
690 "'nargs' must not be supplied for action %r" % self.action,
691 self)
692
Greg Wardeba20e62004-07-31 16:15:44 +0000693 def _check_callback(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000694 if self.action == "callback":
Guido van Rossumd59da4b2007-05-22 18:11:13 +0000695 if not hasattr(self.callback, '__call__'):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000696 raise OptionError(
697 "callback not callable: %r" % self.callback, self)
698 if (self.callback_args is not None and
Guido van Rossum13257902007-06-07 23:15:56 +0000699 not isinstance(self.callback_args, tuple)):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000700 raise OptionError(
701 "callback_args, if supplied, must be a tuple: not %r"
702 % self.callback_args, self)
703 if (self.callback_kwargs is not None and
Guido van Rossum13257902007-06-07 23:15:56 +0000704 not isinstance(self.callback_kwargs, dict)):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000705 raise OptionError(
706 "callback_kwargs, if supplied, must be a dict: not %r"
707 % self.callback_kwargs, self)
708 else:
709 if self.callback is not None:
710 raise OptionError(
711 "callback supplied (%r) for non-callback option"
712 % self.callback, self)
713 if self.callback_args is not None:
714 raise OptionError(
715 "callback_args supplied for non-callback option", self)
716 if self.callback_kwargs is not None:
717 raise OptionError(
718 "callback_kwargs supplied for non-callback option", self)
719
720
721 CHECK_METHODS = [_check_action,
722 _check_type,
723 _check_choice,
724 _check_dest,
725 _check_const,
726 _check_nargs,
727 _check_callback]
728
729
730 # -- Miscellaneous methods -----------------------------------------
731
Greg Wardeba20e62004-07-31 16:15:44 +0000732 def __str__(self):
Greg Ward2492fcf2003-04-21 02:40:34 +0000733 return "/".join(self._short_opts + self._long_opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000734
Greg Wardeba20e62004-07-31 16:15:44 +0000735 __repr__ = _repr
736
737 def takes_value(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000738 return self.type is not None
739
Greg Wardeba20e62004-07-31 16:15:44 +0000740 def get_opt_string(self):
741 if self._long_opts:
742 return self._long_opts[0]
743 else:
744 return self._short_opts[0]
745
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000746
747 # -- Processing methods --------------------------------------------
748
Greg Wardeba20e62004-07-31 16:15:44 +0000749 def check_value(self, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000750 checker = self.TYPE_CHECKER.get(self.type)
751 if checker is None:
752 return value
753 else:
754 return checker(self, opt, value)
755
Greg Wardeba20e62004-07-31 16:15:44 +0000756 def convert_value(self, opt, value):
757 if value is not None:
758 if self.nargs == 1:
759 return self.check_value(opt, value)
760 else:
761 return tuple([self.check_value(opt, v) for v in value])
762
763 def process(self, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000764
765 # First, convert the value(s) to the right type. Howl if any
766 # value(s) are bogus.
Greg Wardeba20e62004-07-31 16:15:44 +0000767 value = self.convert_value(opt, value)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000768
769 # And then take whatever action is expected of us.
770 # This is a separate method to make life easier for
771 # subclasses to add new actions.
772 return self.take_action(
773 self.action, self.dest, opt, value, values, parser)
774
Greg Wardeba20e62004-07-31 16:15:44 +0000775 def take_action(self, action, dest, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000776 if action == "store":
777 setattr(values, dest, value)
778 elif action == "store_const":
779 setattr(values, dest, self.const)
780 elif action == "store_true":
Greg Ward2492fcf2003-04-21 02:40:34 +0000781 setattr(values, dest, True)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000782 elif action == "store_false":
Greg Ward2492fcf2003-04-21 02:40:34 +0000783 setattr(values, dest, False)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000784 elif action == "append":
785 values.ensure_value(dest, []).append(value)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000786 elif action == "append_const":
787 values.ensure_value(dest, []).append(self.const)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000788 elif action == "count":
789 setattr(values, dest, values.ensure_value(dest, 0) + 1)
790 elif action == "callback":
791 args = self.callback_args or ()
792 kwargs = self.callback_kwargs or {}
793 self.callback(self, opt, value, parser, *args, **kwargs)
794 elif action == "help":
795 parser.print_help()
Greg Ward48aa84b2004-10-27 02:20:04 +0000796 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000797 elif action == "version":
798 parser.print_version()
Greg Ward48aa84b2004-10-27 02:20:04 +0000799 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000800 else:
Benjamin Peterson4469d0c2008-11-30 22:46:23 +0000801 raise ValueError("unknown action %r" % self.action)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000802
803 return 1
804
805# class Option
Greg Ward2492fcf2003-04-21 02:40:34 +0000806
807
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000808SUPPRESS_HELP = "SUPPRESS"+"HELP"
809SUPPRESS_USAGE = "SUPPRESS"+"USAGE"
810
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000811class Values:
812
Greg Wardeba20e62004-07-31 16:15:44 +0000813 def __init__(self, defaults=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000814 if defaults:
815 for (attr, val) in defaults.items():
816 setattr(self, attr, val)
817
Greg Wardeba20e62004-07-31 16:15:44 +0000818 def __str__(self):
819 return str(self.__dict__)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000820
Greg Wardeba20e62004-07-31 16:15:44 +0000821 __repr__ = _repr
822
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000823 def __eq__(self, other):
Greg Wardeba20e62004-07-31 16:15:44 +0000824 if isinstance(other, Values):
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000825 return self.__dict__ == other.__dict__
Guido van Rossum13257902007-06-07 23:15:56 +0000826 elif isinstance(other, dict):
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000827 return self.__dict__ == other
Greg Wardeba20e62004-07-31 16:15:44 +0000828 else:
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000829 return NotImplemented
Greg Wardeba20e62004-07-31 16:15:44 +0000830
831 def _update_careful(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000832 """
833 Update the option values from an arbitrary dictionary, but only
834 use keys from dict that already have a corresponding attribute
835 in self. Any keys in dict without a corresponding attribute
836 are silently ignored.
837 """
838 for attr in dir(self):
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000839 if attr in dict:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000840 dval = dict[attr]
841 if dval is not None:
842 setattr(self, attr, dval)
843
Greg Wardeba20e62004-07-31 16:15:44 +0000844 def _update_loose(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000845 """
846 Update the option values from an arbitrary dictionary,
847 using all keys from the dictionary regardless of whether
848 they have a corresponding attribute in self or not.
849 """
850 self.__dict__.update(dict)
851
Greg Wardeba20e62004-07-31 16:15:44 +0000852 def _update(self, dict, mode):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000853 if mode == "careful":
854 self._update_careful(dict)
855 elif mode == "loose":
856 self._update_loose(dict)
857 else:
Collin Winterce36ad82007-08-30 01:19:48 +0000858 raise ValueError("invalid update mode: %r" % mode)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000859
Greg Wardeba20e62004-07-31 16:15:44 +0000860 def read_module(self, modname, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000861 __import__(modname)
862 mod = sys.modules[modname]
863 self._update(vars(mod), mode)
864
Greg Wardeba20e62004-07-31 16:15:44 +0000865 def read_file(self, filename, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000866 vars = {}
Neal Norwitz01688022007-08-12 00:43:29 +0000867 exec(open(filename).read(), vars)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000868 self._update(vars, mode)
869
Greg Wardeba20e62004-07-31 16:15:44 +0000870 def ensure_value(self, attr, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000871 if not hasattr(self, attr) or getattr(self, attr) is None:
872 setattr(self, attr, value)
873 return getattr(self, attr)
874
875
876class OptionContainer:
877
878 """
879 Abstract base class.
880
881 Class attributes:
882 standard_option_list : [Option]
883 list of standard options that will be accepted by all instances
884 of this parser class (intended to be overridden by subclasses).
885
886 Instance attributes:
887 option_list : [Option]
888 the list of Option objects contained by this OptionContainer
889 _short_opt : { string : Option }
890 dictionary mapping short option strings, eg. "-f" or "-X",
891 to the Option instances that implement them. If an Option
892 has multiple short option strings, it will appears in this
893 dictionary multiple times. [1]
894 _long_opt : { string : Option }
895 dictionary mapping long option strings, eg. "--file" or
896 "--exclude", to the Option instances that implement them.
897 Again, a given Option can occur multiple times in this
898 dictionary. [1]
899 defaults : { string : any }
900 dictionary mapping option destination names to default
901 values for each destination [1]
902
903 [1] These mappings are common to (shared by) all components of the
904 controlling OptionParser, where they are initially created.
905
906 """
907
Greg Wardeba20e62004-07-31 16:15:44 +0000908 def __init__(self, option_class, conflict_handler, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000909 # Initialize the option list and related data structures.
910 # This method must be provided by subclasses, and it must
911 # initialize at least the following instance attributes:
912 # option_list, _short_opt, _long_opt, defaults.
913 self._create_option_list()
914
915 self.option_class = option_class
916 self.set_conflict_handler(conflict_handler)
917 self.set_description(description)
918
Greg Wardeba20e62004-07-31 16:15:44 +0000919 def _create_option_mappings(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000920 # For use by OptionParser constructor -- create the master
921 # option mappings used by this OptionParser and all
922 # OptionGroups that it owns.
923 self._short_opt = {} # single letter -> Option instance
924 self._long_opt = {} # long option -> Option instance
925 self.defaults = {} # maps option dest -> default value
926
927
Greg Wardeba20e62004-07-31 16:15:44 +0000928 def _share_option_mappings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000929 # For use by OptionGroup constructor -- use shared option
930 # mappings from the OptionParser that owns this OptionGroup.
931 self._short_opt = parser._short_opt
932 self._long_opt = parser._long_opt
933 self.defaults = parser.defaults
934
Greg Wardeba20e62004-07-31 16:15:44 +0000935 def set_conflict_handler(self, handler):
Greg Ward48aa84b2004-10-27 02:20:04 +0000936 if handler not in ("error", "resolve"):
Collin Winterce36ad82007-08-30 01:19:48 +0000937 raise ValueError("invalid conflict_resolution value %r" % handler)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000938 self.conflict_handler = handler
939
Greg Wardeba20e62004-07-31 16:15:44 +0000940 def set_description(self, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000941 self.description = description
942
Greg Wardeba20e62004-07-31 16:15:44 +0000943 def get_description(self):
944 return self.description
945
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000946
Thomas Wouters477c8d52006-05-27 19:21:47 +0000947 def destroy(self):
948 """see OptionParser.destroy()."""
949 del self._short_opt
950 del self._long_opt
951 del self.defaults
952
953
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000954 # -- Option-adding methods -----------------------------------------
955
Greg Wardeba20e62004-07-31 16:15:44 +0000956 def _check_conflict(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000957 conflict_opts = []
958 for opt in option._short_opts:
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000959 if opt in self._short_opt:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000960 conflict_opts.append((opt, self._short_opt[opt]))
961 for opt in option._long_opts:
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000962 if opt in self._long_opt:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000963 conflict_opts.append((opt, self._long_opt[opt]))
964
965 if conflict_opts:
966 handler = self.conflict_handler
Greg Ward48aa84b2004-10-27 02:20:04 +0000967 if handler == "error":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000968 raise OptionConflictError(
969 "conflicting option string(s): %s"
970 % ", ".join([co[0] for co in conflict_opts]),
971 option)
Greg Ward48aa84b2004-10-27 02:20:04 +0000972 elif handler == "resolve":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000973 for (opt, c_option) in conflict_opts:
974 if opt.startswith("--"):
975 c_option._long_opts.remove(opt)
976 del self._long_opt[opt]
977 else:
978 c_option._short_opts.remove(opt)
979 del self._short_opt[opt]
980 if not (c_option._short_opts or c_option._long_opts):
981 c_option.container.option_list.remove(c_option)
982
Greg Wardeba20e62004-07-31 16:15:44 +0000983 def add_option(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000984 """add_option(Option)
985 add_option(opt_str, ..., kwarg=val, ...)
986 """
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000987 if isinstance(args[0], str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000988 option = self.option_class(*args, **kwargs)
989 elif len(args) == 1 and not kwargs:
990 option = args[0]
991 if not isinstance(option, Option):
Collin Winterce36ad82007-08-30 01:19:48 +0000992 raise TypeError("not an Option instance: %r" % option)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000993 else:
Collin Winterce36ad82007-08-30 01:19:48 +0000994 raise TypeError("invalid arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000995
996 self._check_conflict(option)
997
998 self.option_list.append(option)
999 option.container = self
1000 for opt in option._short_opts:
1001 self._short_opt[opt] = option
1002 for opt in option._long_opts:
1003 self._long_opt[opt] = option
1004
1005 if option.dest is not None: # option has a dest, we need a default
1006 if option.default is not NO_DEFAULT:
1007 self.defaults[option.dest] = option.default
Guido van Rossume2b70bc2006-08-18 22:13:04 +00001008 elif option.dest not in self.defaults:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001009 self.defaults[option.dest] = None
1010
1011 return option
1012
Greg Wardeba20e62004-07-31 16:15:44 +00001013 def add_options(self, option_list):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001014 for option in option_list:
1015 self.add_option(option)
1016
1017 # -- Option query/removal methods ----------------------------------
1018
Greg Wardeba20e62004-07-31 16:15:44 +00001019 def get_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001020 return (self._short_opt.get(opt_str) or
1021 self._long_opt.get(opt_str))
1022
Greg Wardeba20e62004-07-31 16:15:44 +00001023 def has_option(self, opt_str):
Guido van Rossume2b70bc2006-08-18 22:13:04 +00001024 return (opt_str in self._short_opt or
Guido van Rossum93662412006-08-19 16:09:41 +00001025 opt_str in self._long_opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001026
Greg Wardeba20e62004-07-31 16:15:44 +00001027 def remove_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001028 option = self._short_opt.get(opt_str)
1029 if option is None:
1030 option = self._long_opt.get(opt_str)
1031 if option is None:
1032 raise ValueError("no such option %r" % opt_str)
1033
1034 for opt in option._short_opts:
1035 del self._short_opt[opt]
1036 for opt in option._long_opts:
1037 del self._long_opt[opt]
1038 option.container.option_list.remove(option)
1039
1040
1041 # -- Help-formatting methods ---------------------------------------
1042
Greg Wardeba20e62004-07-31 16:15:44 +00001043 def format_option_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001044 if not self.option_list:
1045 return ""
1046 result = []
1047 for option in self.option_list:
1048 if not option.help is SUPPRESS_HELP:
1049 result.append(formatter.format_option(option))
1050 return "".join(result)
1051
Greg Wardeba20e62004-07-31 16:15:44 +00001052 def format_description(self, formatter):
1053 return formatter.format_description(self.get_description())
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001054
Greg Wardeba20e62004-07-31 16:15:44 +00001055 def format_help(self, formatter):
1056 result = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001057 if self.description:
Greg Wardeba20e62004-07-31 16:15:44 +00001058 result.append(self.format_description(formatter))
1059 if self.option_list:
1060 result.append(self.format_option_help(formatter))
1061 return "\n".join(result)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001062
1063
1064class OptionGroup (OptionContainer):
1065
Greg Wardeba20e62004-07-31 16:15:44 +00001066 def __init__(self, parser, title, description=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001067 self.parser = parser
1068 OptionContainer.__init__(
1069 self, parser.option_class, parser.conflict_handler, description)
1070 self.title = title
1071
Greg Wardeba20e62004-07-31 16:15:44 +00001072 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001073 self.option_list = []
1074 self._share_option_mappings(self.parser)
1075
Greg Wardeba20e62004-07-31 16:15:44 +00001076 def set_title(self, title):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001077 self.title = title
1078
Thomas Wouters477c8d52006-05-27 19:21:47 +00001079 def destroy(self):
1080 """see OptionParser.destroy()."""
1081 OptionContainer.destroy(self)
1082 del self.option_list
1083
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001084 # -- Help-formatting methods ---------------------------------------
1085
Greg Wardeba20e62004-07-31 16:15:44 +00001086 def format_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001087 result = formatter.format_heading(self.title)
1088 formatter.indent()
1089 result += OptionContainer.format_help(self, formatter)
1090 formatter.dedent()
1091 return result
1092
1093
1094class OptionParser (OptionContainer):
1095
1096 """
1097 Class attributes:
1098 standard_option_list : [Option]
1099 list of standard options that will be accepted by all instances
1100 of this parser class (intended to be overridden by subclasses).
1101
1102 Instance attributes:
1103 usage : string
1104 a usage string for your program. Before it is displayed
1105 to the user, "%prog" will be expanded to the name of
Greg Ward2492fcf2003-04-21 02:40:34 +00001106 your program (self.prog or os.path.basename(sys.argv[0])).
1107 prog : string
1108 the name of the current program (to override
1109 os.path.basename(sys.argv[0])).
Thomas Wouters477c8d52006-05-27 19:21:47 +00001110 epilog : string
1111 paragraph of help text to print after option help
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001112
Greg Wardeba20e62004-07-31 16:15:44 +00001113 option_groups : [OptionGroup]
1114 list of option groups in this parser (option groups are
1115 irrelevant for parsing the command-line, but very useful
1116 for generating help)
1117
1118 allow_interspersed_args : bool = true
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001119 if true, positional arguments may be interspersed with options.
1120 Assuming -a and -b each take a single argument, the command-line
1121 -ablah foo bar -bboo baz
1122 will be interpreted the same as
1123 -ablah -bboo -- foo bar baz
1124 If this flag were false, that command line would be interpreted as
1125 -ablah -- foo bar -bboo baz
1126 -- ie. we stop processing options as soon as we see the first
1127 non-option argument. (This is the tradition followed by
1128 Python's getopt module, Perl's Getopt::Std, and other argument-
1129 parsing libraries, but it is generally annoying to users.)
1130
Greg Wardeba20e62004-07-31 16:15:44 +00001131 process_default_values : bool = true
1132 if true, option default values are processed similarly to option
1133 values from the command line: that is, they are passed to the
1134 type-checking function for the option's type (as long as the
1135 default value is a string). (This really only matters if you
1136 have defined custom types; see SF bug #955889.) Set it to false
1137 to restore the behaviour of Optik 1.4.1 and earlier.
1138
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001139 rargs : [string]
1140 the argument list currently being parsed. Only set when
1141 parse_args() is active, and continually trimmed down as
1142 we consume arguments. Mainly there for the benefit of
1143 callback options.
1144 largs : [string]
1145 the list of leftover arguments that we have skipped while
1146 parsing options. If allow_interspersed_args is false, this
1147 list is always empty.
1148 values : Values
1149 the set of option values currently being accumulated. Only
1150 set when parse_args() is active. Also mainly for callbacks.
1151
1152 Because of the 'rargs', 'largs', and 'values' attributes,
1153 OptionParser is not thread-safe. If, for some perverse reason, you
1154 need to parse command-line arguments simultaneously in different
1155 threads, use different OptionParser instances.
1156
1157 """
1158
1159 standard_option_list = []
1160
Greg Wardeba20e62004-07-31 16:15:44 +00001161 def __init__(self,
1162 usage=None,
1163 option_list=None,
1164 option_class=Option,
1165 version=None,
1166 conflict_handler="error",
1167 description=None,
1168 formatter=None,
1169 add_help_option=True,
Thomas Wouters477c8d52006-05-27 19:21:47 +00001170 prog=None,
1171 epilog=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001172 OptionContainer.__init__(
1173 self, option_class, conflict_handler, description)
1174 self.set_usage(usage)
Greg Ward2492fcf2003-04-21 02:40:34 +00001175 self.prog = prog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001176 self.version = version
Greg Wardeba20e62004-07-31 16:15:44 +00001177 self.allow_interspersed_args = True
1178 self.process_default_values = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001179 if formatter is None:
1180 formatter = IndentedHelpFormatter()
1181 self.formatter = formatter
Greg Wardeba20e62004-07-31 16:15:44 +00001182 self.formatter.set_parser(self)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001183 self.epilog = epilog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001184
1185 # Populate the option list; initial sources are the
1186 # standard_option_list class attribute, the 'option_list'
Greg Wardeba20e62004-07-31 16:15:44 +00001187 # argument, and (if applicable) the _add_version_option() and
1188 # _add_help_option() methods.
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001189 self._populate_option_list(option_list,
1190 add_help=add_help_option)
1191
1192 self._init_parsing_state()
1193
Thomas Wouters477c8d52006-05-27 19:21:47 +00001194
1195 def destroy(self):
1196 """
1197 Declare that you are done with this OptionParser. This cleans up
1198 reference cycles so the OptionParser (and all objects referenced by
1199 it) can be garbage-collected promptly. After calling destroy(), the
1200 OptionParser is unusable.
1201 """
1202 OptionContainer.destroy(self)
1203 for group in self.option_groups:
1204 group.destroy()
1205 del self.option_list
1206 del self.option_groups
1207 del self.formatter
1208
1209
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001210 # -- Private methods -----------------------------------------------
1211 # (used by our or OptionContainer's constructor)
1212
Greg Wardeba20e62004-07-31 16:15:44 +00001213 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001214 self.option_list = []
1215 self.option_groups = []
1216 self._create_option_mappings()
1217
Greg Wardeba20e62004-07-31 16:15:44 +00001218 def _add_help_option(self):
1219 self.add_option("-h", "--help",
1220 action="help",
1221 help=_("show this help message and exit"))
1222
1223 def _add_version_option(self):
1224 self.add_option("--version",
1225 action="version",
1226 help=_("show program's version number and exit"))
1227
1228 def _populate_option_list(self, option_list, add_help=True):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001229 if self.standard_option_list:
1230 self.add_options(self.standard_option_list)
1231 if option_list:
1232 self.add_options(option_list)
1233 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001234 self._add_version_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001235 if add_help:
Greg Wardeba20e62004-07-31 16:15:44 +00001236 self._add_help_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001237
Greg Wardeba20e62004-07-31 16:15:44 +00001238 def _init_parsing_state(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001239 # These are set in parse_args() for the convenience of callbacks.
1240 self.rargs = None
1241 self.largs = None
1242 self.values = None
1243
1244
1245 # -- Simple modifier methods ---------------------------------------
1246
Greg Wardeba20e62004-07-31 16:15:44 +00001247 def set_usage(self, usage):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001248 if usage is None:
Greg Wardeba20e62004-07-31 16:15:44 +00001249 self.usage = _("%prog [options]")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001250 elif usage is SUPPRESS_USAGE:
1251 self.usage = None
Greg Wardeba20e62004-07-31 16:15:44 +00001252 # For backwards compatibility with Optik 1.3 and earlier.
Thomas Wouters477c8d52006-05-27 19:21:47 +00001253 elif usage.lower().startswith("usage: "):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001254 self.usage = usage[7:]
1255 else:
1256 self.usage = usage
1257
Greg Wardeba20e62004-07-31 16:15:44 +00001258 def enable_interspersed_args(self):
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00001259 """Set parsing to not stop on the first non-option, allowing
1260 interspersing switches with command arguments. This is the
1261 default behavior. See also disable_interspersed_args() and the
1262 class documentation description of the attribute
1263 allow_interspersed_args."""
Greg Wardeba20e62004-07-31 16:15:44 +00001264 self.allow_interspersed_args = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001265
Greg Wardeba20e62004-07-31 16:15:44 +00001266 def disable_interspersed_args(self):
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00001267 """Set parsing to stop on the first non-option. Use this if
1268 you have a command processor which runs another command that
1269 has options of its own and you want to make sure these options
1270 don't get confused.
1271 """
Greg Wardeba20e62004-07-31 16:15:44 +00001272 self.allow_interspersed_args = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001273
Greg Wardeba20e62004-07-31 16:15:44 +00001274 def set_process_default_values(self, process):
1275 self.process_default_values = process
1276
1277 def set_default(self, dest, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001278 self.defaults[dest] = value
1279
Greg Wardeba20e62004-07-31 16:15:44 +00001280 def set_defaults(self, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001281 self.defaults.update(kwargs)
1282
Greg Wardeba20e62004-07-31 16:15:44 +00001283 def _get_all_options(self):
1284 options = self.option_list[:]
1285 for group in self.option_groups:
1286 options.extend(group.option_list)
1287 return options
1288
1289 def get_default_values(self):
1290 if not self.process_default_values:
1291 # Old, pre-Optik 1.5 behaviour.
1292 return Values(self.defaults)
1293
1294 defaults = self.defaults.copy()
1295 for option in self._get_all_options():
1296 default = defaults.get(option.dest)
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001297 if isinstance(default, str):
Greg Wardeba20e62004-07-31 16:15:44 +00001298 opt_str = option.get_opt_string()
1299 defaults[option.dest] = option.check_value(opt_str, default)
1300
1301 return Values(defaults)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001302
1303
1304 # -- OptionGroup methods -------------------------------------------
1305
Greg Wardeba20e62004-07-31 16:15:44 +00001306 def add_option_group(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001307 # XXX lots of overlap with OptionContainer.add_option()
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001308 if isinstance(args[0], str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001309 group = OptionGroup(self, *args, **kwargs)
1310 elif len(args) == 1 and not kwargs:
1311 group = args[0]
1312 if not isinstance(group, OptionGroup):
Collin Winterce36ad82007-08-30 01:19:48 +00001313 raise TypeError("not an OptionGroup instance: %r" % group)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001314 if group.parser is not self:
Collin Winterce36ad82007-08-30 01:19:48 +00001315 raise ValueError("invalid OptionGroup (wrong parser)")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001316 else:
Collin Winterce36ad82007-08-30 01:19:48 +00001317 raise TypeError("invalid arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001318
1319 self.option_groups.append(group)
1320 return group
1321
Greg Wardeba20e62004-07-31 16:15:44 +00001322 def get_option_group(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001323 option = (self._short_opt.get(opt_str) or
1324 self._long_opt.get(opt_str))
1325 if option and option.container is not self:
1326 return option.container
1327 return None
1328
1329
1330 # -- Option-parsing methods ----------------------------------------
1331
Greg Wardeba20e62004-07-31 16:15:44 +00001332 def _get_args(self, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001333 if args is None:
1334 return sys.argv[1:]
1335 else:
1336 return args[:] # don't modify caller's list
1337
Greg Wardeba20e62004-07-31 16:15:44 +00001338 def parse_args(self, args=None, values=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001339 """
1340 parse_args(args : [string] = sys.argv[1:],
1341 values : Values = None)
1342 -> (values : Values, args : [string])
1343
1344 Parse the command-line options found in 'args' (default:
1345 sys.argv[1:]). Any errors result in a call to 'error()', which
1346 by default prints the usage message to stderr and calls
1347 sys.exit() with an error message. On success returns a pair
1348 (values, args) where 'values' is an Values instance (with all
1349 your option values) and 'args' is the list of arguments left
1350 over after parsing options.
1351 """
1352 rargs = self._get_args(args)
1353 if values is None:
1354 values = self.get_default_values()
1355
1356 # Store the halves of the argument list as attributes for the
1357 # convenience of callbacks:
1358 # rargs
1359 # the rest of the command-line (the "r" stands for
1360 # "remaining" or "right-hand")
1361 # largs
1362 # the leftover arguments -- ie. what's left after removing
1363 # options and their arguments (the "l" stands for "leftover"
1364 # or "left-hand")
1365 self.rargs = rargs
1366 self.largs = largs = []
1367 self.values = values
1368
1369 try:
1370 stop = self._process_args(largs, rargs, values)
Guido van Rossumb940e112007-01-10 16:19:56 +00001371 except (BadOptionError, OptionValueError) as err:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001372 self.error(str(err))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001373
1374 args = largs + rargs
1375 return self.check_values(values, args)
1376
Greg Wardeba20e62004-07-31 16:15:44 +00001377 def check_values(self, values, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001378 """
1379 check_values(values : Values, args : [string])
1380 -> (values : Values, args : [string])
1381
1382 Check that the supplied option values and leftover arguments are
1383 valid. Returns the option values and leftover arguments
1384 (possibly adjusted, possibly completely new -- whatever you
1385 like). Default implementation just returns the passed-in
1386 values; subclasses may override as desired.
1387 """
1388 return (values, args)
1389
Greg Wardeba20e62004-07-31 16:15:44 +00001390 def _process_args(self, largs, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001391 """_process_args(largs : [string],
1392 rargs : [string],
1393 values : Values)
1394
1395 Process command-line arguments and populate 'values', consuming
1396 options and arguments from 'rargs'. If 'allow_interspersed_args' is
1397 false, stop at the first non-option argument. If true, accumulate any
1398 interspersed non-option arguments in 'largs'.
1399 """
1400 while rargs:
1401 arg = rargs[0]
1402 # We handle bare "--" explicitly, and bare "-" is handled by the
1403 # standard arg handler since the short arg case ensures that the
1404 # len of the opt string is greater than 1.
1405 if arg == "--":
1406 del rargs[0]
1407 return
1408 elif arg[0:2] == "--":
1409 # process a single long option (possibly with value(s))
1410 self._process_long_opt(rargs, values)
1411 elif arg[:1] == "-" and len(arg) > 1:
1412 # process a cluster of short options (possibly with
1413 # value(s) for the last one only)
1414 self._process_short_opts(rargs, values)
1415 elif self.allow_interspersed_args:
1416 largs.append(arg)
1417 del rargs[0]
1418 else:
1419 return # stop now, leave this arg in rargs
1420
1421 # Say this is the original argument list:
1422 # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)]
1423 # ^
1424 # (we are about to process arg(i)).
1425 #
1426 # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of
1427 # [arg0, ..., arg(i-1)] (any options and their arguments will have
1428 # been removed from largs).
1429 #
1430 # The while loop will usually consume 1 or more arguments per pass.
1431 # If it consumes 1 (eg. arg is an option that takes no arguments),
1432 # then after _process_arg() is done the situation is:
1433 #
1434 # largs = subset of [arg0, ..., arg(i)]
1435 # rargs = [arg(i+1), ..., arg(N-1)]
1436 #
1437 # If allow_interspersed_args is false, largs will always be
1438 # *empty* -- still a subset of [arg0, ..., arg(i-1)], but
1439 # not a very interesting subset!
1440
Greg Wardeba20e62004-07-31 16:15:44 +00001441 def _match_long_opt(self, opt):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001442 """_match_long_opt(opt : string) -> string
1443
1444 Determine which long option string 'opt' matches, ie. which one
1445 it is an unambiguous abbrevation for. Raises BadOptionError if
1446 'opt' doesn't unambiguously match any long option string.
1447 """
1448 return _match_abbrev(opt, self._long_opt)
1449
Greg Wardeba20e62004-07-31 16:15:44 +00001450 def _process_long_opt(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001451 arg = rargs.pop(0)
1452
1453 # Value explicitly attached to arg? Pretend it's the next
1454 # argument.
1455 if "=" in arg:
1456 (opt, next_arg) = arg.split("=", 1)
1457 rargs.insert(0, next_arg)
Greg Wardeba20e62004-07-31 16:15:44 +00001458 had_explicit_value = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001459 else:
1460 opt = arg
Greg Wardeba20e62004-07-31 16:15:44 +00001461 had_explicit_value = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001462
1463 opt = self._match_long_opt(opt)
1464 option = self._long_opt[opt]
1465 if option.takes_value():
1466 nargs = option.nargs
1467 if len(rargs) < nargs:
1468 if nargs == 1:
Greg Wardeba20e62004-07-31 16:15:44 +00001469 self.error(_("%s option requires an argument") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001470 else:
Greg Wardeba20e62004-07-31 16:15:44 +00001471 self.error(_("%s option requires %d arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001472 % (opt, nargs))
1473 elif nargs == 1:
1474 value = rargs.pop(0)
1475 else:
1476 value = tuple(rargs[0:nargs])
1477 del rargs[0:nargs]
1478
1479 elif had_explicit_value:
Greg Wardeba20e62004-07-31 16:15:44 +00001480 self.error(_("%s option does not take a value") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001481
1482 else:
1483 value = None
1484
1485 option.process(opt, value, values, self)
1486
Greg Wardeba20e62004-07-31 16:15:44 +00001487 def _process_short_opts(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001488 arg = rargs.pop(0)
Greg Wardeba20e62004-07-31 16:15:44 +00001489 stop = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001490 i = 1
1491 for ch in arg[1:]:
1492 opt = "-" + ch
1493 option = self._short_opt.get(opt)
1494 i += 1 # we have consumed a character
1495
1496 if not option:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001497 raise BadOptionError(opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001498 if option.takes_value():
1499 # Any characters left in arg? Pretend they're the
1500 # next arg, and stop consuming characters of arg.
1501 if i < len(arg):
1502 rargs.insert(0, arg[i:])
Greg Wardeba20e62004-07-31 16:15:44 +00001503 stop = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001504
1505 nargs = option.nargs
1506 if len(rargs) < nargs:
1507 if nargs == 1:
Greg Wardeba20e62004-07-31 16:15:44 +00001508 self.error(_("%s option requires an argument") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001509 else:
Greg Wardeba20e62004-07-31 16:15:44 +00001510 self.error(_("%s option requires %d arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001511 % (opt, nargs))
1512 elif nargs == 1:
1513 value = rargs.pop(0)
1514 else:
1515 value = tuple(rargs[0:nargs])
1516 del rargs[0:nargs]
1517
1518 else: # option doesn't take a value
1519 value = None
1520
1521 option.process(opt, value, values, self)
1522
1523 if stop:
1524 break
1525
1526
1527 # -- Feedback methods ----------------------------------------------
1528
Greg Wardeba20e62004-07-31 16:15:44 +00001529 def get_prog_name(self):
1530 if self.prog is None:
1531 return os.path.basename(sys.argv[0])
1532 else:
1533 return self.prog
1534
1535 def expand_prog_name(self, s):
1536 return s.replace("%prog", self.get_prog_name())
1537
1538 def get_description(self):
1539 return self.expand_prog_name(self.description)
1540
Greg Ward48aa84b2004-10-27 02:20:04 +00001541 def exit(self, status=0, msg=None):
1542 if msg:
1543 sys.stderr.write(msg)
1544 sys.exit(status)
1545
Greg Wardeba20e62004-07-31 16:15:44 +00001546 def error(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001547 """error(msg : string)
1548
1549 Print a usage message incorporating 'msg' to stderr and exit.
1550 If you override this in a subclass, it should not return -- it
1551 should either exit or raise an exception.
1552 """
1553 self.print_usage(sys.stderr)
Greg Ward48aa84b2004-10-27 02:20:04 +00001554 self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001555
Greg Wardeba20e62004-07-31 16:15:44 +00001556 def get_usage(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001557 if self.usage:
1558 return self.formatter.format_usage(
Greg Wardeba20e62004-07-31 16:15:44 +00001559 self.expand_prog_name(self.usage))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001560 else:
1561 return ""
1562
Greg Wardeba20e62004-07-31 16:15:44 +00001563 def print_usage(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001564 """print_usage(file : file = stdout)
1565
1566 Print the usage message for the current program (self.usage) to
Mark Dickinson934896d2009-02-21 20:59:32 +00001567 'file' (default stdout). Any occurrence of the string "%prog" in
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001568 self.usage is replaced with the name of the current program
1569 (basename of sys.argv[0]). Does nothing if self.usage is empty
1570 or not defined.
1571 """
1572 if self.usage:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001573 print(self.get_usage(), file=file)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001574
Greg Wardeba20e62004-07-31 16:15:44 +00001575 def get_version(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001576 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001577 return self.expand_prog_name(self.version)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001578 else:
1579 return ""
1580
Greg Wardeba20e62004-07-31 16:15:44 +00001581 def print_version(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001582 """print_version(file : file = stdout)
1583
1584 Print the version message for this program (self.version) to
Mark Dickinson934896d2009-02-21 20:59:32 +00001585 'file' (default stdout). As with print_usage(), any occurrence
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001586 of "%prog" in self.version is replaced by the current program's
1587 name. Does nothing if self.version is empty or undefined.
1588 """
1589 if self.version:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001590 print(self.get_version(), file=file)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001591
Greg Wardeba20e62004-07-31 16:15:44 +00001592 def format_option_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001593 if formatter is None:
1594 formatter = self.formatter
1595 formatter.store_option_strings(self)
1596 result = []
Thomas Wouters477c8d52006-05-27 19:21:47 +00001597 result.append(formatter.format_heading(_("Options")))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001598 formatter.indent()
1599 if self.option_list:
1600 result.append(OptionContainer.format_option_help(self, formatter))
1601 result.append("\n")
1602 for group in self.option_groups:
1603 result.append(group.format_help(formatter))
1604 result.append("\n")
1605 formatter.dedent()
1606 # Drop the last "\n", or the header if no options or option groups:
1607 return "".join(result[:-1])
1608
Thomas Wouters477c8d52006-05-27 19:21:47 +00001609 def format_epilog(self, formatter):
1610 return formatter.format_epilog(self.epilog)
1611
Greg Wardeba20e62004-07-31 16:15:44 +00001612 def format_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001613 if formatter is None:
1614 formatter = self.formatter
1615 result = []
1616 if self.usage:
1617 result.append(self.get_usage() + "\n")
1618 if self.description:
1619 result.append(self.format_description(formatter) + "\n")
1620 result.append(self.format_option_help(formatter))
Thomas Wouters477c8d52006-05-27 19:21:47 +00001621 result.append(self.format_epilog(formatter))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001622 return "".join(result)
1623
Greg Wardeba20e62004-07-31 16:15:44 +00001624 def print_help(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001625 """print_help(file : file = stdout)
1626
1627 Print an extended help message, listing all options and any
1628 help text provided with them, to 'file' (default stdout).
1629 """
1630 if file is None:
1631 file = sys.stdout
Guido van Rossum34d19282007-08-09 01:03:29 +00001632 file.write(self.format_help())
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001633
1634# class OptionParser
1635
1636
Greg Wardeba20e62004-07-31 16:15:44 +00001637def _match_abbrev(s, wordmap):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001638 """_match_abbrev(s : string, wordmap : {string : Option}) -> string
1639
1640 Return the string key in 'wordmap' for which 's' is an unambiguous
1641 abbreviation. If 's' is found to be ambiguous or doesn't match any of
1642 'words', raise BadOptionError.
1643 """
1644 # Is there an exact match?
Guido van Rossume2b70bc2006-08-18 22:13:04 +00001645 if s in wordmap:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001646 return s
1647 else:
1648 # Isolate all words with s as a prefix.
1649 possibilities = [word for word in wordmap.keys()
1650 if word.startswith(s)]
1651 # No exact match, so there had better be just one possibility.
1652 if len(possibilities) == 1:
1653 return possibilities[0]
1654 elif not possibilities:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001655 raise BadOptionError(s)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001656 else:
1657 # More than one possible completion: ambiguous prefix.
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00001658 possibilities.sort()
Thomas Wouters477c8d52006-05-27 19:21:47 +00001659 raise AmbiguousOptionError(s, possibilities)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001660
1661
1662# Some day, there might be many Option classes. As of Optik 1.3, the
1663# preferred way to instantiate Options is indirectly, via make_option(),
1664# which will become a factory function when there are many Option
1665# classes.
1666make_option = Option