Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 1 | """distutils.fancy_getopt |
| 2 | |
| 3 | Wrapper around the standard getopt module that provides the following |
| 4 | additional features: |
| 5 | * short and long options are tied together |
| 6 | * options have help strings, so fancy_getopt could potentially |
| 7 | create a complete usage summary |
| 8 | * options set attributes of a passed-in object |
| 9 | """ |
| 10 | |
Greg Ward | 3ce77fd | 2000-03-02 01:49:45 +0000 | [diff] [blame] | 11 | __revision__ = "$Id$" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 12 | |
Tarek Ziadé | 88e2c5d | 2009-12-21 01:49:00 +0000 | [diff] [blame] | 13 | import sys |
| 14 | import string |
| 15 | import re |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 16 | import getopt |
Tarek Ziadé | 88e2c5d | 2009-12-21 01:49:00 +0000 | [diff] [blame] | 17 | from distutils.errors import DistutilsGetoptError, DistutilsArgError |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 18 | |
| 19 | # Much like command_re in distutils.core, this is close to but not quite |
| 20 | # the same as a Python NAME -- except, in the spirit of most GNU |
| 21 | # utilities, we use '-' in place of '_'. (The spirit of LISP lives on!) |
| 22 | # The similarities to NAME are again not a coincidence... |
Greg Ward | a564cc3 | 1999-10-03 20:48:53 +0000 | [diff] [blame] | 23 | longopt_pat = r'[a-zA-Z](?:[a-zA-Z0-9-]*)' |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 24 | longopt_re = re.compile(r'^%s$' % longopt_pat) |
Greg Ward | a564cc3 | 1999-10-03 20:48:53 +0000 | [diff] [blame] | 25 | |
| 26 | # For recognizing "negative alias" options, eg. "quiet=!verbose" |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 27 | neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat)) |
Greg Ward | a564cc3 | 1999-10-03 20:48:53 +0000 | [diff] [blame] | 28 | |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 29 | # This is used to translate long options to legitimate Python identifiers |
| 30 | # (for use as attributes of some object). |
Tarek Ziadé | 03d5d08 | 2009-09-21 13:01:54 +0000 | [diff] [blame] | 31 | longopt_xlate = str.maketrans('-', '_') |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 32 | |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 33 | class FancyGetopt: |
| 34 | """Wrapper around the standard 'getopt()' module that provides some |
| 35 | handy extra functionality: |
| 36 | * short and long options are tied together |
| 37 | * options have help strings, and help text can be assembled |
| 38 | from them |
| 39 | * options set attributes of a passed-in object |
| 40 | * boolean options can have "negative aliases" -- eg. if |
| 41 | --quiet is the "negative alias" of --verbose, then "--quiet" |
| 42 | on the command line sets 'verbose' to false |
| 43 | """ |
| 44 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 45 | def __init__(self, option_table=None): |
Fred Drake | 576298d | 2004-08-02 17:58:51 +0000 | [diff] [blame] | 46 | # The option table is (currently) a list of tuples. The |
| 47 | # tuples may have 3 or four values: |
| 48 | # (long_option, short_option, help_string [, repeatable]) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 49 | # if an option takes an argument, its long_option should have '=' |
| 50 | # appended; short_option should just be a single character, no ':' |
| 51 | # in any case. If a long_option doesn't have a corresponding |
| 52 | # short_option, short_option should be None. All option tuples |
| 53 | # must have long options. |
| 54 | self.option_table = option_table |
| 55 | |
| 56 | # 'option_index' maps long option names to entries in the option |
| 57 | # table (ie. those 3-tuples). |
| 58 | self.option_index = {} |
| 59 | if self.option_table: |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 60 | self._build_index() |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 61 | |
Greg Ward | 1e7b509 | 2000-04-21 04:22:01 +0000 | [diff] [blame] | 62 | # 'alias' records (duh) alias options; {'foo': 'bar'} means |
| 63 | # --foo is an alias for --bar |
| 64 | self.alias = {} |
| 65 | |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 66 | # 'negative_alias' keeps track of options that are the boolean |
| 67 | # opposite of some other option |
| 68 | self.negative_alias = {} |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 69 | |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 70 | # These keep track of the information in the option table. We |
| 71 | # don't actually populate these structures until we're ready to |
| 72 | # parse the command-line, since the 'option_table' passed in here |
| 73 | # isn't necessarily the final word. |
| 74 | self.short_opts = [] |
| 75 | self.long_opts = [] |
| 76 | self.short2long = {} |
| 77 | self.attr_name = {} |
| 78 | self.takes_arg = {} |
| 79 | |
| 80 | # And 'option_order' is filled up in 'getopt()'; it records the |
| 81 | # original order of options (and their values) on the command-line, |
| 82 | # but expands short options, converts aliases, etc. |
| 83 | self.option_order = [] |
| 84 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 85 | def _build_index(self): |
Greg Ward | 0fd2dd6 | 2000-08-07 00:45:51 +0000 | [diff] [blame] | 86 | self.option_index.clear() |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 87 | for option in self.option_table: |
| 88 | self.option_index[option[0]] = option |
| 89 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 90 | def set_option_table(self, option_table): |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 91 | self.option_table = option_table |
| 92 | self._build_index() |
| 93 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 94 | def add_option(self, long_option, short_option=None, help_string=None): |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 95 | if long_option in self.option_index: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 96 | raise DistutilsGetoptError( |
| 97 | "option conflict: already an option '%s'" % long_option) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 98 | else: |
| 99 | option = (long_option, short_option, help_string) |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 100 | self.option_table.append(option) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 101 | self.option_index[long_option] = option |
| 102 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 103 | def has_option(self, long_option): |
Greg Ward | 320df70 | 2000-04-21 02:31:07 +0000 | [diff] [blame] | 104 | """Return true if the option table for this parser has an |
| 105 | option with long name 'long_option'.""" |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 106 | return long_option in self.option_index |
Greg Ward | 320df70 | 2000-04-21 02:31:07 +0000 | [diff] [blame] | 107 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 108 | def get_attr_name(self, long_option): |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 109 | """Translate long option name 'long_option' to the form it |
Greg Ward | 320df70 | 2000-04-21 02:31:07 +0000 | [diff] [blame] | 110 | has as an attribute of some object: ie., translate hyphens |
| 111 | to underscores.""" |
Tarek Ziadé | 03d5d08 | 2009-09-21 13:01:54 +0000 | [diff] [blame] | 112 | return long_option.translate(longopt_xlate) |
Greg Ward | 320df70 | 2000-04-21 02:31:07 +0000 | [diff] [blame] | 113 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 114 | def _check_alias_dict(self, aliases, what): |
| 115 | assert isinstance(aliases, dict) |
Greg Ward | 1e7b509 | 2000-04-21 04:22:01 +0000 | [diff] [blame] | 116 | for (alias, opt) in aliases.items(): |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 117 | if alias not in self.option_index: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 118 | raise DistutilsGetoptError(("invalid %s '%s': " |
| 119 | "option '%s' not defined") % (what, alias, alias)) |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 120 | if opt not in self.option_index: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 121 | raise DistutilsGetoptError(("invalid %s '%s': " |
| 122 | "aliased option '%s' not defined") % (what, alias, opt)) |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 123 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 124 | def set_aliases(self, alias): |
Greg Ward | 1e7b509 | 2000-04-21 04:22:01 +0000 | [diff] [blame] | 125 | """Set the aliases for this option parser.""" |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 126 | self._check_alias_dict(alias, "alias") |
Greg Ward | 1e7b509 | 2000-04-21 04:22:01 +0000 | [diff] [blame] | 127 | self.alias = alias |
| 128 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 129 | def set_negative_aliases(self, negative_alias): |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 130 | """Set the negative aliases for this option parser. |
| 131 | 'negative_alias' should be a dictionary mapping option names to |
| 132 | option names, both the key and value must already be defined |
| 133 | in the option table.""" |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 134 | self._check_alias_dict(negative_alias, "negative alias") |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 135 | self.negative_alias = negative_alias |
| 136 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 137 | def _grok_option_table(self): |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 138 | """Populate the various data structures that keep tabs on the |
| 139 | option table. Called by 'getopt()' before it can do anything |
| 140 | worthwhile. |
| 141 | """ |
Greg Ward | 0fd2dd6 | 2000-08-07 00:45:51 +0000 | [diff] [blame] | 142 | self.long_opts = [] |
| 143 | self.short_opts = [] |
| 144 | self.short2long.clear() |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 145 | self.repeat = {} |
Greg Ward | 0fd2dd6 | 2000-08-07 00:45:51 +0000 | [diff] [blame] | 146 | |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 147 | for option in self.option_table: |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 148 | if len(option) == 3: |
| 149 | long, short, help = option |
| 150 | repeat = 0 |
| 151 | elif len(option) == 4: |
| 152 | long, short, help, repeat = option |
| 153 | else: |
| 154 | # the option table is part of the code, so simply |
| 155 | # assert that it is correct |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 156 | raise ValueError("invalid option tuple: %r" % (option,)) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 157 | |
| 158 | # Type- and value-check the option names |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 159 | if not isinstance(long, str) or len(long) < 2: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 160 | raise DistutilsGetoptError(("invalid long option '%s': " |
| 161 | "must be a string of length >= 2") % long) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 162 | |
| 163 | if (not ((short is None) or |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 164 | (isinstance(short, str) and len(short) == 1))): |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 165 | raise DistutilsGetoptError("invalid short option '%s': " |
| 166 | "must a single character or None" % short) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 167 | |
Jeremy Hylton | a181ec0 | 2002-06-04 20:24:05 +0000 | [diff] [blame] | 168 | self.repeat[long] = repeat |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 169 | self.long_opts.append(long) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 170 | |
| 171 | if long[-1] == '=': # option takes an argument? |
| 172 | if short: short = short + ':' |
| 173 | long = long[0:-1] |
| 174 | self.takes_arg[long] = 1 |
| 175 | else: |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 176 | # Is option is a "negative alias" for some other option (eg. |
| 177 | # "quiet" == "!verbose")? |
| 178 | alias_to = self.negative_alias.get(long) |
| 179 | if alias_to is not None: |
| 180 | if self.takes_arg[alias_to]: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 181 | raise DistutilsGetoptError( |
| 182 | "invalid negative alias '%s': " |
| 183 | "aliased option '%s' takes a value" |
| 184 | % (long, alias_to)) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 185 | |
| 186 | self.long_opts[-1] = long # XXX redundant?! |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 187 | self.takes_arg[long] = 0 |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 188 | |
Greg Ward | 1e7b509 | 2000-04-21 04:22:01 +0000 | [diff] [blame] | 189 | # If this is an alias option, make sure its "takes arg" flag is |
| 190 | # the same as the option it's aliased to. |
| 191 | alias_to = self.alias.get(long) |
| 192 | if alias_to is not None: |
| 193 | if self.takes_arg[long] != self.takes_arg[alias_to]: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 194 | raise DistutilsGetoptError( |
| 195 | "invalid alias '%s': inconsistent with " |
| 196 | "aliased option '%s' (one of them takes a value, " |
| 197 | "the other doesn't" |
| 198 | % (long, alias_to)) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 199 | |
| 200 | # Now enforce some bondage on the long option name, so we can |
| 201 | # later translate it to an attribute name on some object. Have |
| 202 | # to do this a bit late to make sure we've removed any trailing |
| 203 | # '='. |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 204 | if not longopt_re.match(long): |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 205 | raise DistutilsGetoptError( |
| 206 | "invalid long option name '%s' " |
| 207 | "(must be letters, numbers, hyphens only" % long) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 208 | |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 209 | self.attr_name[long] = self.get_attr_name(long) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 210 | if short: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 211 | self.short_opts.append(short) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 212 | self.short2long[short[0]] = long |
| 213 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 214 | def getopt(self, args=None, object=None): |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 215 | """Parse command-line options in args. Store as attributes on object. |
| 216 | |
| 217 | If 'args' is None or not supplied, uses 'sys.argv[1:]'. If |
| 218 | 'object' is None or not supplied, creates a new OptionDummy |
| 219 | object, stores option values there, and returns a tuple (args, |
| 220 | object). If 'object' is supplied, it is modified in place and |
| 221 | 'getopt()' just returns 'args'; in both cases, the returned |
| 222 | 'args' is a modified copy of the passed-in 'args' list, which |
| 223 | is left untouched. |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 224 | """ |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 225 | if args is None: |
| 226 | args = sys.argv[1:] |
| 227 | if object is None: |
Greg Ward | 981f736 | 2000-05-23 03:53:10 +0000 | [diff] [blame] | 228 | object = OptionDummy() |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 229 | created_object = True |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 230 | else: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 231 | created_object = False |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 232 | |
| 233 | self._grok_option_table() |
| 234 | |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 235 | short_opts = ' '.join(self.short_opts) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 236 | try: |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 237 | opts, args = getopt.getopt(args, short_opts, self.long_opts) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 238 | except getopt.error as msg: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 239 | raise DistutilsArgError(msg) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 240 | |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 241 | for opt, val in opts: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 242 | if len(opt) == 2 and opt[0] == '-': # it's a short option |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 243 | opt = self.short2long[opt[1]] |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 244 | else: |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 245 | assert len(opt) > 2 and opt[:2] == '--' |
| 246 | opt = opt[2:] |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 247 | |
Greg Ward | 1e7b509 | 2000-04-21 04:22:01 +0000 | [diff] [blame] | 248 | alias = self.alias.get(opt) |
| 249 | if alias: |
| 250 | opt = alias |
| 251 | |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 252 | if not self.takes_arg[opt]: # boolean option? |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 253 | assert val == '', "boolean option can't have value" |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 254 | alias = self.negative_alias.get(opt) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 255 | if alias: |
| 256 | opt = alias |
| 257 | val = 0 |
| 258 | else: |
| 259 | val = 1 |
| 260 | |
| 261 | attr = self.attr_name[opt] |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 262 | # The only repeating option at the moment is 'verbose'. |
| 263 | # It has a negative option -q quiet, which should set verbose = 0. |
| 264 | if val and self.repeat.get(attr) is not None: |
| 265 | val = getattr(object, attr, 0) + 1 |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 266 | setattr(object, attr, val) |
| 267 | self.option_order.append((opt, val)) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 268 | |
| 269 | # for opts |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 270 | if created_object: |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 271 | return args, object |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 272 | else: |
| 273 | return args |
| 274 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 275 | def get_option_order(self): |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 276 | """Returns the list of (option, value) tuples processed by the |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 277 | previous run of 'getopt()'. Raises RuntimeError if |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 278 | 'getopt()' hasn't been called yet. |
| 279 | """ |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 280 | if self.option_order is None: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 281 | raise RuntimeError("'getopt()' hasn't been called yet") |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 282 | else: |
| 283 | return self.option_order |
| 284 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 285 | def generate_help(self, header=None): |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 286 | """Generate help text (a list of strings, one per suggested line of |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 287 | output) from the option table for this FancyGetopt object. |
| 288 | """ |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 289 | # Blithely assume the option table is good: probably wouldn't call |
| 290 | # 'generate_help()' unless you've already called 'getopt()'. |
| 291 | |
| 292 | # First pass: determine maximum length of long option names |
| 293 | max_opt = 0 |
| 294 | for option in self.option_table: |
| 295 | long = option[0] |
| 296 | short = option[1] |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 297 | l = len(long) |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 298 | if long[-1] == '=': |
| 299 | l = l - 1 |
| 300 | if short is not None: |
| 301 | l = l + 5 # " (-x)" where short == 'x' |
| 302 | if l > max_opt: |
| 303 | max_opt = l |
| 304 | |
| 305 | opt_width = max_opt + 2 + 2 + 2 # room for indent + dashes + gutter |
| 306 | |
| 307 | # Typical help block looks like this: |
| 308 | # --foo controls foonabulation |
| 309 | # Help block for longest option looks like this: |
| 310 | # --flimflam set the flim-flam level |
| 311 | # and with wrapped text: |
| 312 | # --flimflam set the flim-flam level (must be between |
| 313 | # 0 and 100, except on Tuesdays) |
| 314 | # Options with short names will have the short name shown (but |
| 315 | # it doesn't contribute to max_opt): |
| 316 | # --foo (-f) controls foonabulation |
| 317 | # If adding the short option would make the left column too wide, |
| 318 | # we push the explanation off to the next line |
| 319 | # --flimflam (-l) |
| 320 | # set the flim-flam level |
| 321 | # Important parameters: |
| 322 | # - 2 spaces before option block start lines |
| 323 | # - 2 dashes for each long option name |
| 324 | # - min. 2 spaces between option and explanation (gutter) |
| 325 | # - 5 characters (incl. space) for short option name |
| 326 | |
| 327 | # Now generate lines of help text. (If 80 columns were good enough |
| 328 | # for Jesus, then 78 columns are good enough for me!) |
| 329 | line_width = 78 |
| 330 | text_width = line_width - opt_width |
| 331 | big_indent = ' ' * opt_width |
| 332 | if header: |
| 333 | lines = [header] |
| 334 | else: |
| 335 | lines = ['Option summary:'] |
| 336 | |
Jeremy Hylton | 40ebbef | 2002-06-04 21:10:35 +0000 | [diff] [blame] | 337 | for option in self.option_table: |
Jeremy Hylton | 8f787bf | 2002-06-04 21:11:56 +0000 | [diff] [blame] | 338 | long, short, help = option[:3] |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 339 | text = wrap_text(help, text_width) |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 340 | if long[-1] == '=': |
| 341 | long = long[0:-1] |
| 342 | |
| 343 | # Case 1: no short option at all (makes life easy) |
| 344 | if short is None: |
| 345 | if text: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 346 | lines.append(" --%-*s %s" % (max_opt, long, text[0])) |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 347 | else: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 348 | lines.append(" --%-*s " % (max_opt, long)) |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 349 | |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 350 | # Case 2: we have a short option, so we have to include it |
| 351 | # just after the long option |
| 352 | else: |
| 353 | opt_names = "%s (-%s)" % (long, short) |
| 354 | if text: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 355 | lines.append(" --%-*s %s" % |
| 356 | (max_opt, opt_names, text[0])) |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 357 | else: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 358 | lines.append(" --%-*s" % opt_names) |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 359 | |
Greg Ward | 373dbfa | 2000-06-08 00:35:33 +0000 | [diff] [blame] | 360 | for l in text[1:]: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 361 | lines.append(big_indent + l) |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 362 | return lines |
| 363 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 364 | def print_help(self, header=None, file=None): |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 365 | if file is None: |
| 366 | file = sys.stdout |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 367 | for line in self.generate_help(header): |
| 368 | file.write(line + "\n") |
Greg Ward | 283c745 | 2000-04-21 02:09:26 +0000 | [diff] [blame] | 369 | |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 370 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 371 | def fancy_getopt(options, negative_opt, object, args): |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 372 | parser = FancyGetopt(options) |
| 373 | parser.set_negative_aliases(negative_opt) |
| 374 | return parser.getopt(args, object) |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 375 | |
| 376 | |
Georg Brandl | 7f13e6b | 2007-08-31 10:37:15 +0000 | [diff] [blame] | 377 | WS_TRANS = {ord(_wschar) : ' ' for _wschar in string.whitespace} |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 378 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 379 | def wrap_text(text, width): |
Greg Ward | 46a69b9 | 2000-08-30 17:16:27 +0000 | [diff] [blame] | 380 | """wrap_text(text : string, width : int) -> [string] |
| 381 | |
| 382 | Split 'text' into multiple lines of no more than 'width' characters |
| 383 | each, and return the list of strings that results. |
| 384 | """ |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 385 | if text is None: |
| 386 | return [] |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 387 | if len(text) <= width: |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 388 | return [text] |
| 389 | |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 390 | text = text.expandtabs() |
| 391 | text = text.translate(WS_TRANS) |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 392 | chunks = re.split(r'( +|-+)', text) |
Guido van Rossum | 85ac28d | 2007-09-25 21:48:09 +0000 | [diff] [blame] | 393 | chunks = [ch for ch in chunks if ch] # ' - ' results in empty strings |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 394 | lines = [] |
| 395 | |
| 396 | while chunks: |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 397 | cur_line = [] # list of chunks (to-be-joined) |
| 398 | cur_len = 0 # length of current line |
| 399 | |
| 400 | while chunks: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 401 | l = len(chunks[0]) |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 402 | if cur_len + l <= width: # can squeeze (at least) this chunk in |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 403 | cur_line.append(chunks[0]) |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 404 | del chunks[0] |
| 405 | cur_len = cur_len + l |
| 406 | else: # this line is full |
| 407 | # drop last chunk if all space |
| 408 | if cur_line and cur_line[-1][0] == ' ': |
| 409 | del cur_line[-1] |
| 410 | break |
| 411 | |
| 412 | if chunks: # any chunks left to process? |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 413 | # if the current line is still empty, then we had a single |
| 414 | # chunk that's too big too fit on a line -- so we break |
| 415 | # down and break it up at the line width |
| 416 | if cur_len == 0: |
Greg Ward | 071ed76 | 2000-09-26 02:12:31 +0000 | [diff] [blame] | 417 | cur_line.append(chunks[0][0:width]) |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 418 | chunks[0] = chunks[0][width:] |
| 419 | |
| 420 | # all-whitespace chunks at the end of a line can be discarded |
| 421 | # (and we know from the re.split above that if a chunk has |
| 422 | # *any* whitespace, it is *all* whitespace) |
| 423 | if chunks[0][0] == ' ': |
| 424 | del chunks[0] |
| 425 | |
| 426 | # and store this line in the list-of-all-lines -- as a single |
| 427 | # string, of course! |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 428 | lines.append(''.join(cur_line)) |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 429 | |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 430 | return lines |
| 431 | |
Greg Ward | 68ded6e | 2000-09-25 01:58:31 +0000 | [diff] [blame] | 432 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 433 | def translate_longopt(opt): |
Greg Ward | 68ded6e | 2000-09-25 01:58:31 +0000 | [diff] [blame] | 434 | """Convert a long option name to a valid Python identifier by |
| 435 | changing "-" to "_". |
| 436 | """ |
Tarek Ziadé | 03d5d08 | 2009-09-21 13:01:54 +0000 | [diff] [blame] | 437 | return opt.translate(longopt_xlate) |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 438 | |
Greg Ward | 44f8e4e | 1999-12-12 16:54:55 +0000 | [diff] [blame] | 439 | |
Greg Ward | ffc10d9 | 2000-04-21 01:41:54 +0000 | [diff] [blame] | 440 | class OptionDummy: |
| 441 | """Dummy class just used as a place to hold command-line option |
| 442 | values as instance attributes.""" |
Greg Ward | 3c67b1d | 2000-05-23 01:44:20 +0000 | [diff] [blame] | 443 | |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 444 | def __init__(self, options=[]): |
Greg Ward | 3c67b1d | 2000-05-23 01:44:20 +0000 | [diff] [blame] | 445 | """Create a new OptionDummy instance. The attributes listed in |
| 446 | 'options' will be initialized to None.""" |
| 447 | for opt in options: |
| 448 | setattr(self, opt, None) |