argparse.py 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  1. # Author: Steven J. Bethard <steven.bethard@gmail.com>.
  2. """Command-line parsing library
  3. This module is an optparse-inspired command-line parsing library that:
  4. - handles both optional and positional arguments
  5. - produces highly informative usage messages
  6. - supports parsers that dispatch to sub-parsers
  7. The following is a simple usage example that sums integers from the
  8. command-line and writes the result to a file::
  9. parser = argparse.ArgumentParser(
  10. description='sum the integers at the command line')
  11. parser.add_argument(
  12. 'integers', metavar='int', nargs='+', type=int,
  13. help='an integer to be summed')
  14. parser.add_argument(
  15. '--log', default=sys.stdout, type=argparse.FileType('w'),
  16. help='the file where the sum should be written')
  17. args = parser.parse_args()
  18. args.log.write('%s' % sum(args.integers))
  19. args.log.close()
  20. The module contains the following public classes:
  21. - ArgumentParser -- The main entry point for command-line parsing. As the
  22. example above shows, the add_argument() method is used to populate
  23. the parser with actions for optional and positional arguments. Then
  24. the parse_args() method is invoked to convert the args at the
  25. command-line into an object with attributes.
  26. - ArgumentError -- The exception raised by ArgumentParser objects when
  27. there are errors with the parser's actions. Errors raised while
  28. parsing the command-line are caught by ArgumentParser and emitted
  29. as command-line messages.
  30. - FileType -- A factory for defining types of files to be created. As the
  31. example above shows, instances of FileType are typically passed as
  32. the type= argument of add_argument() calls.
  33. - Action -- The base class for parser actions. Typically actions are
  34. selected by passing strings like 'store_true' or 'append_const' to
  35. the action= argument of add_argument(). However, for greater
  36. customization of ArgumentParser actions, subclasses of Action may
  37. be defined and passed as the action= argument.
  38. - HelpFormatter, RawDescriptionHelpFormatter, RawTextHelpFormatter,
  39. ArgumentDefaultsHelpFormatter -- Formatter classes which
  40. may be passed as the formatter_class= argument to the
  41. ArgumentParser constructor. HelpFormatter is the default,
  42. RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser
  43. not to change the formatting for help text, and
  44. ArgumentDefaultsHelpFormatter adds information about argument defaults
  45. to the help.
  46. All other classes in this module are considered implementation details.
  47. (Also note that HelpFormatter and RawDescriptionHelpFormatter are only
  48. considered public as object names -- the API of the formatter objects is
  49. still considered an implementation detail.)
  50. """
  51. __version__ = '1.1'
  52. __all__ = [
  53. 'ArgumentParser',
  54. 'ArgumentError',
  55. 'ArgumentTypeError',
  56. 'FileType',
  57. 'HelpFormatter',
  58. 'ArgumentDefaultsHelpFormatter',
  59. 'RawDescriptionHelpFormatter',
  60. 'RawTextHelpFormatter',
  61. 'MetavarTypeHelpFormatter',
  62. 'Namespace',
  63. 'Action',
  64. 'ONE_OR_MORE',
  65. 'OPTIONAL',
  66. 'PARSER',
  67. 'REMAINDER',
  68. 'SUPPRESS',
  69. 'ZERO_OR_MORE',
  70. ]
  71. import collections as _collections
  72. import copy as _copy
  73. import os as _os
  74. import re as _re
  75. import sys as _sys
  76. import textwrap as _textwrap
  77. from gettext import gettext as _, ngettext
  78. SUPPRESS = '==SUPPRESS=='
  79. OPTIONAL = '?'
  80. ZERO_OR_MORE = '*'
  81. ONE_OR_MORE = '+'
  82. PARSER = 'A...'
  83. REMAINDER = '...'
  84. _UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'
  85. # =============================
  86. # Utility functions and classes
  87. # =============================
  88. class _AttributeHolder(object):
  89. """Abstract base class that provides __repr__.
  90. The __repr__ method returns a string in the format::
  91. ClassName(attr=name, attr=name, ...)
  92. The attributes are determined either by a class-level attribute,
  93. '_kwarg_names', or by inspecting the instance __dict__.
  94. """
  95. def __repr__(self):
  96. type_name = type(self).__name__
  97. arg_strings = []
  98. for arg in self._get_args():
  99. arg_strings.append(repr(arg))
  100. for name, value in self._get_kwargs():
  101. arg_strings.append('%s=%r' % (name, value))
  102. return '%s(%s)' % (type_name, ', '.join(arg_strings))
  103. def _get_kwargs(self):
  104. return sorted(self.__dict__.items())
  105. def _get_args(self):
  106. return []
  107. def _ensure_value(namespace, name, value):
  108. if getattr(namespace, name, None) is None:
  109. setattr(namespace, name, value)
  110. return getattr(namespace, name)
  111. # ===============
  112. # Formatting Help
  113. # ===============
  114. class HelpFormatter(object):
  115. """Formatter for generating usage messages and argument help strings.
  116. Only the name of this class is considered a public API. All the methods
  117. provided by the class are considered an implementation detail.
  118. """
  119. def __init__(self,
  120. prog,
  121. indent_increment=2,
  122. max_help_position=24,
  123. width=None):
  124. # default setting for width
  125. if width is None:
  126. try:
  127. width = int(_os.environ['COLUMNS'])
  128. except (KeyError, ValueError):
  129. width = 80
  130. width -= 2
  131. self._prog = prog
  132. self._indent_increment = indent_increment
  133. self._max_help_position = max_help_position
  134. self._max_help_position = min(max_help_position,
  135. max(width - 20, indent_increment * 2))
  136. self._width = width
  137. self._current_indent = 0
  138. self._level = 0
  139. self._action_max_length = 0
  140. self._root_section = self._Section(self, None)
  141. self._current_section = self._root_section
  142. self._whitespace_matcher = _re.compile(r'\s+')
  143. self._long_break_matcher = _re.compile(r'\n\n\n+')
  144. # ===============================
  145. # Section and indentation methods
  146. # ===============================
  147. def _indent(self):
  148. self._current_indent += self._indent_increment
  149. self._level += 1
  150. def _dedent(self):
  151. self._current_indent -= self._indent_increment
  152. assert self._current_indent >= 0, 'Indent decreased below 0.'
  153. self._level -= 1
  154. class _Section(object):
  155. def __init__(self, formatter, parent, heading=None):
  156. self.formatter = formatter
  157. self.parent = parent
  158. self.heading = heading
  159. self.items = []
  160. def format_help(self):
  161. # format the indented section
  162. if self.parent is not None:
  163. self.formatter._indent()
  164. join = self.formatter._join_parts
  165. for func, args in self.items:
  166. func(*args)
  167. item_help = join([func(*args) for func, args in self.items])
  168. if self.parent is not None:
  169. self.formatter._dedent()
  170. # return nothing if the section was empty
  171. if not item_help:
  172. return ''
  173. # add the heading if the section was non-empty
  174. if self.heading is not SUPPRESS and self.heading is not None:
  175. current_indent = self.formatter._current_indent
  176. heading = '%*s%s:\n' % (current_indent, '', self.heading)
  177. else:
  178. heading = ''
  179. # join the section-initial newline, the heading and the help
  180. return join(['\n', heading, item_help, '\n'])
  181. def _add_item(self, func, args):
  182. self._current_section.items.append((func, args))
  183. # ========================
  184. # Message building methods
  185. # ========================
  186. def start_section(self, heading):
  187. self._indent()
  188. section = self._Section(self, self._current_section, heading)
  189. self._add_item(section.format_help, [])
  190. self._current_section = section
  191. def end_section(self):
  192. self._current_section = self._current_section.parent
  193. self._dedent()
  194. def add_text(self, text):
  195. if text is not SUPPRESS and text is not None:
  196. self._add_item(self._format_text, [text])
  197. def add_usage(self, usage, actions, groups, prefix=None):
  198. if usage is not SUPPRESS:
  199. args = usage, actions, groups, prefix
  200. self._add_item(self._format_usage, args)
  201. def add_argument(self, action):
  202. if action.help is not SUPPRESS:
  203. # find all invocations
  204. get_invocation = self._format_action_invocation
  205. invocations = [get_invocation(action)]
  206. for subaction in self._iter_indented_subactions(action):
  207. invocations.append(get_invocation(subaction))
  208. # update the maximum item length
  209. invocation_length = max([len(s) for s in invocations])
  210. action_length = invocation_length + self._current_indent
  211. self._action_max_length = max(self._action_max_length,
  212. action_length)
  213. # add the item to the list
  214. self._add_item(self._format_action, [action])
  215. def add_arguments(self, actions):
  216. for action in actions:
  217. self.add_argument(action)
  218. # =======================
  219. # Help-formatting methods
  220. # =======================
  221. def format_help(self):
  222. help = self._root_section.format_help()
  223. if help:
  224. help = self._long_break_matcher.sub('\n\n', help)
  225. help = help.strip('\n') + '\n'
  226. return help
  227. def _join_parts(self, part_strings):
  228. return ''.join([part
  229. for part in part_strings
  230. if part and part is not SUPPRESS])
  231. def _format_usage(self, usage, actions, groups, prefix):
  232. if prefix is None:
  233. prefix = _('usage: ')
  234. # if usage is specified, use that
  235. if usage is not None:
  236. usage = usage % dict(prog=self._prog)
  237. # if no optionals or positionals are available, usage is just prog
  238. elif usage is None and not actions:
  239. usage = '%(prog)s' % dict(prog=self._prog)
  240. # if optionals and positionals are available, calculate usage
  241. elif usage is None:
  242. prog = '%(prog)s' % dict(prog=self._prog)
  243. # split optionals from positionals
  244. optionals = []
  245. positionals = []
  246. for action in actions:
  247. if action.option_strings:
  248. optionals.append(action)
  249. else:
  250. positionals.append(action)
  251. # build full usage string
  252. format = self._format_actions_usage
  253. action_usage = format(optionals + positionals, groups)
  254. usage = ' '.join([s for s in [prog, action_usage] if s])
  255. # wrap the usage parts if it's too long
  256. text_width = self._width - self._current_indent
  257. if len(prefix) + len(usage) > text_width:
  258. # break usage into wrappable parts
  259. part_regexp = r'\(.*?\)+|\[.*?\]+|\S+'
  260. opt_usage = format(optionals, groups)
  261. pos_usage = format(positionals, groups)
  262. opt_parts = _re.findall(part_regexp, opt_usage)
  263. pos_parts = _re.findall(part_regexp, pos_usage)
  264. assert ' '.join(opt_parts) == opt_usage
  265. assert ' '.join(pos_parts) == pos_usage
  266. # helper for wrapping lines
  267. def get_lines(parts, indent, prefix=None):
  268. lines = []
  269. line = []
  270. if prefix is not None:
  271. line_len = len(prefix) - 1
  272. else:
  273. line_len = len(indent) - 1
  274. for part in parts:
  275. if line_len + 1 + len(part) > text_width and line:
  276. lines.append(indent + ' '.join(line))
  277. line = []
  278. line_len = len(indent) - 1
  279. line.append(part)
  280. line_len += len(part) + 1
  281. if line:
  282. lines.append(indent + ' '.join(line))
  283. if prefix is not None:
  284. lines[0] = lines[0][len(indent):]
  285. return lines
  286. # if prog is short, follow it with optionals or positionals
  287. if len(prefix) + len(prog) <= 0.75 * text_width:
  288. indent = ' ' * (len(prefix) + len(prog) + 1)
  289. if opt_parts:
  290. lines = get_lines([prog] + opt_parts, indent, prefix)
  291. lines.extend(get_lines(pos_parts, indent))
  292. elif pos_parts:
  293. lines = get_lines([prog] + pos_parts, indent, prefix)
  294. else:
  295. lines = [prog]
  296. # if prog is long, put it on its own line
  297. else:
  298. indent = ' ' * len(prefix)
  299. parts = opt_parts + pos_parts
  300. lines = get_lines(parts, indent)
  301. if len(lines) > 1:
  302. lines = []
  303. lines.extend(get_lines(opt_parts, indent))
  304. lines.extend(get_lines(pos_parts, indent))
  305. lines = [prog] + lines
  306. # join lines into usage
  307. usage = '\n'.join(lines)
  308. # prefix with 'usage:'
  309. return '%s%s\n\n' % (prefix, usage)
  310. def _format_actions_usage(self, actions, groups):
  311. # find group indices and identify actions in groups
  312. group_actions = set()
  313. inserts = {}
  314. for group in groups:
  315. try:
  316. start = actions.index(group._group_actions[0])
  317. except ValueError:
  318. continue
  319. else:
  320. end = start + len(group._group_actions)
  321. if actions[start:end] == group._group_actions:
  322. for action in group._group_actions:
  323. group_actions.add(action)
  324. if not group.required:
  325. if start in inserts:
  326. inserts[start] += ' ['
  327. else:
  328. inserts[start] = '['
  329. inserts[end] = ']'
  330. else:
  331. if start in inserts:
  332. inserts[start] += ' ('
  333. else:
  334. inserts[start] = '('
  335. inserts[end] = ')'
  336. for i in range(start + 1, end):
  337. inserts[i] = '|'
  338. # collect all actions format strings
  339. parts = []
  340. for i, action in enumerate(actions):
  341. # suppressed arguments are marked with None
  342. # remove | separators for suppressed arguments
  343. if action.help is SUPPRESS:
  344. parts.append(None)
  345. if inserts.get(i) == '|':
  346. inserts.pop(i)
  347. elif inserts.get(i + 1) == '|':
  348. inserts.pop(i + 1)
  349. # produce all arg strings
  350. elif not action.option_strings:
  351. default = self._get_default_metavar_for_positional(action)
  352. part = self._format_args(action, default)
  353. # if it's in a group, strip the outer []
  354. if action in group_actions:
  355. if part[0] == '[' and part[-1] == ']':
  356. part = part[1:-1]
  357. # add the action string to the list
  358. parts.append(part)
  359. # produce the first way to invoke the option in brackets
  360. else:
  361. option_string = action.option_strings[0]
  362. # if the Optional doesn't take a value, format is:
  363. # -s or --long
  364. if action.nargs == 0:
  365. part = '%s' % option_string
  366. # if the Optional takes a value, format is:
  367. # -s ARGS or --long ARGS
  368. else:
  369. default = self._get_default_metavar_for_optional(action)
  370. args_string = self._format_args(action, default)
  371. part = '%s %s' % (option_string, args_string)
  372. # make it look optional if it's not required or in a group
  373. if not action.required and action not in group_actions:
  374. part = '[%s]' % part
  375. # add the action string to the list
  376. parts.append(part)
  377. # insert things at the necessary indices
  378. for i in sorted(inserts, reverse=True):
  379. parts[i:i] = [inserts[i]]
  380. # join all the action items with spaces
  381. text = ' '.join([item for item in parts if item is not None])
  382. # clean up separators for mutually exclusive groups
  383. open = r'[\[(]'
  384. close = r'[\])]'
  385. text = _re.sub(r'(%s) ' % open, r'\1', text)
  386. text = _re.sub(r' (%s)' % close, r'\1', text)
  387. text = _re.sub(r'%s *%s' % (open, close), r'', text)
  388. text = _re.sub(r'\(([^|]*)\)', r'\1', text)
  389. text = text.strip()
  390. # return the text
  391. return text
  392. def _format_text(self, text):
  393. if '%(prog)' in text:
  394. text = text % dict(prog=self._prog)
  395. text_width = max(self._width - self._current_indent, 11)
  396. indent = ' ' * self._current_indent
  397. return self._fill_text(text, text_width, indent) + '\n\n'
  398. def _format_action(self, action):
  399. # determine the required width and the entry label
  400. help_position = min(self._action_max_length + 2,
  401. self._max_help_position)
  402. help_width = max(self._width - help_position, 11)
  403. action_width = help_position - self._current_indent - 2
  404. action_header = self._format_action_invocation(action)
  405. # no help; start on same line and add a final newline
  406. if not action.help:
  407. tup = self._current_indent, '', action_header
  408. action_header = '%*s%s\n' % tup
  409. # short action name; start on the same line and pad two spaces
  410. elif len(action_header) <= action_width:
  411. tup = self._current_indent, '', action_width, action_header
  412. action_header = '%*s%-*s ' % tup
  413. indent_first = 0
  414. # long action name; start on the next line
  415. else:
  416. tup = self._current_indent, '', action_header
  417. action_header = '%*s%s\n' % tup
  418. indent_first = help_position
  419. # collect the pieces of the action help
  420. parts = [action_header]
  421. # if there was help for the action, add lines of help text
  422. if action.help:
  423. help_text = self._expand_help(action)
  424. help_lines = self._split_lines(help_text, help_width)
  425. parts.append('%*s%s\n' % (indent_first, '', help_lines[0]))
  426. for line in help_lines[1:]:
  427. parts.append('%*s%s\n' % (help_position, '', line))
  428. # or add a newline if the description doesn't end with one
  429. elif not action_header.endswith('\n'):
  430. parts.append('\n')
  431. # if there are any sub-actions, add their help as well
  432. for subaction in self._iter_indented_subactions(action):
  433. parts.append(self._format_action(subaction))
  434. # return a single string
  435. return self._join_parts(parts)
  436. def _format_action_invocation(self, action):
  437. if not action.option_strings:
  438. default = self._get_default_metavar_for_positional(action)
  439. metavar, = self._metavar_formatter(action, default)(1)
  440. return metavar
  441. else:
  442. parts = []
  443. # if the Optional doesn't take a value, format is:
  444. # -s, --long
  445. if action.nargs == 0:
  446. parts.extend(action.option_strings)
  447. # if the Optional takes a value, format is:
  448. # -s ARGS, --long ARGS
  449. else:
  450. default = self._get_default_metavar_for_optional(action)
  451. args_string = self._format_args(action, default)
  452. for option_string in action.option_strings:
  453. parts.append('%s %s' % (option_string, args_string))
  454. return ', '.join(parts)
  455. def _metavar_formatter(self, action, default_metavar):
  456. if action.metavar is not None:
  457. result = action.metavar
  458. elif action.choices is not None:
  459. choice_strs = [str(choice) for choice in action.choices]
  460. result = '{%s}' % ','.join(choice_strs)
  461. else:
  462. result = default_metavar
  463. def format(tuple_size):
  464. if isinstance(result, tuple):
  465. return result
  466. else:
  467. return (result, ) * tuple_size
  468. return format
  469. def _format_args(self, action, default_metavar):
  470. get_metavar = self._metavar_formatter(action, default_metavar)
  471. if action.nargs is None:
  472. result = '%s' % get_metavar(1)
  473. elif action.nargs == OPTIONAL:
  474. result = '[%s]' % get_metavar(1)
  475. elif action.nargs == ZERO_OR_MORE:
  476. result = '[%s [%s ...]]' % get_metavar(2)
  477. elif action.nargs == ONE_OR_MORE:
  478. result = '%s [%s ...]' % get_metavar(2)
  479. elif action.nargs == REMAINDER:
  480. result = '...'
  481. elif action.nargs == PARSER:
  482. result = '%s ...' % get_metavar(1)
  483. else:
  484. formats = ['%s' for _ in range(action.nargs)]
  485. result = ' '.join(formats) % get_metavar(action.nargs)
  486. return result
  487. def _expand_help(self, action):
  488. params = dict(vars(action), prog=self._prog)
  489. for name in list(params):
  490. if params[name] is SUPPRESS:
  491. del params[name]
  492. for name in list(params):
  493. if hasattr(params[name], '__name__'):
  494. params[name] = params[name].__name__
  495. if params.get('choices') is not None:
  496. choices_str = ', '.join([str(c) for c in params['choices']])
  497. params['choices'] = choices_str
  498. return self._get_help_string(action) % params
  499. def _iter_indented_subactions(self, action):
  500. try:
  501. get_subactions = action._get_subactions
  502. except AttributeError:
  503. pass
  504. else:
  505. self._indent()
  506. yield from get_subactions()
  507. self._dedent()
  508. def _split_lines(self, text, width):
  509. text = self._whitespace_matcher.sub(' ', text).strip()
  510. return _textwrap.wrap(text, width)
  511. def _fill_text(self, text, width, indent):
  512. text = self._whitespace_matcher.sub(' ', text).strip()
  513. return _textwrap.fill(text, width, initial_indent=indent,
  514. subsequent_indent=indent)
  515. def _get_help_string(self, action):
  516. return action.help
  517. def _get_default_metavar_for_optional(self, action):
  518. return action.dest.upper()
  519. def _get_default_metavar_for_positional(self, action):
  520. return action.dest
  521. class RawDescriptionHelpFormatter(HelpFormatter):
  522. """Help message formatter which retains any formatting in descriptions.
  523. Only the name of this class is considered a public API. All the methods
  524. provided by the class are considered an implementation detail.
  525. """
  526. def _fill_text(self, text, width, indent):
  527. return ''.join(indent + line for line in text.splitlines(keepends=True))
  528. class RawTextHelpFormatter(RawDescriptionHelpFormatter):
  529. """Help message formatter which retains formatting of all help text.
  530. Only the name of this class is considered a public API. All the methods
  531. provided by the class are considered an implementation detail.
  532. """
  533. def _split_lines(self, text, width):
  534. return text.splitlines()
  535. class ArgumentDefaultsHelpFormatter(HelpFormatter):
  536. """Help message formatter which adds default values to argument help.
  537. Only the name of this class is considered a public API. All the methods
  538. provided by the class are considered an implementation detail.
  539. """
  540. def _get_help_string(self, action):
  541. help = action.help
  542. if '%(default)' not in action.help:
  543. if action.default is not SUPPRESS:
  544. defaulting_nargs = [OPTIONAL, ZERO_OR_MORE]
  545. if action.option_strings or action.nargs in defaulting_nargs:
  546. help += ' (default: %(default)s)'
  547. return help
  548. class MetavarTypeHelpFormatter(HelpFormatter):
  549. """Help message formatter which uses the argument 'type' as the default
  550. metavar value (instead of the argument 'dest')
  551. Only the name of this class is considered a public API. All the methods
  552. provided by the class are considered an implementation detail.
  553. """
  554. def _get_default_metavar_for_optional(self, action):
  555. return action.type.__name__
  556. def _get_default_metavar_for_positional(self, action):
  557. return action.type.__name__
  558. # =====================
  559. # Options and Arguments
  560. # =====================
  561. def _get_action_name(argument):
  562. if argument is None:
  563. return None
  564. elif argument.option_strings:
  565. return '/'.join(argument.option_strings)
  566. elif argument.metavar not in (None, SUPPRESS):
  567. return argument.metavar
  568. elif argument.dest not in (None, SUPPRESS):
  569. return argument.dest
  570. else:
  571. return None
  572. class ArgumentError(Exception):
  573. """An error from creating or using an argument (optional or positional).
  574. The string value of this exception is the message, augmented with
  575. information about the argument that caused it.
  576. """
  577. def __init__(self, argument, message):
  578. self.argument_name = _get_action_name(argument)
  579. self.message = message
  580. def __str__(self):
  581. if self.argument_name is None:
  582. format = '%(message)s'
  583. else:
  584. format = 'argument %(argument_name)s: %(message)s'
  585. return format % dict(message=self.message,
  586. argument_name=self.argument_name)
  587. class ArgumentTypeError(Exception):
  588. """An error from trying to convert a command line string to a type."""
  589. pass
  590. # ==============
  591. # Action classes
  592. # ==============
  593. class Action(_AttributeHolder):
  594. """Information about how to convert command line strings to Python objects.
  595. Action objects are used by an ArgumentParser to represent the information
  596. needed to parse a single argument from one or more strings from the
  597. command line. The keyword arguments to the Action constructor are also
  598. all attributes of Action instances.
  599. Keyword Arguments:
  600. - option_strings -- A list of command-line option strings which
  601. should be associated with this action.
  602. - dest -- The name of the attribute to hold the created object(s)
  603. - nargs -- The number of command-line arguments that should be
  604. consumed. By default, one argument will be consumed and a single
  605. value will be produced. Other values include:
  606. - N (an integer) consumes N arguments (and produces a list)
  607. - '?' consumes zero or one arguments
  608. - '*' consumes zero or more arguments (and produces a list)
  609. - '+' consumes one or more arguments (and produces a list)
  610. Note that the difference between the default and nargs=1 is that
  611. with the default, a single value will be produced, while with
  612. nargs=1, a list containing a single value will be produced.
  613. - const -- The value to be produced if the option is specified and the
  614. option uses an action that takes no values.
  615. - default -- The value to be produced if the option is not specified.
  616. - type -- A callable that accepts a single string argument, and
  617. returns the converted value. The standard Python types str, int,
  618. float, and complex are useful examples of such callables. If None,
  619. str is used.
  620. - choices -- A container of values that should be allowed. If not None,
  621. after a command-line argument has been converted to the appropriate
  622. type, an exception will be raised if it is not a member of this
  623. collection.
  624. - required -- True if the action must always be specified at the
  625. command line. This is only meaningful for optional command-line
  626. arguments.
  627. - help -- The help string describing the argument.
  628. - metavar -- The name to be used for the option's argument with the
  629. help string. If None, the 'dest' value will be used as the name.
  630. """
  631. def __init__(self,
  632. option_strings,
  633. dest,
  634. nargs=None,
  635. const=None,
  636. default=None,
  637. type=None,
  638. choices=None,
  639. required=False,
  640. help=None,
  641. metavar=None):
  642. self.option_strings = option_strings
  643. self.dest = dest
  644. self.nargs = nargs
  645. self.const = const
  646. self.default = default
  647. self.type = type
  648. self.choices = choices
  649. self.required = required
  650. self.help = help
  651. self.metavar = metavar
  652. def _get_kwargs(self):
  653. names = [
  654. 'option_strings',
  655. 'dest',
  656. 'nargs',
  657. 'const',
  658. 'default',
  659. 'type',
  660. 'choices',
  661. 'help',
  662. 'metavar',
  663. ]
  664. return [(name, getattr(self, name)) for name in names]
  665. def __call__(self, parser, namespace, values, option_string=None):
  666. raise NotImplementedError(_('.__call__() not defined'))
  667. class _StoreAction(Action):
  668. def __init__(self,
  669. option_strings,
  670. dest,
  671. nargs=None,
  672. const=None,
  673. default=None,
  674. type=None,
  675. choices=None,
  676. required=False,
  677. help=None,
  678. metavar=None):
  679. if nargs == 0:
  680. raise ValueError('nargs for store actions must be > 0; if you '
  681. 'have nothing to store, actions such as store '
  682. 'true or store const may be more appropriate')
  683. if const is not None and nargs != OPTIONAL:
  684. raise ValueError('nargs must be %r to supply const' % OPTIONAL)
  685. super(_StoreAction, self).__init__(
  686. option_strings=option_strings,
  687. dest=dest,
  688. nargs=nargs,
  689. const=const,
  690. default=default,
  691. type=type,
  692. choices=choices,
  693. required=required,
  694. help=help,
  695. metavar=metavar)
  696. def __call__(self, parser, namespace, values, option_string=None):
  697. setattr(namespace, self.dest, values)
  698. class _StoreConstAction(Action):
  699. def __init__(self,
  700. option_strings,
  701. dest,
  702. const,
  703. default=None,
  704. required=False,
  705. help=None,
  706. metavar=None):
  707. super(_StoreConstAction, self).__init__(
  708. option_strings=option_strings,
  709. dest=dest,
  710. nargs=0,
  711. const=const,
  712. default=default,
  713. required=required,
  714. help=help)
  715. def __call__(self, parser, namespace, values, option_string=None):
  716. setattr(namespace, self.dest, self.const)
  717. class _StoreTrueAction(_StoreConstAction):
  718. def __init__(self,
  719. option_strings,
  720. dest,
  721. default=False,
  722. required=False,
  723. help=None):
  724. super(_StoreTrueAction, self).__init__(
  725. option_strings=option_strings,
  726. dest=dest,
  727. const=True,
  728. default=default,
  729. required=required,
  730. help=help)
  731. class _StoreFalseAction(_StoreConstAction):
  732. def __init__(self,
  733. option_strings,
  734. dest,
  735. default=True,
  736. required=False,
  737. help=None):
  738. super(_StoreFalseAction, self).__init__(
  739. option_strings=option_strings,
  740. dest=dest,
  741. const=False,
  742. default=default,
  743. required=required,
  744. help=help)
  745. class _AppendAction(Action):
  746. def __init__(self,
  747. option_strings,
  748. dest,
  749. nargs=None,
  750. const=None,
  751. default=None,
  752. type=None,
  753. choices=None,
  754. required=False,
  755. help=None,
  756. metavar=None):
  757. if nargs == 0:
  758. raise ValueError('nargs for append actions must be > 0; if arg '
  759. 'strings are not supplying the value to append, '
  760. 'the append const action may be more appropriate')
  761. if const is not None and nargs != OPTIONAL:
  762. raise ValueError('nargs must be %r to supply const' % OPTIONAL)
  763. super(_AppendAction, self).__init__(
  764. option_strings=option_strings,
  765. dest=dest,
  766. nargs=nargs,
  767. const=const,
  768. default=default,
  769. type=type,
  770. choices=choices,
  771. required=required,
  772. help=help,
  773. metavar=metavar)
  774. def __call__(self, parser, namespace, values, option_string=None):
  775. items = _copy.copy(_ensure_value(namespace, self.dest, []))
  776. items.append(values)
  777. setattr(namespace, self.dest, items)
  778. class _AppendConstAction(Action):
  779. def __init__(self,
  780. option_strings,
  781. dest,
  782. const,
  783. default=None,
  784. required=False,
  785. help=None,
  786. metavar=None):
  787. super(_AppendConstAction, self).__init__(
  788. option_strings=option_strings,
  789. dest=dest,
  790. nargs=0,
  791. const=const,
  792. default=default,
  793. required=required,
  794. help=help,
  795. metavar=metavar)
  796. def __call__(self, parser, namespace, values, option_string=None):
  797. items = _copy.copy(_ensure_value(namespace, self.dest, []))
  798. items.append(self.const)
  799. setattr(namespace, self.dest, items)
  800. class _CountAction(Action):
  801. def __init__(self,
  802. option_strings,
  803. dest,
  804. default=None,
  805. required=False,
  806. help=None):
  807. super(_CountAction, self).__init__(
  808. option_strings=option_strings,
  809. dest=dest,
  810. nargs=0,
  811. default=default,
  812. required=required,
  813. help=help)
  814. def __call__(self, parser, namespace, values, option_string=None):
  815. new_count = _ensure_value(namespace, self.dest, 0) + 1
  816. setattr(namespace, self.dest, new_count)
  817. class _HelpAction(Action):
  818. def __init__(self,
  819. option_strings,
  820. dest=SUPPRESS,
  821. default=SUPPRESS,
  822. help=None):
  823. super(_HelpAction, self).__init__(
  824. option_strings=option_strings,
  825. dest=dest,
  826. default=default,
  827. nargs=0,
  828. help=help)
  829. def __call__(self, parser, namespace, values, option_string=None):
  830. parser.print_help()
  831. parser.exit()
  832. class _VersionAction(Action):
  833. def __init__(self,
  834. option_strings,
  835. version=None,
  836. dest=SUPPRESS,
  837. default=SUPPRESS,
  838. help="show program's version number and exit"):
  839. super(_VersionAction, self).__init__(
  840. option_strings=option_strings,
  841. dest=dest,
  842. default=default,
  843. nargs=0,
  844. help=help)
  845. self.version = version
  846. def __call__(self, parser, namespace, values, option_string=None):
  847. version = self.version
  848. if version is None:
  849. version = parser.version
  850. formatter = parser._get_formatter()
  851. formatter.add_text(version)
  852. parser._print_message(formatter.format_help(), _sys.stdout)
  853. parser.exit()
  854. class _SubParsersAction(Action):
  855. class _ChoicesPseudoAction(Action):
  856. def __init__(self, name, aliases, help):
  857. metavar = dest = name
  858. if aliases:
  859. metavar += ' (%s)' % ', '.join(aliases)
  860. sup = super(_SubParsersAction._ChoicesPseudoAction, self)
  861. sup.__init__(option_strings=[], dest=dest, help=help,
  862. metavar=metavar)
  863. def __init__(self,
  864. option_strings,
  865. prog,
  866. parser_class,
  867. dest=SUPPRESS,
  868. help=None,
  869. metavar=None):
  870. self._prog_prefix = prog
  871. self._parser_class = parser_class
  872. self._name_parser_map = _collections.OrderedDict()
  873. self._choices_actions = []
  874. super(_SubParsersAction, self).__init__(
  875. option_strings=option_strings,
  876. dest=dest,
  877. nargs=PARSER,
  878. choices=self._name_parser_map,
  879. help=help,
  880. metavar=metavar)
  881. def add_parser(self, name, **kwargs):
  882. # set prog from the existing prefix
  883. if kwargs.get('prog') is None:
  884. kwargs['prog'] = '%s %s' % (self._prog_prefix, name)
  885. aliases = kwargs.pop('aliases', ())
  886. # create a pseudo-action to hold the choice help
  887. if 'help' in kwargs:
  888. help = kwargs.pop('help')
  889. choice_action = self._ChoicesPseudoAction(name, aliases, help)
  890. self._choices_actions.append(choice_action)
  891. # create the parser and add it to the map
  892. parser = self._parser_class(**kwargs)
  893. self._name_parser_map[name] = parser
  894. # make parser available under aliases also
  895. for alias in aliases:
  896. self._name_parser_map[alias] = parser
  897. return parser
  898. def _get_subactions(self):
  899. return self._choices_actions
  900. def __call__(self, parser, namespace, values, option_string=None):
  901. parser_name = values[0]
  902. arg_strings = values[1:]
  903. # set the parser name if requested
  904. if self.dest is not SUPPRESS:
  905. setattr(namespace, self.dest, parser_name)
  906. # select the parser
  907. try:
  908. parser = self._name_parser_map[parser_name]
  909. except KeyError:
  910. args = {'parser_name': parser_name,
  911. 'choices': ', '.join(self._name_parser_map)}
  912. msg = _('unknown parser %(parser_name)r (choices: %(choices)s)') % args
  913. raise ArgumentError(self, msg)
  914. # parse all the remaining options into the namespace
  915. # store any unrecognized options on the object, so that the top
  916. # level parser can decide what to do with them
  917. # In case this subparser defines new defaults, we parse them
  918. # in a new namespace object and then update the original
  919. # namespace for the relevant parts.
  920. subnamespace, arg_strings = parser.parse_known_args(arg_strings, None)
  921. for key, value in vars(subnamespace).items():
  922. setattr(namespace, key, value)
  923. if arg_strings:
  924. vars(namespace).setdefault(_UNRECOGNIZED_ARGS_ATTR, [])
  925. getattr(namespace, _UNRECOGNIZED_ARGS_ATTR).extend(arg_strings)
  926. # ==============
  927. # Type classes
  928. # ==============
  929. class FileType(object):
  930. """Factory for creating file object types
  931. Instances of FileType are typically passed as type= arguments to the
  932. ArgumentParser add_argument() method.
  933. Keyword Arguments:
  934. - mode -- A string indicating how the file is to be opened. Accepts the
  935. same values as the builtin open() function.
  936. - bufsize -- The file's desired buffer size. Accepts the same values as
  937. the builtin open() function.
  938. - encoding -- The file's encoding. Accepts the same values as the
  939. builtin open() function.
  940. - errors -- A string indicating how encoding and decoding errors are to
  941. be handled. Accepts the same value as the builtin open() function.
  942. """
  943. def __init__(self, mode='r', bufsize=-1, encoding=None, errors=None):
  944. self._mode = mode
  945. self._bufsize = bufsize
  946. self._encoding = encoding
  947. self._errors = errors
  948. def __call__(self, string):
  949. # the special argument "-" means sys.std{in,out}
  950. if string == '-':
  951. if 'r' in self._mode:
  952. return _sys.stdin
  953. elif 'w' in self._mode:
  954. return _sys.stdout
  955. else:
  956. msg = _('argument "-" with mode %r') % self._mode
  957. raise ValueError(msg)
  958. # all other arguments are used as file names
  959. try:
  960. return open(string, self._mode, self._bufsize, self._encoding,
  961. self._errors)
  962. except OSError as e:
  963. message = _("can't open '%s': %s")
  964. raise ArgumentTypeError(message % (string, e))
  965. def __repr__(self):
  966. args = self._mode, self._bufsize
  967. kwargs = [('encoding', self._encoding), ('errors', self._errors)]
  968. args_str = ', '.join([repr(arg) for arg in args if arg != -1] +
  969. ['%s=%r' % (kw, arg) for kw, arg in kwargs
  970. if arg is not None])
  971. return '%s(%s)' % (type(self).__name__, args_str)
  972. # ===========================
  973. # Optional and Positional Parsing
  974. # ===========================
  975. class Namespace(_AttributeHolder):
  976. """Simple object for storing attributes.
  977. Implements equality by attribute names and values, and provides a simple
  978. string representation.
  979. """
  980. def __init__(self, **kwargs):
  981. for name in kwargs:
  982. setattr(self, name, kwargs[name])
  983. def __eq__(self, other):
  984. if not isinstance(other, Namespace):
  985. return NotImplemented
  986. return vars(self) == vars(other)
  987. def __contains__(self, key):
  988. return key in self.__dict__
  989. class _ActionsContainer(object):
  990. def __init__(self,
  991. description,
  992. prefix_chars,
  993. argument_default,
  994. conflict_handler):
  995. super(_ActionsContainer, self).__init__()
  996. self.description = description
  997. self.argument_default = argument_default
  998. self.prefix_chars = prefix_chars
  999. self.conflict_handler = conflict_handler
  1000. # set up registries
  1001. self._registries = {}
  1002. # register actions
  1003. self.register('action', None, _StoreAction)
  1004. self.register('action', 'store', _StoreAction)
  1005. self.register('action', 'store_const', _StoreConstAction)
  1006. self.register('action', 'store_true', _StoreTrueAction)
  1007. self.register('action', 'store_false', _StoreFalseAction)
  1008. self.register('action', 'append', _AppendAction)
  1009. self.register('action', 'append_const', _AppendConstAction)
  1010. self.register('action', 'count', _CountAction)
  1011. self.register('action', 'help', _HelpAction)
  1012. self.register('action', 'version', _VersionAction)
  1013. self.register('action', 'parsers', _SubParsersAction)
  1014. # raise an exception if the conflict handler is invalid
  1015. self._get_handler()
  1016. # action storage
  1017. self._actions = []
  1018. self._option_string_actions = {}
  1019. # groups
  1020. self._action_groups = []
  1021. self._mutually_exclusive_groups = []
  1022. # defaults storage
  1023. self._defaults = {}
  1024. # determines whether an "option" looks like a negative number
  1025. self._negative_number_matcher = _re.compile(r'^-\d+$|^-\d*\.\d+$')
  1026. # whether or not there are any optionals that look like negative
  1027. # numbers -- uses a list so it can be shared and edited
  1028. self._has_negative_number_optionals = []
  1029. # ====================
  1030. # Registration methods
  1031. # ====================
  1032. def register(self, registry_name, value, object):
  1033. registry = self._registries.setdefault(registry_name, {})
  1034. registry[value] = object
  1035. def _registry_get(self, registry_name, value, default=None):
  1036. return self._registries[registry_name].get(value, default)
  1037. # ==================================
  1038. # Namespace default accessor methods
  1039. # ==================================
  1040. def set_defaults(self, **kwargs):
  1041. self._defaults.update(kwargs)
  1042. # if these defaults match any existing arguments, replace
  1043. # the previous default on the object with the new one
  1044. for action in self._actions:
  1045. if action.dest in kwargs:
  1046. action.default = kwargs[action.dest]
  1047. def get_default(self, dest):
  1048. for action in self._actions:
  1049. if action.dest == dest and action.default is not None:
  1050. return action.default
  1051. return self._defaults.get(dest, None)
  1052. # =======================
  1053. # Adding argument actions
  1054. # =======================
  1055. def add_argument(self, *args, **kwargs):
  1056. """
  1057. add_argument(dest, ..., name=value, ...)
  1058. add_argument(option_string, option_string, ..., name=value, ...)
  1059. """
  1060. # if no positional args are supplied or only one is supplied and
  1061. # it doesn't look like an option string, parse a positional
  1062. # argument
  1063. chars = self.prefix_chars
  1064. if not args or len(args) == 1 and args[0][0] not in chars:
  1065. if args and 'dest' in kwargs:
  1066. raise ValueError('dest supplied twice for positional argument')
  1067. kwargs = self._get_positional_kwargs(*args, **kwargs)
  1068. # otherwise, we're adding an optional argument
  1069. else:
  1070. kwargs = self._get_optional_kwargs(*args, **kwargs)
  1071. # if no default was supplied, use the parser-level default
  1072. if 'default' not in kwargs:
  1073. dest = kwargs['dest']
  1074. if dest in self._defaults:
  1075. kwargs['default'] = self._defaults[dest]
  1076. elif self.argument_default is not None:
  1077. kwargs['default'] = self.argument_default
  1078. # create the action object, and add it to the parser
  1079. action_class = self._pop_action_class(kwargs)
  1080. if not callable(action_class):
  1081. raise ValueError('unknown action "%s"' % (action_class,))
  1082. action = action_class(**kwargs)
  1083. # raise an error if the action type is not callable
  1084. type_func = self._registry_get('type', action.type, action.type)
  1085. if not callable(type_func):
  1086. raise ValueError('%r is not callable' % (type_func,))
  1087. # raise an error if the metavar does not match the type
  1088. if hasattr(self, "_get_formatter"):
  1089. try:
  1090. self._get_formatter()._format_args(action, None)
  1091. except TypeError:
  1092. raise ValueError("length of metavar tuple does not match nargs")
  1093. return self._add_action(action)
  1094. def add_argument_group(self, *args, **kwargs):
  1095. group = _ArgumentGroup(self, *args, **kwargs)
  1096. self._action_groups.append(group)
  1097. return group
  1098. def add_mutually_exclusive_group(self, **kwargs):
  1099. group = _MutuallyExclusiveGroup(self, **kwargs)
  1100. self._mutually_exclusive_groups.append(group)
  1101. return group
  1102. def _add_action(self, action):
  1103. # resolve any conflicts
  1104. self._check_conflict(action)
  1105. # add to actions list
  1106. self._actions.append(action)
  1107. action.container = self
  1108. # index the action by any option strings it has
  1109. for option_string in action.option_strings:
  1110. self._option_string_actions[option_string] = action
  1111. # set the flag if any option strings look like negative numbers
  1112. for option_string in action.option_strings:
  1113. if self._negative_number_matcher.match(option_string):
  1114. if not self._has_negative_number_optionals:
  1115. self._has_negative_number_optionals.append(True)
  1116. # return the created action
  1117. return action
  1118. def _remove_action(self, action):
  1119. self._actions.remove(action)
  1120. def _add_container_actions(self, container):
  1121. # collect groups by titles
  1122. title_group_map = {}
  1123. for group in self._action_groups:
  1124. if group.title in title_group_map:
  1125. msg = _('cannot merge actions - two groups are named %r')
  1126. raise ValueError(msg % (group.title))
  1127. title_group_map[group.title] = group
  1128. # map each action to its group
  1129. group_map = {}
  1130. for group in container._action_groups:
  1131. # if a group with the title exists, use that, otherwise
  1132. # create a new group matching the container's group
  1133. if group.title not in title_group_map:
  1134. title_group_map[group.title] = self.add_argument_group(
  1135. title=group.title,
  1136. description=group.description,
  1137. conflict_handler=group.conflict_handler)
  1138. # map the actions to their new group
  1139. for action in group._group_actions:
  1140. group_map[action] = title_group_map[group.title]
  1141. # add container's mutually exclusive groups
  1142. # NOTE: if add_mutually_exclusive_group ever gains title= and
  1143. # description= then this code will need to be expanded as above
  1144. for group in container._mutually_exclusive_groups:
  1145. mutex_group = self.add_mutually_exclusive_group(
  1146. required=group.required)
  1147. # map the actions to their new mutex group
  1148. for action in group._group_actions:
  1149. group_map[action] = mutex_group
  1150. # add all actions to this container or their group
  1151. for action in container._actions:
  1152. group_map.get(action, self)._add_action(action)
  1153. def _get_positional_kwargs(self, dest, **kwargs):
  1154. # make sure required is not specified
  1155. if 'required' in kwargs:
  1156. msg = _("'required' is an invalid argument for positionals")
  1157. raise TypeError(msg)
  1158. # mark positional arguments as required if at least one is
  1159. # always required
  1160. if kwargs.get('nargs') not in [OPTIONAL, ZERO_OR_MORE]:
  1161. kwargs['required'] = True
  1162. if kwargs.get('nargs') == ZERO_OR_MORE and 'default' not in kwargs:
  1163. kwargs['required'] = True
  1164. # return the keyword arguments with no option strings
  1165. return dict(kwargs, dest=dest, option_strings=[])
  1166. def _get_optional_kwargs(self, *args, **kwargs):
  1167. # determine short and long option strings
  1168. option_strings = []
  1169. long_option_strings = []
  1170. for option_string in args:
  1171. # error on strings that don't start with an appropriate prefix
  1172. if not option_string[0] in self.prefix_chars:
  1173. args = {'option': option_string,
  1174. 'prefix_chars': self.prefix_chars}
  1175. msg = _('invalid option string %(option)r: '
  1176. 'must start with a character %(prefix_chars)r')
  1177. raise ValueError(msg % args)
  1178. # strings starting with two prefix characters are long options
  1179. option_strings.append(option_string)
  1180. if option_string[0] in self.prefix_chars:
  1181. if len(option_string) > 1:
  1182. if option_string[1] in self.prefix_chars:
  1183. long_option_strings.append(option_string)
  1184. # infer destination, '--foo-bar' -> 'foo_bar' and '-x' -> 'x'
  1185. dest = kwargs.pop('dest', None)
  1186. if dest is None:
  1187. if long_option_strings:
  1188. dest_option_string = long_option_strings[0]
  1189. else:
  1190. dest_option_string = option_strings[0]
  1191. dest = dest_option_string.lstrip(self.prefix_chars)
  1192. if not dest:
  1193. msg = _('dest= is required for options like %r')
  1194. raise ValueError(msg % option_string)
  1195. dest = dest.replace('-', '_')
  1196. # return the updated keyword arguments
  1197. return dict(kwargs, dest=dest, option_strings=option_strings)
  1198. def _pop_action_class(self, kwargs, default=None):
  1199. action = kwargs.pop('action', default)
  1200. return self._registry_get('action', action, action)
  1201. def _get_handler(self):
  1202. # determine function from conflict handler string
  1203. handler_func_name = '_handle_conflict_%s' % self.conflict_handler
  1204. try:
  1205. return getattr(self, handler_func_name)
  1206. except AttributeError:
  1207. msg = _('invalid conflict_resolution value: %r')
  1208. raise ValueError(msg % self.conflict_handler)
  1209. def _check_conflict(self, action):
  1210. # find all options that conflict with this option
  1211. confl_optionals = []
  1212. for option_string in action.option_strings:
  1213. if option_string in self._option_string_actions:
  1214. confl_optional = self._option_string_actions[option_string]
  1215. confl_optionals.append((option_string, confl_optional))
  1216. # resolve any conflicts
  1217. if confl_optionals:
  1218. conflict_handler = self._get_handler()
  1219. conflict_handler(action, confl_optionals)
  1220. def _handle_conflict_error(self, action, conflicting_actions):
  1221. message = ngettext('conflicting option string: %s',
  1222. 'conflicting option strings: %s',
  1223. len(conflicting_actions))
  1224. conflict_string = ', '.join([option_string
  1225. for option_string, action
  1226. in conflicting_actions])
  1227. raise ArgumentError(action, message % conflict_string)
  1228. def _handle_conflict_resolve(self, action, conflicting_actions):
  1229. # remove all conflicting options
  1230. for option_string, action in conflicting_actions:
  1231. # remove the conflicting option
  1232. action.option_strings.remove(option_string)
  1233. self._option_string_actions.pop(option_string, None)
  1234. # if the option now has no option string, remove it from the
  1235. # container holding it
  1236. if not action.option_strings:
  1237. action.container._remove_action(action)
  1238. class _ArgumentGroup(_ActionsContainer):
  1239. def __init__(self, container, title=None, description=None, **kwargs):
  1240. # add any missing keyword arguments by checking the container
  1241. update = kwargs.setdefault
  1242. update('conflict_handler', container.conflict_handler)
  1243. update('prefix_chars', container.prefix_chars)
  1244. update('argument_default', container.argument_default)
  1245. super_init = super(_ArgumentGroup, self).__init__
  1246. super_init(description=description, **kwargs)
  1247. # group attributes
  1248. self.title = title
  1249. self._group_actions = []
  1250. # share most attributes with the container
  1251. self._registries = container._registries
  1252. self._actions = container._actions
  1253. self._option_string_actions = container._option_string_actions
  1254. self._defaults = container._defaults
  1255. self._has_negative_number_optionals = \
  1256. container._has_negative_number_optionals
  1257. self._mutually_exclusive_groups = container._mutually_exclusive_groups
  1258. def _add_action(self, action):
  1259. action = super(_ArgumentGroup, self)._add_action(action)
  1260. self._group_actions.append(action)
  1261. return action
  1262. def _remove_action(self, action):
  1263. super(_ArgumentGroup, self)._remove_action(action)
  1264. self._group_actions.remove(action)
  1265. class _MutuallyExclusiveGroup(_ArgumentGroup):
  1266. def __init__(self, container, required=False):
  1267. super(_MutuallyExclusiveGroup, self).__init__(container)
  1268. self.required = required
  1269. self._container = container
  1270. def _add_action(self, action):
  1271. if action.required:
  1272. msg = _('mutually exclusive arguments must be optional')
  1273. raise ValueError(msg)
  1274. action = self._container._add_action(action)
  1275. self._group_actions.append(action)
  1276. return action
  1277. def _remove_action(self, action):
  1278. self._container._remove_action(action)
  1279. self._group_actions.remove(action)
  1280. class ArgumentParser(_AttributeHolder, _ActionsContainer):
  1281. """Object for parsing command line strings into Python objects.
  1282. Keyword Arguments:
  1283. - prog -- The name of the program (default: sys.argv[0])
  1284. - usage -- A usage message (default: auto-generated from arguments)
  1285. - description -- A description of what the program does
  1286. - epilog -- Text following the argument descriptions
  1287. - parents -- Parsers whose arguments should be copied into this one
  1288. - formatter_class -- HelpFormatter class for printing help messages
  1289. - prefix_chars -- Characters that prefix optional arguments
  1290. - fromfile_prefix_chars -- Characters that prefix files containing
  1291. additional arguments
  1292. - argument_default -- The default value for all arguments
  1293. - conflict_handler -- String indicating how to handle conflicts
  1294. - add_help -- Add a -h/-help option
  1295. - allow_abbrev -- Allow long options to be abbreviated unambiguously
  1296. """
  1297. def __init__(self,
  1298. prog=None,
  1299. usage=None,
  1300. description=None,
  1301. epilog=None,
  1302. parents=[],
  1303. formatter_class=HelpFormatter,
  1304. prefix_chars='-',
  1305. fromfile_prefix_chars=None,
  1306. argument_default=None,
  1307. conflict_handler='error',
  1308. add_help=True,
  1309. allow_abbrev=True):
  1310. superinit = super(ArgumentParser, self).__init__
  1311. superinit(description=description,
  1312. prefix_chars=prefix_chars,
  1313. argument_default=argument_default,
  1314. conflict_handler=conflict_handler)
  1315. # default setting for prog
  1316. if prog is None:
  1317. prog = _os.path.basename(_sys.argv[0])
  1318. self.prog = prog
  1319. self.usage = usage
  1320. self.epilog = epilog
  1321. self.formatter_class = formatter_class
  1322. self.fromfile_prefix_chars = fromfile_prefix_chars
  1323. self.add_help = add_help
  1324. self.allow_abbrev = allow_abbrev
  1325. add_group = self.add_argument_group
  1326. self._positionals = add_group(_('positional arguments'))
  1327. self._optionals = add_group(_('optional arguments'))
  1328. self._subparsers = None
  1329. # register types
  1330. def identity(string):
  1331. return string
  1332. self.register('type', None, identity)
  1333. # add help argument if necessary
  1334. # (using explicit default to override global argument_default)
  1335. default_prefix = '-' if '-' in prefix_chars else prefix_chars[0]
  1336. if self.add_help:
  1337. self.add_argument(
  1338. default_prefix+'h', default_prefix*2+'help',
  1339. action='help', default=SUPPRESS,
  1340. help=_('show this help message and exit'))
  1341. # add parent arguments and defaults
  1342. for parent in parents:
  1343. self._add_container_actions(parent)
  1344. try:
  1345. defaults = parent._defaults
  1346. except AttributeError:
  1347. pass
  1348. else:
  1349. self._defaults.update(defaults)
  1350. # =======================
  1351. # Pretty __repr__ methods
  1352. # =======================
  1353. def _get_kwargs(self):
  1354. names = [
  1355. 'prog',
  1356. 'usage',
  1357. 'description',
  1358. 'formatter_class',
  1359. 'conflict_handler',
  1360. 'add_help',
  1361. ]
  1362. return [(name, getattr(self, name)) for name in names]
  1363. # ==================================
  1364. # Optional/Positional adding methods
  1365. # ==================================
  1366. def add_subparsers(self, **kwargs):
  1367. if self._subparsers is not None:
  1368. self.error(_('cannot have multiple subparser arguments'))
  1369. # add the parser class to the arguments if it's not present
  1370. kwargs.setdefault('parser_class', type(self))
  1371. if 'title' in kwargs or 'description' in kwargs:
  1372. title = _(kwargs.pop('title', 'subcommands'))
  1373. description = _(kwargs.pop('description', None))
  1374. self._subparsers = self.add_argument_group(title, description)
  1375. else:
  1376. self._subparsers = self._positionals
  1377. # prog defaults to the usage message of this parser, skipping
  1378. # optional arguments and with no "usage:" prefix
  1379. if kwargs.get('prog') is None:
  1380. formatter = self._get_formatter()
  1381. positionals = self._get_positional_actions()
  1382. groups = self._mutually_exclusive_groups
  1383. formatter.add_usage(self.usage, positionals, groups, '')
  1384. kwargs['prog'] = formatter.format_help().strip()
  1385. # create the parsers action and add it to the positionals list
  1386. parsers_class = self._pop_action_class(kwargs, 'parsers')
  1387. action = parsers_class(option_strings=[], **kwargs)
  1388. self._subparsers._add_action(action)
  1389. # return the created parsers action
  1390. return action
  1391. def _add_action(self, action):
  1392. if action.option_strings:
  1393. self._optionals._add_action(action)
  1394. else:
  1395. self._positionals._add_action(action)
  1396. return action
  1397. def _get_optional_actions(self):
  1398. return [action
  1399. for action in self._actions
  1400. if action.option_strings]
  1401. def _get_positional_actions(self):
  1402. return [action
  1403. for action in self._actions
  1404. if not action.option_strings]
  1405. # =====================================
  1406. # Command line argument parsing methods
  1407. # =====================================
  1408. def parse_args(self, args=None, namespace=None):
  1409. args, argv = self.parse_known_args(args, namespace)
  1410. if argv:
  1411. msg = _('unrecognized arguments: %s')
  1412. self.error(msg % ' '.join(argv))
  1413. return args
  1414. def parse_known_args(self, args=None, namespace=None):
  1415. if args is None:
  1416. # args default to the system args
  1417. args = _sys.argv[1:]
  1418. else:
  1419. # make sure that args are mutable
  1420. args = list(args)
  1421. # default Namespace built from parser defaults
  1422. if namespace is None:
  1423. namespace = Namespace()
  1424. # add any action defaults that aren't present
  1425. for action in self._actions:
  1426. if action.dest is not SUPPRESS:
  1427. if not hasattr(namespace, action.dest):
  1428. if action.default is not SUPPRESS:
  1429. setattr(namespace, action.dest, action.default)
  1430. # add any parser defaults that aren't present
  1431. for dest in self._defaults:
  1432. if not hasattr(namespace, dest):
  1433. setattr(namespace, dest, self._defaults[dest])
  1434. # parse the arguments and exit if there are any errors
  1435. try:
  1436. namespace, args = self._parse_known_args(args, namespace)
  1437. if hasattr(namespace, _UNRECOGNIZED_ARGS_ATTR):
  1438. args.extend(getattr(namespace, _UNRECOGNIZED_ARGS_ATTR))
  1439. delattr(namespace, _UNRECOGNIZED_ARGS_ATTR)
  1440. return namespace, args
  1441. except ArgumentError:
  1442. err = _sys.exc_info()[1]
  1443. self.error(str(err))
  1444. def _parse_known_args(self, arg_strings, namespace):
  1445. # replace arg strings that are file references
  1446. if self.fromfile_prefix_chars is not None:
  1447. arg_strings = self._read_args_from_files(arg_strings)
  1448. # map all mutually exclusive arguments to the other arguments
  1449. # they can't occur with
  1450. action_conflicts = {}
  1451. for mutex_group in self._mutually_exclusive_groups:
  1452. group_actions = mutex_group._group_actions
  1453. for i, mutex_action in enumerate(mutex_group._group_actions):
  1454. conflicts = action_conflicts.setdefault(mutex_action, [])
  1455. conflicts.extend(group_actions[:i])
  1456. conflicts.extend(group_actions[i + 1:])
  1457. # find all option indices, and determine the arg_string_pattern
  1458. # which has an 'O' if there is an option at an index,
  1459. # an 'A' if there is an argument, or a '-' if there is a '--'
  1460. option_string_indices = {}
  1461. arg_string_pattern_parts = []
  1462. arg_strings_iter = iter(arg_strings)
  1463. for i, arg_string in enumerate(arg_strings_iter):
  1464. # all args after -- are non-options
  1465. if arg_string == '--':
  1466. arg_string_pattern_parts.append('-')
  1467. for arg_string in arg_strings_iter:
  1468. arg_string_pattern_parts.append('A')
  1469. # otherwise, add the arg to the arg strings
  1470. # and note the index if it was an option
  1471. else:
  1472. option_tuple = self._parse_optional(arg_string)
  1473. if option_tuple is None:
  1474. pattern = 'A'
  1475. else:
  1476. option_string_indices[i] = option_tuple
  1477. pattern = 'O'
  1478. arg_string_pattern_parts.append(pattern)
  1479. # join the pieces together to form the pattern
  1480. arg_strings_pattern = ''.join(arg_string_pattern_parts)
  1481. # converts arg strings to the appropriate and then takes the action
  1482. seen_actions = set()
  1483. seen_non_default_actions = set()
  1484. def take_action(action, argument_strings, option_string=None):
  1485. seen_actions.add(action)
  1486. argument_values = self._get_values(action, argument_strings)
  1487. # error if this argument is not allowed with other previously
  1488. # seen arguments, assuming that actions that use the default
  1489. # value don't really count as "present"
  1490. if argument_values is not action.default:
  1491. seen_non_default_actions.add(action)
  1492. for conflict_action in action_conflicts.get(action, []):
  1493. if conflict_action in seen_non_default_actions:
  1494. msg = _('not allowed with argument %s')
  1495. action_name = _get_action_name(conflict_action)
  1496. raise ArgumentError(action, msg % action_name)
  1497. # take the action if we didn't receive a SUPPRESS value
  1498. # (e.g. from a default)
  1499. if argument_values is not SUPPRESS:
  1500. action(self, namespace, argument_values, option_string)
  1501. # function to convert arg_strings into an optional action
  1502. def consume_optional(start_index):
  1503. # get the optional identified at this index
  1504. option_tuple = option_string_indices[start_index]
  1505. action, option_string, explicit_arg = option_tuple
  1506. # identify additional optionals in the same arg string
  1507. # (e.g. -xyz is the same as -x -y -z if no args are required)
  1508. match_argument = self._match_argument
  1509. action_tuples = []
  1510. while True:
  1511. # if we found no optional action, skip it
  1512. if action is None:
  1513. extras.append(arg_strings[start_index])
  1514. return start_index + 1
  1515. # if there is an explicit argument, try to match the
  1516. # optional's string arguments to only this
  1517. if explicit_arg is not None:
  1518. arg_count = match_argument(action, 'A')
  1519. # if the action is a single-dash option and takes no
  1520. # arguments, try to parse more single-dash options out
  1521. # of the tail of the option string
  1522. chars = self.prefix_chars
  1523. if arg_count == 0 and option_string[1] not in chars:
  1524. action_tuples.append((action, [], option_string))
  1525. char = option_string[0]
  1526. option_string = char + explicit_arg[0]
  1527. new_explicit_arg = explicit_arg[1:] or None
  1528. optionals_map = self._option_string_actions
  1529. if option_string in optionals_map:
  1530. action = optionals_map[option_string]
  1531. explicit_arg = new_explicit_arg
  1532. else:
  1533. msg = _('ignored explicit argument %r')
  1534. raise ArgumentError(action, msg % explicit_arg)
  1535. # if the action expect exactly one argument, we've
  1536. # successfully matched the option; exit the loop
  1537. elif arg_count == 1:
  1538. stop = start_index + 1
  1539. args = [explicit_arg]
  1540. action_tuples.append((action, args, option_string))
  1541. break
  1542. # error if a double-dash option did not use the
  1543. # explicit argument
  1544. else:
  1545. msg = _('ignored explicit argument %r')
  1546. raise ArgumentError(action, msg % explicit_arg)
  1547. # if there is no explicit argument, try to match the
  1548. # optional's string arguments with the following strings
  1549. # if successful, exit the loop
  1550. else:
  1551. start = start_index + 1
  1552. selected_patterns = arg_strings_pattern[start:]
  1553. arg_count = match_argument(action, selected_patterns)
  1554. stop = start + arg_count
  1555. args = arg_strings[start:stop]
  1556. action_tuples.append((action, args, option_string))
  1557. break
  1558. # add the Optional to the list and return the index at which
  1559. # the Optional's string args stopped
  1560. assert action_tuples
  1561. for action, args, option_string in action_tuples:
  1562. take_action(action, args, option_string)
  1563. return stop
  1564. # the list of Positionals left to be parsed; this is modified
  1565. # by consume_positionals()
  1566. positionals = self._get_positional_actions()
  1567. # function to convert arg_strings into positional actions
  1568. def consume_positionals(start_index):
  1569. # match as many Positionals as possible
  1570. match_partial = self._match_arguments_partial
  1571. selected_pattern = arg_strings_pattern[start_index:]
  1572. arg_counts = match_partial(positionals, selected_pattern)
  1573. # slice off the appropriate arg strings for each Positional
  1574. # and add the Positional and its args to the list
  1575. for action, arg_count in zip(positionals, arg_counts):
  1576. args = arg_strings[start_index: start_index + arg_count]
  1577. start_index += arg_count
  1578. take_action(action, args)
  1579. # slice off the Positionals that we just parsed and return the
  1580. # index at which the Positionals' string args stopped
  1581. positionals[:] = positionals[len(arg_counts):]
  1582. return start_index
  1583. # consume Positionals and Optionals alternately, until we have
  1584. # passed the last option string
  1585. extras = []
  1586. start_index = 0
  1587. if option_string_indices:
  1588. max_option_string_index = max(option_string_indices)
  1589. else:
  1590. max_option_string_index = -1
  1591. while start_index <= max_option_string_index:
  1592. # consume any Positionals preceding the next option
  1593. next_option_string_index = min([
  1594. index
  1595. for index in option_string_indices
  1596. if index >= start_index])
  1597. if start_index != next_option_string_index:
  1598. positionals_end_index = consume_positionals(start_index)
  1599. # only try to parse the next optional if we didn't consume
  1600. # the option string during the positionals parsing
  1601. if positionals_end_index > start_index:
  1602. start_index = positionals_end_index
  1603. continue
  1604. else:
  1605. start_index = positionals_end_index
  1606. # if we consumed all the positionals we could and we're not
  1607. # at the index of an option string, there were extra arguments
  1608. if start_index not in option_string_indices:
  1609. strings = arg_strings[start_index:next_option_string_index]
  1610. extras.extend(strings)
  1611. start_index = next_option_string_index
  1612. # consume the next optional and any arguments for it
  1613. start_index = consume_optional(start_index)
  1614. # consume any positionals following the last Optional
  1615. stop_index = consume_positionals(start_index)
  1616. # if we didn't consume all the argument strings, there were extras
  1617. extras.extend(arg_strings[stop_index:])
  1618. # make sure all required actions were present and also convert
  1619. # action defaults which were not given as arguments
  1620. required_actions = []
  1621. for action in self._actions:
  1622. if action not in seen_actions:
  1623. if action.required:
  1624. required_actions.append(_get_action_name(action))
  1625. else:
  1626. # Convert action default now instead of doing it before
  1627. # parsing arguments to avoid calling convert functions
  1628. # twice (which may fail) if the argument was given, but
  1629. # only if it was defined already in the namespace
  1630. if (action.default is not None and
  1631. isinstance(action.default, str) and
  1632. hasattr(namespace, action.dest) and
  1633. action.default is getattr(namespace, action.dest)):
  1634. setattr(namespace, action.dest,
  1635. self._get_value(action, action.default))
  1636. if required_actions:
  1637. self.error(_('the following arguments are required: %s') %
  1638. ', '.join(required_actions))
  1639. # make sure all required groups had one option present
  1640. for group in self._mutually_exclusive_groups:
  1641. if group.required:
  1642. for action in group._group_actions:
  1643. if action in seen_non_default_actions:
  1644. break
  1645. # if no actions were used, report the error
  1646. else:
  1647. names = [_get_action_name(action)
  1648. for action in group._group_actions
  1649. if action.help is not SUPPRESS]
  1650. msg = _('one of the arguments %s is required')
  1651. self.error(msg % ' '.join(names))
  1652. # return the updated namespace and the extra arguments
  1653. return namespace, extras
  1654. def _read_args_from_files(self, arg_strings):
  1655. # expand arguments referencing files
  1656. new_arg_strings = []
  1657. for arg_string in arg_strings:
  1658. # for regular arguments, just add them back into the list
  1659. if not arg_string or arg_string[0] not in self.fromfile_prefix_chars:
  1660. new_arg_strings.append(arg_string)
  1661. # replace arguments referencing files with the file content
  1662. else:
  1663. try:
  1664. with open(arg_string[1:]) as args_file:
  1665. arg_strings = []
  1666. for arg_line in args_file.read().splitlines():
  1667. for arg in self.convert_arg_line_to_args(arg_line):
  1668. arg_strings.append(arg)
  1669. arg_strings = self._read_args_from_files(arg_strings)
  1670. new_arg_strings.extend(arg_strings)
  1671. except OSError:
  1672. err = _sys.exc_info()[1]
  1673. self.error(str(err))
  1674. # return the modified argument list
  1675. return new_arg_strings
  1676. def convert_arg_line_to_args(self, arg_line):
  1677. return [arg_line]
  1678. def _match_argument(self, action, arg_strings_pattern):
  1679. # match the pattern for this action to the arg strings
  1680. nargs_pattern = self._get_nargs_pattern(action)
  1681. match = _re.match(nargs_pattern, arg_strings_pattern)
  1682. # raise an exception if we weren't able to find a match
  1683. if match is None:
  1684. nargs_errors = {
  1685. None: _('expected one argument'),
  1686. OPTIONAL: _('expected at most one argument'),
  1687. ONE_OR_MORE: _('expected at least one argument'),
  1688. }
  1689. default = ngettext('expected %s argument',
  1690. 'expected %s arguments',
  1691. action.nargs) % action.nargs
  1692. msg = nargs_errors.get(action.nargs, default)
  1693. raise ArgumentError(action, msg)
  1694. # return the number of arguments matched
  1695. return len(match.group(1))
  1696. def _match_arguments_partial(self, actions, arg_strings_pattern):
  1697. # progressively shorten the actions list by slicing off the
  1698. # final actions until we find a match
  1699. result = []
  1700. for i in range(len(actions), 0, -1):
  1701. actions_slice = actions[:i]
  1702. pattern = ''.join([self._get_nargs_pattern(action)
  1703. for action in actions_slice])
  1704. match = _re.match(pattern, arg_strings_pattern)
  1705. if match is not None:
  1706. result.extend([len(string) for string in match.groups()])
  1707. break
  1708. # return the list of arg string counts
  1709. return result
  1710. def _parse_optional(self, arg_string):
  1711. # if it's an empty string, it was meant to be a positional
  1712. if not arg_string:
  1713. return None
  1714. # if it doesn't start with a prefix, it was meant to be positional
  1715. if not arg_string[0] in self.prefix_chars:
  1716. return None
  1717. # if the option string is present in the parser, return the action
  1718. if arg_string in self._option_string_actions:
  1719. action = self._option_string_actions[arg_string]
  1720. return action, arg_string, None
  1721. # if it's just a single character, it was meant to be positional
  1722. if len(arg_string) == 1:
  1723. return None
  1724. # if the option string before the "=" is present, return the action
  1725. if '=' in arg_string:
  1726. option_string, explicit_arg = arg_string.split('=', 1)
  1727. if option_string in self._option_string_actions:
  1728. action = self._option_string_actions[option_string]
  1729. return action, option_string, explicit_arg
  1730. if self.allow_abbrev:
  1731. # search through all possible prefixes of the option string
  1732. # and all actions in the parser for possible interpretations
  1733. option_tuples = self._get_option_tuples(arg_string)
  1734. # if multiple actions match, the option string was ambiguous
  1735. if len(option_tuples) > 1:
  1736. options = ', '.join([option_string
  1737. for action, option_string, explicit_arg in option_tuples])
  1738. args = {'option': arg_string, 'matches': options}
  1739. msg = _('ambiguous option: %(option)s could match %(matches)s')
  1740. self.error(msg % args)
  1741. # if exactly one action matched, this segmentation is good,
  1742. # so return the parsed action
  1743. elif len(option_tuples) == 1:
  1744. option_tuple, = option_tuples
  1745. return option_tuple
  1746. # if it was not found as an option, but it looks like a negative
  1747. # number, it was meant to be positional
  1748. # unless there are negative-number-like options
  1749. if self._negative_number_matcher.match(arg_string):
  1750. if not self._has_negative_number_optionals:
  1751. return None
  1752. # if it contains a space, it was meant to be a positional
  1753. if ' ' in arg_string:
  1754. return None
  1755. # it was meant to be an optional but there is no such option
  1756. # in this parser (though it might be a valid option in a subparser)
  1757. return None, arg_string, None
  1758. def _get_option_tuples(self, option_string):
  1759. result = []
  1760. # option strings starting with two prefix characters are only
  1761. # split at the '='
  1762. chars = self.prefix_chars
  1763. if option_string[0] in chars and option_string[1] in chars:
  1764. if '=' in option_string:
  1765. option_prefix, explicit_arg = option_string.split('=', 1)
  1766. else:
  1767. option_prefix = option_string
  1768. explicit_arg = None
  1769. for option_string in self._option_string_actions:
  1770. if option_string.startswith(option_prefix):
  1771. action = self._option_string_actions[option_string]
  1772. tup = action, option_string, explicit_arg
  1773. result.append(tup)
  1774. # single character options can be concatenated with their arguments
  1775. # but multiple character options always have to have their argument
  1776. # separate
  1777. elif option_string[0] in chars and option_string[1] not in chars:
  1778. option_prefix = option_string
  1779. explicit_arg = None
  1780. short_option_prefix = option_string[:2]
  1781. short_explicit_arg = option_string[2:]
  1782. for option_string in self._option_string_actions:
  1783. if option_string == short_option_prefix:
  1784. action = self._option_string_actions[option_string]
  1785. tup = action, option_string, short_explicit_arg
  1786. result.append(tup)
  1787. elif option_string.startswith(option_prefix):
  1788. action = self._option_string_actions[option_string]
  1789. tup = action, option_string, explicit_arg
  1790. result.append(tup)
  1791. # shouldn't ever get here
  1792. else:
  1793. self.error(_('unexpected option string: %s') % option_string)
  1794. # return the collected option tuples
  1795. return result
  1796. def _get_nargs_pattern(self, action):
  1797. # in all examples below, we have to allow for '--' args
  1798. # which are represented as '-' in the pattern
  1799. nargs = action.nargs
  1800. # the default (None) is assumed to be a single argument
  1801. if nargs is None:
  1802. nargs_pattern = '(-*A-*)'
  1803. # allow zero or one arguments
  1804. elif nargs == OPTIONAL:
  1805. nargs_pattern = '(-*A?-*)'
  1806. # allow zero or more arguments
  1807. elif nargs == ZERO_OR_MORE:
  1808. nargs_pattern = '(-*[A-]*)'
  1809. # allow one or more arguments
  1810. elif nargs == ONE_OR_MORE:
  1811. nargs_pattern = '(-*A[A-]*)'
  1812. # allow any number of options or arguments
  1813. elif nargs == REMAINDER:
  1814. nargs_pattern = '([-AO]*)'
  1815. # allow one argument followed by any number of options or arguments
  1816. elif nargs == PARSER:
  1817. nargs_pattern = '(-*A[-AO]*)'
  1818. # all others should be integers
  1819. else:
  1820. nargs_pattern = '(-*%s-*)' % '-*'.join('A' * nargs)
  1821. # if this is an optional action, -- is not allowed
  1822. if action.option_strings:
  1823. nargs_pattern = nargs_pattern.replace('-*', '')
  1824. nargs_pattern = nargs_pattern.replace('-', '')
  1825. # return the pattern
  1826. return nargs_pattern
  1827. # ========================
  1828. # Value conversion methods
  1829. # ========================
  1830. def _get_values(self, action, arg_strings):
  1831. # for everything but PARSER, REMAINDER args, strip out first '--'
  1832. if action.nargs not in [PARSER, REMAINDER]:
  1833. try:
  1834. arg_strings.remove('--')
  1835. except ValueError:
  1836. pass
  1837. # optional argument produces a default when not present
  1838. if not arg_strings and action.nargs == OPTIONAL:
  1839. if action.option_strings:
  1840. value = action.const
  1841. else:
  1842. value = action.default
  1843. if isinstance(value, str):
  1844. value = self._get_value(action, value)
  1845. self._check_value(action, value)
  1846. # when nargs='*' on a positional, if there were no command-line
  1847. # args, use the default if it is anything other than None
  1848. elif (not arg_strings and action.nargs == ZERO_OR_MORE and
  1849. not action.option_strings):
  1850. if action.default is not None:
  1851. value = action.default
  1852. else:
  1853. value = arg_strings
  1854. self._check_value(action, value)
  1855. # single argument or optional argument produces a single value
  1856. elif len(arg_strings) == 1 and action.nargs in [None, OPTIONAL]:
  1857. arg_string, = arg_strings
  1858. value = self._get_value(action, arg_string)
  1859. self._check_value(action, value)
  1860. # REMAINDER arguments convert all values, checking none
  1861. elif action.nargs == REMAINDER:
  1862. value = [self._get_value(action, v) for v in arg_strings]
  1863. # PARSER arguments convert all values, but check only the first
  1864. elif action.nargs == PARSER:
  1865. value = [self._get_value(action, v) for v in arg_strings]
  1866. self._check_value(action, value[0])
  1867. # all other types of nargs produce a list
  1868. else:
  1869. value = [self._get_value(action, v) for v in arg_strings]
  1870. for v in value:
  1871. self._check_value(action, v)
  1872. # return the converted value
  1873. return value
  1874. def _get_value(self, action, arg_string):
  1875. type_func = self._registry_get('type', action.type, action.type)
  1876. if not callable(type_func):
  1877. msg = _('%r is not callable')
  1878. raise ArgumentError(action, msg % type_func)
  1879. # convert the value to the appropriate type
  1880. try:
  1881. result = type_func(arg_string)
  1882. # ArgumentTypeErrors indicate errors
  1883. except ArgumentTypeError:
  1884. name = getattr(action.type, '__name__', repr(action.type))
  1885. msg = str(_sys.exc_info()[1])
  1886. raise ArgumentError(action, msg)
  1887. # TypeErrors or ValueErrors also indicate errors
  1888. except (TypeError, ValueError):
  1889. name = getattr(action.type, '__name__', repr(action.type))
  1890. args = {'type': name, 'value': arg_string}
  1891. msg = _('invalid %(type)s value: %(value)r')
  1892. raise ArgumentError(action, msg % args)
  1893. # return the converted value
  1894. return result
  1895. def _check_value(self, action, value):
  1896. # converted value must be one of the choices (if specified)
  1897. if action.choices is not None and value not in action.choices:
  1898. args = {'value': value,
  1899. 'choices': ', '.join(map(repr, action.choices))}
  1900. msg = _('invalid choice: %(value)r (choose from %(choices)s)')
  1901. raise ArgumentError(action, msg % args)
  1902. # =======================
  1903. # Help-formatting methods
  1904. # =======================
  1905. def format_usage(self):
  1906. formatter = self._get_formatter()
  1907. formatter.add_usage(self.usage, self._actions,
  1908. self._mutually_exclusive_groups)
  1909. return formatter.format_help()
  1910. def format_help(self):
  1911. formatter = self._get_formatter()
  1912. # usage
  1913. formatter.add_usage(self.usage, self._actions,
  1914. self._mutually_exclusive_groups)
  1915. # description
  1916. formatter.add_text(self.description)
  1917. # positionals, optionals and user-defined groups
  1918. for action_group in self._action_groups:
  1919. formatter.start_section(action_group.title)
  1920. formatter.add_text(action_group.description)
  1921. formatter.add_arguments(action_group._group_actions)
  1922. formatter.end_section()
  1923. # epilog
  1924. formatter.add_text(self.epilog)
  1925. # determine help from format above
  1926. return formatter.format_help()
  1927. def _get_formatter(self):
  1928. return self.formatter_class(prog=self.prog)
  1929. # =====================
  1930. # Help-printing methods
  1931. # =====================
  1932. def print_usage(self, file=None):
  1933. if file is None:
  1934. file = _sys.stdout
  1935. self._print_message(self.format_usage(), file)
  1936. def print_help(self, file=None):
  1937. if file is None:
  1938. file = _sys.stdout
  1939. self._print_message(self.format_help(), file)
  1940. def _print_message(self, message, file=None):
  1941. if message:
  1942. if file is None:
  1943. file = _sys.stderr
  1944. file.write(message)
  1945. # ===============
  1946. # Exiting methods
  1947. # ===============
  1948. def exit(self, status=0, message=None):
  1949. if message:
  1950. self._print_message(message, _sys.stderr)
  1951. _sys.exit(status)
  1952. def error(self, message):
  1953. """error(message: string)
  1954. Prints a usage message incorporating the message to stderr and
  1955. exits.
  1956. If you override this in a subclass, it should not return -- it
  1957. should either exit or raise an exception.
  1958. """
  1959. self.print_usage(_sys.stderr)
  1960. args = {'prog': self.prog, 'message': message}
  1961. self.exit(2, _('%(prog)s: error: %(message)s\n') % args)