Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1 | """optparse - a powerful, extensible, and easy-to-use option parser. |
| 2 | |
| 3 | By Greg Ward <gward@python.net> |
| 4 | |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 5 | Originally distributed as Optik; see http://optik.sourceforge.net/ . |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 6 | |
Greg Ward | 4656ed4 | 2003-05-08 01:38:52 +0000 | [diff] [blame] | 7 | If you have problems with this module, please do not file bugs, |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 8 | patches, or feature requests with Python; instead, use Optik's |
| 9 | SourceForge project page: |
| 10 | http://sourceforge.net/projects/optik |
| 11 | |
| 12 | For support, use the optik-users@lists.sourceforge.net mailing list |
| 13 | (http://lists.sourceforge.net/lists/listinfo/optik-users). |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 14 | """ |
| 15 | |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 16 | # Python developers: please do not make changes to this file, since |
| 17 | # it is automatically generated from the Optik source code. |
| 18 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 19 | __version__ = "1.5.3" |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 20 | |
Greg Ward | 4656ed4 | 2003-05-08 01:38:52 +0000 | [diff] [blame] | 21 | __all__ = ['Option', |
| 22 | 'SUPPRESS_HELP', |
| 23 | 'SUPPRESS_USAGE', |
Greg Ward | 4656ed4 | 2003-05-08 01:38:52 +0000 | [diff] [blame] | 24 | 'Values', |
| 25 | 'OptionContainer', |
| 26 | 'OptionGroup', |
| 27 | 'OptionParser', |
| 28 | 'HelpFormatter', |
| 29 | 'IndentedHelpFormatter', |
| 30 | 'TitledHelpFormatter', |
| 31 | 'OptParseError', |
| 32 | 'OptionError', |
| 33 | 'OptionConflictError', |
| 34 | 'OptionValueError', |
| 35 | 'BadOptionError'] |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 36 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 37 | __copyright__ = """ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 38 | Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved. |
| 39 | Copyright (c) 2002-2006 Python Software Foundation. All rights reserved. |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 40 | |
| 41 | Redistribution and use in source and binary forms, with or without |
| 42 | modification, are permitted provided that the following conditions are |
| 43 | met: |
| 44 | |
| 45 | * Redistributions of source code must retain the above copyright |
| 46 | notice, this list of conditions and the following disclaimer. |
| 47 | |
| 48 | * Redistributions in binary form must reproduce the above copyright |
| 49 | notice, this list of conditions and the following disclaimer in the |
| 50 | documentation and/or other materials provided with the distribution. |
| 51 | |
| 52 | * Neither the name of the author nor the names of its |
| 53 | contributors may be used to endorse or promote products derived from |
| 54 | this software without specific prior written permission. |
| 55 | |
| 56 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
| 57 | IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 58 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 59 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR |
| 60 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 61 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 62 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 63 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 64 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 65 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 66 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 67 | """ |
| 68 | |
| 69 | import sys, os |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 70 | import types |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 71 | import textwrap |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 72 | |
| 73 | def _repr(self): |
| 74 | return "<%s at 0x%x: %s>" % (self.__class__.__name__, id(self), self) |
| 75 | |
| 76 | |
| 77 | # This file was generated from: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 78 | # Id: option_parser.py 527 2006-07-23 15:21:30Z greg |
| 79 | # Id: option.py 522 2006-06-11 16:22:03Z gward |
| 80 | # Id: help.py 527 2006-07-23 15:21:30Z greg |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 81 | # Id: errors.py 509 2006-04-20 00:58:24Z gward |
| 82 | |
| 83 | try: |
| 84 | from gettext import gettext |
| 85 | except ImportError: |
| 86 | def gettext(message): |
| 87 | return message |
| 88 | _ = gettext |
| 89 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 90 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 91 | class OptParseError (Exception): |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 92 | def __init__(self, msg): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 93 | self.msg = msg |
| 94 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 95 | def __str__(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 96 | return self.msg |
| 97 | |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 98 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 99 | class OptionError (OptParseError): |
| 100 | """ |
| 101 | Raised if an Option instance is created with invalid or |
| 102 | inconsistent arguments. |
| 103 | """ |
| 104 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 105 | def __init__(self, msg, option): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 106 | self.msg = msg |
| 107 | self.option_id = str(option) |
| 108 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 109 | def __str__(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 110 | if self.option_id: |
| 111 | return "option %s: %s" % (self.option_id, self.msg) |
| 112 | else: |
| 113 | return self.msg |
| 114 | |
| 115 | class OptionConflictError (OptionError): |
| 116 | """ |
| 117 | Raised if conflicting options are added to an OptionParser. |
| 118 | """ |
| 119 | |
| 120 | class OptionValueError (OptParseError): |
| 121 | """ |
| 122 | Raised if an invalid option value is encountered on the command |
| 123 | line. |
| 124 | """ |
| 125 | |
| 126 | class BadOptionError (OptParseError): |
| 127 | """ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 128 | Raised if an invalid option is seen on the command line. |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 129 | """ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 130 | def __init__(self, opt_str): |
| 131 | self.opt_str = opt_str |
| 132 | |
| 133 | def __str__(self): |
| 134 | return _("no such option: %s") % self.opt_str |
| 135 | |
| 136 | class AmbiguousOptionError (BadOptionError): |
| 137 | """ |
| 138 | Raised if an ambiguous option is seen on the command line. |
| 139 | """ |
| 140 | def __init__(self, opt_str, possibilities): |
| 141 | BadOptionError.__init__(self, opt_str) |
| 142 | self.possibilities = possibilities |
| 143 | |
| 144 | def __str__(self): |
| 145 | return (_("ambiguous option: %s (%s?)") |
| 146 | % (self.opt_str, ", ".join(self.possibilities))) |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 147 | |
| 148 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 149 | class HelpFormatter: |
| 150 | |
| 151 | """ |
| 152 | Abstract base class for formatting option help. OptionParser |
| 153 | instances should use one of the HelpFormatter subclasses for |
| 154 | formatting help; by default IndentedHelpFormatter is used. |
| 155 | |
| 156 | Instance attributes: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 157 | parser : OptionParser |
| 158 | the controlling OptionParser instance |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 159 | indent_increment : int |
| 160 | the number of columns to indent per nesting level |
| 161 | max_help_position : int |
| 162 | the maximum starting column for option help text |
| 163 | help_position : int |
| 164 | the calculated starting column for option help text; |
| 165 | initially the same as the maximum |
| 166 | width : int |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 167 | total number of columns for output (pass None to constructor for |
| 168 | this value to be taken from the $COLUMNS environment variable) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 169 | level : int |
| 170 | current indentation level |
| 171 | current_indent : int |
| 172 | current indentation level (in columns) |
| 173 | help_width : int |
| 174 | number of columns available for option help text (calculated) |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 175 | default_tag : str |
| 176 | text to replace with each option's default value, "%default" |
| 177 | by default. Set to false value to disable default value expansion. |
| 178 | option_strings : { Option : str } |
| 179 | maps Option instances to the snippet of help text explaining |
| 180 | the syntax of that option, e.g. "-h, --help" or |
| 181 | "-fFILE, --file=FILE" |
| 182 | _short_opt_fmt : str |
| 183 | format string controlling how short options with values are |
| 184 | printed in help text. Must be either "%s%s" ("-fFILE") or |
| 185 | "%s %s" ("-f FILE"), because those are the two syntaxes that |
| 186 | Optik supports. |
| 187 | _long_opt_fmt : str |
| 188 | similar but for long options; must be either "%s %s" ("--file FILE") |
| 189 | or "%s=%s" ("--file=FILE"). |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 190 | """ |
| 191 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 192 | NO_DEFAULT_VALUE = "none" |
| 193 | |
| 194 | def __init__(self, |
| 195 | indent_increment, |
| 196 | max_help_position, |
| 197 | width, |
| 198 | short_first): |
| 199 | self.parser = None |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 200 | self.indent_increment = indent_increment |
| 201 | self.help_position = self.max_help_position = max_help_position |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 202 | if width is None: |
| 203 | try: |
| 204 | width = int(os.environ['COLUMNS']) |
| 205 | except (KeyError, ValueError): |
| 206 | width = 80 |
| 207 | width -= 2 |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 208 | self.width = width |
| 209 | self.current_indent = 0 |
| 210 | self.level = 0 |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 211 | self.help_width = None # computed later |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 212 | self.short_first = short_first |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 213 | self.default_tag = "%default" |
| 214 | self.option_strings = {} |
| 215 | self._short_opt_fmt = "%s %s" |
| 216 | self._long_opt_fmt = "%s=%s" |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 217 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 218 | def set_parser(self, parser): |
| 219 | self.parser = parser |
| 220 | |
| 221 | def set_short_opt_delimiter(self, delim): |
| 222 | if delim not in ("", " "): |
| 223 | raise ValueError( |
| 224 | "invalid metavar delimiter for short options: %r" % delim) |
| 225 | self._short_opt_fmt = "%s" + delim + "%s" |
| 226 | |
| 227 | def set_long_opt_delimiter(self, delim): |
| 228 | if delim not in ("=", " "): |
| 229 | raise ValueError( |
| 230 | "invalid metavar delimiter for long options: %r" % delim) |
| 231 | self._long_opt_fmt = "%s" + delim + "%s" |
| 232 | |
| 233 | def indent(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 234 | self.current_indent += self.indent_increment |
| 235 | self.level += 1 |
| 236 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 237 | def dedent(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 238 | self.current_indent -= self.indent_increment |
| 239 | assert self.current_indent >= 0, "Indent decreased below 0." |
| 240 | self.level -= 1 |
| 241 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 242 | def format_usage(self, usage): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 243 | raise NotImplementedError, "subclasses must implement" |
| 244 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 245 | def format_heading(self, heading): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 246 | raise NotImplementedError, "subclasses must implement" |
| 247 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 248 | def _format_text(self, text): |
| 249 | """ |
| 250 | Format a paragraph of free-form text for inclusion in the |
| 251 | help output at the current indentation level. |
| 252 | """ |
| 253 | text_width = self.width - self.current_indent |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 254 | indent = " "*self.current_indent |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 255 | return textwrap.fill(text, |
| 256 | text_width, |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 257 | initial_indent=indent, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 258 | subsequent_indent=indent) |
| 259 | |
| 260 | def format_description(self, description): |
| 261 | if description: |
| 262 | return self._format_text(description) + "\n" |
| 263 | else: |
| 264 | return "" |
| 265 | |
| 266 | def format_epilog(self, epilog): |
| 267 | if epilog: |
| 268 | return "\n" + self._format_text(epilog) + "\n" |
| 269 | else: |
| 270 | return "" |
| 271 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 272 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 273 | def expand_default(self, option): |
| 274 | if self.parser is None or not self.default_tag: |
| 275 | return option.help |
| 276 | |
| 277 | default_value = self.parser.defaults.get(option.dest) |
| 278 | if default_value is NO_DEFAULT or default_value is None: |
| 279 | default_value = self.NO_DEFAULT_VALUE |
| 280 | |
| 281 | return option.help.replace(self.default_tag, str(default_value)) |
| 282 | |
| 283 | def format_option(self, option): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 284 | # The help for each option consists of two parts: |
| 285 | # * the opt strings and metavars |
| 286 | # eg. ("-x", or "-fFILENAME, --file=FILENAME") |
| 287 | # * the user-supplied help string |
| 288 | # eg. ("turn on expert mode", "read data from FILENAME") |
| 289 | # |
| 290 | # If possible, we write both of these on the same line: |
| 291 | # -x turn on expert mode |
| 292 | # |
| 293 | # But if the opt string list is too long, we put the help |
| 294 | # string on a second line, indented to the same column it would |
| 295 | # start in if it fit on the first line. |
| 296 | # -fFILENAME, --file=FILENAME |
| 297 | # read data from FILENAME |
| 298 | result = [] |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 299 | opts = self.option_strings[option] |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 300 | opt_width = self.help_position - self.current_indent - 2 |
| 301 | if len(opts) > opt_width: |
| 302 | opts = "%*s%s\n" % (self.current_indent, "", opts) |
| 303 | indent_first = self.help_position |
| 304 | else: # start help on same line as opts |
| 305 | opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts) |
| 306 | indent_first = 0 |
| 307 | result.append(opts) |
| 308 | if option.help: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 309 | help_text = self.expand_default(option) |
| 310 | help_lines = textwrap.wrap(help_text, self.help_width) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 311 | result.append("%*s%s\n" % (indent_first, "", help_lines[0])) |
| 312 | result.extend(["%*s%s\n" % (self.help_position, "", line) |
| 313 | for line in help_lines[1:]]) |
| 314 | elif opts[-1] != "\n": |
| 315 | result.append("\n") |
| 316 | return "".join(result) |
| 317 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 318 | def store_option_strings(self, parser): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 319 | self.indent() |
| 320 | max_len = 0 |
| 321 | for opt in parser.option_list: |
| 322 | strings = self.format_option_strings(opt) |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 323 | self.option_strings[opt] = strings |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 324 | max_len = max(max_len, len(strings) + self.current_indent) |
| 325 | self.indent() |
| 326 | for group in parser.option_groups: |
| 327 | for opt in group.option_list: |
| 328 | strings = self.format_option_strings(opt) |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 329 | self.option_strings[opt] = strings |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 330 | max_len = max(max_len, len(strings) + self.current_indent) |
| 331 | self.dedent() |
| 332 | self.dedent() |
| 333 | self.help_position = min(max_len + 2, self.max_help_position) |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 334 | self.help_width = self.width - self.help_position |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 335 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 336 | def format_option_strings(self, option): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 337 | """Return a comma-separated list of option strings & metavariables.""" |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 338 | if option.takes_value(): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 339 | metavar = option.metavar or option.dest.upper() |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 340 | short_opts = [self._short_opt_fmt % (sopt, metavar) |
| 341 | for sopt in option._short_opts] |
| 342 | long_opts = [self._long_opt_fmt % (lopt, metavar) |
| 343 | for lopt in option._long_opts] |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 344 | else: |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 345 | short_opts = option._short_opts |
| 346 | long_opts = option._long_opts |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 347 | |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 348 | if self.short_first: |
| 349 | opts = short_opts + long_opts |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 350 | else: |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 351 | opts = long_opts + short_opts |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 352 | |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 353 | return ", ".join(opts) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 354 | |
| 355 | class IndentedHelpFormatter (HelpFormatter): |
| 356 | """Format help with indented section bodies. |
| 357 | """ |
| 358 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 359 | def __init__(self, |
| 360 | indent_increment=2, |
| 361 | max_help_position=24, |
| 362 | width=None, |
| 363 | short_first=1): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 364 | HelpFormatter.__init__( |
| 365 | self, indent_increment, max_help_position, width, short_first) |
| 366 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 367 | def format_usage(self, usage): |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 368 | return _("Usage: %s\n") % usage |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 369 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 370 | def format_heading(self, heading): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 371 | return "%*s%s:\n" % (self.current_indent, "", heading) |
| 372 | |
| 373 | |
| 374 | class TitledHelpFormatter (HelpFormatter): |
| 375 | """Format help with underlined section headers. |
| 376 | """ |
| 377 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 378 | def __init__(self, |
| 379 | indent_increment=0, |
| 380 | max_help_position=24, |
| 381 | width=None, |
| 382 | short_first=0): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 383 | HelpFormatter.__init__ ( |
| 384 | self, indent_increment, max_help_position, width, short_first) |
| 385 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 386 | def format_usage(self, usage): |
| 387 | return "%s %s\n" % (self.format_heading(_("Usage")), usage) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 388 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 389 | def format_heading(self, heading): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 390 | return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading)) |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 391 | |
| 392 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 393 | def _parse_num(val, type): |
| 394 | if val[:2].lower() == "0x": # hexadecimal |
| 395 | radix = 16 |
| 396 | elif val[:2].lower() == "0b": # binary |
| 397 | radix = 2 |
| 398 | val = val[2:] or "0" # have to remove "0b" prefix |
| 399 | elif val[:1] == "0": # octal |
| 400 | radix = 8 |
| 401 | else: # decimal |
| 402 | radix = 10 |
| 403 | |
| 404 | return type(val, radix) |
| 405 | |
| 406 | def _parse_int(val): |
| 407 | return _parse_num(val, int) |
| 408 | |
| 409 | def _parse_long(val): |
Guido van Rossum | e2a383d | 2007-01-15 16:59:06 +0000 | [diff] [blame] | 410 | return _parse_num(val, int) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 411 | |
| 412 | _builtin_cvt = { "int" : (_parse_int, _("integer")), |
| 413 | "long" : (_parse_long, _("long integer")), |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 414 | "float" : (float, _("floating-point")), |
| 415 | "complex" : (complex, _("complex")) } |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 416 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 417 | def check_builtin(option, opt, value): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 418 | (cvt, what) = _builtin_cvt[option.type] |
| 419 | try: |
| 420 | return cvt(value) |
| 421 | except ValueError: |
| 422 | raise OptionValueError( |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 423 | _("option %s: invalid %s value: %r") % (opt, what, value)) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 424 | |
| 425 | def check_choice(option, opt, value): |
| 426 | if value in option.choices: |
| 427 | return value |
| 428 | else: |
| 429 | choices = ", ".join(map(repr, option.choices)) |
| 430 | raise OptionValueError( |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 431 | _("option %s: invalid choice: %r (choose from %s)") |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 432 | % (opt, value, choices)) |
| 433 | |
| 434 | # Not supplying a default is different from a default of None, |
| 435 | # so we need an explicit "not supplied" value. |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 436 | NO_DEFAULT = ("NO", "DEFAULT") |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 437 | |
| 438 | |
| 439 | class Option: |
| 440 | """ |
| 441 | Instance attributes: |
| 442 | _short_opts : [string] |
| 443 | _long_opts : [string] |
| 444 | |
| 445 | action : string |
| 446 | type : string |
| 447 | dest : string |
| 448 | default : any |
| 449 | nargs : int |
| 450 | const : any |
| 451 | choices : [string] |
| 452 | callback : function |
| 453 | callback_args : (any*) |
| 454 | callback_kwargs : { string : any } |
| 455 | help : string |
| 456 | metavar : string |
| 457 | """ |
| 458 | |
| 459 | # The list of instance attributes that may be set through |
| 460 | # keyword args to the constructor. |
| 461 | ATTRS = ['action', |
| 462 | 'type', |
| 463 | 'dest', |
| 464 | 'default', |
| 465 | 'nargs', |
| 466 | 'const', |
| 467 | 'choices', |
| 468 | 'callback', |
| 469 | 'callback_args', |
| 470 | 'callback_kwargs', |
| 471 | 'help', |
| 472 | 'metavar'] |
| 473 | |
| 474 | # The set of actions allowed by option parsers. Explicitly listed |
| 475 | # here so the constructor can validate its arguments. |
| 476 | ACTIONS = ("store", |
| 477 | "store_const", |
| 478 | "store_true", |
| 479 | "store_false", |
| 480 | "append", |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 481 | "append_const", |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 482 | "count", |
| 483 | "callback", |
| 484 | "help", |
| 485 | "version") |
| 486 | |
| 487 | # The set of actions that involve storing a value somewhere; |
| 488 | # also listed just for constructor argument validation. (If |
| 489 | # the action is one of these, there must be a destination.) |
| 490 | STORE_ACTIONS = ("store", |
| 491 | "store_const", |
| 492 | "store_true", |
| 493 | "store_false", |
| 494 | "append", |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 495 | "append_const", |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 496 | "count") |
| 497 | |
| 498 | # The set of actions for which it makes sense to supply a value |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 499 | # type, ie. which may consume an argument from the command line. |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 500 | TYPED_ACTIONS = ("store", |
| 501 | "append", |
| 502 | "callback") |
| 503 | |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 504 | # The set of actions which *require* a value type, ie. that |
| 505 | # always consume an argument from the command line. |
| 506 | ALWAYS_TYPED_ACTIONS = ("store", |
| 507 | "append") |
| 508 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 509 | # The set of actions which take a 'const' attribute. |
| 510 | CONST_ACTIONS = ("store_const", |
| 511 | "append_const") |
| 512 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 513 | # The set of known types for option parsers. Again, listed here for |
| 514 | # constructor argument validation. |
| 515 | TYPES = ("string", "int", "long", "float", "complex", "choice") |
| 516 | |
| 517 | # Dictionary of argument checking functions, which convert and |
| 518 | # validate option arguments according to the option type. |
| 519 | # |
| 520 | # Signature of checking functions is: |
| 521 | # check(option : Option, opt : string, value : string) -> any |
| 522 | # where |
| 523 | # option is the Option instance calling the checker |
| 524 | # opt is the actual option seen on the command-line |
| 525 | # (eg. "-a", "--file") |
| 526 | # value is the option argument seen on the command-line |
| 527 | # |
| 528 | # The return value should be in the appropriate Python type |
| 529 | # for option.type -- eg. an integer if option.type == "int". |
| 530 | # |
| 531 | # If no checker is defined for a type, arguments will be |
| 532 | # unchecked and remain strings. |
| 533 | TYPE_CHECKER = { "int" : check_builtin, |
| 534 | "long" : check_builtin, |
| 535 | "float" : check_builtin, |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 536 | "complex": check_builtin, |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 537 | "choice" : check_choice, |
| 538 | } |
| 539 | |
| 540 | |
| 541 | # CHECK_METHODS is a list of unbound method objects; they are called |
| 542 | # by the constructor, in order, after all attributes are |
| 543 | # initialized. The list is created and filled in later, after all |
| 544 | # the methods are actually defined. (I just put it here because I |
| 545 | # like to define and document all class attributes in the same |
| 546 | # place.) Subclasses that add another _check_*() method should |
| 547 | # define their own CHECK_METHODS list that adds their check method |
| 548 | # to those from this class. |
| 549 | CHECK_METHODS = None |
| 550 | |
| 551 | |
| 552 | # -- Constructor/initialization methods ---------------------------- |
| 553 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 554 | def __init__(self, *opts, **attrs): |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 555 | # Set _short_opts, _long_opts attrs from 'opts' tuple. |
| 556 | # Have to be set now, in case no option strings are supplied. |
| 557 | self._short_opts = [] |
| 558 | self._long_opts = [] |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 559 | opts = self._check_opt_strings(opts) |
| 560 | self._set_opt_strings(opts) |
| 561 | |
| 562 | # Set all other attrs (action, type, etc.) from 'attrs' dict |
| 563 | self._set_attrs(attrs) |
| 564 | |
| 565 | # Check all the attributes we just set. There are lots of |
| 566 | # complicated interdependencies, but luckily they can be farmed |
| 567 | # out to the _check_*() methods listed in CHECK_METHODS -- which |
| 568 | # could be handy for subclasses! The one thing these all share |
| 569 | # is that they raise OptionError if they discover a problem. |
| 570 | for checker in self.CHECK_METHODS: |
| 571 | checker(self) |
| 572 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 573 | def _check_opt_strings(self, opts): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 574 | # Filter out None because early versions of Optik had exactly |
| 575 | # one short option and one long option, either of which |
| 576 | # could be None. |
| 577 | opts = filter(None, opts) |
| 578 | if not opts: |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 579 | raise TypeError("at least one option string must be supplied") |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 580 | return opts |
| 581 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 582 | def _set_opt_strings(self, opts): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 583 | for opt in opts: |
| 584 | if len(opt) < 2: |
| 585 | raise OptionError( |
| 586 | "invalid option string %r: " |
| 587 | "must be at least two characters long" % opt, self) |
| 588 | elif len(opt) == 2: |
| 589 | if not (opt[0] == "-" and opt[1] != "-"): |
| 590 | raise OptionError( |
| 591 | "invalid short option string %r: " |
| 592 | "must be of the form -x, (x any non-dash char)" % opt, |
| 593 | self) |
| 594 | self._short_opts.append(opt) |
| 595 | else: |
| 596 | if not (opt[0:2] == "--" and opt[2] != "-"): |
| 597 | raise OptionError( |
| 598 | "invalid long option string %r: " |
| 599 | "must start with --, followed by non-dash" % opt, |
| 600 | self) |
| 601 | self._long_opts.append(opt) |
| 602 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 603 | def _set_attrs(self, attrs): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 604 | for attr in self.ATTRS: |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 605 | if attr in attrs: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 606 | setattr(self, attr, attrs[attr]) |
| 607 | del attrs[attr] |
| 608 | else: |
| 609 | if attr == 'default': |
| 610 | setattr(self, attr, NO_DEFAULT) |
| 611 | else: |
| 612 | setattr(self, attr, None) |
| 613 | if attrs: |
Georg Brandl | c2d9d7f | 2007-02-11 23:06:17 +0000 | [diff] [blame] | 614 | attrs = sorted(attrs.keys()) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 615 | raise OptionError( |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 616 | "invalid keyword arguments: %s" % ", ".join(attrs), |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 617 | self) |
| 618 | |
| 619 | |
| 620 | # -- Constructor validation methods -------------------------------- |
| 621 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 622 | def _check_action(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 623 | if self.action is None: |
| 624 | self.action = "store" |
| 625 | elif self.action not in self.ACTIONS: |
| 626 | raise OptionError("invalid action: %r" % self.action, self) |
| 627 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 628 | def _check_type(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 629 | if self.type is None: |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 630 | if self.action in self.ALWAYS_TYPED_ACTIONS: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 631 | if self.choices is not None: |
| 632 | # The "choices" attribute implies "choice" type. |
| 633 | self.type = "choice" |
| 634 | else: |
| 635 | # No type given? "string" is the most sensible default. |
| 636 | self.type = "string" |
| 637 | else: |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 638 | # Allow type objects or builtin type conversion functions |
| 639 | # (int, str, etc.) as an alternative to their names. (The |
| 640 | # complicated check of __builtin__ is only necessary for |
| 641 | # Python 2.1 and earlier, and is short-circuited by the |
| 642 | # first check on modern Pythons.) |
| 643 | import __builtin__ |
| 644 | if ( type(self.type) is types.TypeType or |
| 645 | (hasattr(self.type, "__name__") and |
| 646 | getattr(__builtin__, self.type.__name__, None) is self.type) ): |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 647 | self.type = self.type.__name__ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 648 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 649 | if self.type == "str": |
| 650 | self.type = "string" |
| 651 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 652 | if self.type not in self.TYPES: |
| 653 | raise OptionError("invalid option type: %r" % self.type, self) |
| 654 | if self.action not in self.TYPED_ACTIONS: |
| 655 | raise OptionError( |
| 656 | "must not supply a type for action %r" % self.action, self) |
| 657 | |
| 658 | def _check_choice(self): |
| 659 | if self.type == "choice": |
| 660 | if self.choices is None: |
| 661 | raise OptionError( |
| 662 | "must supply a list of choices for type 'choice'", self) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 663 | elif type(self.choices) not in (types.TupleType, types.ListType): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 664 | raise OptionError( |
| 665 | "choices must be a list of strings ('%s' supplied)" |
| 666 | % str(type(self.choices)).split("'")[1], self) |
| 667 | elif self.choices is not None: |
| 668 | raise OptionError( |
| 669 | "must not supply choices for type %r" % self.type, self) |
| 670 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 671 | def _check_dest(self): |
| 672 | # No destination given, and we need one for this action. The |
| 673 | # self.type check is for callbacks that take a value. |
| 674 | takes_value = (self.action in self.STORE_ACTIONS or |
| 675 | self.type is not None) |
| 676 | if self.dest is None and takes_value: |
| 677 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 678 | # Glean a destination from the first long option string, |
| 679 | # or from the first short option string if no long options. |
| 680 | if self._long_opts: |
| 681 | # eg. "--foo-bar" -> "foo_bar" |
| 682 | self.dest = self._long_opts[0][2:].replace('-', '_') |
| 683 | else: |
| 684 | self.dest = self._short_opts[0][1] |
| 685 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 686 | def _check_const(self): |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 687 | if self.action not in self.CONST_ACTIONS and self.const is not None: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 688 | raise OptionError( |
| 689 | "'const' must not be supplied for action %r" % self.action, |
| 690 | self) |
| 691 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 692 | def _check_nargs(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 693 | if self.action in self.TYPED_ACTIONS: |
| 694 | if self.nargs is None: |
| 695 | self.nargs = 1 |
| 696 | elif self.nargs is not None: |
| 697 | raise OptionError( |
| 698 | "'nargs' must not be supplied for action %r" % self.action, |
| 699 | self) |
| 700 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 701 | def _check_callback(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 702 | if self.action == "callback": |
| 703 | if not callable(self.callback): |
| 704 | raise OptionError( |
| 705 | "callback not callable: %r" % self.callback, self) |
| 706 | if (self.callback_args is not None and |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 707 | type(self.callback_args) is not types.TupleType): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 708 | raise OptionError( |
| 709 | "callback_args, if supplied, must be a tuple: not %r" |
| 710 | % self.callback_args, self) |
| 711 | if (self.callback_kwargs is not None and |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 712 | type(self.callback_kwargs) is not types.DictType): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 713 | raise OptionError( |
| 714 | "callback_kwargs, if supplied, must be a dict: not %r" |
| 715 | % self.callback_kwargs, self) |
| 716 | else: |
| 717 | if self.callback is not None: |
| 718 | raise OptionError( |
| 719 | "callback supplied (%r) for non-callback option" |
| 720 | % self.callback, self) |
| 721 | if self.callback_args is not None: |
| 722 | raise OptionError( |
| 723 | "callback_args supplied for non-callback option", self) |
| 724 | if self.callback_kwargs is not None: |
| 725 | raise OptionError( |
| 726 | "callback_kwargs supplied for non-callback option", self) |
| 727 | |
| 728 | |
| 729 | CHECK_METHODS = [_check_action, |
| 730 | _check_type, |
| 731 | _check_choice, |
| 732 | _check_dest, |
| 733 | _check_const, |
| 734 | _check_nargs, |
| 735 | _check_callback] |
| 736 | |
| 737 | |
| 738 | # -- Miscellaneous methods ----------------------------------------- |
| 739 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 740 | def __str__(self): |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 741 | return "/".join(self._short_opts + self._long_opts) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 742 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 743 | __repr__ = _repr |
| 744 | |
| 745 | def takes_value(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 746 | return self.type is not None |
| 747 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 748 | def get_opt_string(self): |
| 749 | if self._long_opts: |
| 750 | return self._long_opts[0] |
| 751 | else: |
| 752 | return self._short_opts[0] |
| 753 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 754 | |
| 755 | # -- Processing methods -------------------------------------------- |
| 756 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 757 | def check_value(self, opt, value): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 758 | checker = self.TYPE_CHECKER.get(self.type) |
| 759 | if checker is None: |
| 760 | return value |
| 761 | else: |
| 762 | return checker(self, opt, value) |
| 763 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 764 | def convert_value(self, opt, value): |
| 765 | if value is not None: |
| 766 | if self.nargs == 1: |
| 767 | return self.check_value(opt, value) |
| 768 | else: |
| 769 | return tuple([self.check_value(opt, v) for v in value]) |
| 770 | |
| 771 | def process(self, opt, value, values, parser): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 772 | |
| 773 | # First, convert the value(s) to the right type. Howl if any |
| 774 | # value(s) are bogus. |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 775 | value = self.convert_value(opt, value) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 776 | |
| 777 | # And then take whatever action is expected of us. |
| 778 | # This is a separate method to make life easier for |
| 779 | # subclasses to add new actions. |
| 780 | return self.take_action( |
| 781 | self.action, self.dest, opt, value, values, parser) |
| 782 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 783 | def take_action(self, action, dest, opt, value, values, parser): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 784 | if action == "store": |
| 785 | setattr(values, dest, value) |
| 786 | elif action == "store_const": |
| 787 | setattr(values, dest, self.const) |
| 788 | elif action == "store_true": |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 789 | setattr(values, dest, True) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 790 | elif action == "store_false": |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 791 | setattr(values, dest, False) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 792 | elif action == "append": |
| 793 | values.ensure_value(dest, []).append(value) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 794 | elif action == "append_const": |
| 795 | values.ensure_value(dest, []).append(self.const) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 796 | elif action == "count": |
| 797 | setattr(values, dest, values.ensure_value(dest, 0) + 1) |
| 798 | elif action == "callback": |
| 799 | args = self.callback_args or () |
| 800 | kwargs = self.callback_kwargs or {} |
| 801 | self.callback(self, opt, value, parser, *args, **kwargs) |
| 802 | elif action == "help": |
| 803 | parser.print_help() |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 804 | parser.exit() |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 805 | elif action == "version": |
| 806 | parser.print_version() |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 807 | parser.exit() |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 808 | else: |
| 809 | raise RuntimeError, "unknown action %r" % self.action |
| 810 | |
| 811 | return 1 |
| 812 | |
| 813 | # class Option |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 814 | |
| 815 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 816 | SUPPRESS_HELP = "SUPPRESS"+"HELP" |
| 817 | SUPPRESS_USAGE = "SUPPRESS"+"USAGE" |
| 818 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 819 | # For compatibility with Python 2.2 |
| 820 | try: |
| 821 | True, False |
| 822 | except NameError: |
| 823 | (True, False) = (1, 0) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 824 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 825 | def isbasestring(x): |
Guido van Rossum | c2b87a6 | 2007-05-04 17:44:47 +0000 | [diff] [blame] | 826 | return isinstance(x, basestring) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 827 | |
| 828 | class Values: |
| 829 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 830 | def __init__(self, defaults=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 831 | if defaults: |
| 832 | for (attr, val) in defaults.items(): |
| 833 | setattr(self, attr, val) |
| 834 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 835 | def __str__(self): |
| 836 | return str(self.__dict__) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 837 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 838 | __repr__ = _repr |
| 839 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 840 | def __eq__(self, other): |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 841 | if isinstance(other, Values): |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 842 | return self.__dict__ == other.__dict__ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 843 | elif isinstance(other, types.DictType): |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 844 | return self.__dict__ == other |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 845 | else: |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 846 | return NotImplemented |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 847 | |
| 848 | def _update_careful(self, dict): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 849 | """ |
| 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 Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 856 | if attr in dict: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 857 | dval = dict[attr] |
| 858 | if dval is not None: |
| 859 | setattr(self, attr, dval) |
| 860 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 861 | def _update_loose(self, dict): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 862 | """ |
| 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 869 | def _update(self, dict, mode): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 870 | if mode == "careful": |
| 871 | self._update_careful(dict) |
| 872 | elif mode == "loose": |
| 873 | self._update_loose(dict) |
| 874 | else: |
| 875 | raise ValueError, "invalid update mode: %r" % mode |
| 876 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 877 | def read_module(self, modname, mode="careful"): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 878 | __import__(modname) |
| 879 | mod = sys.modules[modname] |
| 880 | self._update(vars(mod), mode) |
| 881 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 882 | def read_file(self, filename, mode="careful"): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 883 | vars = {} |
| 884 | execfile(filename, vars) |
| 885 | self._update(vars, mode) |
| 886 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 887 | def ensure_value(self, attr, value): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 888 | if not hasattr(self, attr) or getattr(self, attr) is None: |
| 889 | setattr(self, attr, value) |
| 890 | return getattr(self, attr) |
| 891 | |
| 892 | |
| 893 | class 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 925 | def __init__(self, option_class, conflict_handler, description): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 926 | # 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 936 | def _create_option_mappings(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 937 | # 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 945 | def _share_option_mappings(self, parser): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 946 | # 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 952 | def set_conflict_handler(self, handler): |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 953 | if handler not in ("error", "resolve"): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 954 | raise ValueError, "invalid conflict_resolution value %r" % handler |
| 955 | self.conflict_handler = handler |
| 956 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 957 | def set_description(self, description): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 958 | self.description = description |
| 959 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 960 | def get_description(self): |
| 961 | return self.description |
| 962 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 963 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 964 | 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 Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 971 | # -- Option-adding methods ----------------------------------------- |
| 972 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 973 | def _check_conflict(self, option): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 974 | conflict_opts = [] |
| 975 | for opt in option._short_opts: |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 976 | if opt in self._short_opt: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 977 | conflict_opts.append((opt, self._short_opt[opt])) |
| 978 | for opt in option._long_opts: |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 979 | if opt in self._long_opt: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 980 | conflict_opts.append((opt, self._long_opt[opt])) |
| 981 | |
| 982 | if conflict_opts: |
| 983 | handler = self.conflict_handler |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 984 | if handler == "error": |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 985 | raise OptionConflictError( |
| 986 | "conflicting option string(s): %s" |
| 987 | % ", ".join([co[0] for co in conflict_opts]), |
| 988 | option) |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 989 | elif handler == "resolve": |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 990 | 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1000 | def add_option(self, *args, **kwargs): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1001 | """add_option(Option) |
| 1002 | add_option(opt_str, ..., kwarg=val, ...) |
| 1003 | """ |
Guido van Rossum | c2b87a6 | 2007-05-04 17:44:47 +0000 | [diff] [blame] | 1004 | if isbasestring(args[0]): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1005 | option = self.option_class(*args, **kwargs) |
| 1006 | elif len(args) == 1 and not kwargs: |
| 1007 | option = args[0] |
| 1008 | if not isinstance(option, Option): |
| 1009 | raise TypeError, "not an Option instance: %r" % option |
| 1010 | else: |
| 1011 | raise TypeError, "invalid arguments" |
| 1012 | |
| 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 Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 1025 | elif option.dest not in self.defaults: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1026 | self.defaults[option.dest] = None |
| 1027 | |
| 1028 | return option |
| 1029 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1030 | def add_options(self, option_list): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1031 | for option in option_list: |
| 1032 | self.add_option(option) |
| 1033 | |
| 1034 | # -- Option query/removal methods ---------------------------------- |
| 1035 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1036 | def get_option(self, opt_str): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1037 | return (self._short_opt.get(opt_str) or |
| 1038 | self._long_opt.get(opt_str)) |
| 1039 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1040 | def has_option(self, opt_str): |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 1041 | return (opt_str in self._short_opt or |
Guido van Rossum | 9366241 | 2006-08-19 16:09:41 +0000 | [diff] [blame] | 1042 | opt_str in self._long_opt) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1043 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1044 | def remove_option(self, opt_str): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1045 | 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1060 | def format_option_help(self, formatter): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1061 | 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 Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1069 | def format_description(self, formatter): |
| 1070 | return formatter.format_description(self.get_description()) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1071 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1072 | def format_help(self, formatter): |
| 1073 | result = [] |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1074 | if self.description: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1075 | 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 Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1079 | |
| 1080 | |
| 1081 | class OptionGroup (OptionContainer): |
| 1082 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1083 | def __init__(self, parser, title, description=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1084 | self.parser = parser |
| 1085 | OptionContainer.__init__( |
| 1086 | self, parser.option_class, parser.conflict_handler, description) |
| 1087 | self.title = title |
| 1088 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1089 | def _create_option_list(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1090 | self.option_list = [] |
| 1091 | self._share_option_mappings(self.parser) |
| 1092 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1093 | def set_title(self, title): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1094 | self.title = title |
| 1095 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1096 | def destroy(self): |
| 1097 | """see OptionParser.destroy().""" |
| 1098 | OptionContainer.destroy(self) |
| 1099 | del self.option_list |
| 1100 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1101 | # -- Help-formatting methods --------------------------------------- |
| 1102 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1103 | def format_help(self, formatter): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1104 | result = formatter.format_heading(self.title) |
| 1105 | formatter.indent() |
| 1106 | result += OptionContainer.format_help(self, formatter) |
| 1107 | formatter.dedent() |
| 1108 | return result |
| 1109 | |
| 1110 | |
| 1111 | class 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 Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 1123 | 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])). |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1127 | epilog : string |
| 1128 | paragraph of help text to print after option help |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1129 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1130 | option_groups : [OptionGroup] |
| 1131 | list of option groups in this parser (option groups are |
| 1132 | irrelevant for parsing the command-line, but very useful |
| 1133 | for generating help) |
| 1134 | |
| 1135 | allow_interspersed_args : bool = true |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1136 | if true, positional arguments may be interspersed with options. |
| 1137 | Assuming -a and -b each take a single argument, the command-line |
| 1138 | -ablah foo bar -bboo baz |
| 1139 | will be interpreted the same as |
| 1140 | -ablah -bboo -- foo bar baz |
| 1141 | If this flag were false, that command line would be interpreted as |
| 1142 | -ablah -- foo bar -bboo baz |
| 1143 | -- ie. we stop processing options as soon as we see the first |
| 1144 | non-option argument. (This is the tradition followed by |
| 1145 | Python's getopt module, Perl's Getopt::Std, and other argument- |
| 1146 | parsing libraries, but it is generally annoying to users.) |
| 1147 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1148 | process_default_values : bool = true |
| 1149 | if true, option default values are processed similarly to option |
| 1150 | values from the command line: that is, they are passed to the |
| 1151 | type-checking function for the option's type (as long as the |
| 1152 | default value is a string). (This really only matters if you |
| 1153 | have defined custom types; see SF bug #955889.) Set it to false |
| 1154 | to restore the behaviour of Optik 1.4.1 and earlier. |
| 1155 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1156 | rargs : [string] |
| 1157 | the argument list currently being parsed. Only set when |
| 1158 | parse_args() is active, and continually trimmed down as |
| 1159 | we consume arguments. Mainly there for the benefit of |
| 1160 | callback options. |
| 1161 | largs : [string] |
| 1162 | the list of leftover arguments that we have skipped while |
| 1163 | parsing options. If allow_interspersed_args is false, this |
| 1164 | list is always empty. |
| 1165 | values : Values |
| 1166 | the set of option values currently being accumulated. Only |
| 1167 | set when parse_args() is active. Also mainly for callbacks. |
| 1168 | |
| 1169 | Because of the 'rargs', 'largs', and 'values' attributes, |
| 1170 | OptionParser is not thread-safe. If, for some perverse reason, you |
| 1171 | need to parse command-line arguments simultaneously in different |
| 1172 | threads, use different OptionParser instances. |
| 1173 | |
| 1174 | """ |
| 1175 | |
| 1176 | standard_option_list = [] |
| 1177 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1178 | def __init__(self, |
| 1179 | usage=None, |
| 1180 | option_list=None, |
| 1181 | option_class=Option, |
| 1182 | version=None, |
| 1183 | conflict_handler="error", |
| 1184 | description=None, |
| 1185 | formatter=None, |
| 1186 | add_help_option=True, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1187 | prog=None, |
| 1188 | epilog=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1189 | OptionContainer.__init__( |
| 1190 | self, option_class, conflict_handler, description) |
| 1191 | self.set_usage(usage) |
Greg Ward | 2492fcf | 2003-04-21 02:40:34 +0000 | [diff] [blame] | 1192 | self.prog = prog |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1193 | self.version = version |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1194 | self.allow_interspersed_args = True |
| 1195 | self.process_default_values = True |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1196 | if formatter is None: |
| 1197 | formatter = IndentedHelpFormatter() |
| 1198 | self.formatter = formatter |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1199 | self.formatter.set_parser(self) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1200 | self.epilog = epilog |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1201 | |
| 1202 | # Populate the option list; initial sources are the |
| 1203 | # standard_option_list class attribute, the 'option_list' |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1204 | # argument, and (if applicable) the _add_version_option() and |
| 1205 | # _add_help_option() methods. |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1206 | self._populate_option_list(option_list, |
| 1207 | add_help=add_help_option) |
| 1208 | |
| 1209 | self._init_parsing_state() |
| 1210 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1211 | |
| 1212 | def destroy(self): |
| 1213 | """ |
| 1214 | Declare that you are done with this OptionParser. This cleans up |
| 1215 | reference cycles so the OptionParser (and all objects referenced by |
| 1216 | it) can be garbage-collected promptly. After calling destroy(), the |
| 1217 | OptionParser is unusable. |
| 1218 | """ |
| 1219 | OptionContainer.destroy(self) |
| 1220 | for group in self.option_groups: |
| 1221 | group.destroy() |
| 1222 | del self.option_list |
| 1223 | del self.option_groups |
| 1224 | del self.formatter |
| 1225 | |
| 1226 | |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1227 | # -- Private methods ----------------------------------------------- |
| 1228 | # (used by our or OptionContainer's constructor) |
| 1229 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1230 | def _create_option_list(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1231 | self.option_list = [] |
| 1232 | self.option_groups = [] |
| 1233 | self._create_option_mappings() |
| 1234 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1235 | def _add_help_option(self): |
| 1236 | self.add_option("-h", "--help", |
| 1237 | action="help", |
| 1238 | help=_("show this help message and exit")) |
| 1239 | |
| 1240 | def _add_version_option(self): |
| 1241 | self.add_option("--version", |
| 1242 | action="version", |
| 1243 | help=_("show program's version number and exit")) |
| 1244 | |
| 1245 | def _populate_option_list(self, option_list, add_help=True): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1246 | if self.standard_option_list: |
| 1247 | self.add_options(self.standard_option_list) |
| 1248 | if option_list: |
| 1249 | self.add_options(option_list) |
| 1250 | if self.version: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1251 | self._add_version_option() |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1252 | if add_help: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1253 | self._add_help_option() |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1254 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1255 | def _init_parsing_state(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1256 | # These are set in parse_args() for the convenience of callbacks. |
| 1257 | self.rargs = None |
| 1258 | self.largs = None |
| 1259 | self.values = None |
| 1260 | |
| 1261 | |
| 1262 | # -- Simple modifier methods --------------------------------------- |
| 1263 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1264 | def set_usage(self, usage): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1265 | if usage is None: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1266 | self.usage = _("%prog [options]") |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1267 | elif usage is SUPPRESS_USAGE: |
| 1268 | self.usage = None |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1269 | # For backwards compatibility with Optik 1.3 and earlier. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1270 | elif usage.lower().startswith("usage: "): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1271 | self.usage = usage[7:] |
| 1272 | else: |
| 1273 | self.usage = usage |
| 1274 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1275 | def enable_interspersed_args(self): |
| 1276 | self.allow_interspersed_args = True |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1277 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1278 | def disable_interspersed_args(self): |
| 1279 | self.allow_interspersed_args = False |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1280 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1281 | def set_process_default_values(self, process): |
| 1282 | self.process_default_values = process |
| 1283 | |
| 1284 | def set_default(self, dest, value): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1285 | self.defaults[dest] = value |
| 1286 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1287 | def set_defaults(self, **kwargs): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1288 | self.defaults.update(kwargs) |
| 1289 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1290 | def _get_all_options(self): |
| 1291 | options = self.option_list[:] |
| 1292 | for group in self.option_groups: |
| 1293 | options.extend(group.option_list) |
| 1294 | return options |
| 1295 | |
| 1296 | def get_default_values(self): |
| 1297 | if not self.process_default_values: |
| 1298 | # Old, pre-Optik 1.5 behaviour. |
| 1299 | return Values(self.defaults) |
| 1300 | |
| 1301 | defaults = self.defaults.copy() |
| 1302 | for option in self._get_all_options(): |
| 1303 | default = defaults.get(option.dest) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1304 | if isbasestring(default): |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1305 | opt_str = option.get_opt_string() |
| 1306 | defaults[option.dest] = option.check_value(opt_str, default) |
| 1307 | |
| 1308 | return Values(defaults) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1309 | |
| 1310 | |
| 1311 | # -- OptionGroup methods ------------------------------------------- |
| 1312 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1313 | def add_option_group(self, *args, **kwargs): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1314 | # XXX lots of overlap with OptionContainer.add_option() |
Guido van Rossum | c2b87a6 | 2007-05-04 17:44:47 +0000 | [diff] [blame] | 1315 | if isbasestring(args[0]): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1316 | group = OptionGroup(self, *args, **kwargs) |
| 1317 | elif len(args) == 1 and not kwargs: |
| 1318 | group = args[0] |
| 1319 | if not isinstance(group, OptionGroup): |
| 1320 | raise TypeError, "not an OptionGroup instance: %r" % group |
| 1321 | if group.parser is not self: |
| 1322 | raise ValueError, "invalid OptionGroup (wrong parser)" |
| 1323 | else: |
| 1324 | raise TypeError, "invalid arguments" |
| 1325 | |
| 1326 | self.option_groups.append(group) |
| 1327 | return group |
| 1328 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1329 | def get_option_group(self, opt_str): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1330 | option = (self._short_opt.get(opt_str) or |
| 1331 | self._long_opt.get(opt_str)) |
| 1332 | if option and option.container is not self: |
| 1333 | return option.container |
| 1334 | return None |
| 1335 | |
| 1336 | |
| 1337 | # -- Option-parsing methods ---------------------------------------- |
| 1338 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1339 | def _get_args(self, args): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1340 | if args is None: |
| 1341 | return sys.argv[1:] |
| 1342 | else: |
| 1343 | return args[:] # don't modify caller's list |
| 1344 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1345 | def parse_args(self, args=None, values=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1346 | """ |
| 1347 | parse_args(args : [string] = sys.argv[1:], |
| 1348 | values : Values = None) |
| 1349 | -> (values : Values, args : [string]) |
| 1350 | |
| 1351 | Parse the command-line options found in 'args' (default: |
| 1352 | sys.argv[1:]). Any errors result in a call to 'error()', which |
| 1353 | by default prints the usage message to stderr and calls |
| 1354 | sys.exit() with an error message. On success returns a pair |
| 1355 | (values, args) where 'values' is an Values instance (with all |
| 1356 | your option values) and 'args' is the list of arguments left |
| 1357 | over after parsing options. |
| 1358 | """ |
| 1359 | rargs = self._get_args(args) |
| 1360 | if values is None: |
| 1361 | values = self.get_default_values() |
| 1362 | |
| 1363 | # Store the halves of the argument list as attributes for the |
| 1364 | # convenience of callbacks: |
| 1365 | # rargs |
| 1366 | # the rest of the command-line (the "r" stands for |
| 1367 | # "remaining" or "right-hand") |
| 1368 | # largs |
| 1369 | # the leftover arguments -- ie. what's left after removing |
| 1370 | # options and their arguments (the "l" stands for "leftover" |
| 1371 | # or "left-hand") |
| 1372 | self.rargs = rargs |
| 1373 | self.largs = largs = [] |
| 1374 | self.values = values |
| 1375 | |
| 1376 | try: |
| 1377 | stop = self._process_args(largs, rargs, values) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 1378 | except (BadOptionError, OptionValueError) as err: |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1379 | self.error(str(err)) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1380 | |
| 1381 | args = largs + rargs |
| 1382 | return self.check_values(values, args) |
| 1383 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1384 | def check_values(self, values, args): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1385 | """ |
| 1386 | check_values(values : Values, args : [string]) |
| 1387 | -> (values : Values, args : [string]) |
| 1388 | |
| 1389 | Check that the supplied option values and leftover arguments are |
| 1390 | valid. Returns the option values and leftover arguments |
| 1391 | (possibly adjusted, possibly completely new -- whatever you |
| 1392 | like). Default implementation just returns the passed-in |
| 1393 | values; subclasses may override as desired. |
| 1394 | """ |
| 1395 | return (values, args) |
| 1396 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1397 | def _process_args(self, largs, rargs, values): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1398 | """_process_args(largs : [string], |
| 1399 | rargs : [string], |
| 1400 | values : Values) |
| 1401 | |
| 1402 | Process command-line arguments and populate 'values', consuming |
| 1403 | options and arguments from 'rargs'. If 'allow_interspersed_args' is |
| 1404 | false, stop at the first non-option argument. If true, accumulate any |
| 1405 | interspersed non-option arguments in 'largs'. |
| 1406 | """ |
| 1407 | while rargs: |
| 1408 | arg = rargs[0] |
| 1409 | # We handle bare "--" explicitly, and bare "-" is handled by the |
| 1410 | # standard arg handler since the short arg case ensures that the |
| 1411 | # len of the opt string is greater than 1. |
| 1412 | if arg == "--": |
| 1413 | del rargs[0] |
| 1414 | return |
| 1415 | elif arg[0:2] == "--": |
| 1416 | # process a single long option (possibly with value(s)) |
| 1417 | self._process_long_opt(rargs, values) |
| 1418 | elif arg[:1] == "-" and len(arg) > 1: |
| 1419 | # process a cluster of short options (possibly with |
| 1420 | # value(s) for the last one only) |
| 1421 | self._process_short_opts(rargs, values) |
| 1422 | elif self.allow_interspersed_args: |
| 1423 | largs.append(arg) |
| 1424 | del rargs[0] |
| 1425 | else: |
| 1426 | return # stop now, leave this arg in rargs |
| 1427 | |
| 1428 | # Say this is the original argument list: |
| 1429 | # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)] |
| 1430 | # ^ |
| 1431 | # (we are about to process arg(i)). |
| 1432 | # |
| 1433 | # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of |
| 1434 | # [arg0, ..., arg(i-1)] (any options and their arguments will have |
| 1435 | # been removed from largs). |
| 1436 | # |
| 1437 | # The while loop will usually consume 1 or more arguments per pass. |
| 1438 | # If it consumes 1 (eg. arg is an option that takes no arguments), |
| 1439 | # then after _process_arg() is done the situation is: |
| 1440 | # |
| 1441 | # largs = subset of [arg0, ..., arg(i)] |
| 1442 | # rargs = [arg(i+1), ..., arg(N-1)] |
| 1443 | # |
| 1444 | # If allow_interspersed_args is false, largs will always be |
| 1445 | # *empty* -- still a subset of [arg0, ..., arg(i-1)], but |
| 1446 | # not a very interesting subset! |
| 1447 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1448 | def _match_long_opt(self, opt): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1449 | """_match_long_opt(opt : string) -> string |
| 1450 | |
| 1451 | Determine which long option string 'opt' matches, ie. which one |
| 1452 | it is an unambiguous abbrevation for. Raises BadOptionError if |
| 1453 | 'opt' doesn't unambiguously match any long option string. |
| 1454 | """ |
| 1455 | return _match_abbrev(opt, self._long_opt) |
| 1456 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1457 | def _process_long_opt(self, rargs, values): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1458 | arg = rargs.pop(0) |
| 1459 | |
| 1460 | # Value explicitly attached to arg? Pretend it's the next |
| 1461 | # argument. |
| 1462 | if "=" in arg: |
| 1463 | (opt, next_arg) = arg.split("=", 1) |
| 1464 | rargs.insert(0, next_arg) |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1465 | had_explicit_value = True |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1466 | else: |
| 1467 | opt = arg |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1468 | had_explicit_value = False |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1469 | |
| 1470 | opt = self._match_long_opt(opt) |
| 1471 | option = self._long_opt[opt] |
| 1472 | if option.takes_value(): |
| 1473 | nargs = option.nargs |
| 1474 | if len(rargs) < nargs: |
| 1475 | if nargs == 1: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1476 | self.error(_("%s option requires an argument") % opt) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1477 | else: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1478 | self.error(_("%s option requires %d arguments") |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1479 | % (opt, nargs)) |
| 1480 | elif nargs == 1: |
| 1481 | value = rargs.pop(0) |
| 1482 | else: |
| 1483 | value = tuple(rargs[0:nargs]) |
| 1484 | del rargs[0:nargs] |
| 1485 | |
| 1486 | elif had_explicit_value: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1487 | self.error(_("%s option does not take a value") % opt) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1488 | |
| 1489 | else: |
| 1490 | value = None |
| 1491 | |
| 1492 | option.process(opt, value, values, self) |
| 1493 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1494 | def _process_short_opts(self, rargs, values): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1495 | arg = rargs.pop(0) |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1496 | stop = False |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1497 | i = 1 |
| 1498 | for ch in arg[1:]: |
| 1499 | opt = "-" + ch |
| 1500 | option = self._short_opt.get(opt) |
| 1501 | i += 1 # we have consumed a character |
| 1502 | |
| 1503 | if not option: |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1504 | raise BadOptionError(opt) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1505 | if option.takes_value(): |
| 1506 | # Any characters left in arg? Pretend they're the |
| 1507 | # next arg, and stop consuming characters of arg. |
| 1508 | if i < len(arg): |
| 1509 | rargs.insert(0, arg[i:]) |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1510 | stop = True |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1511 | |
| 1512 | nargs = option.nargs |
| 1513 | if len(rargs) < nargs: |
| 1514 | if nargs == 1: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1515 | self.error(_("%s option requires an argument") % opt) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1516 | else: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1517 | self.error(_("%s option requires %d arguments") |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1518 | % (opt, nargs)) |
| 1519 | elif nargs == 1: |
| 1520 | value = rargs.pop(0) |
| 1521 | else: |
| 1522 | value = tuple(rargs[0:nargs]) |
| 1523 | del rargs[0:nargs] |
| 1524 | |
| 1525 | else: # option doesn't take a value |
| 1526 | value = None |
| 1527 | |
| 1528 | option.process(opt, value, values, self) |
| 1529 | |
| 1530 | if stop: |
| 1531 | break |
| 1532 | |
| 1533 | |
| 1534 | # -- Feedback methods ---------------------------------------------- |
| 1535 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1536 | def get_prog_name(self): |
| 1537 | if self.prog is None: |
| 1538 | return os.path.basename(sys.argv[0]) |
| 1539 | else: |
| 1540 | return self.prog |
| 1541 | |
| 1542 | def expand_prog_name(self, s): |
| 1543 | return s.replace("%prog", self.get_prog_name()) |
| 1544 | |
| 1545 | def get_description(self): |
| 1546 | return self.expand_prog_name(self.description) |
| 1547 | |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 1548 | def exit(self, status=0, msg=None): |
| 1549 | if msg: |
| 1550 | sys.stderr.write(msg) |
| 1551 | sys.exit(status) |
| 1552 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1553 | def error(self, msg): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1554 | """error(msg : string) |
| 1555 | |
| 1556 | Print a usage message incorporating 'msg' to stderr and exit. |
| 1557 | If you override this in a subclass, it should not return -- it |
| 1558 | should either exit or raise an exception. |
| 1559 | """ |
| 1560 | self.print_usage(sys.stderr) |
Greg Ward | 48aa84b | 2004-10-27 02:20:04 +0000 | [diff] [blame] | 1561 | self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg)) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1562 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1563 | def get_usage(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1564 | if self.usage: |
| 1565 | return self.formatter.format_usage( |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1566 | self.expand_prog_name(self.usage)) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1567 | else: |
| 1568 | return "" |
| 1569 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1570 | def print_usage(self, file=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1571 | """print_usage(file : file = stdout) |
| 1572 | |
| 1573 | Print the usage message for the current program (self.usage) to |
| 1574 | 'file' (default stdout). Any occurence of the string "%prog" in |
| 1575 | self.usage is replaced with the name of the current program |
| 1576 | (basename of sys.argv[0]). Does nothing if self.usage is empty |
| 1577 | or not defined. |
| 1578 | """ |
| 1579 | if self.usage: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1580 | print(self.get_usage(), file=file) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1581 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1582 | def get_version(self): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1583 | if self.version: |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1584 | return self.expand_prog_name(self.version) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1585 | else: |
| 1586 | return "" |
| 1587 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1588 | def print_version(self, file=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1589 | """print_version(file : file = stdout) |
| 1590 | |
| 1591 | Print the version message for this program (self.version) to |
| 1592 | 'file' (default stdout). As with print_usage(), any occurence |
| 1593 | of "%prog" in self.version is replaced by the current program's |
| 1594 | name. Does nothing if self.version is empty or undefined. |
| 1595 | """ |
| 1596 | if self.version: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1597 | print(self.get_version(), file=file) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1598 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1599 | def format_option_help(self, formatter=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1600 | if formatter is None: |
| 1601 | formatter = self.formatter |
| 1602 | formatter.store_option_strings(self) |
| 1603 | result = [] |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1604 | result.append(formatter.format_heading(_("Options"))) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1605 | formatter.indent() |
| 1606 | if self.option_list: |
| 1607 | result.append(OptionContainer.format_option_help(self, formatter)) |
| 1608 | result.append("\n") |
| 1609 | for group in self.option_groups: |
| 1610 | result.append(group.format_help(formatter)) |
| 1611 | result.append("\n") |
| 1612 | formatter.dedent() |
| 1613 | # Drop the last "\n", or the header if no options or option groups: |
| 1614 | return "".join(result[:-1]) |
| 1615 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1616 | def format_epilog(self, formatter): |
| 1617 | return formatter.format_epilog(self.epilog) |
| 1618 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1619 | def format_help(self, formatter=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1620 | if formatter is None: |
| 1621 | formatter = self.formatter |
| 1622 | result = [] |
| 1623 | if self.usage: |
| 1624 | result.append(self.get_usage() + "\n") |
| 1625 | if self.description: |
| 1626 | result.append(self.format_description(formatter) + "\n") |
| 1627 | result.append(self.format_option_help(formatter)) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1628 | result.append(self.format_epilog(formatter)) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1629 | return "".join(result) |
| 1630 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1631 | # used by test suite |
| 1632 | def _get_encoding(self, file): |
| 1633 | encoding = getattr(file, "encoding", None) |
| 1634 | if not encoding: |
| 1635 | encoding = sys.getdefaultencoding() |
| 1636 | return encoding |
| 1637 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1638 | def print_help(self, file=None): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1639 | """print_help(file : file = stdout) |
| 1640 | |
| 1641 | Print an extended help message, listing all options and any |
| 1642 | help text provided with them, to 'file' (default stdout). |
| 1643 | """ |
| 1644 | if file is None: |
| 1645 | file = sys.stdout |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1646 | encoding = self._get_encoding(file) |
| 1647 | file.write(self.format_help().encode(encoding, "replace")) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1648 | |
| 1649 | # class OptionParser |
| 1650 | |
| 1651 | |
Greg Ward | eba20e6 | 2004-07-31 16:15:44 +0000 | [diff] [blame] | 1652 | def _match_abbrev(s, wordmap): |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1653 | """_match_abbrev(s : string, wordmap : {string : Option}) -> string |
| 1654 | |
| 1655 | Return the string key in 'wordmap' for which 's' is an unambiguous |
| 1656 | abbreviation. If 's' is found to be ambiguous or doesn't match any of |
| 1657 | 'words', raise BadOptionError. |
| 1658 | """ |
| 1659 | # Is there an exact match? |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 1660 | if s in wordmap: |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1661 | return s |
| 1662 | else: |
| 1663 | # Isolate all words with s as a prefix. |
| 1664 | possibilities = [word for word in wordmap.keys() |
| 1665 | if word.startswith(s)] |
| 1666 | # No exact match, so there had better be just one possibility. |
| 1667 | if len(possibilities) == 1: |
| 1668 | return possibilities[0] |
| 1669 | elif not possibilities: |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1670 | raise BadOptionError(s) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1671 | else: |
| 1672 | # More than one possible completion: ambiguous prefix. |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 1673 | possibilities.sort() |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1674 | raise AmbiguousOptionError(s, possibilities) |
Guido van Rossum | b9ba458 | 2002-11-14 22:00:19 +0000 | [diff] [blame] | 1675 | |
| 1676 | |
| 1677 | # Some day, there might be many Option classes. As of Optik 1.3, the |
| 1678 | # preferred way to instantiate Options is indirectly, via make_option(), |
| 1679 | # which will become a factory function when there are many Option |
| 1680 | # classes. |
| 1681 | make_option = Option |