optparse.py 59 KB

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