blob: be0145f353db2e5c8eade5977ab9498c36327b8d [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).
Georg Brandlf3532df2009-04-27 16:41:41 +00009
10Simple usage example:
11
12 from optparse import OptionParser
13
14 parser = OptionParser()
15 parser.add_option("-f", "--file", dest="filename",
16 help="write report to FILE", metavar="FILE")
17 parser.add_option("-q", "--quiet",
18 action="store_false", dest="verbose", default=True,
19 help="don't print status messages to stdout")
20
21 (options, args) = parser.parse_args()
Guido van Rossumb9ba4582002-11-14 22:00:19 +000022"""
23
Thomas Wouters0e3f5912006-08-11 14:57:12 +000024__version__ = "1.5.3"
Greg Ward2492fcf2003-04-21 02:40:34 +000025
Greg Ward4656ed42003-05-08 01:38:52 +000026__all__ = ['Option',
Benjamin Petersond23f8222009-04-05 19:13:16 +000027 'make_option',
Greg Ward4656ed42003-05-08 01:38:52 +000028 'SUPPRESS_HELP',
29 'SUPPRESS_USAGE',
Greg Ward4656ed42003-05-08 01:38:52 +000030 'Values',
31 'OptionContainer',
32 'OptionGroup',
33 'OptionParser',
34 'HelpFormatter',
35 'IndentedHelpFormatter',
36 'TitledHelpFormatter',
37 'OptParseError',
38 'OptionError',
39 'OptionConflictError',
40 'OptionValueError',
41 'BadOptionError']
Greg Ward2492fcf2003-04-21 02:40:34 +000042
Guido van Rossumb9ba4582002-11-14 22:00:19 +000043__copyright__ = """
Thomas Wouters477c8d52006-05-27 19:21:47 +000044Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved.
45Copyright (c) 2002-2006 Python Software Foundation. All rights reserved.
Guido van Rossumb9ba4582002-11-14 22:00:19 +000046
47Redistribution and use in source and binary forms, with or without
48modification, are permitted provided that the following conditions are
49met:
50
51 * Redistributions of source code must retain the above copyright
52 notice, this list of conditions and the following disclaimer.
53
54 * Redistributions in binary form must reproduce the above copyright
55 notice, this list of conditions and the following disclaimer in the
56 documentation and/or other materials provided with the distribution.
57
58 * Neither the name of the author nor the names of its
59 contributors may be used to endorse or promote products derived from
60 this software without specific prior written permission.
61
62THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
63IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
64TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
65PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
66CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
67EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
68PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
69PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
70LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
71NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
72SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
73"""
74
75import sys, os
Guido van Rossumb9ba4582002-11-14 22:00:19 +000076import textwrap
Greg Wardeba20e62004-07-31 16:15:44 +000077
78def _repr(self):
79 return "<%s at 0x%x: %s>" % (self.__class__.__name__, id(self), self)
80
81
82# This file was generated from:
Thomas Wouters0e3f5912006-08-11 14:57:12 +000083# Id: option_parser.py 527 2006-07-23 15:21:30Z greg
84# Id: option.py 522 2006-06-11 16:22:03Z gward
85# Id: help.py 527 2006-07-23 15:21:30Z greg
Thomas Wouters477c8d52006-05-27 19:21:47 +000086# Id: errors.py 509 2006-04-20 00:58:24Z gward
87
88try:
Éric Araujo6a1454f2011-03-20 19:59:25 +010089 from gettext import gettext, ngettext
Thomas Wouters477c8d52006-05-27 19:21:47 +000090except ImportError:
91 def gettext(message):
92 return message
Éric Araujo6a1454f2011-03-20 19:59:25 +010093
94 def ngettext(singular, plural, n):
95 if n == 1:
96 return singular
97 return plural
98
Thomas Wouters477c8d52006-05-27 19:21:47 +000099_ = gettext
100
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000101
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000102class OptParseError (Exception):
Greg Wardeba20e62004-07-31 16:15:44 +0000103 def __init__(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000104 self.msg = msg
105
Greg Wardeba20e62004-07-31 16:15:44 +0000106 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000107 return self.msg
108
Greg Ward2492fcf2003-04-21 02:40:34 +0000109
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000110class OptionError (OptParseError):
111 """
112 Raised if an Option instance is created with invalid or
113 inconsistent arguments.
114 """
115
Greg Wardeba20e62004-07-31 16:15:44 +0000116 def __init__(self, msg, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000117 self.msg = msg
118 self.option_id = str(option)
119
Greg Wardeba20e62004-07-31 16:15:44 +0000120 def __str__(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000121 if self.option_id:
122 return "option %s: %s" % (self.option_id, self.msg)
123 else:
124 return self.msg
125
126class OptionConflictError (OptionError):
127 """
128 Raised if conflicting options are added to an OptionParser.
129 """
130
131class OptionValueError (OptParseError):
132 """
133 Raised if an invalid option value is encountered on the command
134 line.
135 """
136
137class BadOptionError (OptParseError):
138 """
Thomas Wouters477c8d52006-05-27 19:21:47 +0000139 Raised if an invalid option is seen on the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000140 """
Thomas Wouters477c8d52006-05-27 19:21:47 +0000141 def __init__(self, opt_str):
142 self.opt_str = opt_str
143
144 def __str__(self):
145 return _("no such option: %s") % self.opt_str
146
147class AmbiguousOptionError (BadOptionError):
148 """
149 Raised if an ambiguous option is seen on the command line.
150 """
151 def __init__(self, opt_str, possibilities):
152 BadOptionError.__init__(self, opt_str)
153 self.possibilities = possibilities
154
155 def __str__(self):
156 return (_("ambiguous option: %s (%s?)")
157 % (self.opt_str, ", ".join(self.possibilities)))
Greg Ward2492fcf2003-04-21 02:40:34 +0000158
159
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000160class HelpFormatter:
161
162 """
163 Abstract base class for formatting option help. OptionParser
164 instances should use one of the HelpFormatter subclasses for
165 formatting help; by default IndentedHelpFormatter is used.
166
167 Instance attributes:
Greg Wardeba20e62004-07-31 16:15:44 +0000168 parser : OptionParser
169 the controlling OptionParser instance
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000170 indent_increment : int
171 the number of columns to indent per nesting level
172 max_help_position : int
173 the maximum starting column for option help text
174 help_position : int
175 the calculated starting column for option help text;
176 initially the same as the maximum
177 width : int
Greg Wardeba20e62004-07-31 16:15:44 +0000178 total number of columns for output (pass None to constructor for
179 this value to be taken from the $COLUMNS environment variable)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000180 level : int
181 current indentation level
182 current_indent : int
183 current indentation level (in columns)
184 help_width : int
185 number of columns available for option help text (calculated)
Greg Wardeba20e62004-07-31 16:15:44 +0000186 default_tag : str
187 text to replace with each option's default value, "%default"
188 by default. Set to false value to disable default value expansion.
189 option_strings : { Option : str }
190 maps Option instances to the snippet of help text explaining
191 the syntax of that option, e.g. "-h, --help" or
192 "-fFILE, --file=FILE"
193 _short_opt_fmt : str
194 format string controlling how short options with values are
195 printed in help text. Must be either "%s%s" ("-fFILE") or
196 "%s %s" ("-f FILE"), because those are the two syntaxes that
197 Optik supports.
198 _long_opt_fmt : str
199 similar but for long options; must be either "%s %s" ("--file FILE")
200 or "%s=%s" ("--file=FILE").
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000201 """
202
Greg Wardeba20e62004-07-31 16:15:44 +0000203 NO_DEFAULT_VALUE = "none"
204
205 def __init__(self,
206 indent_increment,
207 max_help_position,
208 width,
209 short_first):
210 self.parser = None
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000211 self.indent_increment = indent_increment
Greg Wardeba20e62004-07-31 16:15:44 +0000212 if width is None:
213 try:
214 width = int(os.environ['COLUMNS'])
215 except (KeyError, ValueError):
216 width = 80
217 width -= 2
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000218 self.width = width
Serhiy Storchakaf4511122014-01-09 23:14:27 +0200219 self.help_position = self.max_help_position = \
220 min(max_help_position, max(width - 20, indent_increment * 2))
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000221 self.current_indent = 0
222 self.level = 0
Greg Wardeba20e62004-07-31 16:15:44 +0000223 self.help_width = None # computed later
Greg Ward2492fcf2003-04-21 02:40:34 +0000224 self.short_first = short_first
Greg Wardeba20e62004-07-31 16:15:44 +0000225 self.default_tag = "%default"
226 self.option_strings = {}
227 self._short_opt_fmt = "%s %s"
228 self._long_opt_fmt = "%s=%s"
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000229
Greg Wardeba20e62004-07-31 16:15:44 +0000230 def set_parser(self, parser):
231 self.parser = parser
232
233 def set_short_opt_delimiter(self, delim):
234 if delim not in ("", " "):
235 raise ValueError(
236 "invalid metavar delimiter for short options: %r" % delim)
237 self._short_opt_fmt = "%s" + delim + "%s"
238
239 def set_long_opt_delimiter(self, delim):
240 if delim not in ("=", " "):
241 raise ValueError(
242 "invalid metavar delimiter for long options: %r" % delim)
243 self._long_opt_fmt = "%s" + delim + "%s"
244
245 def indent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000246 self.current_indent += self.indent_increment
247 self.level += 1
248
Greg Wardeba20e62004-07-31 16:15:44 +0000249 def dedent(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000250 self.current_indent -= self.indent_increment
251 assert self.current_indent >= 0, "Indent decreased below 0."
252 self.level -= 1
253
Greg Wardeba20e62004-07-31 16:15:44 +0000254 def format_usage(self, usage):
Collin Winterce36ad82007-08-30 01:19:48 +0000255 raise NotImplementedError("subclasses must implement")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000256
Greg Wardeba20e62004-07-31 16:15:44 +0000257 def format_heading(self, heading):
Collin Winterce36ad82007-08-30 01:19:48 +0000258 raise NotImplementedError("subclasses must implement")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000259
Thomas Wouters477c8d52006-05-27 19:21:47 +0000260 def _format_text(self, text):
261 """
262 Format a paragraph of free-form text for inclusion in the
263 help output at the current indentation level.
264 """
Serhiy Storchakaf4511122014-01-09 23:14:27 +0200265 text_width = max(self.width - self.current_indent, 11)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000266 indent = " "*self.current_indent
Thomas Wouters477c8d52006-05-27 19:21:47 +0000267 return textwrap.fill(text,
268 text_width,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000269 initial_indent=indent,
Thomas Wouters477c8d52006-05-27 19:21:47 +0000270 subsequent_indent=indent)
271
272 def format_description(self, description):
273 if description:
274 return self._format_text(description) + "\n"
275 else:
276 return ""
277
278 def format_epilog(self, epilog):
279 if epilog:
280 return "\n" + self._format_text(epilog) + "\n"
281 else:
282 return ""
283
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000284
Greg Wardeba20e62004-07-31 16:15:44 +0000285 def expand_default(self, option):
286 if self.parser is None or not self.default_tag:
287 return option.help
288
289 default_value = self.parser.defaults.get(option.dest)
290 if default_value is NO_DEFAULT or default_value is None:
291 default_value = self.NO_DEFAULT_VALUE
292
293 return option.help.replace(self.default_tag, str(default_value))
294
295 def format_option(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000296 # The help for each option consists of two parts:
297 # * the opt strings and metavars
298 # eg. ("-x", or "-fFILENAME, --file=FILENAME")
299 # * the user-supplied help string
300 # eg. ("turn on expert mode", "read data from FILENAME")
301 #
302 # If possible, we write both of these on the same line:
303 # -x turn on expert mode
304 #
305 # But if the opt string list is too long, we put the help
306 # string on a second line, indented to the same column it would
307 # start in if it fit on the first line.
308 # -fFILENAME, --file=FILENAME
309 # read data from FILENAME
310 result = []
Greg Wardeba20e62004-07-31 16:15:44 +0000311 opts = self.option_strings[option]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000312 opt_width = self.help_position - self.current_indent - 2
313 if len(opts) > opt_width:
314 opts = "%*s%s\n" % (self.current_indent, "", opts)
315 indent_first = self.help_position
316 else: # start help on same line as opts
317 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
318 indent_first = 0
319 result.append(opts)
320 if option.help:
Greg Wardeba20e62004-07-31 16:15:44 +0000321 help_text = self.expand_default(option)
322 help_lines = textwrap.wrap(help_text, self.help_width)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000323 result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
324 result.extend(["%*s%s\n" % (self.help_position, "", line)
325 for line in help_lines[1:]])
326 elif opts[-1] != "\n":
327 result.append("\n")
328 return "".join(result)
329
Greg Wardeba20e62004-07-31 16:15:44 +0000330 def store_option_strings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000331 self.indent()
332 max_len = 0
333 for opt in parser.option_list:
334 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000335 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000336 max_len = max(max_len, len(strings) + self.current_indent)
337 self.indent()
338 for group in parser.option_groups:
339 for opt in group.option_list:
340 strings = self.format_option_strings(opt)
Greg Wardeba20e62004-07-31 16:15:44 +0000341 self.option_strings[opt] = strings
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000342 max_len = max(max_len, len(strings) + self.current_indent)
343 self.dedent()
344 self.dedent()
345 self.help_position = min(max_len + 2, self.max_help_position)
Serhiy Storchakaf4511122014-01-09 23:14:27 +0200346 self.help_width = max(self.width - self.help_position, 11)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000347
Greg Wardeba20e62004-07-31 16:15:44 +0000348 def format_option_strings(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000349 """Return a comma-separated list of option strings & metavariables."""
Greg Ward2492fcf2003-04-21 02:40:34 +0000350 if option.takes_value():
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000351 metavar = option.metavar or option.dest.upper()
Greg Wardeba20e62004-07-31 16:15:44 +0000352 short_opts = [self._short_opt_fmt % (sopt, metavar)
353 for sopt in option._short_opts]
354 long_opts = [self._long_opt_fmt % (lopt, metavar)
355 for lopt in option._long_opts]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000356 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000357 short_opts = option._short_opts
358 long_opts = option._long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000359
Greg Ward2492fcf2003-04-21 02:40:34 +0000360 if self.short_first:
361 opts = short_opts + long_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000362 else:
Greg Ward2492fcf2003-04-21 02:40:34 +0000363 opts = long_opts + short_opts
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000364
Greg Ward2492fcf2003-04-21 02:40:34 +0000365 return ", ".join(opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000366
367class IndentedHelpFormatter (HelpFormatter):
368 """Format help with indented section bodies.
369 """
370
Greg Wardeba20e62004-07-31 16:15:44 +0000371 def __init__(self,
372 indent_increment=2,
373 max_help_position=24,
374 width=None,
375 short_first=1):
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):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000380 return _("Usage: %s\n") % 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%s:\n" % (self.current_indent, "", heading)
384
385
386class TitledHelpFormatter (HelpFormatter):
387 """Format help with underlined section headers.
388 """
389
Greg Wardeba20e62004-07-31 16:15:44 +0000390 def __init__(self,
391 indent_increment=0,
392 max_help_position=24,
393 width=None,
394 short_first=0):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000395 HelpFormatter.__init__ (
396 self, indent_increment, max_help_position, width, short_first)
397
Greg Wardeba20e62004-07-31 16:15:44 +0000398 def format_usage(self, usage):
399 return "%s %s\n" % (self.format_heading(_("Usage")), usage)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000400
Greg Wardeba20e62004-07-31 16:15:44 +0000401 def format_heading(self, heading):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000402 return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading))
Greg Ward2492fcf2003-04-21 02:40:34 +0000403
404
Thomas Wouters477c8d52006-05-27 19:21:47 +0000405def _parse_num(val, type):
406 if val[:2].lower() == "0x": # hexadecimal
407 radix = 16
408 elif val[:2].lower() == "0b": # binary
409 radix = 2
410 val = val[2:] or "0" # have to remove "0b" prefix
411 elif val[:1] == "0": # octal
412 radix = 8
413 else: # decimal
414 radix = 10
415
416 return type(val, radix)
417
418def _parse_int(val):
419 return _parse_num(val, int)
420
Thomas Wouters477c8d52006-05-27 19:21:47 +0000421_builtin_cvt = { "int" : (_parse_int, _("integer")),
Florent Xicluna2bb96f52011-10-23 22:11:00 +0200422 "long" : (_parse_int, _("integer")),
Greg Wardeba20e62004-07-31 16:15:44 +0000423 "float" : (float, _("floating-point")),
424 "complex" : (complex, _("complex")) }
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000425
Greg Wardeba20e62004-07-31 16:15:44 +0000426def check_builtin(option, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000427 (cvt, what) = _builtin_cvt[option.type]
428 try:
429 return cvt(value)
430 except ValueError:
431 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000432 _("option %s: invalid %s value: %r") % (opt, what, value))
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000433
434def check_choice(option, opt, value):
435 if value in option.choices:
436 return value
437 else:
438 choices = ", ".join(map(repr, option.choices))
439 raise OptionValueError(
Greg Wardeba20e62004-07-31 16:15:44 +0000440 _("option %s: invalid choice: %r (choose from %s)")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000441 % (opt, value, choices))
442
443# Not supplying a default is different from a default of None,
444# so we need an explicit "not supplied" value.
Greg Wardeba20e62004-07-31 16:15:44 +0000445NO_DEFAULT = ("NO", "DEFAULT")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000446
447
448class Option:
449 """
450 Instance attributes:
451 _short_opts : [string]
452 _long_opts : [string]
453
454 action : string
455 type : string
456 dest : string
457 default : any
458 nargs : int
459 const : any
460 choices : [string]
461 callback : function
462 callback_args : (any*)
463 callback_kwargs : { string : any }
464 help : string
465 metavar : string
466 """
467
468 # The list of instance attributes that may be set through
469 # keyword args to the constructor.
470 ATTRS = ['action',
471 'type',
472 'dest',
473 'default',
474 'nargs',
475 'const',
476 'choices',
477 'callback',
478 'callback_args',
479 'callback_kwargs',
480 'help',
481 'metavar']
482
483 # The set of actions allowed by option parsers. Explicitly listed
484 # here so the constructor can validate its arguments.
485 ACTIONS = ("store",
486 "store_const",
487 "store_true",
488 "store_false",
489 "append",
Thomas Wouters477c8d52006-05-27 19:21:47 +0000490 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000491 "count",
492 "callback",
493 "help",
494 "version")
495
496 # The set of actions that involve storing a value somewhere;
497 # also listed just for constructor argument validation. (If
498 # the action is one of these, there must be a destination.)
499 STORE_ACTIONS = ("store",
500 "store_const",
501 "store_true",
502 "store_false",
503 "append",
Thomas Wouters477c8d52006-05-27 19:21:47 +0000504 "append_const",
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000505 "count")
506
507 # The set of actions for which it makes sense to supply a value
Greg Ward48aa84b2004-10-27 02:20:04 +0000508 # type, ie. which may consume an argument from the command line.
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000509 TYPED_ACTIONS = ("store",
510 "append",
511 "callback")
512
Greg Ward48aa84b2004-10-27 02:20:04 +0000513 # The set of actions which *require* a value type, ie. that
514 # always consume an argument from the command line.
515 ALWAYS_TYPED_ACTIONS = ("store",
516 "append")
517
Thomas Wouters477c8d52006-05-27 19:21:47 +0000518 # The set of actions which take a 'const' attribute.
519 CONST_ACTIONS = ("store_const",
520 "append_const")
521
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000522 # The set of known types for option parsers. Again, listed here for
523 # constructor argument validation.
524 TYPES = ("string", "int", "long", "float", "complex", "choice")
525
526 # Dictionary of argument checking functions, which convert and
527 # validate option arguments according to the option type.
528 #
529 # Signature of checking functions is:
530 # check(option : Option, opt : string, value : string) -> any
531 # where
532 # option is the Option instance calling the checker
533 # opt is the actual option seen on the command-line
534 # (eg. "-a", "--file")
535 # value is the option argument seen on the command-line
536 #
537 # The return value should be in the appropriate Python type
538 # for option.type -- eg. an integer if option.type == "int".
539 #
540 # If no checker is defined for a type, arguments will be
541 # unchecked and remain strings.
542 TYPE_CHECKER = { "int" : check_builtin,
543 "long" : check_builtin,
544 "float" : check_builtin,
Greg Wardeba20e62004-07-31 16:15:44 +0000545 "complex": check_builtin,
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000546 "choice" : check_choice,
547 }
548
549
550 # CHECK_METHODS is a list of unbound method objects; they are called
551 # by the constructor, in order, after all attributes are
552 # initialized. The list is created and filled in later, after all
553 # the methods are actually defined. (I just put it here because I
554 # like to define and document all class attributes in the same
555 # place.) Subclasses that add another _check_*() method should
556 # define their own CHECK_METHODS list that adds their check method
557 # to those from this class.
558 CHECK_METHODS = None
559
560
561 # -- Constructor/initialization methods ----------------------------
562
Greg Wardeba20e62004-07-31 16:15:44 +0000563 def __init__(self, *opts, **attrs):
Greg Ward2492fcf2003-04-21 02:40:34 +0000564 # Set _short_opts, _long_opts attrs from 'opts' tuple.
565 # Have to be set now, in case no option strings are supplied.
566 self._short_opts = []
567 self._long_opts = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000568 opts = self._check_opt_strings(opts)
569 self._set_opt_strings(opts)
570
571 # Set all other attrs (action, type, etc.) from 'attrs' dict
572 self._set_attrs(attrs)
573
574 # Check all the attributes we just set. There are lots of
575 # complicated interdependencies, but luckily they can be farmed
576 # out to the _check_*() methods listed in CHECK_METHODS -- which
577 # could be handy for subclasses! The one thing these all share
578 # is that they raise OptionError if they discover a problem.
579 for checker in self.CHECK_METHODS:
580 checker(self)
581
Greg Wardeba20e62004-07-31 16:15:44 +0000582 def _check_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000583 # Filter out None because early versions of Optik had exactly
584 # one short option and one long option, either of which
585 # could be None.
Guido van Rossumc1f779c2007-07-03 08:25:58 +0000586 opts = [opt for opt in opts if opt]
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000587 if not opts:
Greg Ward2492fcf2003-04-21 02:40:34 +0000588 raise TypeError("at least one option string must be supplied")
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000589 return opts
590
Greg Wardeba20e62004-07-31 16:15:44 +0000591 def _set_opt_strings(self, opts):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000592 for opt in opts:
593 if len(opt) < 2:
594 raise OptionError(
595 "invalid option string %r: "
596 "must be at least two characters long" % opt, self)
597 elif len(opt) == 2:
598 if not (opt[0] == "-" and opt[1] != "-"):
599 raise OptionError(
600 "invalid short option string %r: "
601 "must be of the form -x, (x any non-dash char)" % opt,
602 self)
603 self._short_opts.append(opt)
604 else:
605 if not (opt[0:2] == "--" and opt[2] != "-"):
606 raise OptionError(
607 "invalid long option string %r: "
608 "must start with --, followed by non-dash" % opt,
609 self)
610 self._long_opts.append(opt)
611
Greg Wardeba20e62004-07-31 16:15:44 +0000612 def _set_attrs(self, attrs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000613 for attr in self.ATTRS:
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000614 if attr in attrs:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000615 setattr(self, attr, attrs[attr])
616 del attrs[attr]
617 else:
618 if attr == 'default':
619 setattr(self, attr, NO_DEFAULT)
620 else:
621 setattr(self, attr, None)
622 if attrs:
Georg Brandlc2d9d7f2007-02-11 23:06:17 +0000623 attrs = sorted(attrs.keys())
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000624 raise OptionError(
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000625 "invalid keyword arguments: %s" % ", ".join(attrs),
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000626 self)
627
628
629 # -- Constructor validation methods --------------------------------
630
Greg Wardeba20e62004-07-31 16:15:44 +0000631 def _check_action(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000632 if self.action is None:
633 self.action = "store"
634 elif self.action not in self.ACTIONS:
635 raise OptionError("invalid action: %r" % self.action, self)
636
Greg Wardeba20e62004-07-31 16:15:44 +0000637 def _check_type(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000638 if self.type is None:
Greg Ward48aa84b2004-10-27 02:20:04 +0000639 if self.action in self.ALWAYS_TYPED_ACTIONS:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000640 if self.choices is not None:
641 # The "choices" attribute implies "choice" type.
642 self.type = "choice"
643 else:
644 # No type given? "string" is the most sensible default.
645 self.type = "string"
646 else:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000647 # Allow type objects or builtin type conversion functions
648 # (int, str, etc.) as an alternative to their names. (The
Georg Brandl1a3284e2007-12-02 09:40:06 +0000649 # complicated check of builtins is only necessary for
Thomas Wouters477c8d52006-05-27 19:21:47 +0000650 # Python 2.1 and earlier, and is short-circuited by the
651 # first check on modern Pythons.)
Georg Brandl1a3284e2007-12-02 09:40:06 +0000652 import builtins
Guido van Rossum13257902007-06-07 23:15:56 +0000653 if ( isinstance(self.type, type) or
Thomas Wouters477c8d52006-05-27 19:21:47 +0000654 (hasattr(self.type, "__name__") and
Georg Brandl1a3284e2007-12-02 09:40:06 +0000655 getattr(builtins, self.type.__name__, None) is self.type) ):
Greg Wardeba20e62004-07-31 16:15:44 +0000656 self.type = self.type.__name__
Thomas Wouters477c8d52006-05-27 19:21:47 +0000657
Greg Wardeba20e62004-07-31 16:15:44 +0000658 if self.type == "str":
659 self.type = "string"
660
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000661 if self.type not in self.TYPES:
662 raise OptionError("invalid option type: %r" % self.type, self)
663 if self.action not in self.TYPED_ACTIONS:
664 raise OptionError(
665 "must not supply a type for action %r" % self.action, self)
666
667 def _check_choice(self):
668 if self.type == "choice":
669 if self.choices is None:
670 raise OptionError(
671 "must supply a list of choices for type 'choice'", self)
Guido van Rossum13257902007-06-07 23:15:56 +0000672 elif not isinstance(self.choices, (tuple, list)):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000673 raise OptionError(
674 "choices must be a list of strings ('%s' supplied)"
675 % str(type(self.choices)).split("'")[1], self)
676 elif self.choices is not None:
677 raise OptionError(
678 "must not supply choices for type %r" % self.type, self)
679
Greg Wardeba20e62004-07-31 16:15:44 +0000680 def _check_dest(self):
681 # No destination given, and we need one for this action. The
682 # self.type check is for callbacks that take a value.
683 takes_value = (self.action in self.STORE_ACTIONS or
684 self.type is not None)
685 if self.dest is None and takes_value:
686
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000687 # Glean a destination from the first long option string,
688 # or from the first short option string if no long options.
689 if self._long_opts:
690 # eg. "--foo-bar" -> "foo_bar"
691 self.dest = self._long_opts[0][2:].replace('-', '_')
692 else:
693 self.dest = self._short_opts[0][1]
694
Greg Wardeba20e62004-07-31 16:15:44 +0000695 def _check_const(self):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000696 if self.action not in self.CONST_ACTIONS and self.const is not None:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000697 raise OptionError(
698 "'const' must not be supplied for action %r" % self.action,
699 self)
700
Greg Wardeba20e62004-07-31 16:15:44 +0000701 def _check_nargs(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000702 if self.action in self.TYPED_ACTIONS:
703 if self.nargs is None:
704 self.nargs = 1
705 elif self.nargs is not None:
706 raise OptionError(
707 "'nargs' must not be supplied for action %r" % self.action,
708 self)
709
Greg Wardeba20e62004-07-31 16:15:44 +0000710 def _check_callback(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000711 if self.action == "callback":
Florent Xicluna5d1155c2011-10-28 14:45:05 +0200712 if not callable(self.callback):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000713 raise OptionError(
714 "callback not callable: %r" % self.callback, self)
715 if (self.callback_args is not None and
Guido van Rossum13257902007-06-07 23:15:56 +0000716 not isinstance(self.callback_args, tuple)):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000717 raise OptionError(
718 "callback_args, if supplied, must be a tuple: not %r"
719 % self.callback_args, self)
720 if (self.callback_kwargs is not None and
Guido van Rossum13257902007-06-07 23:15:56 +0000721 not isinstance(self.callback_kwargs, dict)):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000722 raise OptionError(
723 "callback_kwargs, if supplied, must be a dict: not %r"
724 % self.callback_kwargs, self)
725 else:
726 if self.callback is not None:
727 raise OptionError(
728 "callback supplied (%r) for non-callback option"
729 % self.callback, self)
730 if self.callback_args is not None:
731 raise OptionError(
732 "callback_args supplied for non-callback option", self)
733 if self.callback_kwargs is not None:
734 raise OptionError(
735 "callback_kwargs supplied for non-callback option", self)
736
737
738 CHECK_METHODS = [_check_action,
739 _check_type,
740 _check_choice,
741 _check_dest,
742 _check_const,
743 _check_nargs,
744 _check_callback]
745
746
747 # -- Miscellaneous methods -----------------------------------------
748
Greg Wardeba20e62004-07-31 16:15:44 +0000749 def __str__(self):
Greg Ward2492fcf2003-04-21 02:40:34 +0000750 return "/".join(self._short_opts + self._long_opts)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000751
Greg Wardeba20e62004-07-31 16:15:44 +0000752 __repr__ = _repr
753
754 def takes_value(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000755 return self.type is not None
756
Greg Wardeba20e62004-07-31 16:15:44 +0000757 def get_opt_string(self):
758 if self._long_opts:
759 return self._long_opts[0]
760 else:
761 return self._short_opts[0]
762
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000763
764 # -- Processing methods --------------------------------------------
765
Greg Wardeba20e62004-07-31 16:15:44 +0000766 def check_value(self, opt, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000767 checker = self.TYPE_CHECKER.get(self.type)
768 if checker is None:
769 return value
770 else:
771 return checker(self, opt, value)
772
Greg Wardeba20e62004-07-31 16:15:44 +0000773 def convert_value(self, opt, value):
774 if value is not None:
775 if self.nargs == 1:
776 return self.check_value(opt, value)
777 else:
778 return tuple([self.check_value(opt, v) for v in value])
779
780 def process(self, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000781
782 # First, convert the value(s) to the right type. Howl if any
783 # value(s) are bogus.
Greg Wardeba20e62004-07-31 16:15:44 +0000784 value = self.convert_value(opt, value)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000785
786 # And then take whatever action is expected of us.
787 # This is a separate method to make life easier for
788 # subclasses to add new actions.
789 return self.take_action(
790 self.action, self.dest, opt, value, values, parser)
791
Greg Wardeba20e62004-07-31 16:15:44 +0000792 def take_action(self, action, dest, opt, value, values, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000793 if action == "store":
794 setattr(values, dest, value)
795 elif action == "store_const":
796 setattr(values, dest, self.const)
797 elif action == "store_true":
Greg Ward2492fcf2003-04-21 02:40:34 +0000798 setattr(values, dest, True)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000799 elif action == "store_false":
Greg Ward2492fcf2003-04-21 02:40:34 +0000800 setattr(values, dest, False)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000801 elif action == "append":
802 values.ensure_value(dest, []).append(value)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000803 elif action == "append_const":
804 values.ensure_value(dest, []).append(self.const)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000805 elif action == "count":
806 setattr(values, dest, values.ensure_value(dest, 0) + 1)
807 elif action == "callback":
808 args = self.callback_args or ()
809 kwargs = self.callback_kwargs or {}
810 self.callback(self, opt, value, parser, *args, **kwargs)
811 elif action == "help":
812 parser.print_help()
Greg Ward48aa84b2004-10-27 02:20:04 +0000813 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000814 elif action == "version":
815 parser.print_version()
Greg Ward48aa84b2004-10-27 02:20:04 +0000816 parser.exit()
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000817 else:
Benjamin Peterson4469d0c2008-11-30 22:46:23 +0000818 raise ValueError("unknown action %r" % self.action)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000819
820 return 1
821
822# class Option
Greg Ward2492fcf2003-04-21 02:40:34 +0000823
824
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000825SUPPRESS_HELP = "SUPPRESS"+"HELP"
826SUPPRESS_USAGE = "SUPPRESS"+"USAGE"
827
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000828class Values:
829
Greg Wardeba20e62004-07-31 16:15:44 +0000830 def __init__(self, defaults=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000831 if defaults:
832 for (attr, val) in defaults.items():
833 setattr(self, attr, val)
834
Greg Wardeba20e62004-07-31 16:15:44 +0000835 def __str__(self):
836 return str(self.__dict__)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000837
Greg Wardeba20e62004-07-31 16:15:44 +0000838 __repr__ = _repr
839
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000840 def __eq__(self, other):
Greg Wardeba20e62004-07-31 16:15:44 +0000841 if isinstance(other, Values):
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000842 return self.__dict__ == other.__dict__
Guido van Rossum13257902007-06-07 23:15:56 +0000843 elif isinstance(other, dict):
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000844 return self.__dict__ == other
Greg Wardeba20e62004-07-31 16:15:44 +0000845 else:
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000846 return NotImplemented
Greg Wardeba20e62004-07-31 16:15:44 +0000847
848 def _update_careful(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000849 """
850 Update the option values from an arbitrary dictionary, but only
851 use keys from dict that already have a corresponding attribute
852 in self. Any keys in dict without a corresponding attribute
853 are silently ignored.
854 """
855 for attr in dir(self):
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000856 if attr in dict:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000857 dval = dict[attr]
858 if dval is not None:
859 setattr(self, attr, dval)
860
Greg Wardeba20e62004-07-31 16:15:44 +0000861 def _update_loose(self, dict):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000862 """
863 Update the option values from an arbitrary dictionary,
864 using all keys from the dictionary regardless of whether
865 they have a corresponding attribute in self or not.
866 """
867 self.__dict__.update(dict)
868
Greg Wardeba20e62004-07-31 16:15:44 +0000869 def _update(self, dict, mode):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000870 if mode == "careful":
871 self._update_careful(dict)
872 elif mode == "loose":
873 self._update_loose(dict)
874 else:
Collin Winterce36ad82007-08-30 01:19:48 +0000875 raise ValueError("invalid update mode: %r" % mode)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000876
Greg Wardeba20e62004-07-31 16:15:44 +0000877 def read_module(self, modname, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000878 __import__(modname)
879 mod = sys.modules[modname]
880 self._update(vars(mod), mode)
881
Greg Wardeba20e62004-07-31 16:15:44 +0000882 def read_file(self, filename, mode="careful"):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000883 vars = {}
Neal Norwitz01688022007-08-12 00:43:29 +0000884 exec(open(filename).read(), vars)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000885 self._update(vars, mode)
886
Greg Wardeba20e62004-07-31 16:15:44 +0000887 def ensure_value(self, attr, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000888 if not hasattr(self, attr) or getattr(self, attr) is None:
889 setattr(self, attr, value)
890 return getattr(self, attr)
891
892
893class OptionContainer:
894
895 """
896 Abstract base class.
897
898 Class attributes:
899 standard_option_list : [Option]
900 list of standard options that will be accepted by all instances
901 of this parser class (intended to be overridden by subclasses).
902
903 Instance attributes:
904 option_list : [Option]
905 the list of Option objects contained by this OptionContainer
906 _short_opt : { string : Option }
907 dictionary mapping short option strings, eg. "-f" or "-X",
908 to the Option instances that implement them. If an Option
909 has multiple short option strings, it will appears in this
910 dictionary multiple times. [1]
911 _long_opt : { string : Option }
912 dictionary mapping long option strings, eg. "--file" or
913 "--exclude", to the Option instances that implement them.
914 Again, a given Option can occur multiple times in this
915 dictionary. [1]
916 defaults : { string : any }
917 dictionary mapping option destination names to default
918 values for each destination [1]
919
920 [1] These mappings are common to (shared by) all components of the
921 controlling OptionParser, where they are initially created.
922
923 """
924
Greg Wardeba20e62004-07-31 16:15:44 +0000925 def __init__(self, option_class, conflict_handler, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000926 # Initialize the option list and related data structures.
927 # This method must be provided by subclasses, and it must
928 # initialize at least the following instance attributes:
929 # option_list, _short_opt, _long_opt, defaults.
930 self._create_option_list()
931
932 self.option_class = option_class
933 self.set_conflict_handler(conflict_handler)
934 self.set_description(description)
935
Greg Wardeba20e62004-07-31 16:15:44 +0000936 def _create_option_mappings(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000937 # For use by OptionParser constructor -- create the master
938 # option mappings used by this OptionParser and all
939 # OptionGroups that it owns.
940 self._short_opt = {} # single letter -> Option instance
941 self._long_opt = {} # long option -> Option instance
942 self.defaults = {} # maps option dest -> default value
943
944
Greg Wardeba20e62004-07-31 16:15:44 +0000945 def _share_option_mappings(self, parser):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000946 # For use by OptionGroup constructor -- use shared option
947 # mappings from the OptionParser that owns this OptionGroup.
948 self._short_opt = parser._short_opt
949 self._long_opt = parser._long_opt
950 self.defaults = parser.defaults
951
Greg Wardeba20e62004-07-31 16:15:44 +0000952 def set_conflict_handler(self, handler):
Greg Ward48aa84b2004-10-27 02:20:04 +0000953 if handler not in ("error", "resolve"):
Collin Winterce36ad82007-08-30 01:19:48 +0000954 raise ValueError("invalid conflict_resolution value %r" % handler)
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000955 self.conflict_handler = handler
956
Greg Wardeba20e62004-07-31 16:15:44 +0000957 def set_description(self, description):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000958 self.description = description
959
Greg Wardeba20e62004-07-31 16:15:44 +0000960 def get_description(self):
961 return self.description
962
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000963
Thomas Wouters477c8d52006-05-27 19:21:47 +0000964 def destroy(self):
965 """see OptionParser.destroy()."""
966 del self._short_opt
967 del self._long_opt
968 del self.defaults
969
970
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000971 # -- Option-adding methods -----------------------------------------
972
Greg Wardeba20e62004-07-31 16:15:44 +0000973 def _check_conflict(self, option):
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000974 conflict_opts = []
975 for opt in option._short_opts:
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000976 if opt in self._short_opt:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000977 conflict_opts.append((opt, self._short_opt[opt]))
978 for opt in option._long_opts:
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000979 if opt in self._long_opt:
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000980 conflict_opts.append((opt, self._long_opt[opt]))
981
982 if conflict_opts:
983 handler = self.conflict_handler
Greg Ward48aa84b2004-10-27 02:20:04 +0000984 if handler == "error":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000985 raise OptionConflictError(
986 "conflicting option string(s): %s"
987 % ", ".join([co[0] for co in conflict_opts]),
988 option)
Greg Ward48aa84b2004-10-27 02:20:04 +0000989 elif handler == "resolve":
Guido van Rossumb9ba4582002-11-14 22:00:19 +0000990 for (opt, c_option) in conflict_opts:
991 if opt.startswith("--"):
992 c_option._long_opts.remove(opt)
993 del self._long_opt[opt]
994 else:
995 c_option._short_opts.remove(opt)
996 del self._short_opt[opt]
997 if not (c_option._short_opts or c_option._long_opts):
998 c_option.container.option_list.remove(c_option)
999
Greg Wardeba20e62004-07-31 16:15:44 +00001000 def add_option(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001001 """add_option(Option)
1002 add_option(opt_str, ..., kwarg=val, ...)
1003 """
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001004 if isinstance(args[0], str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001005 option = self.option_class(*args, **kwargs)
1006 elif len(args) == 1 and not kwargs:
1007 option = args[0]
1008 if not isinstance(option, Option):
Collin Winterce36ad82007-08-30 01:19:48 +00001009 raise TypeError("not an Option instance: %r" % option)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001010 else:
Collin Winterce36ad82007-08-30 01:19:48 +00001011 raise TypeError("invalid arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001012
1013 self._check_conflict(option)
1014
1015 self.option_list.append(option)
1016 option.container = self
1017 for opt in option._short_opts:
1018 self._short_opt[opt] = option
1019 for opt in option._long_opts:
1020 self._long_opt[opt] = option
1021
1022 if option.dest is not None: # option has a dest, we need a default
1023 if option.default is not NO_DEFAULT:
1024 self.defaults[option.dest] = option.default
Guido van Rossume2b70bc2006-08-18 22:13:04 +00001025 elif option.dest not in self.defaults:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001026 self.defaults[option.dest] = None
1027
1028 return option
1029
Greg Wardeba20e62004-07-31 16:15:44 +00001030 def add_options(self, option_list):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001031 for option in option_list:
1032 self.add_option(option)
1033
1034 # -- Option query/removal methods ----------------------------------
1035
Greg Wardeba20e62004-07-31 16:15:44 +00001036 def get_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001037 return (self._short_opt.get(opt_str) or
1038 self._long_opt.get(opt_str))
1039
Greg Wardeba20e62004-07-31 16:15:44 +00001040 def has_option(self, opt_str):
Guido van Rossume2b70bc2006-08-18 22:13:04 +00001041 return (opt_str in self._short_opt or
Guido van Rossum93662412006-08-19 16:09:41 +00001042 opt_str in self._long_opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001043
Greg Wardeba20e62004-07-31 16:15:44 +00001044 def remove_option(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001045 option = self._short_opt.get(opt_str)
1046 if option is None:
1047 option = self._long_opt.get(opt_str)
1048 if option is None:
1049 raise ValueError("no such option %r" % opt_str)
1050
1051 for opt in option._short_opts:
1052 del self._short_opt[opt]
1053 for opt in option._long_opts:
1054 del self._long_opt[opt]
1055 option.container.option_list.remove(option)
1056
1057
1058 # -- Help-formatting methods ---------------------------------------
1059
Greg Wardeba20e62004-07-31 16:15:44 +00001060 def format_option_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001061 if not self.option_list:
1062 return ""
1063 result = []
1064 for option in self.option_list:
1065 if not option.help is SUPPRESS_HELP:
1066 result.append(formatter.format_option(option))
1067 return "".join(result)
1068
Greg Wardeba20e62004-07-31 16:15:44 +00001069 def format_description(self, formatter):
1070 return formatter.format_description(self.get_description())
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001071
Greg Wardeba20e62004-07-31 16:15:44 +00001072 def format_help(self, formatter):
1073 result = []
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001074 if self.description:
Greg Wardeba20e62004-07-31 16:15:44 +00001075 result.append(self.format_description(formatter))
1076 if self.option_list:
1077 result.append(self.format_option_help(formatter))
1078 return "\n".join(result)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001079
1080
1081class OptionGroup (OptionContainer):
1082
Greg Wardeba20e62004-07-31 16:15:44 +00001083 def __init__(self, parser, title, description=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001084 self.parser = parser
1085 OptionContainer.__init__(
1086 self, parser.option_class, parser.conflict_handler, description)
1087 self.title = title
1088
Greg Wardeba20e62004-07-31 16:15:44 +00001089 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001090 self.option_list = []
1091 self._share_option_mappings(self.parser)
1092
Greg Wardeba20e62004-07-31 16:15:44 +00001093 def set_title(self, title):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001094 self.title = title
1095
Thomas Wouters477c8d52006-05-27 19:21:47 +00001096 def destroy(self):
1097 """see OptionParser.destroy()."""
1098 OptionContainer.destroy(self)
1099 del self.option_list
1100
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001101 # -- Help-formatting methods ---------------------------------------
1102
Greg Wardeba20e62004-07-31 16:15:44 +00001103 def format_help(self, formatter):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001104 result = formatter.format_heading(self.title)
1105 formatter.indent()
1106 result += OptionContainer.format_help(self, formatter)
1107 formatter.dedent()
1108 return result
1109
1110
1111class OptionParser (OptionContainer):
1112
1113 """
1114 Class attributes:
1115 standard_option_list : [Option]
1116 list of standard options that will be accepted by all instances
1117 of this parser class (intended to be overridden by subclasses).
1118
1119 Instance attributes:
1120 usage : string
1121 a usage string for your program. Before it is displayed
1122 to the user, "%prog" will be expanded to the name of
Greg Ward2492fcf2003-04-21 02:40:34 +00001123 your program (self.prog or os.path.basename(sys.argv[0])).
1124 prog : string
1125 the name of the current program (to override
1126 os.path.basename(sys.argv[0])).
R David Murrayfc5ed802011-05-04 21:06:57 -04001127 description : string
1128 A paragraph of text giving a brief overview of your program.
1129 optparse reformats this paragraph to fit the current terminal
1130 width and prints it when the user requests help (after usage,
1131 but before the list of options).
Thomas Wouters477c8d52006-05-27 19:21:47 +00001132 epilog : string
1133 paragraph of help text to print after option help
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001134
Greg Wardeba20e62004-07-31 16:15:44 +00001135 option_groups : [OptionGroup]
1136 list of option groups in this parser (option groups are
1137 irrelevant for parsing the command-line, but very useful
1138 for generating help)
1139
1140 allow_interspersed_args : bool = true
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001141 if true, positional arguments may be interspersed with options.
1142 Assuming -a and -b each take a single argument, the command-line
1143 -ablah foo bar -bboo baz
1144 will be interpreted the same as
1145 -ablah -bboo -- foo bar baz
1146 If this flag were false, that command line would be interpreted as
1147 -ablah -- foo bar -bboo baz
1148 -- ie. we stop processing options as soon as we see the first
1149 non-option argument. (This is the tradition followed by
1150 Python's getopt module, Perl's Getopt::Std, and other argument-
1151 parsing libraries, but it is generally annoying to users.)
1152
Greg Wardeba20e62004-07-31 16:15:44 +00001153 process_default_values : bool = true
1154 if true, option default values are processed similarly to option
1155 values from the command line: that is, they are passed to the
1156 type-checking function for the option's type (as long as the
1157 default value is a string). (This really only matters if you
1158 have defined custom types; see SF bug #955889.) Set it to false
1159 to restore the behaviour of Optik 1.4.1 and earlier.
1160
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001161 rargs : [string]
1162 the argument list currently being parsed. Only set when
1163 parse_args() is active, and continually trimmed down as
1164 we consume arguments. Mainly there for the benefit of
1165 callback options.
1166 largs : [string]
1167 the list of leftover arguments that we have skipped while
1168 parsing options. If allow_interspersed_args is false, this
1169 list is always empty.
1170 values : Values
1171 the set of option values currently being accumulated. Only
1172 set when parse_args() is active. Also mainly for callbacks.
1173
1174 Because of the 'rargs', 'largs', and 'values' attributes,
1175 OptionParser is not thread-safe. If, for some perverse reason, you
1176 need to parse command-line arguments simultaneously in different
1177 threads, use different OptionParser instances.
1178
1179 """
1180
1181 standard_option_list = []
1182
Greg Wardeba20e62004-07-31 16:15:44 +00001183 def __init__(self,
1184 usage=None,
1185 option_list=None,
1186 option_class=Option,
1187 version=None,
1188 conflict_handler="error",
1189 description=None,
1190 formatter=None,
1191 add_help_option=True,
Thomas Wouters477c8d52006-05-27 19:21:47 +00001192 prog=None,
1193 epilog=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001194 OptionContainer.__init__(
1195 self, option_class, conflict_handler, description)
1196 self.set_usage(usage)
Greg Ward2492fcf2003-04-21 02:40:34 +00001197 self.prog = prog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001198 self.version = version
Greg Wardeba20e62004-07-31 16:15:44 +00001199 self.allow_interspersed_args = True
1200 self.process_default_values = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001201 if formatter is None:
1202 formatter = IndentedHelpFormatter()
1203 self.formatter = formatter
Greg Wardeba20e62004-07-31 16:15:44 +00001204 self.formatter.set_parser(self)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001205 self.epilog = epilog
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001206
1207 # Populate the option list; initial sources are the
1208 # standard_option_list class attribute, the 'option_list'
Greg Wardeba20e62004-07-31 16:15:44 +00001209 # argument, and (if applicable) the _add_version_option() and
1210 # _add_help_option() methods.
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001211 self._populate_option_list(option_list,
1212 add_help=add_help_option)
1213
1214 self._init_parsing_state()
1215
Thomas Wouters477c8d52006-05-27 19:21:47 +00001216
1217 def destroy(self):
1218 """
1219 Declare that you are done with this OptionParser. This cleans up
1220 reference cycles so the OptionParser (and all objects referenced by
1221 it) can be garbage-collected promptly. After calling destroy(), the
1222 OptionParser is unusable.
1223 """
1224 OptionContainer.destroy(self)
1225 for group in self.option_groups:
1226 group.destroy()
1227 del self.option_list
1228 del self.option_groups
1229 del self.formatter
1230
1231
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001232 # -- Private methods -----------------------------------------------
1233 # (used by our or OptionContainer's constructor)
1234
Greg Wardeba20e62004-07-31 16:15:44 +00001235 def _create_option_list(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001236 self.option_list = []
1237 self.option_groups = []
1238 self._create_option_mappings()
1239
Greg Wardeba20e62004-07-31 16:15:44 +00001240 def _add_help_option(self):
1241 self.add_option("-h", "--help",
1242 action="help",
1243 help=_("show this help message and exit"))
1244
1245 def _add_version_option(self):
1246 self.add_option("--version",
1247 action="version",
1248 help=_("show program's version number and exit"))
1249
1250 def _populate_option_list(self, option_list, add_help=True):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001251 if self.standard_option_list:
1252 self.add_options(self.standard_option_list)
1253 if option_list:
1254 self.add_options(option_list)
1255 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001256 self._add_version_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001257 if add_help:
Greg Wardeba20e62004-07-31 16:15:44 +00001258 self._add_help_option()
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001259
Greg Wardeba20e62004-07-31 16:15:44 +00001260 def _init_parsing_state(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001261 # These are set in parse_args() for the convenience of callbacks.
1262 self.rargs = None
1263 self.largs = None
1264 self.values = None
1265
1266
1267 # -- Simple modifier methods ---------------------------------------
1268
Greg Wardeba20e62004-07-31 16:15:44 +00001269 def set_usage(self, usage):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001270 if usage is None:
Greg Wardeba20e62004-07-31 16:15:44 +00001271 self.usage = _("%prog [options]")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001272 elif usage is SUPPRESS_USAGE:
1273 self.usage = None
Greg Wardeba20e62004-07-31 16:15:44 +00001274 # For backwards compatibility with Optik 1.3 and earlier.
Thomas Wouters477c8d52006-05-27 19:21:47 +00001275 elif usage.lower().startswith("usage: "):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001276 self.usage = usage[7:]
1277 else:
1278 self.usage = usage
1279
Greg Wardeba20e62004-07-31 16:15:44 +00001280 def enable_interspersed_args(self):
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00001281 """Set parsing to not stop on the first non-option, allowing
1282 interspersing switches with command arguments. This is the
1283 default behavior. See also disable_interspersed_args() and the
1284 class documentation description of the attribute
1285 allow_interspersed_args."""
Greg Wardeba20e62004-07-31 16:15:44 +00001286 self.allow_interspersed_args = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001287
Greg Wardeba20e62004-07-31 16:15:44 +00001288 def disable_interspersed_args(self):
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00001289 """Set parsing to stop on the first non-option. Use this if
1290 you have a command processor which runs another command that
1291 has options of its own and you want to make sure these options
1292 don't get confused.
1293 """
Greg Wardeba20e62004-07-31 16:15:44 +00001294 self.allow_interspersed_args = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001295
Greg Wardeba20e62004-07-31 16:15:44 +00001296 def set_process_default_values(self, process):
1297 self.process_default_values = process
1298
1299 def set_default(self, dest, value):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001300 self.defaults[dest] = value
1301
Greg Wardeba20e62004-07-31 16:15:44 +00001302 def set_defaults(self, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001303 self.defaults.update(kwargs)
1304
Greg Wardeba20e62004-07-31 16:15:44 +00001305 def _get_all_options(self):
1306 options = self.option_list[:]
1307 for group in self.option_groups:
1308 options.extend(group.option_list)
1309 return options
1310
1311 def get_default_values(self):
1312 if not self.process_default_values:
1313 # Old, pre-Optik 1.5 behaviour.
1314 return Values(self.defaults)
1315
1316 defaults = self.defaults.copy()
1317 for option in self._get_all_options():
1318 default = defaults.get(option.dest)
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001319 if isinstance(default, str):
Greg Wardeba20e62004-07-31 16:15:44 +00001320 opt_str = option.get_opt_string()
1321 defaults[option.dest] = option.check_value(opt_str, default)
1322
1323 return Values(defaults)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001324
1325
1326 # -- OptionGroup methods -------------------------------------------
1327
Greg Wardeba20e62004-07-31 16:15:44 +00001328 def add_option_group(self, *args, **kwargs):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001329 # XXX lots of overlap with OptionContainer.add_option()
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001330 if isinstance(args[0], str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001331 group = OptionGroup(self, *args, **kwargs)
1332 elif len(args) == 1 and not kwargs:
1333 group = args[0]
1334 if not isinstance(group, OptionGroup):
Collin Winterce36ad82007-08-30 01:19:48 +00001335 raise TypeError("not an OptionGroup instance: %r" % group)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001336 if group.parser is not self:
Collin Winterce36ad82007-08-30 01:19:48 +00001337 raise ValueError("invalid OptionGroup (wrong parser)")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001338 else:
Collin Winterce36ad82007-08-30 01:19:48 +00001339 raise TypeError("invalid arguments")
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001340
1341 self.option_groups.append(group)
1342 return group
1343
Greg Wardeba20e62004-07-31 16:15:44 +00001344 def get_option_group(self, opt_str):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001345 option = (self._short_opt.get(opt_str) or
1346 self._long_opt.get(opt_str))
1347 if option and option.container is not self:
1348 return option.container
1349 return None
1350
1351
1352 # -- Option-parsing methods ----------------------------------------
1353
Greg Wardeba20e62004-07-31 16:15:44 +00001354 def _get_args(self, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001355 if args is None:
1356 return sys.argv[1:]
1357 else:
1358 return args[:] # don't modify caller's list
1359
Greg Wardeba20e62004-07-31 16:15:44 +00001360 def parse_args(self, args=None, values=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001361 """
1362 parse_args(args : [string] = sys.argv[1:],
1363 values : Values = None)
1364 -> (values : Values, args : [string])
1365
1366 Parse the command-line options found in 'args' (default:
1367 sys.argv[1:]). Any errors result in a call to 'error()', which
1368 by default prints the usage message to stderr and calls
1369 sys.exit() with an error message. On success returns a pair
1370 (values, args) where 'values' is an Values instance (with all
1371 your option values) and 'args' is the list of arguments left
1372 over after parsing options.
1373 """
1374 rargs = self._get_args(args)
1375 if values is None:
1376 values = self.get_default_values()
1377
1378 # Store the halves of the argument list as attributes for the
1379 # convenience of callbacks:
1380 # rargs
1381 # the rest of the command-line (the "r" stands for
1382 # "remaining" or "right-hand")
1383 # largs
1384 # the leftover arguments -- ie. what's left after removing
1385 # options and their arguments (the "l" stands for "leftover"
1386 # or "left-hand")
1387 self.rargs = rargs
1388 self.largs = largs = []
1389 self.values = values
1390
1391 try:
1392 stop = self._process_args(largs, rargs, values)
Guido van Rossumb940e112007-01-10 16:19:56 +00001393 except (BadOptionError, OptionValueError) as err:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001394 self.error(str(err))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001395
1396 args = largs + rargs
1397 return self.check_values(values, args)
1398
Greg Wardeba20e62004-07-31 16:15:44 +00001399 def check_values(self, values, args):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001400 """
1401 check_values(values : Values, args : [string])
1402 -> (values : Values, args : [string])
1403
1404 Check that the supplied option values and leftover arguments are
1405 valid. Returns the option values and leftover arguments
1406 (possibly adjusted, possibly completely new -- whatever you
1407 like). Default implementation just returns the passed-in
1408 values; subclasses may override as desired.
1409 """
1410 return (values, args)
1411
Greg Wardeba20e62004-07-31 16:15:44 +00001412 def _process_args(self, largs, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001413 """_process_args(largs : [string],
1414 rargs : [string],
1415 values : Values)
1416
1417 Process command-line arguments and populate 'values', consuming
1418 options and arguments from 'rargs'. If 'allow_interspersed_args' is
1419 false, stop at the first non-option argument. If true, accumulate any
1420 interspersed non-option arguments in 'largs'.
1421 """
1422 while rargs:
1423 arg = rargs[0]
1424 # We handle bare "--" explicitly, and bare "-" is handled by the
1425 # standard arg handler since the short arg case ensures that the
1426 # len of the opt string is greater than 1.
1427 if arg == "--":
1428 del rargs[0]
1429 return
1430 elif arg[0:2] == "--":
1431 # process a single long option (possibly with value(s))
1432 self._process_long_opt(rargs, values)
1433 elif arg[:1] == "-" and len(arg) > 1:
1434 # process a cluster of short options (possibly with
1435 # value(s) for the last one only)
1436 self._process_short_opts(rargs, values)
1437 elif self.allow_interspersed_args:
1438 largs.append(arg)
1439 del rargs[0]
1440 else:
1441 return # stop now, leave this arg in rargs
1442
1443 # Say this is the original argument list:
1444 # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)]
1445 # ^
1446 # (we are about to process arg(i)).
1447 #
1448 # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of
1449 # [arg0, ..., arg(i-1)] (any options and their arguments will have
1450 # been removed from largs).
1451 #
1452 # The while loop will usually consume 1 or more arguments per pass.
1453 # If it consumes 1 (eg. arg is an option that takes no arguments),
1454 # then after _process_arg() is done the situation is:
1455 #
1456 # largs = subset of [arg0, ..., arg(i)]
1457 # rargs = [arg(i+1), ..., arg(N-1)]
1458 #
1459 # If allow_interspersed_args is false, largs will always be
1460 # *empty* -- still a subset of [arg0, ..., arg(i-1)], but
1461 # not a very interesting subset!
1462
Greg Wardeba20e62004-07-31 16:15:44 +00001463 def _match_long_opt(self, opt):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001464 """_match_long_opt(opt : string) -> string
1465
1466 Determine which long option string 'opt' matches, ie. which one
Ezio Melotti30b9d5d2013-08-17 15:50:46 +03001467 it is an unambiguous abbreviation for. Raises BadOptionError if
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001468 'opt' doesn't unambiguously match any long option string.
1469 """
1470 return _match_abbrev(opt, self._long_opt)
1471
Greg Wardeba20e62004-07-31 16:15:44 +00001472 def _process_long_opt(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001473 arg = rargs.pop(0)
1474
1475 # Value explicitly attached to arg? Pretend it's the next
1476 # argument.
1477 if "=" in arg:
1478 (opt, next_arg) = arg.split("=", 1)
1479 rargs.insert(0, next_arg)
Greg Wardeba20e62004-07-31 16:15:44 +00001480 had_explicit_value = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001481 else:
1482 opt = arg
Greg Wardeba20e62004-07-31 16:15:44 +00001483 had_explicit_value = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001484
1485 opt = self._match_long_opt(opt)
1486 option = self._long_opt[opt]
1487 if option.takes_value():
1488 nargs = option.nargs
1489 if len(rargs) < nargs:
Éric Araujo6a1454f2011-03-20 19:59:25 +01001490 self.error(ngettext(
1491 "%(option)s option requires %(number)d argument",
1492 "%(option)s option requires %(number)d arguments",
1493 nargs) % {"option": opt, "number": nargs})
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001494 elif nargs == 1:
1495 value = rargs.pop(0)
1496 else:
1497 value = tuple(rargs[0:nargs])
1498 del rargs[0:nargs]
1499
1500 elif had_explicit_value:
Greg Wardeba20e62004-07-31 16:15:44 +00001501 self.error(_("%s option does not take a value") % opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001502
1503 else:
1504 value = None
1505
1506 option.process(opt, value, values, self)
1507
Greg Wardeba20e62004-07-31 16:15:44 +00001508 def _process_short_opts(self, rargs, values):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001509 arg = rargs.pop(0)
Greg Wardeba20e62004-07-31 16:15:44 +00001510 stop = False
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001511 i = 1
1512 for ch in arg[1:]:
1513 opt = "-" + ch
1514 option = self._short_opt.get(opt)
1515 i += 1 # we have consumed a character
1516
1517 if not option:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001518 raise BadOptionError(opt)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001519 if option.takes_value():
1520 # Any characters left in arg? Pretend they're the
1521 # next arg, and stop consuming characters of arg.
1522 if i < len(arg):
1523 rargs.insert(0, arg[i:])
Greg Wardeba20e62004-07-31 16:15:44 +00001524 stop = True
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001525
1526 nargs = option.nargs
1527 if len(rargs) < nargs:
Éric Araujo6a1454f2011-03-20 19:59:25 +01001528 self.error(ngettext(
1529 "%(option)s option requires %(number)d argument",
1530 "%(option)s option requires %(number)d arguments",
1531 nargs) % {"option": opt, "number": nargs})
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001532 elif nargs == 1:
1533 value = rargs.pop(0)
1534 else:
1535 value = tuple(rargs[0:nargs])
1536 del rargs[0:nargs]
1537
1538 else: # option doesn't take a value
1539 value = None
1540
1541 option.process(opt, value, values, self)
1542
1543 if stop:
1544 break
1545
1546
1547 # -- Feedback methods ----------------------------------------------
1548
Greg Wardeba20e62004-07-31 16:15:44 +00001549 def get_prog_name(self):
1550 if self.prog is None:
1551 return os.path.basename(sys.argv[0])
1552 else:
1553 return self.prog
1554
1555 def expand_prog_name(self, s):
1556 return s.replace("%prog", self.get_prog_name())
1557
1558 def get_description(self):
1559 return self.expand_prog_name(self.description)
1560
Greg Ward48aa84b2004-10-27 02:20:04 +00001561 def exit(self, status=0, msg=None):
1562 if msg:
1563 sys.stderr.write(msg)
1564 sys.exit(status)
1565
Greg Wardeba20e62004-07-31 16:15:44 +00001566 def error(self, msg):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001567 """error(msg : string)
1568
1569 Print a usage message incorporating 'msg' to stderr and exit.
1570 If you override this in a subclass, it should not return -- it
1571 should either exit or raise an exception.
1572 """
1573 self.print_usage(sys.stderr)
Greg Ward48aa84b2004-10-27 02:20:04 +00001574 self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001575
Greg Wardeba20e62004-07-31 16:15:44 +00001576 def get_usage(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001577 if self.usage:
1578 return self.formatter.format_usage(
Greg Wardeba20e62004-07-31 16:15:44 +00001579 self.expand_prog_name(self.usage))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001580 else:
1581 return ""
1582
Greg Wardeba20e62004-07-31 16:15:44 +00001583 def print_usage(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001584 """print_usage(file : file = stdout)
1585
1586 Print the usage message for the current program (self.usage) to
Mark Dickinson934896d2009-02-21 20:59:32 +00001587 'file' (default stdout). Any occurrence of the string "%prog" in
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001588 self.usage is replaced with the name of the current program
1589 (basename of sys.argv[0]). Does nothing if self.usage is empty
1590 or not defined.
1591 """
1592 if self.usage:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001593 print(self.get_usage(), file=file)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001594
Greg Wardeba20e62004-07-31 16:15:44 +00001595 def get_version(self):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001596 if self.version:
Greg Wardeba20e62004-07-31 16:15:44 +00001597 return self.expand_prog_name(self.version)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001598 else:
1599 return ""
1600
Greg Wardeba20e62004-07-31 16:15:44 +00001601 def print_version(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001602 """print_version(file : file = stdout)
1603
1604 Print the version message for this program (self.version) to
Mark Dickinson934896d2009-02-21 20:59:32 +00001605 'file' (default stdout). As with print_usage(), any occurrence
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001606 of "%prog" in self.version is replaced by the current program's
1607 name. Does nothing if self.version is empty or undefined.
1608 """
1609 if self.version:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001610 print(self.get_version(), file=file)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001611
Greg Wardeba20e62004-07-31 16:15:44 +00001612 def format_option_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001613 if formatter is None:
1614 formatter = self.formatter
1615 formatter.store_option_strings(self)
1616 result = []
Thomas Wouters477c8d52006-05-27 19:21:47 +00001617 result.append(formatter.format_heading(_("Options")))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001618 formatter.indent()
1619 if self.option_list:
1620 result.append(OptionContainer.format_option_help(self, formatter))
1621 result.append("\n")
1622 for group in self.option_groups:
1623 result.append(group.format_help(formatter))
1624 result.append("\n")
1625 formatter.dedent()
1626 # Drop the last "\n", or the header if no options or option groups:
1627 return "".join(result[:-1])
1628
Thomas Wouters477c8d52006-05-27 19:21:47 +00001629 def format_epilog(self, formatter):
1630 return formatter.format_epilog(self.epilog)
1631
Greg Wardeba20e62004-07-31 16:15:44 +00001632 def format_help(self, formatter=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001633 if formatter is None:
1634 formatter = self.formatter
1635 result = []
1636 if self.usage:
1637 result.append(self.get_usage() + "\n")
1638 if self.description:
1639 result.append(self.format_description(formatter) + "\n")
1640 result.append(self.format_option_help(formatter))
Thomas Wouters477c8d52006-05-27 19:21:47 +00001641 result.append(self.format_epilog(formatter))
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001642 return "".join(result)
1643
Greg Wardeba20e62004-07-31 16:15:44 +00001644 def print_help(self, file=None):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001645 """print_help(file : file = stdout)
1646
1647 Print an extended help message, listing all options and any
1648 help text provided with them, to 'file' (default stdout).
1649 """
1650 if file is None:
1651 file = sys.stdout
Guido van Rossum34d19282007-08-09 01:03:29 +00001652 file.write(self.format_help())
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001653
1654# class OptionParser
1655
1656
Greg Wardeba20e62004-07-31 16:15:44 +00001657def _match_abbrev(s, wordmap):
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001658 """_match_abbrev(s : string, wordmap : {string : Option}) -> string
1659
1660 Return the string key in 'wordmap' for which 's' is an unambiguous
1661 abbreviation. If 's' is found to be ambiguous or doesn't match any of
1662 'words', raise BadOptionError.
1663 """
1664 # Is there an exact match?
Guido van Rossume2b70bc2006-08-18 22:13:04 +00001665 if s in wordmap:
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001666 return s
1667 else:
1668 # Isolate all words with s as a prefix.
1669 possibilities = [word for word in wordmap.keys()
1670 if word.startswith(s)]
1671 # No exact match, so there had better be just one possibility.
1672 if len(possibilities) == 1:
1673 return possibilities[0]
1674 elif not possibilities:
Thomas Wouters477c8d52006-05-27 19:21:47 +00001675 raise BadOptionError(s)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001676 else:
1677 # More than one possible completion: ambiguous prefix.
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00001678 possibilities.sort()
Thomas Wouters477c8d52006-05-27 19:21:47 +00001679 raise AmbiguousOptionError(s, possibilities)
Guido van Rossumb9ba4582002-11-14 22:00:19 +00001680
1681
1682# Some day, there might be many Option classes. As of Optik 1.3, the
1683# preferred way to instantiate Options is indirectly, via make_option(),
1684# which will become a factory function when there are many Option
1685# classes.
1686make_option = Option