blob: 2677ef63e9e541f7160b7040655758e2faad3e7c [file] [log] [blame]
Benjamin Peterson2b37fc42010-03-24 22:10:42 +00001# Author: Steven J. Bethard <steven.bethard@gmail.com>.
Raymond Hettinger496058f2019-08-29 21:04:37 -07002# New maintainer as of 29 August 2019: Raymond Hettinger <raymond.hettinger@gmail.com>
Benjamin Peterson698a18a2010-03-02 22:34:37 +00003
4"""Command-line parsing library
5
6This module is an optparse-inspired command-line parsing library that:
7
8 - handles both optional and positional arguments
9 - produces highly informative usage messages
10 - supports parsers that dispatch to sub-parsers
11
12The following is a simple usage example that sums integers from the
13command-line and writes the result to a file::
14
15 parser = argparse.ArgumentParser(
16 description='sum the integers at the command line')
17 parser.add_argument(
18 'integers', metavar='int', nargs='+', type=int,
19 help='an integer to be summed')
20 parser.add_argument(
21 '--log', default=sys.stdout, type=argparse.FileType('w'),
22 help='the file where the sum should be written')
23 args = parser.parse_args()
24 args.log.write('%s' % sum(args.integers))
25 args.log.close()
26
27The module contains the following public classes:
28
29 - ArgumentParser -- The main entry point for command-line parsing. As the
30 example above shows, the add_argument() method is used to populate
31 the parser with actions for optional and positional arguments. Then
32 the parse_args() method is invoked to convert the args at the
33 command-line into an object with attributes.
34
35 - ArgumentError -- The exception raised by ArgumentParser objects when
36 there are errors with the parser's actions. Errors raised while
37 parsing the command-line are caught by ArgumentParser and emitted
38 as command-line messages.
39
40 - FileType -- A factory for defining types of files to be created. As the
41 example above shows, instances of FileType are typically passed as
42 the type= argument of add_argument() calls.
43
44 - Action -- The base class for parser actions. Typically actions are
45 selected by passing strings like 'store_true' or 'append_const' to
46 the action= argument of add_argument(). However, for greater
47 customization of ArgumentParser actions, subclasses of Action may
48 be defined and passed as the action= argument.
49
50 - HelpFormatter, RawDescriptionHelpFormatter, RawTextHelpFormatter,
51 ArgumentDefaultsHelpFormatter -- Formatter classes which
52 may be passed as the formatter_class= argument to the
53 ArgumentParser constructor. HelpFormatter is the default,
54 RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser
55 not to change the formatting for help text, and
56 ArgumentDefaultsHelpFormatter adds information about argument defaults
57 to the help.
58
59All other classes in this module are considered implementation details.
60(Also note that HelpFormatter and RawDescriptionHelpFormatter are only
61considered public as object names -- the API of the formatter objects is
62still considered an implementation detail.)
63"""
64
65__version__ = '1.1'
66__all__ = [
67 'ArgumentParser',
68 'ArgumentError',
Steven Bethard72c55382010-11-01 15:23:12 +000069 'ArgumentTypeError',
Rémi Lapeyre6a517c62019-09-13 12:17:43 +020070 'BooleanOptionalAction',
Benjamin Peterson698a18a2010-03-02 22:34:37 +000071 'FileType',
72 'HelpFormatter',
Steven Bethard72c55382010-11-01 15:23:12 +000073 'ArgumentDefaultsHelpFormatter',
Benjamin Peterson698a18a2010-03-02 22:34:37 +000074 'RawDescriptionHelpFormatter',
75 'RawTextHelpFormatter',
Steven Bethard0331e902011-03-26 14:48:04 +010076 'MetavarTypeHelpFormatter',
Steven Bethard72c55382010-11-01 15:23:12 +000077 'Namespace',
78 'Action',
79 'ONE_OR_MORE',
80 'OPTIONAL',
81 'PARSER',
82 'REMAINDER',
83 'SUPPRESS',
84 'ZERO_OR_MORE',
Benjamin Peterson698a18a2010-03-02 22:34:37 +000085]
86
87
Benjamin Peterson698a18a2010-03-02 22:34:37 +000088import os as _os
89import re as _re
90import sys as _sys
Benjamin Peterson698a18a2010-03-02 22:34:37 +000091
Éric Araujo12159152010-12-04 17:31:49 +000092from gettext import gettext as _, ngettext
Benjamin Peterson698a18a2010-03-02 22:34:37 +000093
Benjamin Peterson698a18a2010-03-02 22:34:37 +000094SUPPRESS = '==SUPPRESS=='
95
96OPTIONAL = '?'
97ZERO_OR_MORE = '*'
98ONE_OR_MORE = '+'
99PARSER = 'A...'
100REMAINDER = '...'
Steven Bethardfca2e8a2010-11-02 12:47:22 +0000101_UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000102
103# =============================
104# Utility functions and classes
105# =============================
106
107class _AttributeHolder(object):
108 """Abstract base class that provides __repr__.
109
110 The __repr__ method returns a string in the format::
111 ClassName(attr=name, attr=name, ...)
112 The attributes are determined either by a class-level attribute,
113 '_kwarg_names', or by inspecting the instance __dict__.
114 """
115
116 def __repr__(self):
117 type_name = type(self).__name__
118 arg_strings = []
Berker Peksag76b17142015-07-29 23:51:47 +0300119 star_args = {}
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000120 for arg in self._get_args():
121 arg_strings.append(repr(arg))
122 for name, value in self._get_kwargs():
Berker Peksag76b17142015-07-29 23:51:47 +0300123 if name.isidentifier():
124 arg_strings.append('%s=%r' % (name, value))
125 else:
126 star_args[name] = value
127 if star_args:
128 arg_strings.append('**%s' % repr(star_args))
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000129 return '%s(%s)' % (type_name, ', '.join(arg_strings))
130
131 def _get_kwargs(self):
Raymond Hettinger96819532020-05-17 18:53:01 -0700132 return list(self.__dict__.items())
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000133
134 def _get_args(self):
135 return []
136
137
Serhiy Storchaka81108372017-09-26 00:55:55 +0300138def _copy_items(items):
139 if items is None:
140 return []
141 # The copy module is used only in the 'append' and 'append_const'
142 # actions, and it is needed only when the default value isn't a list.
143 # Delay its import for speeding up the common case.
144 if type(items) is list:
145 return items[:]
146 import copy
147 return copy.copy(items)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000148
149
150# ===============
151# Formatting Help
152# ===============
153
154class HelpFormatter(object):
155 """Formatter for generating usage messages and argument help strings.
156
157 Only the name of this class is considered a public API. All the methods
158 provided by the class are considered an implementation detail.
159 """
160
161 def __init__(self,
162 prog,
163 indent_increment=2,
164 max_help_position=24,
165 width=None):
166
167 # default setting for width
168 if width is None:
Raymond Hettingerb4e5eea2019-11-21 22:51:45 -0800169 import shutil
170 width = shutil.get_terminal_size().columns
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000171 width -= 2
172
173 self._prog = prog
174 self._indent_increment = indent_increment
Serhiy Storchakaf4511122014-01-09 23:14:27 +0200175 self._max_help_position = min(max_help_position,
176 max(width - 20, indent_increment * 2))
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000177 self._width = width
178
179 self._current_indent = 0
180 self._level = 0
181 self._action_max_length = 0
182
183 self._root_section = self._Section(self, None)
184 self._current_section = self._root_section
185
Xiang Zhang7fe28ad2017-01-22 14:37:22 +0800186 self._whitespace_matcher = _re.compile(r'\s+', _re.ASCII)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000187 self._long_break_matcher = _re.compile(r'\n\n\n+')
188
189 # ===============================
190 # Section and indentation methods
191 # ===============================
192 def _indent(self):
193 self._current_indent += self._indent_increment
194 self._level += 1
195
196 def _dedent(self):
197 self._current_indent -= self._indent_increment
198 assert self._current_indent >= 0, 'Indent decreased below 0.'
199 self._level -= 1
200
201 class _Section(object):
202
203 def __init__(self, formatter, parent, heading=None):
204 self.formatter = formatter
205 self.parent = parent
206 self.heading = heading
207 self.items = []
208
209 def format_help(self):
210 # format the indented section
211 if self.parent is not None:
212 self.formatter._indent()
213 join = self.formatter._join_parts
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000214 item_help = join([func(*args) for func, args in self.items])
215 if self.parent is not None:
216 self.formatter._dedent()
217
218 # return nothing if the section was empty
219 if not item_help:
220 return ''
221
222 # add the heading if the section was non-empty
223 if self.heading is not SUPPRESS and self.heading is not None:
224 current_indent = self.formatter._current_indent
225 heading = '%*s%s:\n' % (current_indent, '', self.heading)
226 else:
227 heading = ''
228
229 # join the section-initial newline, the heading and the help
230 return join(['\n', heading, item_help, '\n'])
231
232 def _add_item(self, func, args):
233 self._current_section.items.append((func, args))
234
235 # ========================
236 # Message building methods
237 # ========================
238 def start_section(self, heading):
239 self._indent()
240 section = self._Section(self, self._current_section, heading)
241 self._add_item(section.format_help, [])
242 self._current_section = section
243
244 def end_section(self):
245 self._current_section = self._current_section.parent
246 self._dedent()
247
248 def add_text(self, text):
249 if text is not SUPPRESS and text is not None:
250 self._add_item(self._format_text, [text])
251
252 def add_usage(self, usage, actions, groups, prefix=None):
253 if usage is not SUPPRESS:
254 args = usage, actions, groups, prefix
255 self._add_item(self._format_usage, args)
256
257 def add_argument(self, action):
258 if action.help is not SUPPRESS:
259
260 # find all invocations
261 get_invocation = self._format_action_invocation
262 invocations = [get_invocation(action)]
263 for subaction in self._iter_indented_subactions(action):
264 invocations.append(get_invocation(subaction))
265
266 # update the maximum item length
Raymond Hettingerb4e5eea2019-11-21 22:51:45 -0800267 invocation_length = max(map(len, invocations))
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000268 action_length = invocation_length + self._current_indent
269 self._action_max_length = max(self._action_max_length,
270 action_length)
271
272 # add the item to the list
273 self._add_item(self._format_action, [action])
274
275 def add_arguments(self, actions):
276 for action in actions:
277 self.add_argument(action)
278
279 # =======================
280 # Help-formatting methods
281 # =======================
282 def format_help(self):
283 help = self._root_section.format_help()
284 if help:
285 help = self._long_break_matcher.sub('\n\n', help)
286 help = help.strip('\n') + '\n'
287 return help
288
289 def _join_parts(self, part_strings):
290 return ''.join([part
291 for part in part_strings
292 if part and part is not SUPPRESS])
293
294 def _format_usage(self, usage, actions, groups, prefix):
295 if prefix is None:
296 prefix = _('usage: ')
297
298 # if usage is specified, use that
299 if usage is not None:
300 usage = usage % dict(prog=self._prog)
301
302 # if no optionals or positionals are available, usage is just prog
303 elif usage is None and not actions:
304 usage = '%(prog)s' % dict(prog=self._prog)
305
306 # if optionals and positionals are available, calculate usage
307 elif usage is None:
308 prog = '%(prog)s' % dict(prog=self._prog)
309
310 # split optionals from positionals
311 optionals = []
312 positionals = []
313 for action in actions:
314 if action.option_strings:
315 optionals.append(action)
316 else:
317 positionals.append(action)
318
319 # build full usage string
320 format = self._format_actions_usage
321 action_usage = format(optionals + positionals, groups)
322 usage = ' '.join([s for s in [prog, action_usage] if s])
323
324 # wrap the usage parts if it's too long
325 text_width = self._width - self._current_indent
326 if len(prefix) + len(usage) > text_width:
327
328 # break usage into wrappable parts
wim glenn66f02aa2018-06-08 05:12:49 -0500329 part_regexp = (
330 r'\(.*?\)+(?=\s|$)|'
331 r'\[.*?\]+(?=\s|$)|'
332 r'\S+'
333 )
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000334 opt_usage = format(optionals, groups)
335 pos_usage = format(positionals, groups)
336 opt_parts = _re.findall(part_regexp, opt_usage)
337 pos_parts = _re.findall(part_regexp, pos_usage)
338 assert ' '.join(opt_parts) == opt_usage
339 assert ' '.join(pos_parts) == pos_usage
340
341 # helper for wrapping lines
342 def get_lines(parts, indent, prefix=None):
343 lines = []
344 line = []
345 if prefix is not None:
346 line_len = len(prefix) - 1
347 else:
348 line_len = len(indent) - 1
349 for part in parts:
Serhiy Storchakaf4511122014-01-09 23:14:27 +0200350 if line_len + 1 + len(part) > text_width and line:
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000351 lines.append(indent + ' '.join(line))
352 line = []
353 line_len = len(indent) - 1
354 line.append(part)
355 line_len += len(part) + 1
356 if line:
357 lines.append(indent + ' '.join(line))
358 if prefix is not None:
359 lines[0] = lines[0][len(indent):]
360 return lines
361
362 # if prog is short, follow it with optionals or positionals
363 if len(prefix) + len(prog) <= 0.75 * text_width:
364 indent = ' ' * (len(prefix) + len(prog) + 1)
365 if opt_parts:
366 lines = get_lines([prog] + opt_parts, indent, prefix)
367 lines.extend(get_lines(pos_parts, indent))
368 elif pos_parts:
369 lines = get_lines([prog] + pos_parts, indent, prefix)
370 else:
371 lines = [prog]
372
373 # if prog is long, put it on its own line
374 else:
375 indent = ' ' * len(prefix)
376 parts = opt_parts + pos_parts
377 lines = get_lines(parts, indent)
378 if len(lines) > 1:
379 lines = []
380 lines.extend(get_lines(opt_parts, indent))
381 lines.extend(get_lines(pos_parts, indent))
382 lines = [prog] + lines
383
384 # join lines into usage
385 usage = '\n'.join(lines)
386
387 # prefix with 'usage:'
388 return '%s%s\n\n' % (prefix, usage)
389
390 def _format_actions_usage(self, actions, groups):
391 # find group indices and identify actions in groups
Benjamin Peterson16f2fd02010-03-02 23:09:38 +0000392 group_actions = set()
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000393 inserts = {}
394 for group in groups:
395 try:
396 start = actions.index(group._group_actions[0])
397 except ValueError:
398 continue
399 else:
400 end = start + len(group._group_actions)
401 if actions[start:end] == group._group_actions:
402 for action in group._group_actions:
403 group_actions.add(action)
404 if not group.required:
Steven Bethard49998ee2010-11-01 16:29:26 +0000405 if start in inserts:
406 inserts[start] += ' ['
407 else:
408 inserts[start] = '['
Flavian Hautboisda27d9b2019-08-25 21:06:45 +0200409 if end in inserts:
410 inserts[end] += ']'
411 else:
412 inserts[end] = ']'
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000413 else:
Steven Bethard49998ee2010-11-01 16:29:26 +0000414 if start in inserts:
415 inserts[start] += ' ('
416 else:
417 inserts[start] = '('
Flavian Hautboisda27d9b2019-08-25 21:06:45 +0200418 if end in inserts:
419 inserts[end] += ')'
420 else:
421 inserts[end] = ')'
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000422 for i in range(start + 1, end):
423 inserts[i] = '|'
424
425 # collect all actions format strings
426 parts = []
427 for i, action in enumerate(actions):
428
429 # suppressed arguments are marked with None
430 # remove | separators for suppressed arguments
431 if action.help is SUPPRESS:
432 parts.append(None)
433 if inserts.get(i) == '|':
434 inserts.pop(i)
435 elif inserts.get(i + 1) == '|':
436 inserts.pop(i + 1)
437
438 # produce all arg strings
439 elif not action.option_strings:
Steven Bethard0331e902011-03-26 14:48:04 +0100440 default = self._get_default_metavar_for_positional(action)
441 part = self._format_args(action, default)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000442
443 # if it's in a group, strip the outer []
444 if action in group_actions:
445 if part[0] == '[' and part[-1] == ']':
446 part = part[1:-1]
447
448 # add the action string to the list
449 parts.append(part)
450
451 # produce the first way to invoke the option in brackets
452 else:
453 option_string = action.option_strings[0]
454
455 # if the Optional doesn't take a value, format is:
456 # -s or --long
457 if action.nargs == 0:
Rémi Lapeyre6a517c62019-09-13 12:17:43 +0200458 part = action.format_usage()
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000459
460 # if the Optional takes a value, format is:
461 # -s ARGS or --long ARGS
462 else:
Steven Bethard0331e902011-03-26 14:48:04 +0100463 default = self._get_default_metavar_for_optional(action)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000464 args_string = self._format_args(action, default)
465 part = '%s %s' % (option_string, args_string)
466
467 # make it look optional if it's not required or in a group
468 if not action.required and action not in group_actions:
469 part = '[%s]' % part
470
471 # add the action string to the list
472 parts.append(part)
473
474 # insert things at the necessary indices
Benjamin Peterson16f2fd02010-03-02 23:09:38 +0000475 for i in sorted(inserts, reverse=True):
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000476 parts[i:i] = [inserts[i]]
477
478 # join all the action items with spaces
479 text = ' '.join([item for item in parts if item is not None])
480
481 # clean up separators for mutually exclusive groups
482 open = r'[\[(]'
483 close = r'[\])]'
484 text = _re.sub(r'(%s) ' % open, r'\1', text)
485 text = _re.sub(r' (%s)' % close, r'\1', text)
486 text = _re.sub(r'%s *%s' % (open, close), r'', text)
487 text = _re.sub(r'\(([^|]*)\)', r'\1', text)
488 text = text.strip()
489
490 # return the text
491 return text
492
493 def _format_text(self, text):
494 if '%(prog)' in text:
495 text = text % dict(prog=self._prog)
Serhiy Storchakaf4511122014-01-09 23:14:27 +0200496 text_width = max(self._width - self._current_indent, 11)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000497 indent = ' ' * self._current_indent
498 return self._fill_text(text, text_width, indent) + '\n\n'
499
500 def _format_action(self, action):
501 # determine the required width and the entry label
502 help_position = min(self._action_max_length + 2,
503 self._max_help_position)
Serhiy Storchakaf4511122014-01-09 23:14:27 +0200504 help_width = max(self._width - help_position, 11)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000505 action_width = help_position - self._current_indent - 2
506 action_header = self._format_action_invocation(action)
507
Georg Brandl2514f522014-10-20 08:36:02 +0200508 # no help; start on same line and add a final newline
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000509 if not action.help:
510 tup = self._current_indent, '', action_header
511 action_header = '%*s%s\n' % tup
512
513 # short action name; start on the same line and pad two spaces
514 elif len(action_header) <= action_width:
515 tup = self._current_indent, '', action_width, action_header
516 action_header = '%*s%-*s ' % tup
517 indent_first = 0
518
519 # long action name; start on the next line
520 else:
521 tup = self._current_indent, '', action_header
522 action_header = '%*s%s\n' % tup
523 indent_first = help_position
524
525 # collect the pieces of the action help
526 parts = [action_header]
527
528 # if there was help for the action, add lines of help text
529 if action.help:
530 help_text = self._expand_help(action)
531 help_lines = self._split_lines(help_text, help_width)
532 parts.append('%*s%s\n' % (indent_first, '', help_lines[0]))
533 for line in help_lines[1:]:
534 parts.append('%*s%s\n' % (help_position, '', line))
535
536 # or add a newline if the description doesn't end with one
537 elif not action_header.endswith('\n'):
538 parts.append('\n')
539
540 # if there are any sub-actions, add their help as well
541 for subaction in self._iter_indented_subactions(action):
542 parts.append(self._format_action(subaction))
543
544 # return a single string
545 return self._join_parts(parts)
546
547 def _format_action_invocation(self, action):
548 if not action.option_strings:
Steven Bethard0331e902011-03-26 14:48:04 +0100549 default = self._get_default_metavar_for_positional(action)
550 metavar, = self._metavar_formatter(action, default)(1)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000551 return metavar
552
553 else:
554 parts = []
555
556 # if the Optional doesn't take a value, format is:
557 # -s, --long
558 if action.nargs == 0:
559 parts.extend(action.option_strings)
560
561 # if the Optional takes a value, format is:
562 # -s ARGS, --long ARGS
563 else:
Steven Bethard0331e902011-03-26 14:48:04 +0100564 default = self._get_default_metavar_for_optional(action)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000565 args_string = self._format_args(action, default)
566 for option_string in action.option_strings:
567 parts.append('%s %s' % (option_string, args_string))
568
569 return ', '.join(parts)
570
571 def _metavar_formatter(self, action, default_metavar):
572 if action.metavar is not None:
573 result = action.metavar
574 elif action.choices is not None:
575 choice_strs = [str(choice) for choice in action.choices]
576 result = '{%s}' % ','.join(choice_strs)
577 else:
578 result = default_metavar
579
580 def format(tuple_size):
581 if isinstance(result, tuple):
582 return result
583 else:
584 return (result, ) * tuple_size
585 return format
586
587 def _format_args(self, action, default_metavar):
588 get_metavar = self._metavar_formatter(action, default_metavar)
589 if action.nargs is None:
590 result = '%s' % get_metavar(1)
591 elif action.nargs == OPTIONAL:
592 result = '[%s]' % get_metavar(1)
593 elif action.nargs == ZERO_OR_MORE:
Brandt Buchera0ed99b2019-11-11 12:47:48 -0800594 metavar = get_metavar(1)
595 if len(metavar) == 2:
596 result = '[%s [%s ...]]' % metavar
597 else:
598 result = '[%s ...]' % metavar
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000599 elif action.nargs == ONE_OR_MORE:
600 result = '%s [%s ...]' % get_metavar(2)
601 elif action.nargs == REMAINDER:
602 result = '...'
603 elif action.nargs == PARSER:
604 result = '%s ...' % get_metavar(1)
R. David Murray0f6b9d22017-09-06 20:25:40 -0400605 elif action.nargs == SUPPRESS:
606 result = ''
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000607 else:
tmblweed4b3e9752019-08-01 21:57:13 -0700608 try:
609 formats = ['%s' for _ in range(action.nargs)]
610 except TypeError:
611 raise ValueError("invalid nargs value") from None
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000612 result = ' '.join(formats) % get_metavar(action.nargs)
613 return result
614
615 def _expand_help(self, action):
616 params = dict(vars(action), prog=self._prog)
617 for name in list(params):
618 if params[name] is SUPPRESS:
619 del params[name]
620 for name in list(params):
621 if hasattr(params[name], '__name__'):
622 params[name] = params[name].__name__
623 if params.get('choices') is not None:
624 choices_str = ', '.join([str(c) for c in params['choices']])
625 params['choices'] = choices_str
626 return self._get_help_string(action) % params
627
628 def _iter_indented_subactions(self, action):
629 try:
630 get_subactions = action._get_subactions
631 except AttributeError:
632 pass
633 else:
634 self._indent()
Philip Jenvey4993cc02012-10-01 12:53:43 -0700635 yield from get_subactions()
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000636 self._dedent()
637
638 def _split_lines(self, text, width):
639 text = self._whitespace_matcher.sub(' ', text).strip()
Serhiy Storchaka81108372017-09-26 00:55:55 +0300640 # The textwrap module is used only for formatting help.
641 # Delay its import for speeding up the common usage of argparse.
642 import textwrap
643 return textwrap.wrap(text, width)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000644
645 def _fill_text(self, text, width, indent):
646 text = self._whitespace_matcher.sub(' ', text).strip()
Serhiy Storchaka81108372017-09-26 00:55:55 +0300647 import textwrap
648 return textwrap.fill(text, width,
649 initial_indent=indent,
650 subsequent_indent=indent)
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000651
652 def _get_help_string(self, action):
653 return action.help
654
Steven Bethard0331e902011-03-26 14:48:04 +0100655 def _get_default_metavar_for_optional(self, action):
656 return action.dest.upper()
657
658 def _get_default_metavar_for_positional(self, action):
659 return action.dest
660
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000661
662class RawDescriptionHelpFormatter(HelpFormatter):
663 """Help message formatter which retains any formatting in descriptions.
664
665 Only the name of this class is considered a public API. All the methods
666 provided by the class are considered an implementation detail.
667 """
668
669 def _fill_text(self, text, width, indent):
Ezio Melottid8b509b2011-09-28 17:37:55 +0300670 return ''.join(indent + line for line in text.splitlines(keepends=True))
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000671
672
673class RawTextHelpFormatter(RawDescriptionHelpFormatter):
674 """Help message formatter which retains formatting of all help text.
675
676 Only the name of this class is considered a public API. All the methods
677 provided by the class are considered an implementation detail.
678 """
679
680 def _split_lines(self, text, width):
681 return text.splitlines()
682
683
684class ArgumentDefaultsHelpFormatter(HelpFormatter):
685 """Help message formatter which adds default values to argument help.
686
687 Only the name of this class is considered a public API. All the methods
688 provided by the class are considered an implementation detail.
689 """
690
691 def _get_help_string(self, action):
692 help = action.help
693 if '%(default)' not in action.help:
694 if action.default is not SUPPRESS:
695 defaulting_nargs = [OPTIONAL, ZERO_OR_MORE]
696 if action.option_strings or action.nargs in defaulting_nargs:
697 help += ' (default: %(default)s)'
698 return help
699
700
Steven Bethard0331e902011-03-26 14:48:04 +0100701class MetavarTypeHelpFormatter(HelpFormatter):
702 """Help message formatter which uses the argument 'type' as the default
703 metavar value (instead of the argument 'dest')
704
705 Only the name of this class is considered a public API. All the methods
706 provided by the class are considered an implementation detail.
707 """
708
709 def _get_default_metavar_for_optional(self, action):
710 return action.type.__name__
711
712 def _get_default_metavar_for_positional(self, action):
713 return action.type.__name__
714
715
716
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000717# =====================
718# Options and Arguments
719# =====================
720
721def _get_action_name(argument):
722 if argument is None:
723 return None
724 elif argument.option_strings:
725 return '/'.join(argument.option_strings)
726 elif argument.metavar not in (None, SUPPRESS):
727 return argument.metavar
728 elif argument.dest not in (None, SUPPRESS):
729 return argument.dest
730 else:
731 return None
732
733
734class ArgumentError(Exception):
735 """An error from creating or using an argument (optional or positional).
736
737 The string value of this exception is the message, augmented with
738 information about the argument that caused it.
739 """
740
741 def __init__(self, argument, message):
742 self.argument_name = _get_action_name(argument)
743 self.message = message
744
745 def __str__(self):
746 if self.argument_name is None:
747 format = '%(message)s'
748 else:
749 format = 'argument %(argument_name)s: %(message)s'
750 return format % dict(message=self.message,
751 argument_name=self.argument_name)
752
753
754class ArgumentTypeError(Exception):
755 """An error from trying to convert a command line string to a type."""
756 pass
757
758
759# ==============
760# Action classes
761# ==============
762
763class Action(_AttributeHolder):
764 """Information about how to convert command line strings to Python objects.
765
766 Action objects are used by an ArgumentParser to represent the information
767 needed to parse a single argument from one or more strings from the
768 command line. The keyword arguments to the Action constructor are also
769 all attributes of Action instances.
770
771 Keyword Arguments:
772
773 - option_strings -- A list of command-line option strings which
774 should be associated with this action.
775
776 - dest -- The name of the attribute to hold the created object(s)
777
778 - nargs -- The number of command-line arguments that should be
779 consumed. By default, one argument will be consumed and a single
780 value will be produced. Other values include:
781 - N (an integer) consumes N arguments (and produces a list)
782 - '?' consumes zero or one arguments
783 - '*' consumes zero or more arguments (and produces a list)
784 - '+' consumes one or more arguments (and produces a list)
785 Note that the difference between the default and nargs=1 is that
786 with the default, a single value will be produced, while with
787 nargs=1, a list containing a single value will be produced.
788
789 - const -- The value to be produced if the option is specified and the
790 option uses an action that takes no values.
791
792 - default -- The value to be produced if the option is not specified.
793
R David Murray15cd9a02012-07-21 17:04:25 -0400794 - type -- A callable that accepts a single string argument, and
795 returns the converted value. The standard Python types str, int,
796 float, and complex are useful examples of such callables. If None,
797 str is used.
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000798
799 - choices -- A container of values that should be allowed. If not None,
800 after a command-line argument has been converted to the appropriate
801 type, an exception will be raised if it is not a member of this
802 collection.
803
804 - required -- True if the action must always be specified at the
805 command line. This is only meaningful for optional command-line
806 arguments.
807
808 - help -- The help string describing the argument.
809
810 - metavar -- The name to be used for the option's argument with the
811 help string. If None, the 'dest' value will be used as the name.
812 """
813
814 def __init__(self,
815 option_strings,
816 dest,
817 nargs=None,
818 const=None,
819 default=None,
820 type=None,
821 choices=None,
822 required=False,
823 help=None,
824 metavar=None):
825 self.option_strings = option_strings
826 self.dest = dest
827 self.nargs = nargs
828 self.const = const
829 self.default = default
830 self.type = type
831 self.choices = choices
832 self.required = required
833 self.help = help
834 self.metavar = metavar
835
836 def _get_kwargs(self):
837 names = [
838 'option_strings',
839 'dest',
840 'nargs',
841 'const',
842 'default',
843 'type',
844 'choices',
845 'help',
846 'metavar',
847 ]
848 return [(name, getattr(self, name)) for name in names]
849
Rémi Lapeyre6a517c62019-09-13 12:17:43 +0200850 def format_usage(self):
851 return self.option_strings[0]
852
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000853 def __call__(self, parser, namespace, values, option_string=None):
854 raise NotImplementedError(_('.__call__() not defined'))
855
Rémi Lapeyre6a517c62019-09-13 12:17:43 +0200856class BooleanOptionalAction(Action):
857 def __init__(self,
858 option_strings,
859 dest,
860 const=None,
861 default=None,
862 type=None,
863 choices=None,
864 required=False,
865 help=None,
866 metavar=None):
867
868 _option_strings = []
869 for option_string in option_strings:
870 _option_strings.append(option_string)
871
872 if option_string.startswith('--'):
873 option_string = '--no-' + option_string[2:]
874 _option_strings.append(option_string)
875
876 if help is not None and default is not None:
877 help += f" (default: {default})"
878
879 super().__init__(
880 option_strings=_option_strings,
881 dest=dest,
882 nargs=0,
883 default=default,
884 type=type,
885 choices=choices,
886 required=required,
887 help=help,
888 metavar=metavar)
889
890 def __call__(self, parser, namespace, values, option_string=None):
891 if option_string in self.option_strings:
892 setattr(namespace, self.dest, not option_string.startswith('--no-'))
893
894 def format_usage(self):
895 return ' | '.join(self.option_strings)
896
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000897
898class _StoreAction(Action):
899
900 def __init__(self,
901 option_strings,
902 dest,
903 nargs=None,
904 const=None,
905 default=None,
906 type=None,
907 choices=None,
908 required=False,
909 help=None,
910 metavar=None):
911 if nargs == 0:
tmblweed4b3e9752019-08-01 21:57:13 -0700912 raise ValueError('nargs for store actions must be != 0; if you '
Benjamin Peterson698a18a2010-03-02 22:34:37 +0000913 'have nothing to store, actions such as store '
914 'true or store const may be more appropriate')
915 if const is not None and nargs != OPTIONAL:
916 raise ValueError('nargs must be %r to supply const' % OPTIONAL)
917 super(_StoreAction, self).__init__(
918 option_strings=option_strings,
919 dest=dest,
920 nargs=nargs,
921 const=const,
922 default=default,
923 type=type,
924 choices=choices,
925 required=required,
926 help=help,
927 metavar=metavar)
928
929 def __call__(self, parser, namespace, values, option_string=None):
930 setattr(namespace, self.dest, values)
931
932
933class _StoreConstAction(Action):
934
935 def __init__(self,
936 option_strings,
937 dest,
938 const,
939 default=None,
940 required=False,
941 help=None,
942 metavar=None):
943 super(_StoreConstAction, self).__init__(
944 option_strings=option_strings,
945 dest=dest,
946 nargs=0,
947 const=const,
948 default=default,
949 required=required,
950 help=help)
951
952 def __call__(self, parser, namespace, values, option_string=None):
953 setattr(namespace, self.dest, self.const)
954
955
956class _StoreTrueAction(_StoreConstAction):
957
958 def __init__(self,
959 option_strings,
960 dest,
961 default=False,
962 required=False,
963 help=None):
964 super(_StoreTrueAction, self).__init__(
965 option_strings=option_strings,
966 dest=dest,
967 const=True,
968 default=default,
969 required=required,
970 help=help)
971
972
973class _StoreFalseAction(_StoreConstAction):
974
975 def __init__(self,
976 option_strings,
977 dest,
978 default=True,
979 required=False,
980 help=None):
981 super(_StoreFalseAction, self).__init__(
982 option_strings=option_strings,
983 dest=dest,
984 const=False,
985 default=default,
986 required=required,
987 help=help)
988
989
990class _AppendAction(Action):
991
992 def __init__(self,
993 option_strings,
994 dest,
995 nargs=None,
996 const=None,
997 default=None,
998 type=None,
999 choices=None,
1000 required=False,
1001 help=None,
1002 metavar=None):
1003 if nargs == 0:
tmblweed4b3e9752019-08-01 21:57:13 -07001004 raise ValueError('nargs for append actions must be != 0; if arg '
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001005 'strings are not supplying the value to append, '
1006 'the append const action may be more appropriate')
1007 if const is not None and nargs != OPTIONAL:
1008 raise ValueError('nargs must be %r to supply const' % OPTIONAL)
1009 super(_AppendAction, self).__init__(
1010 option_strings=option_strings,
1011 dest=dest,
1012 nargs=nargs,
1013 const=const,
1014 default=default,
1015 type=type,
1016 choices=choices,
1017 required=required,
1018 help=help,
1019 metavar=metavar)
1020
1021 def __call__(self, parser, namespace, values, option_string=None):
Serhiy Storchaka81108372017-09-26 00:55:55 +03001022 items = getattr(namespace, self.dest, None)
1023 items = _copy_items(items)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001024 items.append(values)
1025 setattr(namespace, self.dest, items)
1026
1027
1028class _AppendConstAction(Action):
1029
1030 def __init__(self,
1031 option_strings,
1032 dest,
1033 const,
1034 default=None,
1035 required=False,
1036 help=None,
1037 metavar=None):
1038 super(_AppendConstAction, self).__init__(
1039 option_strings=option_strings,
1040 dest=dest,
1041 nargs=0,
1042 const=const,
1043 default=default,
1044 required=required,
1045 help=help,
1046 metavar=metavar)
1047
1048 def __call__(self, parser, namespace, values, option_string=None):
Serhiy Storchaka81108372017-09-26 00:55:55 +03001049 items = getattr(namespace, self.dest, None)
1050 items = _copy_items(items)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001051 items.append(self.const)
1052 setattr(namespace, self.dest, items)
1053
1054
1055class _CountAction(Action):
1056
1057 def __init__(self,
1058 option_strings,
1059 dest,
1060 default=None,
1061 required=False,
1062 help=None):
1063 super(_CountAction, self).__init__(
1064 option_strings=option_strings,
1065 dest=dest,
1066 nargs=0,
1067 default=default,
1068 required=required,
1069 help=help)
1070
1071 def __call__(self, parser, namespace, values, option_string=None):
Serhiy Storchaka81108372017-09-26 00:55:55 +03001072 count = getattr(namespace, self.dest, None)
1073 if count is None:
1074 count = 0
1075 setattr(namespace, self.dest, count + 1)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001076
1077
1078class _HelpAction(Action):
1079
1080 def __init__(self,
1081 option_strings,
1082 dest=SUPPRESS,
1083 default=SUPPRESS,
1084 help=None):
1085 super(_HelpAction, self).__init__(
1086 option_strings=option_strings,
1087 dest=dest,
1088 default=default,
1089 nargs=0,
1090 help=help)
1091
1092 def __call__(self, parser, namespace, values, option_string=None):
1093 parser.print_help()
1094 parser.exit()
1095
1096
1097class _VersionAction(Action):
1098
1099 def __init__(self,
1100 option_strings,
1101 version=None,
1102 dest=SUPPRESS,
1103 default=SUPPRESS,
Steven Bethard50fe5932010-05-24 03:47:38 +00001104 help="show program's version number and exit"):
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001105 super(_VersionAction, self).__init__(
1106 option_strings=option_strings,
1107 dest=dest,
1108 default=default,
1109 nargs=0,
1110 help=help)
1111 self.version = version
1112
1113 def __call__(self, parser, namespace, values, option_string=None):
1114 version = self.version
1115 if version is None:
1116 version = parser.version
1117 formatter = parser._get_formatter()
1118 formatter.add_text(version)
Eli Benderskycdac5512013-09-06 06:49:15 -07001119 parser._print_message(formatter.format_help(), _sys.stdout)
1120 parser.exit()
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001121
1122
1123class _SubParsersAction(Action):
1124
1125 class _ChoicesPseudoAction(Action):
1126
Steven Bethardfd311a72010-12-18 11:19:23 +00001127 def __init__(self, name, aliases, help):
1128 metavar = dest = name
1129 if aliases:
1130 metavar += ' (%s)' % ', '.join(aliases)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001131 sup = super(_SubParsersAction._ChoicesPseudoAction, self)
Steven Bethardfd311a72010-12-18 11:19:23 +00001132 sup.__init__(option_strings=[], dest=dest, help=help,
1133 metavar=metavar)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001134
1135 def __init__(self,
1136 option_strings,
1137 prog,
1138 parser_class,
1139 dest=SUPPRESS,
Ned Deily8ebf5ce2018-05-23 21:55:15 -04001140 required=False,
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001141 help=None,
1142 metavar=None):
1143
1144 self._prog_prefix = prog
1145 self._parser_class = parser_class
Raymond Hettinger05565ed2018-01-11 22:20:33 -08001146 self._name_parser_map = {}
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001147 self._choices_actions = []
1148
1149 super(_SubParsersAction, self).__init__(
1150 option_strings=option_strings,
1151 dest=dest,
1152 nargs=PARSER,
1153 choices=self._name_parser_map,
Anthony Sottileaaf6fc02017-09-20 14:35:27 -07001154 required=required,
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001155 help=help,
1156 metavar=metavar)
1157
1158 def add_parser(self, name, **kwargs):
1159 # set prog from the existing prefix
1160 if kwargs.get('prog') is None:
1161 kwargs['prog'] = '%s %s' % (self._prog_prefix, name)
1162
Steven Bethardfd311a72010-12-18 11:19:23 +00001163 aliases = kwargs.pop('aliases', ())
1164
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001165 # create a pseudo-action to hold the choice help
1166 if 'help' in kwargs:
1167 help = kwargs.pop('help')
Steven Bethardfd311a72010-12-18 11:19:23 +00001168 choice_action = self._ChoicesPseudoAction(name, aliases, help)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001169 self._choices_actions.append(choice_action)
1170
1171 # create the parser and add it to the map
1172 parser = self._parser_class(**kwargs)
1173 self._name_parser_map[name] = parser
Steven Bethardfd311a72010-12-18 11:19:23 +00001174
1175 # make parser available under aliases also
1176 for alias in aliases:
1177 self._name_parser_map[alias] = parser
1178
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001179 return parser
1180
1181 def _get_subactions(self):
1182 return self._choices_actions
1183
1184 def __call__(self, parser, namespace, values, option_string=None):
1185 parser_name = values[0]
1186 arg_strings = values[1:]
1187
1188 # set the parser name if requested
1189 if self.dest is not SUPPRESS:
1190 setattr(namespace, self.dest, parser_name)
1191
1192 # select the parser
1193 try:
1194 parser = self._name_parser_map[parser_name]
1195 except KeyError:
Éric Araujobb48a8b2010-12-03 19:41:00 +00001196 args = {'parser_name': parser_name,
1197 'choices': ', '.join(self._name_parser_map)}
1198 msg = _('unknown parser %(parser_name)r (choices: %(choices)s)') % args
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001199 raise ArgumentError(self, msg)
1200
1201 # parse all the remaining options into the namespace
Steven Bethardfca2e8a2010-11-02 12:47:22 +00001202 # store any unrecognized options on the object, so that the top
1203 # level parser can decide what to do with them
R David Murray7570cbd2014-10-17 19:55:11 -04001204
1205 # In case this subparser defines new defaults, we parse them
1206 # in a new namespace object and then update the original
1207 # namespace for the relevant parts.
1208 subnamespace, arg_strings = parser.parse_known_args(arg_strings, None)
1209 for key, value in vars(subnamespace).items():
1210 setattr(namespace, key, value)
1211
Steven Bethardfca2e8a2010-11-02 12:47:22 +00001212 if arg_strings:
1213 vars(namespace).setdefault(_UNRECOGNIZED_ARGS_ATTR, [])
1214 getattr(namespace, _UNRECOGNIZED_ARGS_ATTR).extend(arg_strings)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001215
Batuhan Taşkayaaa32a7e2019-05-21 20:47:42 +03001216class _ExtendAction(_AppendAction):
1217 def __call__(self, parser, namespace, values, option_string=None):
1218 items = getattr(namespace, self.dest, None)
1219 items = _copy_items(items)
1220 items.extend(values)
1221 setattr(namespace, self.dest, items)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001222
1223# ==============
1224# Type classes
1225# ==============
1226
1227class FileType(object):
1228 """Factory for creating file object types
1229
1230 Instances of FileType are typically passed as type= arguments to the
1231 ArgumentParser add_argument() method.
1232
1233 Keyword Arguments:
1234 - mode -- A string indicating how the file is to be opened. Accepts the
1235 same values as the builtin open() function.
1236 - bufsize -- The file's desired buffer size. Accepts the same values as
1237 the builtin open() function.
Petri Lehtinen74d6c252012-12-15 22:39:32 +02001238 - encoding -- The file's encoding. Accepts the same values as the
Terry Jan Reedy8e7586b2013-03-11 18:38:13 -04001239 builtin open() function.
Petri Lehtinen74d6c252012-12-15 22:39:32 +02001240 - errors -- A string indicating how encoding and decoding errors are to
1241 be handled. Accepts the same value as the builtin open() function.
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001242 """
1243
Petri Lehtinen74d6c252012-12-15 22:39:32 +02001244 def __init__(self, mode='r', bufsize=-1, encoding=None, errors=None):
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001245 self._mode = mode
1246 self._bufsize = bufsize
Petri Lehtinen74d6c252012-12-15 22:39:32 +02001247 self._encoding = encoding
1248 self._errors = errors
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001249
1250 def __call__(self, string):
1251 # the special argument "-" means sys.std{in,out}
1252 if string == '-':
1253 if 'r' in self._mode:
1254 return _sys.stdin
1255 elif 'w' in self._mode:
1256 return _sys.stdout
1257 else:
Éric Araujoa9c7a8f2010-12-03 19:19:17 +00001258 msg = _('argument "-" with mode %r') % self._mode
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001259 raise ValueError(msg)
1260
1261 # all other arguments are used as file names
Steven Bethardb0270112011-01-24 21:02:50 +00001262 try:
Petri Lehtinen74d6c252012-12-15 22:39:32 +02001263 return open(string, self._mode, self._bufsize, self._encoding,
1264 self._errors)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001265 except OSError as e:
Jakub Kulík42671ae2019-09-13 11:25:32 +02001266 args = {'filename': string, 'error': e}
1267 message = _("can't open '%(filename)s': %(error)s")
1268 raise ArgumentTypeError(message % args)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001269
1270 def __repr__(self):
Steven Bethardb0270112011-01-24 21:02:50 +00001271 args = self._mode, self._bufsize
Petri Lehtinen74d6c252012-12-15 22:39:32 +02001272 kwargs = [('encoding', self._encoding), ('errors', self._errors)]
1273 args_str = ', '.join([repr(arg) for arg in args if arg != -1] +
1274 ['%s=%r' % (kw, arg) for kw, arg in kwargs
1275 if arg is not None])
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001276 return '%s(%s)' % (type(self).__name__, args_str)
1277
1278# ===========================
1279# Optional and Positional Parsing
1280# ===========================
1281
1282class Namespace(_AttributeHolder):
1283 """Simple object for storing attributes.
1284
1285 Implements equality by attribute names and values, and provides a simple
1286 string representation.
1287 """
1288
1289 def __init__(self, **kwargs):
1290 for name in kwargs:
1291 setattr(self, name, kwargs[name])
1292
1293 def __eq__(self, other):
Raymond Hettingerdea46ec2014-05-26 00:43:27 -07001294 if not isinstance(other, Namespace):
1295 return NotImplemented
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001296 return vars(self) == vars(other)
1297
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001298 def __contains__(self, key):
1299 return key in self.__dict__
1300
1301
1302class _ActionsContainer(object):
1303
1304 def __init__(self,
1305 description,
1306 prefix_chars,
1307 argument_default,
1308 conflict_handler):
1309 super(_ActionsContainer, self).__init__()
1310
1311 self.description = description
1312 self.argument_default = argument_default
1313 self.prefix_chars = prefix_chars
1314 self.conflict_handler = conflict_handler
1315
1316 # set up registries
1317 self._registries = {}
1318
1319 # register actions
1320 self.register('action', None, _StoreAction)
1321 self.register('action', 'store', _StoreAction)
1322 self.register('action', 'store_const', _StoreConstAction)
1323 self.register('action', 'store_true', _StoreTrueAction)
1324 self.register('action', 'store_false', _StoreFalseAction)
1325 self.register('action', 'append', _AppendAction)
1326 self.register('action', 'append_const', _AppendConstAction)
1327 self.register('action', 'count', _CountAction)
1328 self.register('action', 'help', _HelpAction)
1329 self.register('action', 'version', _VersionAction)
1330 self.register('action', 'parsers', _SubParsersAction)
Batuhan Taşkayaaa32a7e2019-05-21 20:47:42 +03001331 self.register('action', 'extend', _ExtendAction)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001332
1333 # raise an exception if the conflict handler is invalid
1334 self._get_handler()
1335
1336 # action storage
1337 self._actions = []
1338 self._option_string_actions = {}
1339
1340 # groups
1341 self._action_groups = []
1342 self._mutually_exclusive_groups = []
1343
1344 # defaults storage
1345 self._defaults = {}
1346
1347 # determines whether an "option" looks like a negative number
1348 self._negative_number_matcher = _re.compile(r'^-\d+$|^-\d*\.\d+$')
1349
1350 # whether or not there are any optionals that look like negative
1351 # numbers -- uses a list so it can be shared and edited
1352 self._has_negative_number_optionals = []
1353
1354 # ====================
1355 # Registration methods
1356 # ====================
1357 def register(self, registry_name, value, object):
1358 registry = self._registries.setdefault(registry_name, {})
1359 registry[value] = object
1360
1361 def _registry_get(self, registry_name, value, default=None):
1362 return self._registries[registry_name].get(value, default)
1363
1364 # ==================================
1365 # Namespace default accessor methods
1366 # ==================================
1367 def set_defaults(self, **kwargs):
1368 self._defaults.update(kwargs)
1369
1370 # if these defaults match any existing arguments, replace
1371 # the previous default on the object with the new one
1372 for action in self._actions:
1373 if action.dest in kwargs:
1374 action.default = kwargs[action.dest]
1375
1376 def get_default(self, dest):
1377 for action in self._actions:
1378 if action.dest == dest and action.default is not None:
1379 return action.default
1380 return self._defaults.get(dest, None)
1381
1382
1383 # =======================
1384 # Adding argument actions
1385 # =======================
1386 def add_argument(self, *args, **kwargs):
1387 """
1388 add_argument(dest, ..., name=value, ...)
1389 add_argument(option_string, option_string, ..., name=value, ...)
1390 """
1391
1392 # if no positional args are supplied or only one is supplied and
1393 # it doesn't look like an option string, parse a positional
1394 # argument
1395 chars = self.prefix_chars
1396 if not args or len(args) == 1 and args[0][0] not in chars:
1397 if args and 'dest' in kwargs:
1398 raise ValueError('dest supplied twice for positional argument')
1399 kwargs = self._get_positional_kwargs(*args, **kwargs)
1400
1401 # otherwise, we're adding an optional argument
1402 else:
1403 kwargs = self._get_optional_kwargs(*args, **kwargs)
1404
1405 # if no default was supplied, use the parser-level default
1406 if 'default' not in kwargs:
1407 dest = kwargs['dest']
1408 if dest in self._defaults:
1409 kwargs['default'] = self._defaults[dest]
1410 elif self.argument_default is not None:
1411 kwargs['default'] = self.argument_default
1412
1413 # create the action object, and add it to the parser
1414 action_class = self._pop_action_class(kwargs)
Florent Xicluna5d1155c2011-10-28 14:45:05 +02001415 if not callable(action_class):
Steven Bethard7cb20a82011-04-04 01:53:02 +02001416 raise ValueError('unknown action "%s"' % (action_class,))
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001417 action = action_class(**kwargs)
1418
1419 # raise an error if the action type is not callable
1420 type_func = self._registry_get('type', action.type, action.type)
Florent Xicluna5d1155c2011-10-28 14:45:05 +02001421 if not callable(type_func):
Steven Bethard7cb20a82011-04-04 01:53:02 +02001422 raise ValueError('%r is not callable' % (type_func,))
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001423
zygocephalus03d58312019-06-07 23:08:36 +03001424 if type_func is FileType:
1425 raise ValueError('%r is a FileType class object, instance of it'
1426 ' must be passed' % (type_func,))
1427
Steven Bethard8d9a4622011-03-26 17:33:56 +01001428 # raise an error if the metavar does not match the type
1429 if hasattr(self, "_get_formatter"):
1430 try:
1431 self._get_formatter()._format_args(action, None)
1432 except TypeError:
1433 raise ValueError("length of metavar tuple does not match nargs")
1434
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001435 return self._add_action(action)
1436
1437 def add_argument_group(self, *args, **kwargs):
1438 group = _ArgumentGroup(self, *args, **kwargs)
1439 self._action_groups.append(group)
1440 return group
1441
1442 def add_mutually_exclusive_group(self, **kwargs):
1443 group = _MutuallyExclusiveGroup(self, **kwargs)
1444 self._mutually_exclusive_groups.append(group)
1445 return group
1446
1447 def _add_action(self, action):
1448 # resolve any conflicts
1449 self._check_conflict(action)
1450
1451 # add to actions list
1452 self._actions.append(action)
1453 action.container = self
1454
1455 # index the action by any option strings it has
1456 for option_string in action.option_strings:
1457 self._option_string_actions[option_string] = action
1458
1459 # set the flag if any option strings look like negative numbers
1460 for option_string in action.option_strings:
1461 if self._negative_number_matcher.match(option_string):
1462 if not self._has_negative_number_optionals:
1463 self._has_negative_number_optionals.append(True)
1464
1465 # return the created action
1466 return action
1467
1468 def _remove_action(self, action):
1469 self._actions.remove(action)
1470
1471 def _add_container_actions(self, container):
1472 # collect groups by titles
1473 title_group_map = {}
1474 for group in self._action_groups:
1475 if group.title in title_group_map:
1476 msg = _('cannot merge actions - two groups are named %r')
1477 raise ValueError(msg % (group.title))
1478 title_group_map[group.title] = group
1479
1480 # map each action to its group
1481 group_map = {}
1482 for group in container._action_groups:
1483
1484 # if a group with the title exists, use that, otherwise
1485 # create a new group matching the container's group
1486 if group.title not in title_group_map:
1487 title_group_map[group.title] = self.add_argument_group(
1488 title=group.title,
1489 description=group.description,
1490 conflict_handler=group.conflict_handler)
1491
1492 # map the actions to their new group
1493 for action in group._group_actions:
1494 group_map[action] = title_group_map[group.title]
1495
1496 # add container's mutually exclusive groups
1497 # NOTE: if add_mutually_exclusive_group ever gains title= and
1498 # description= then this code will need to be expanded as above
1499 for group in container._mutually_exclusive_groups:
1500 mutex_group = self.add_mutually_exclusive_group(
1501 required=group.required)
1502
1503 # map the actions to their new mutex group
1504 for action in group._group_actions:
1505 group_map[action] = mutex_group
1506
1507 # add all actions to this container or their group
1508 for action in container._actions:
1509 group_map.get(action, self)._add_action(action)
1510
1511 def _get_positional_kwargs(self, dest, **kwargs):
1512 # make sure required is not specified
1513 if 'required' in kwargs:
1514 msg = _("'required' is an invalid argument for positionals")
1515 raise TypeError(msg)
1516
1517 # mark positional arguments as required if at least one is
1518 # always required
1519 if kwargs.get('nargs') not in [OPTIONAL, ZERO_OR_MORE]:
1520 kwargs['required'] = True
1521 if kwargs.get('nargs') == ZERO_OR_MORE and 'default' not in kwargs:
1522 kwargs['required'] = True
1523
1524 # return the keyword arguments with no option strings
1525 return dict(kwargs, dest=dest, option_strings=[])
1526
1527 def _get_optional_kwargs(self, *args, **kwargs):
1528 # determine short and long option strings
1529 option_strings = []
1530 long_option_strings = []
1531 for option_string in args:
1532 # error on strings that don't start with an appropriate prefix
1533 if not option_string[0] in self.prefix_chars:
Éric Araujobb48a8b2010-12-03 19:41:00 +00001534 args = {'option': option_string,
1535 'prefix_chars': self.prefix_chars}
1536 msg = _('invalid option string %(option)r: '
1537 'must start with a character %(prefix_chars)r')
1538 raise ValueError(msg % args)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001539
1540 # strings starting with two prefix characters are long options
1541 option_strings.append(option_string)
Shashank Parekhb9600b02019-06-21 08:32:22 +05301542 if len(option_string) > 1 and option_string[1] in self.prefix_chars:
1543 long_option_strings.append(option_string)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001544
1545 # infer destination, '--foo-bar' -> 'foo_bar' and '-x' -> 'x'
1546 dest = kwargs.pop('dest', None)
1547 if dest is None:
1548 if long_option_strings:
1549 dest_option_string = long_option_strings[0]
1550 else:
1551 dest_option_string = option_strings[0]
1552 dest = dest_option_string.lstrip(self.prefix_chars)
1553 if not dest:
1554 msg = _('dest= is required for options like %r')
1555 raise ValueError(msg % option_string)
1556 dest = dest.replace('-', '_')
1557
1558 # return the updated keyword arguments
1559 return dict(kwargs, dest=dest, option_strings=option_strings)
1560
1561 def _pop_action_class(self, kwargs, default=None):
1562 action = kwargs.pop('action', default)
1563 return self._registry_get('action', action, action)
1564
1565 def _get_handler(self):
1566 # determine function from conflict handler string
1567 handler_func_name = '_handle_conflict_%s' % self.conflict_handler
1568 try:
1569 return getattr(self, handler_func_name)
1570 except AttributeError:
1571 msg = _('invalid conflict_resolution value: %r')
1572 raise ValueError(msg % self.conflict_handler)
1573
1574 def _check_conflict(self, action):
1575
1576 # find all options that conflict with this option
1577 confl_optionals = []
1578 for option_string in action.option_strings:
1579 if option_string in self._option_string_actions:
1580 confl_optional = self._option_string_actions[option_string]
1581 confl_optionals.append((option_string, confl_optional))
1582
1583 # resolve any conflicts
1584 if confl_optionals:
1585 conflict_handler = self._get_handler()
1586 conflict_handler(action, confl_optionals)
1587
1588 def _handle_conflict_error(self, action, conflicting_actions):
Éric Araujo12159152010-12-04 17:31:49 +00001589 message = ngettext('conflicting option string: %s',
1590 'conflicting option strings: %s',
1591 len(conflicting_actions))
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001592 conflict_string = ', '.join([option_string
1593 for option_string, action
1594 in conflicting_actions])
1595 raise ArgumentError(action, message % conflict_string)
1596
1597 def _handle_conflict_resolve(self, action, conflicting_actions):
1598
1599 # remove all conflicting options
1600 for option_string, action in conflicting_actions:
1601
1602 # remove the conflicting option
1603 action.option_strings.remove(option_string)
1604 self._option_string_actions.pop(option_string, None)
1605
1606 # if the option now has no option string, remove it from the
1607 # container holding it
1608 if not action.option_strings:
1609 action.container._remove_action(action)
1610
1611
1612class _ArgumentGroup(_ActionsContainer):
1613
1614 def __init__(self, container, title=None, description=None, **kwargs):
1615 # add any missing keyword arguments by checking the container
1616 update = kwargs.setdefault
1617 update('conflict_handler', container.conflict_handler)
1618 update('prefix_chars', container.prefix_chars)
1619 update('argument_default', container.argument_default)
1620 super_init = super(_ArgumentGroup, self).__init__
1621 super_init(description=description, **kwargs)
1622
1623 # group attributes
1624 self.title = title
1625 self._group_actions = []
1626
1627 # share most attributes with the container
1628 self._registries = container._registries
1629 self._actions = container._actions
1630 self._option_string_actions = container._option_string_actions
1631 self._defaults = container._defaults
1632 self._has_negative_number_optionals = \
1633 container._has_negative_number_optionals
Georg Brandl0f6b47a2011-01-30 12:19:35 +00001634 self._mutually_exclusive_groups = container._mutually_exclusive_groups
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001635
1636 def _add_action(self, action):
1637 action = super(_ArgumentGroup, self)._add_action(action)
1638 self._group_actions.append(action)
1639 return action
1640
1641 def _remove_action(self, action):
1642 super(_ArgumentGroup, self)._remove_action(action)
1643 self._group_actions.remove(action)
1644
1645
1646class _MutuallyExclusiveGroup(_ArgumentGroup):
1647
1648 def __init__(self, container, required=False):
1649 super(_MutuallyExclusiveGroup, self).__init__(container)
1650 self.required = required
1651 self._container = container
1652
1653 def _add_action(self, action):
1654 if action.required:
1655 msg = _('mutually exclusive arguments must be optional')
1656 raise ValueError(msg)
1657 action = self._container._add_action(action)
1658 self._group_actions.append(action)
1659 return action
1660
1661 def _remove_action(self, action):
1662 self._container._remove_action(action)
1663 self._group_actions.remove(action)
1664
1665
1666class ArgumentParser(_AttributeHolder, _ActionsContainer):
1667 """Object for parsing command line strings into Python objects.
1668
1669 Keyword Arguments:
1670 - prog -- The name of the program (default: sys.argv[0])
1671 - usage -- A usage message (default: auto-generated from arguments)
1672 - description -- A description of what the program does
1673 - epilog -- Text following the argument descriptions
1674 - parents -- Parsers whose arguments should be copied into this one
1675 - formatter_class -- HelpFormatter class for printing help messages
1676 - prefix_chars -- Characters that prefix optional arguments
1677 - fromfile_prefix_chars -- Characters that prefix files containing
1678 additional arguments
1679 - argument_default -- The default value for all arguments
1680 - conflict_handler -- String indicating how to handle conflicts
1681 - add_help -- Add a -h/-help option
Berker Peksag8089cd62015-02-14 01:39:17 +02001682 - allow_abbrev -- Allow long options to be abbreviated unambiguously
Hai Shif5456382019-09-12 05:56:05 -05001683 - exit_on_error -- Determines whether or not ArgumentParser exits with
1684 error info when an error occurs
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001685 """
1686
1687 def __init__(self,
1688 prog=None,
1689 usage=None,
1690 description=None,
1691 epilog=None,
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001692 parents=[],
1693 formatter_class=HelpFormatter,
1694 prefix_chars='-',
1695 fromfile_prefix_chars=None,
1696 argument_default=None,
1697 conflict_handler='error',
Berker Peksag8089cd62015-02-14 01:39:17 +02001698 add_help=True,
Hai Shif5456382019-09-12 05:56:05 -05001699 allow_abbrev=True,
1700 exit_on_error=True):
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001701
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001702 superinit = super(ArgumentParser, self).__init__
1703 superinit(description=description,
1704 prefix_chars=prefix_chars,
1705 argument_default=argument_default,
1706 conflict_handler=conflict_handler)
1707
1708 # default setting for prog
1709 if prog is None:
1710 prog = _os.path.basename(_sys.argv[0])
1711
1712 self.prog = prog
1713 self.usage = usage
1714 self.epilog = epilog
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001715 self.formatter_class = formatter_class
1716 self.fromfile_prefix_chars = fromfile_prefix_chars
1717 self.add_help = add_help
Berker Peksag8089cd62015-02-14 01:39:17 +02001718 self.allow_abbrev = allow_abbrev
Hai Shif5456382019-09-12 05:56:05 -05001719 self.exit_on_error = exit_on_error
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001720
1721 add_group = self.add_argument_group
1722 self._positionals = add_group(_('positional arguments'))
1723 self._optionals = add_group(_('optional arguments'))
1724 self._subparsers = None
1725
1726 # register types
1727 def identity(string):
1728 return string
1729 self.register('type', None, identity)
1730
Florent Xiclunaaf1adbe2012-07-07 17:02:22 +02001731 # add help argument if necessary
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001732 # (using explicit default to override global argument_default)
R. David Murray88c49fe2010-08-03 17:56:09 +00001733 default_prefix = '-' if '-' in prefix_chars else prefix_chars[0]
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001734 if self.add_help:
1735 self.add_argument(
R. David Murray88c49fe2010-08-03 17:56:09 +00001736 default_prefix+'h', default_prefix*2+'help',
1737 action='help', default=SUPPRESS,
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001738 help=_('show this help message and exit'))
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001739
1740 # add parent arguments and defaults
1741 for parent in parents:
1742 self._add_container_actions(parent)
1743 try:
1744 defaults = parent._defaults
1745 except AttributeError:
1746 pass
1747 else:
1748 self._defaults.update(defaults)
1749
1750 # =======================
1751 # Pretty __repr__ methods
1752 # =======================
1753 def _get_kwargs(self):
1754 names = [
1755 'prog',
1756 'usage',
1757 'description',
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001758 'formatter_class',
1759 'conflict_handler',
1760 'add_help',
1761 ]
1762 return [(name, getattr(self, name)) for name in names]
1763
1764 # ==================================
1765 # Optional/Positional adding methods
1766 # ==================================
1767 def add_subparsers(self, **kwargs):
1768 if self._subparsers is not None:
1769 self.error(_('cannot have multiple subparser arguments'))
1770
1771 # add the parser class to the arguments if it's not present
1772 kwargs.setdefault('parser_class', type(self))
1773
1774 if 'title' in kwargs or 'description' in kwargs:
1775 title = _(kwargs.pop('title', 'subcommands'))
1776 description = _(kwargs.pop('description', None))
1777 self._subparsers = self.add_argument_group(title, description)
1778 else:
1779 self._subparsers = self._positionals
1780
1781 # prog defaults to the usage message of this parser, skipping
1782 # optional arguments and with no "usage:" prefix
1783 if kwargs.get('prog') is None:
1784 formatter = self._get_formatter()
1785 positionals = self._get_positional_actions()
1786 groups = self._mutually_exclusive_groups
1787 formatter.add_usage(self.usage, positionals, groups, '')
1788 kwargs['prog'] = formatter.format_help().strip()
1789
1790 # create the parsers action and add it to the positionals list
1791 parsers_class = self._pop_action_class(kwargs, 'parsers')
1792 action = parsers_class(option_strings=[], **kwargs)
1793 self._subparsers._add_action(action)
1794
1795 # return the created parsers action
1796 return action
1797
1798 def _add_action(self, action):
1799 if action.option_strings:
1800 self._optionals._add_action(action)
1801 else:
1802 self._positionals._add_action(action)
1803 return action
1804
1805 def _get_optional_actions(self):
1806 return [action
1807 for action in self._actions
1808 if action.option_strings]
1809
1810 def _get_positional_actions(self):
1811 return [action
1812 for action in self._actions
1813 if not action.option_strings]
1814
1815 # =====================================
1816 # Command line argument parsing methods
1817 # =====================================
1818 def parse_args(self, args=None, namespace=None):
1819 args, argv = self.parse_known_args(args, namespace)
1820 if argv:
1821 msg = _('unrecognized arguments: %s')
1822 self.error(msg % ' '.join(argv))
1823 return args
1824
1825 def parse_known_args(self, args=None, namespace=None):
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001826 if args is None:
R David Murrayb5228282012-09-08 12:08:01 -04001827 # args default to the system args
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001828 args = _sys.argv[1:]
R David Murrayb5228282012-09-08 12:08:01 -04001829 else:
1830 # make sure that args are mutable
1831 args = list(args)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001832
1833 # default Namespace built from parser defaults
1834 if namespace is None:
1835 namespace = Namespace()
1836
1837 # add any action defaults that aren't present
1838 for action in self._actions:
1839 if action.dest is not SUPPRESS:
1840 if not hasattr(namespace, action.dest):
1841 if action.default is not SUPPRESS:
R David Murray6fb8fb12012-08-31 22:45:20 -04001842 setattr(namespace, action.dest, action.default)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001843
1844 # add any parser defaults that aren't present
1845 for dest in self._defaults:
1846 if not hasattr(namespace, dest):
1847 setattr(namespace, dest, self._defaults[dest])
1848
1849 # parse the arguments and exit if there are any errors
Hai Shif5456382019-09-12 05:56:05 -05001850 if self.exit_on_error:
1851 try:
1852 namespace, args = self._parse_known_args(args, namespace)
1853 except ArgumentError:
1854 err = _sys.exc_info()[1]
1855 self.error(str(err))
1856 else:
Steven Bethardfca2e8a2010-11-02 12:47:22 +00001857 namespace, args = self._parse_known_args(args, namespace)
Hai Shif5456382019-09-12 05:56:05 -05001858
1859 if hasattr(namespace, _UNRECOGNIZED_ARGS_ATTR):
1860 args.extend(getattr(namespace, _UNRECOGNIZED_ARGS_ATTR))
1861 delattr(namespace, _UNRECOGNIZED_ARGS_ATTR)
1862 return namespace, args
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001863
1864 def _parse_known_args(self, arg_strings, namespace):
1865 # replace arg strings that are file references
1866 if self.fromfile_prefix_chars is not None:
1867 arg_strings = self._read_args_from_files(arg_strings)
1868
1869 # map all mutually exclusive arguments to the other arguments
1870 # they can't occur with
1871 action_conflicts = {}
1872 for mutex_group in self._mutually_exclusive_groups:
1873 group_actions = mutex_group._group_actions
1874 for i, mutex_action in enumerate(mutex_group._group_actions):
1875 conflicts = action_conflicts.setdefault(mutex_action, [])
1876 conflicts.extend(group_actions[:i])
1877 conflicts.extend(group_actions[i + 1:])
1878
1879 # find all option indices, and determine the arg_string_pattern
1880 # which has an 'O' if there is an option at an index,
1881 # an 'A' if there is an argument, or a '-' if there is a '--'
1882 option_string_indices = {}
1883 arg_string_pattern_parts = []
1884 arg_strings_iter = iter(arg_strings)
1885 for i, arg_string in enumerate(arg_strings_iter):
1886
1887 # all args after -- are non-options
1888 if arg_string == '--':
1889 arg_string_pattern_parts.append('-')
1890 for arg_string in arg_strings_iter:
1891 arg_string_pattern_parts.append('A')
1892
1893 # otherwise, add the arg to the arg strings
1894 # and note the index if it was an option
1895 else:
1896 option_tuple = self._parse_optional(arg_string)
1897 if option_tuple is None:
1898 pattern = 'A'
1899 else:
1900 option_string_indices[i] = option_tuple
1901 pattern = 'O'
1902 arg_string_pattern_parts.append(pattern)
1903
1904 # join the pieces together to form the pattern
1905 arg_strings_pattern = ''.join(arg_string_pattern_parts)
1906
1907 # converts arg strings to the appropriate and then takes the action
Benjamin Peterson16f2fd02010-03-02 23:09:38 +00001908 seen_actions = set()
1909 seen_non_default_actions = set()
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001910
1911 def take_action(action, argument_strings, option_string=None):
1912 seen_actions.add(action)
1913 argument_values = self._get_values(action, argument_strings)
1914
1915 # error if this argument is not allowed with other previously
1916 # seen arguments, assuming that actions that use the default
1917 # value don't really count as "present"
1918 if argument_values is not action.default:
1919 seen_non_default_actions.add(action)
1920 for conflict_action in action_conflicts.get(action, []):
1921 if conflict_action in seen_non_default_actions:
1922 msg = _('not allowed with argument %s')
1923 action_name = _get_action_name(conflict_action)
1924 raise ArgumentError(action, msg % action_name)
1925
1926 # take the action if we didn't receive a SUPPRESS value
1927 # (e.g. from a default)
1928 if argument_values is not SUPPRESS:
1929 action(self, namespace, argument_values, option_string)
1930
1931 # function to convert arg_strings into an optional action
1932 def consume_optional(start_index):
1933
1934 # get the optional identified at this index
1935 option_tuple = option_string_indices[start_index]
1936 action, option_string, explicit_arg = option_tuple
1937
1938 # identify additional optionals in the same arg string
1939 # (e.g. -xyz is the same as -x -y -z if no args are required)
1940 match_argument = self._match_argument
1941 action_tuples = []
1942 while True:
1943
1944 # if we found no optional action, skip it
1945 if action is None:
1946 extras.append(arg_strings[start_index])
1947 return start_index + 1
1948
1949 # if there is an explicit argument, try to match the
1950 # optional's string arguments to only this
1951 if explicit_arg is not None:
1952 arg_count = match_argument(action, 'A')
1953
1954 # if the action is a single-dash option and takes no
1955 # arguments, try to parse more single-dash options out
1956 # of the tail of the option string
1957 chars = self.prefix_chars
1958 if arg_count == 0 and option_string[1] not in chars:
1959 action_tuples.append((action, [], option_string))
Steven Bethard1ca45a52010-11-01 15:57:36 +00001960 char = option_string[0]
1961 option_string = char + explicit_arg[0]
1962 new_explicit_arg = explicit_arg[1:] or None
1963 optionals_map = self._option_string_actions
1964 if option_string in optionals_map:
1965 action = optionals_map[option_string]
1966 explicit_arg = new_explicit_arg
Benjamin Peterson698a18a2010-03-02 22:34:37 +00001967 else:
1968 msg = _('ignored explicit argument %r')
1969 raise ArgumentError(action, msg % explicit_arg)
1970
1971 # if the action expect exactly one argument, we've
1972 # successfully matched the option; exit the loop
1973 elif arg_count == 1:
1974 stop = start_index + 1
1975 args = [explicit_arg]
1976 action_tuples.append((action, args, option_string))
1977 break
1978
1979 # error if a double-dash option did not use the
1980 # explicit argument
1981 else:
1982 msg = _('ignored explicit argument %r')
1983 raise ArgumentError(action, msg % explicit_arg)
1984
1985 # if there is no explicit argument, try to match the
1986 # optional's string arguments with the following strings
1987 # if successful, exit the loop
1988 else:
1989 start = start_index + 1
1990 selected_patterns = arg_strings_pattern[start:]
1991 arg_count = match_argument(action, selected_patterns)
1992 stop = start + arg_count
1993 args = arg_strings[start:stop]
1994 action_tuples.append((action, args, option_string))
1995 break
1996
1997 # add the Optional to the list and return the index at which
1998 # the Optional's string args stopped
1999 assert action_tuples
2000 for action, args, option_string in action_tuples:
2001 take_action(action, args, option_string)
2002 return stop
2003
2004 # the list of Positionals left to be parsed; this is modified
2005 # by consume_positionals()
2006 positionals = self._get_positional_actions()
2007
2008 # function to convert arg_strings into positional actions
2009 def consume_positionals(start_index):
2010 # match as many Positionals as possible
2011 match_partial = self._match_arguments_partial
2012 selected_pattern = arg_strings_pattern[start_index:]
2013 arg_counts = match_partial(positionals, selected_pattern)
2014
2015 # slice off the appropriate arg strings for each Positional
2016 # and add the Positional and its args to the list
2017 for action, arg_count in zip(positionals, arg_counts):
2018 args = arg_strings[start_index: start_index + arg_count]
2019 start_index += arg_count
2020 take_action(action, args)
2021
2022 # slice off the Positionals that we just parsed and return the
2023 # index at which the Positionals' string args stopped
2024 positionals[:] = positionals[len(arg_counts):]
2025 return start_index
2026
2027 # consume Positionals and Optionals alternately, until we have
2028 # passed the last option string
2029 extras = []
2030 start_index = 0
2031 if option_string_indices:
2032 max_option_string_index = max(option_string_indices)
2033 else:
2034 max_option_string_index = -1
2035 while start_index <= max_option_string_index:
2036
2037 # consume any Positionals preceding the next option
2038 next_option_string_index = min([
2039 index
2040 for index in option_string_indices
2041 if index >= start_index])
2042 if start_index != next_option_string_index:
2043 positionals_end_index = consume_positionals(start_index)
2044
2045 # only try to parse the next optional if we didn't consume
2046 # the option string during the positionals parsing
2047 if positionals_end_index > start_index:
2048 start_index = positionals_end_index
2049 continue
2050 else:
2051 start_index = positionals_end_index
2052
2053 # if we consumed all the positionals we could and we're not
2054 # at the index of an option string, there were extra arguments
2055 if start_index not in option_string_indices:
2056 strings = arg_strings[start_index:next_option_string_index]
2057 extras.extend(strings)
2058 start_index = next_option_string_index
2059
2060 # consume the next optional and any arguments for it
2061 start_index = consume_optional(start_index)
2062
2063 # consume any positionals following the last Optional
2064 stop_index = consume_positionals(start_index)
2065
2066 # if we didn't consume all the argument strings, there were extras
2067 extras.extend(arg_strings[stop_index:])
2068
R David Murray64b0ef12012-08-31 23:09:34 -04002069 # make sure all required actions were present and also convert
2070 # action defaults which were not given as arguments
2071 required_actions = []
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002072 for action in self._actions:
R David Murray6fb8fb12012-08-31 22:45:20 -04002073 if action not in seen_actions:
2074 if action.required:
R David Murray64b0ef12012-08-31 23:09:34 -04002075 required_actions.append(_get_action_name(action))
R David Murray6fb8fb12012-08-31 22:45:20 -04002076 else:
2077 # Convert action default now instead of doing it before
2078 # parsing arguments to avoid calling convert functions
2079 # twice (which may fail) if the argument was given, but
2080 # only if it was defined already in the namespace
2081 if (action.default is not None and
Barry Warsawd89774e2012-09-12 15:31:38 -04002082 isinstance(action.default, str) and
R David Murray64b0ef12012-08-31 23:09:34 -04002083 hasattr(namespace, action.dest) and
2084 action.default is getattr(namespace, action.dest)):
R David Murray6fb8fb12012-08-31 22:45:20 -04002085 setattr(namespace, action.dest,
2086 self._get_value(action, action.default))
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002087
R David Murrayf97c59a2011-06-09 12:34:07 -04002088 if required_actions:
2089 self.error(_('the following arguments are required: %s') %
2090 ', '.join(required_actions))
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002091
2092 # make sure all required groups had one option present
2093 for group in self._mutually_exclusive_groups:
2094 if group.required:
2095 for action in group._group_actions:
2096 if action in seen_non_default_actions:
2097 break
2098
2099 # if no actions were used, report the error
2100 else:
2101 names = [_get_action_name(action)
2102 for action in group._group_actions
2103 if action.help is not SUPPRESS]
2104 msg = _('one of the arguments %s is required')
2105 self.error(msg % ' '.join(names))
2106
2107 # return the updated namespace and the extra arguments
2108 return namespace, extras
2109
2110 def _read_args_from_files(self, arg_strings):
2111 # expand arguments referencing files
2112 new_arg_strings = []
2113 for arg_string in arg_strings:
2114
2115 # for regular arguments, just add them back into the list
R David Murrayb94082a2012-07-21 22:20:11 -04002116 if not arg_string or arg_string[0] not in self.fromfile_prefix_chars:
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002117 new_arg_strings.append(arg_string)
2118
2119 # replace arguments referencing files with the file content
2120 else:
2121 try:
Giampaolo Rodola'2f50aaf2013-02-12 02:04:27 +01002122 with open(arg_string[1:]) as args_file:
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002123 arg_strings = []
2124 for arg_line in args_file.read().splitlines():
2125 for arg in self.convert_arg_line_to_args(arg_line):
2126 arg_strings.append(arg)
2127 arg_strings = self._read_args_from_files(arg_strings)
2128 new_arg_strings.extend(arg_strings)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02002129 except OSError:
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002130 err = _sys.exc_info()[1]
2131 self.error(str(err))
2132
2133 # return the modified argument list
2134 return new_arg_strings
2135
2136 def convert_arg_line_to_args(self, arg_line):
2137 return [arg_line]
2138
2139 def _match_argument(self, action, arg_strings_pattern):
2140 # match the pattern for this action to the arg strings
2141 nargs_pattern = self._get_nargs_pattern(action)
2142 match = _re.match(nargs_pattern, arg_strings_pattern)
2143
2144 # raise an exception if we weren't able to find a match
2145 if match is None:
2146 nargs_errors = {
2147 None: _('expected one argument'),
2148 OPTIONAL: _('expected at most one argument'),
2149 ONE_OR_MORE: _('expected at least one argument'),
2150 }
Federico Bondbe5c79e2019-11-20 10:29:29 -03002151 msg = nargs_errors.get(action.nargs)
2152 if msg is None:
2153 msg = ngettext('expected %s argument',
Éric Araujo12159152010-12-04 17:31:49 +00002154 'expected %s arguments',
2155 action.nargs) % action.nargs
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002156 raise ArgumentError(action, msg)
2157
2158 # return the number of arguments matched
2159 return len(match.group(1))
2160
2161 def _match_arguments_partial(self, actions, arg_strings_pattern):
2162 # progressively shorten the actions list by slicing off the
2163 # final actions until we find a match
2164 result = []
2165 for i in range(len(actions), 0, -1):
2166 actions_slice = actions[:i]
2167 pattern = ''.join([self._get_nargs_pattern(action)
2168 for action in actions_slice])
2169 match = _re.match(pattern, arg_strings_pattern)
2170 if match is not None:
2171 result.extend([len(string) for string in match.groups()])
2172 break
2173
2174 # return the list of arg string counts
2175 return result
2176
2177 def _parse_optional(self, arg_string):
2178 # if it's an empty string, it was meant to be a positional
2179 if not arg_string:
2180 return None
2181
2182 # if it doesn't start with a prefix, it was meant to be positional
2183 if not arg_string[0] in self.prefix_chars:
2184 return None
2185
2186 # if the option string is present in the parser, return the action
2187 if arg_string in self._option_string_actions:
2188 action = self._option_string_actions[arg_string]
2189 return action, arg_string, None
2190
2191 # if it's just a single character, it was meant to be positional
2192 if len(arg_string) == 1:
2193 return None
2194
2195 # if the option string before the "=" is present, return the action
2196 if '=' in arg_string:
2197 option_string, explicit_arg = arg_string.split('=', 1)
2198 if option_string in self._option_string_actions:
2199 action = self._option_string_actions[option_string]
2200 return action, option_string, explicit_arg
2201
Kyle Meyer8edfc472020-02-18 04:48:57 -05002202 # search through all possible prefixes of the option string
2203 # and all actions in the parser for possible interpretations
2204 option_tuples = self._get_option_tuples(arg_string)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002205
Kyle Meyer8edfc472020-02-18 04:48:57 -05002206 # if multiple actions match, the option string was ambiguous
2207 if len(option_tuples) > 1:
2208 options = ', '.join([option_string
2209 for action, option_string, explicit_arg in option_tuples])
2210 args = {'option': arg_string, 'matches': options}
2211 msg = _('ambiguous option: %(option)s could match %(matches)s')
2212 self.error(msg % args)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002213
Kyle Meyer8edfc472020-02-18 04:48:57 -05002214 # if exactly one action matched, this segmentation is good,
2215 # so return the parsed action
2216 elif len(option_tuples) == 1:
2217 option_tuple, = option_tuples
2218 return option_tuple
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002219
2220 # if it was not found as an option, but it looks like a negative
2221 # number, it was meant to be positional
2222 # unless there are negative-number-like options
2223 if self._negative_number_matcher.match(arg_string):
2224 if not self._has_negative_number_optionals:
2225 return None
2226
2227 # if it contains a space, it was meant to be a positional
2228 if ' ' in arg_string:
2229 return None
2230
2231 # it was meant to be an optional but there is no such option
2232 # in this parser (though it might be a valid option in a subparser)
2233 return None, arg_string, None
2234
2235 def _get_option_tuples(self, option_string):
2236 result = []
2237
2238 # option strings starting with two prefix characters are only
2239 # split at the '='
2240 chars = self.prefix_chars
2241 if option_string[0] in chars and option_string[1] in chars:
Kyle Meyer8edfc472020-02-18 04:48:57 -05002242 if self.allow_abbrev:
2243 if '=' in option_string:
2244 option_prefix, explicit_arg = option_string.split('=', 1)
2245 else:
2246 option_prefix = option_string
2247 explicit_arg = None
2248 for option_string in self._option_string_actions:
2249 if option_string.startswith(option_prefix):
2250 action = self._option_string_actions[option_string]
2251 tup = action, option_string, explicit_arg
2252 result.append(tup)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002253
2254 # single character options can be concatenated with their arguments
2255 # but multiple character options always have to have their argument
2256 # separate
2257 elif option_string[0] in chars and option_string[1] not in chars:
2258 option_prefix = option_string
2259 explicit_arg = None
2260 short_option_prefix = option_string[:2]
2261 short_explicit_arg = option_string[2:]
2262
2263 for option_string in self._option_string_actions:
2264 if option_string == short_option_prefix:
2265 action = self._option_string_actions[option_string]
2266 tup = action, option_string, short_explicit_arg
2267 result.append(tup)
2268 elif option_string.startswith(option_prefix):
2269 action = self._option_string_actions[option_string]
2270 tup = action, option_string, explicit_arg
2271 result.append(tup)
2272
2273 # shouldn't ever get here
2274 else:
2275 self.error(_('unexpected option string: %s') % option_string)
2276
2277 # return the collected option tuples
2278 return result
2279
2280 def _get_nargs_pattern(self, action):
2281 # in all examples below, we have to allow for '--' args
2282 # which are represented as '-' in the pattern
2283 nargs = action.nargs
2284
2285 # the default (None) is assumed to be a single argument
2286 if nargs is None:
2287 nargs_pattern = '(-*A-*)'
2288
2289 # allow zero or one arguments
2290 elif nargs == OPTIONAL:
2291 nargs_pattern = '(-*A?-*)'
2292
2293 # allow zero or more arguments
2294 elif nargs == ZERO_OR_MORE:
2295 nargs_pattern = '(-*[A-]*)'
2296
2297 # allow one or more arguments
2298 elif nargs == ONE_OR_MORE:
2299 nargs_pattern = '(-*A[A-]*)'
2300
2301 # allow any number of options or arguments
2302 elif nargs == REMAINDER:
2303 nargs_pattern = '([-AO]*)'
2304
2305 # allow one argument followed by any number of options or arguments
2306 elif nargs == PARSER:
2307 nargs_pattern = '(-*A[-AO]*)'
2308
R. David Murray0f6b9d22017-09-06 20:25:40 -04002309 # suppress action, like nargs=0
2310 elif nargs == SUPPRESS:
2311 nargs_pattern = '(-*-*)'
2312
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002313 # all others should be integers
2314 else:
2315 nargs_pattern = '(-*%s-*)' % '-*'.join('A' * nargs)
2316
2317 # if this is an optional action, -- is not allowed
2318 if action.option_strings:
2319 nargs_pattern = nargs_pattern.replace('-*', '')
2320 nargs_pattern = nargs_pattern.replace('-', '')
2321
2322 # return the pattern
2323 return nargs_pattern
2324
2325 # ========================
R. David Murray0f6b9d22017-09-06 20:25:40 -04002326 # Alt command line argument parsing, allowing free intermix
2327 # ========================
2328
2329 def parse_intermixed_args(self, args=None, namespace=None):
2330 args, argv = self.parse_known_intermixed_args(args, namespace)
2331 if argv:
2332 msg = _('unrecognized arguments: %s')
2333 self.error(msg % ' '.join(argv))
2334 return args
2335
2336 def parse_known_intermixed_args(self, args=None, namespace=None):
2337 # returns a namespace and list of extras
2338 #
2339 # positional can be freely intermixed with optionals. optionals are
2340 # first parsed with all positional arguments deactivated. The 'extras'
2341 # are then parsed. If the parser definition is incompatible with the
2342 # intermixed assumptions (e.g. use of REMAINDER, subparsers) a
2343 # TypeError is raised.
2344 #
2345 # positionals are 'deactivated' by setting nargs and default to
2346 # SUPPRESS. This blocks the addition of that positional to the
2347 # namespace
2348
2349 positionals = self._get_positional_actions()
2350 a = [action for action in positionals
2351 if action.nargs in [PARSER, REMAINDER]]
2352 if a:
2353 raise TypeError('parse_intermixed_args: positional arg'
2354 ' with nargs=%s'%a[0].nargs)
2355
2356 if [action.dest for group in self._mutually_exclusive_groups
2357 for action in group._group_actions if action in positionals]:
2358 raise TypeError('parse_intermixed_args: positional in'
2359 ' mutuallyExclusiveGroup')
2360
2361 try:
2362 save_usage = self.usage
2363 try:
2364 if self.usage is None:
2365 # capture the full usage for use in error messages
2366 self.usage = self.format_usage()[7:]
2367 for action in positionals:
2368 # deactivate positionals
2369 action.save_nargs = action.nargs
2370 # action.nargs = 0
2371 action.nargs = SUPPRESS
2372 action.save_default = action.default
2373 action.default = SUPPRESS
2374 namespace, remaining_args = self.parse_known_args(args,
2375 namespace)
2376 for action in positionals:
2377 # remove the empty positional values from namespace
2378 if (hasattr(namespace, action.dest)
2379 and getattr(namespace, action.dest)==[]):
2380 from warnings import warn
2381 warn('Do not expect %s in %s' % (action.dest, namespace))
2382 delattr(namespace, action.dest)
2383 finally:
2384 # restore nargs and usage before exiting
2385 for action in positionals:
2386 action.nargs = action.save_nargs
2387 action.default = action.save_default
2388 optionals = self._get_optional_actions()
2389 try:
2390 # parse positionals. optionals aren't normally required, but
2391 # they could be, so make sure they aren't.
2392 for action in optionals:
2393 action.save_required = action.required
2394 action.required = False
2395 for group in self._mutually_exclusive_groups:
2396 group.save_required = group.required
2397 group.required = False
2398 namespace, extras = self.parse_known_args(remaining_args,
2399 namespace)
2400 finally:
2401 # restore parser values before exiting
2402 for action in optionals:
2403 action.required = action.save_required
2404 for group in self._mutually_exclusive_groups:
2405 group.required = group.save_required
2406 finally:
2407 self.usage = save_usage
2408 return namespace, extras
2409
2410 # ========================
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002411 # Value conversion methods
2412 # ========================
2413 def _get_values(self, action, arg_strings):
R David Murray00528e82012-07-21 22:48:35 -04002414 # for everything but PARSER, REMAINDER args, strip out first '--'
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002415 if action.nargs not in [PARSER, REMAINDER]:
R David Murray00528e82012-07-21 22:48:35 -04002416 try:
2417 arg_strings.remove('--')
2418 except ValueError:
2419 pass
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002420
2421 # optional argument produces a default when not present
2422 if not arg_strings and action.nargs == OPTIONAL:
2423 if action.option_strings:
2424 value = action.const
2425 else:
2426 value = action.default
Benjamin Peterson16f2fd02010-03-02 23:09:38 +00002427 if isinstance(value, str):
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002428 value = self._get_value(action, value)
2429 self._check_value(action, value)
2430
2431 # when nargs='*' on a positional, if there were no command-line
2432 # args, use the default if it is anything other than None
2433 elif (not arg_strings and action.nargs == ZERO_OR_MORE and
2434 not action.option_strings):
2435 if action.default is not None:
2436 value = action.default
2437 else:
2438 value = arg_strings
2439 self._check_value(action, value)
2440
2441 # single argument or optional argument produces a single value
2442 elif len(arg_strings) == 1 and action.nargs in [None, OPTIONAL]:
2443 arg_string, = arg_strings
2444 value = self._get_value(action, arg_string)
2445 self._check_value(action, value)
2446
2447 # REMAINDER arguments convert all values, checking none
2448 elif action.nargs == REMAINDER:
2449 value = [self._get_value(action, v) for v in arg_strings]
2450
2451 # PARSER arguments convert all values, but check only the first
2452 elif action.nargs == PARSER:
2453 value = [self._get_value(action, v) for v in arg_strings]
2454 self._check_value(action, value[0])
2455
R. David Murray0f6b9d22017-09-06 20:25:40 -04002456 # SUPPRESS argument does not put anything in the namespace
2457 elif action.nargs == SUPPRESS:
2458 value = SUPPRESS
2459
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002460 # all other types of nargs produce a list
2461 else:
2462 value = [self._get_value(action, v) for v in arg_strings]
2463 for v in value:
2464 self._check_value(action, v)
2465
2466 # return the converted value
2467 return value
2468
2469 def _get_value(self, action, arg_string):
2470 type_func = self._registry_get('type', action.type, action.type)
Florent Xicluna5d1155c2011-10-28 14:45:05 +02002471 if not callable(type_func):
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002472 msg = _('%r is not callable')
2473 raise ArgumentError(action, msg % type_func)
2474
2475 # convert the value to the appropriate type
2476 try:
2477 result = type_func(arg_string)
2478
2479 # ArgumentTypeErrors indicate errors
2480 except ArgumentTypeError:
2481 name = getattr(action.type, '__name__', repr(action.type))
2482 msg = str(_sys.exc_info()[1])
2483 raise ArgumentError(action, msg)
2484
2485 # TypeErrors or ValueErrors also indicate errors
2486 except (TypeError, ValueError):
2487 name = getattr(action.type, '__name__', repr(action.type))
Éric Araujobb48a8b2010-12-03 19:41:00 +00002488 args = {'type': name, 'value': arg_string}
2489 msg = _('invalid %(type)s value: %(value)r')
2490 raise ArgumentError(action, msg % args)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002491
2492 # return the converted value
2493 return result
2494
2495 def _check_value(self, action, value):
2496 # converted value must be one of the choices (if specified)
Vinay Sajip9ae50502016-08-23 08:43:16 +01002497 if action.choices is not None and value not in action.choices:
2498 args = {'value': value,
2499 'choices': ', '.join(map(repr, action.choices))}
2500 msg = _('invalid choice: %(value)r (choose from %(choices)s)')
2501 raise ArgumentError(action, msg % args)
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002502
2503 # =======================
2504 # Help-formatting methods
2505 # =======================
2506 def format_usage(self):
2507 formatter = self._get_formatter()
2508 formatter.add_usage(self.usage, self._actions,
2509 self._mutually_exclusive_groups)
2510 return formatter.format_help()
2511
2512 def format_help(self):
2513 formatter = self._get_formatter()
2514
2515 # usage
2516 formatter.add_usage(self.usage, self._actions,
2517 self._mutually_exclusive_groups)
2518
2519 # description
2520 formatter.add_text(self.description)
2521
2522 # positionals, optionals and user-defined groups
2523 for action_group in self._action_groups:
2524 formatter.start_section(action_group.title)
2525 formatter.add_text(action_group.description)
2526 formatter.add_arguments(action_group._group_actions)
2527 formatter.end_section()
2528
2529 # epilog
2530 formatter.add_text(self.epilog)
2531
2532 # determine help from format above
2533 return formatter.format_help()
2534
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002535 def _get_formatter(self):
2536 return self.formatter_class(prog=self.prog)
2537
2538 # =====================
2539 # Help-printing methods
2540 # =====================
2541 def print_usage(self, file=None):
2542 if file is None:
2543 file = _sys.stdout
2544 self._print_message(self.format_usage(), file)
2545
2546 def print_help(self, file=None):
2547 if file is None:
2548 file = _sys.stdout
2549 self._print_message(self.format_help(), file)
2550
Benjamin Peterson698a18a2010-03-02 22:34:37 +00002551 def _print_message(self, message, file=None):
2552 if message:
2553 if file is None:
2554 file = _sys.stderr
2555 file.write(message)
2556
2557 # ===============
2558 # Exiting methods
2559 # ===============
2560 def exit(self, status=0, message=None):
2561 if message:
2562 self._print_message(message, _sys.stderr)
2563 _sys.exit(status)
2564
2565 def error(self, message):
2566 """error(message: string)
2567
2568 Prints a usage message incorporating the message to stderr and
2569 exits.
2570
2571 If you override this in a subclass, it should not return -- it
2572 should either exit or raise an exception.
2573 """
2574 self.print_usage(_sys.stderr)
Éric Araujobb48a8b2010-12-03 19:41:00 +00002575 args = {'prog': self.prog, 'message': message}
2576 self.exit(2, _('%(prog)s: error: %(message)s\n') % args)