4 * Object for parsing command line strings into js objects.
6 * Inherited from [[ActionContainer]]
10 var util = require('util');
11 var format = require('util').format;
12 var Path = require('path');
14 var _ = require('lodash');
15 var sprintf = require('sprintf-js').sprintf;
18 var $$ = require('./const');
20 var ActionContainer = require('./action_container');
23 var argumentErrorHelper = require('./argument/error');
25 var HelpFormatter = require('./help/formatter');
27 var Namespace = require('./namespace');
31 * new ArgumentParser(options)
33 * Create a new ArgumentParser object.
36 * - `prog` The name of the program (default: Path.basename(process.argv[1]))
37 * - `usage` A usage message (default: auto-generated from arguments)
38 * - `description` A description of what the program does
39 * - `epilog` Text following the argument descriptions
40 * - `parents` Parsers whose arguments should be copied into this one
41 * - `formatterClass` HelpFormatter class for printing help messages
42 * - `prefixChars` Characters that prefix optional arguments
43 * - `fromfilePrefixChars` Characters that prefix files containing additional arguments
44 * - `argumentDefault` The default value for all arguments
45 * - `addHelp` Add a -h/-help option
46 * - `conflictHandler` Specifies how to handle conflicting argument names
47 * - `debug` Enable debug mode. Argument errors throw exception in
48 * debug mode and process.exit in normal. Used for development and
49 * testing (default: false)
51 * See also [original guide][1]
53 * [1]:http://docs.python.org/dev/library/argparse.html#argumentparser-objects
55 var ArgumentParser = module.exports = function ArgumentParser(options) {
57 options = options || {};
59 options.description = (options.description || null);
60 options.argumentDefault = (options.argumentDefault || null);
61 options.prefixChars = (options.prefixChars || '-');
62 options.conflictHandler = (options.conflictHandler || 'error');
63 ActionContainer.call(this, options);
65 options.addHelp = (options.addHelp === undefined || !!options.addHelp);
66 options.parents = (options.parents || []);
67 // default program name
68 options.prog = (options.prog || Path.basename(process.argv[1]));
69 this.prog = options.prog;
70 this.usage = options.usage;
71 this.epilog = options.epilog;
72 this.version = options.version;
74 this.debug = (options.debug === true);
76 this.formatterClass = (options.formatterClass || HelpFormatter);
77 this.fromfilePrefixChars = options.fromfilePrefixChars || null;
78 this._positionals = this.addArgumentGroup({title: 'Positional arguments'});
79 this._optionals = this.addArgumentGroup({title: 'Optional arguments'});
80 this._subparsers = null;
83 var FUNCTION_IDENTITY = function (o) {
86 this.register('type', 'auto', FUNCTION_IDENTITY);
87 this.register('type', null, FUNCTION_IDENTITY);
88 this.register('type', 'int', function (x) {
89 var result = parseInt(x, 10);
91 throw new Error(x + ' is not a valid integer.');
95 this.register('type', 'float', function (x) {
96 var result = parseFloat(x);
98 throw new Error(x + ' is not a valid float.');
102 this.register('type', 'string', function (x) {
106 // add help and version arguments if necessary
107 var defaultPrefix = (this.prefixChars.indexOf('-') > -1) ? '-' : this.prefixChars[0];
108 if (options.addHelp) {
110 [defaultPrefix + 'h', defaultPrefix + defaultPrefix + 'help'],
113 defaultValue: $$.SUPPRESS,
114 help: 'Show this help message and exit.'
118 if (this.version !== undefined) {
120 [defaultPrefix + 'v', defaultPrefix + defaultPrefix + 'version'],
123 version: this.version,
124 defaultValue: $$.SUPPRESS,
125 help: "Show program's version number and exit."
130 // add parent arguments and defaults
131 options.parents.forEach(function (parent) {
132 self._addContainerActions(parent);
133 if (parent._defaults !== undefined) {
134 for (var defaultKey in parent._defaults) {
135 if (parent._defaults.hasOwnProperty(defaultKey)) {
136 self._defaults[defaultKey] = parent._defaults[defaultKey];
143 util.inherits(ArgumentParser, ActionContainer);
146 * ArgumentParser#addSubparsers(options) -> [[ActionSubparsers]]
147 * - options (object): hash of options see [[ActionSubparsers.new]]
149 * See also [subcommands][1]
151 * [1]:http://docs.python.org/dev/library/argparse.html#sub-commands
153 ArgumentParser.prototype.addSubparsers = function (options) {
154 if (!!this._subparsers) {
155 this.error('Cannot have multiple subparser arguments.');
158 options = options || {};
159 options.debug = (this.debug === true);
160 options.optionStrings = [];
161 options.parserClass = (options.parserClass || ArgumentParser);
164 if (!!options.title || !!options.description) {
166 this._subparsers = this.addArgumentGroup({
167 title: (options.title || 'subcommands'),
168 description: options.description
170 delete options.title;
171 delete options.description;
174 this._subparsers = this._positionals;
177 // prog defaults to the usage message of this parser, skipping
178 // optional arguments and with no "usage:" prefix
180 var formatter = this._getFormatter();
181 var positionals = this._getPositionalActions();
182 var groups = this._mutuallyExclusiveGroups;
183 formatter.addUsage(this.usage, positionals, groups, '');
184 options.prog = _.trim(formatter.formatHelp());
187 // create the parsers action and add it to the positionals list
188 var ParsersClass = this._popActionClass(options, 'parsers');
189 var action = new ParsersClass(options);
190 this._subparsers._addAction(action);
192 // return the created parsers action
196 ArgumentParser.prototype._addAction = function (action) {
197 if (action.isOptional()) {
198 this._optionals._addAction(action);
200 this._positionals._addAction(action);
205 ArgumentParser.prototype._getOptionalActions = function () {
206 return this._actions.filter(function (action) {
207 return action.isOptional();
211 ArgumentParser.prototype._getPositionalActions = function () {
212 return this._actions.filter(function (action) {
213 return action.isPositional();
219 * ArgumentParser#parseArgs(args, namespace) -> Namespace|Object
220 * - args (array): input elements
221 * - namespace (Namespace|Object): result object
223 * Parsed args and throws error if some arguments are not recognized
225 * See also [original guide][1]
227 * [1]:http://docs.python.org/dev/library/argparse.html#the-parse-args-method
229 ArgumentParser.prototype.parseArgs = function (args, namespace) {
231 var result = this.parseKnownArgs(args, namespace);
235 if (argv && argv.length > 0) {
237 format('Unrecognized arguments: %s.', argv.join(' '))
244 * ArgumentParser#parseKnownArgs(args, namespace) -> array
245 * - args (array): input options
246 * - namespace (Namespace|Object): result object
248 * Parse known arguments and return tuple of result object
251 * See also [original guide][1]
253 * [1]:http://docs.python.org/dev/library/argparse.html#partial-parsing
255 ArgumentParser.prototype.parseKnownArgs = function (args, namespace) {
258 // args default to the system args
259 args = args || process.argv.slice(2);
261 // default Namespace built from parser defaults
262 namespace = namespace || new Namespace();
264 self._actions.forEach(function (action) {
265 if (action.dest !== $$.SUPPRESS) {
266 if (!_.has(namespace, action.dest)) {
267 if (action.defaultValue !== $$.SUPPRESS) {
268 var defaultValue = action.defaultValue;
269 if (_.isString(action.defaultValue)) {
270 defaultValue = self._getValue(action, defaultValue);
272 namespace[action.dest] = defaultValue;
278 _.keys(self._defaults).forEach(function (dest) {
279 namespace[dest] = self._defaults[dest];
282 // parse the arguments and exit if there are any errors
284 var res = this._parseKnownArgs(args, namespace);
288 if (_.has(namespace, $$._UNRECOGNIZED_ARGS_ATTR)) {
289 args = _.union(args, namespace[$$._UNRECOGNIZED_ARGS_ATTR]);
290 delete namespace[$$._UNRECOGNIZED_ARGS_ATTR];
292 return [namespace, args];
298 ArgumentParser.prototype._parseKnownArgs = function (argStrings, namespace) {
303 // replace arg strings that are file references
304 if (this.fromfilePrefixChars !== null) {
305 argStrings = this._readArgsFromFiles(argStrings);
307 // map all mutually exclusive arguments to the other arguments
308 // they can't occur with
309 // Python has 'conflicts = action_conflicts.setdefault(mutex_action, [])'
310 // though I can't conceive of a way in which an action could be a member
311 // of two different mutually exclusive groups.
313 function actionHash(action) {
314 // some sort of hashable key for this action
315 // action itself cannot be a key in actionConflicts
316 // I think getName() (join of optionStrings) is unique enough
317 return action.getName();
321 var actionConflicts = {};
323 this._mutuallyExclusiveGroups.forEach(function (mutexGroup) {
324 mutexGroup._groupActions.forEach(function (mutexAction, i, groupActions) {
325 key = actionHash(mutexAction);
326 if (!_.has(actionConflicts, key)) {
327 actionConflicts[key] = [];
329 conflicts = actionConflicts[key];
330 conflicts.push.apply(conflicts, groupActions.slice(0, i));
331 conflicts.push.apply(conflicts, groupActions.slice(i + 1));
335 // find all option indices, and determine the arg_string_pattern
336 // which has an 'O' if there is an option at an index,
337 // an 'A' if there is an argument, or a '-' if there is a '--'
338 var optionStringIndices = {};
340 var argStringPatternParts = [];
342 argStrings.forEach(function (argString, argStringIndex) {
343 if (argString === '--') {
344 argStringPatternParts.push('-');
345 while (argStringIndex < argStrings.length) {
346 argStringPatternParts.push('A');
350 // otherwise, add the arg to the arg strings
351 // and note the index if it was an option
354 var optionTuple = self._parseOptional(argString);
359 optionStringIndices[argStringIndex] = optionTuple;
362 argStringPatternParts.push(pattern);
365 var argStringsPattern = argStringPatternParts.join('');
367 var seenActions = [];
368 var seenNonDefaultActions = [];
371 function takeAction(action, argumentStrings, optionString) {
372 seenActions.push(action);
373 var argumentValues = self._getValues(action, argumentStrings);
375 // error if this argument is not allowed with other previously
376 // seen arguments, assuming that actions that use the default
377 // value don't really count as "present"
378 if (argumentValues !== action.defaultValue) {
379 seenNonDefaultActions.push(action);
380 if (!!actionConflicts[actionHash(action)]) {
381 actionConflicts[actionHash(action)].forEach(function (actionConflict) {
382 if (seenNonDefaultActions.indexOf(actionConflict) >= 0) {
383 throw argumentErrorHelper(
385 format('Not allowed with argument "%s".', actionConflict.getName())
392 if (argumentValues !== $$.SUPPRESS) {
393 action.call(self, namespace, argumentValues, optionString);
397 function consumeOptional(startIndex) {
398 // get the optional identified at this index
399 var optionTuple = optionStringIndices[startIndex];
400 var action = optionTuple[0];
401 var optionString = optionTuple[1];
402 var explicitArg = optionTuple[2];
404 // identify additional optionals in the same arg string
405 // (e.g. -xyz is the same as -x -y -z if no args are required)
406 var actionTuples = [];
408 var args, argCount, start, stop;
412 extras.push(argStrings[startIndex]);
413 return startIndex + 1;
416 argCount = self._matchArgument(action, 'A');
418 // if the action is a single-dash option and takes no
419 // arguments, try to parse more single-dash options out
420 // of the tail of the option string
421 var chars = self.prefixChars;
422 if (argCount === 0 && chars.indexOf(optionString[1]) < 0) {
423 actionTuples.push([action, [], optionString]);
424 optionString = optionString[0] + explicitArg[0];
425 var newExplicitArg = explicitArg.slice(1) || null;
426 var optionalsMap = self._optionStringActions;
428 if (_.keys(optionalsMap).indexOf(optionString) >= 0) {
429 action = optionalsMap[optionString];
430 explicitArg = newExplicitArg;
433 var msg = 'ignored explicit argument %r';
434 throw argumentErrorHelper(action, msg);
437 // if the action expect exactly one argument, we've
438 // successfully matched the option; exit the loop
439 else if (argCount === 1) {
440 stop = startIndex + 1;
441 args = [explicitArg];
442 actionTuples.push([action, args, optionString]);
445 // error if a double-dash option did not use the
448 var message = 'ignored explicit argument %r';
449 throw argumentErrorHelper(action, sprintf(message, explicitArg));
452 // if there is no explicit argument, try to match the
453 // optional's string arguments with the following strings
454 // if successful, exit the loop
457 start = startIndex + 1;
458 var selectedPatterns = argStringsPattern.substr(start);
460 argCount = self._matchArgument(action, selectedPatterns);
461 stop = start + argCount;
464 args = argStrings.slice(start, stop);
466 actionTuples.push([action, args, optionString]);
472 // add the Optional to the list and return the index at which
473 // the Optional's string args stopped
474 if (actionTuples.length < 1) {
475 throw new Error('length should be > 0');
477 for (var i = 0; i < actionTuples.length; i++) {
478 takeAction.apply(self, actionTuples[i]);
483 // the list of Positionals left to be parsed; this is modified
484 // by consume_positionals()
485 var positionals = self._getPositionalActions();
487 function consumePositionals(startIndex) {
488 // match as many Positionals as possible
489 var selectedPattern = argStringsPattern.substr(startIndex);
490 var argCounts = self._matchArgumentsPartial(positionals, selectedPattern);
492 // slice off the appropriate arg strings for each Positional
493 // and add the Positional and its args to the list
494 _.zip(positionals, argCounts).forEach(function (item) {
495 var action = item[0];
496 var argCount = item[1];
497 if (argCount === undefined) {
500 var args = argStrings.slice(startIndex, startIndex + argCount);
502 startIndex += argCount;
503 takeAction(action, args);
506 // slice off the Positionals that we just parsed and return the
507 // index at which the Positionals' string args stopped
508 positionals = positionals.slice(argCounts.length);
512 // consume Positionals and Optionals alternately, until we have
513 // passed the last option string
517 var maxOptionStringIndex = -1;
519 Object.keys(optionStringIndices).forEach(function (position) {
520 maxOptionStringIndex = Math.max(maxOptionStringIndex, parseInt(position, 10));
523 var positionalsEndIndex, nextOptionStringIndex;
525 while (startIndex <= maxOptionStringIndex) {
526 // consume any Positionals preceding the next option
527 nextOptionStringIndex = null;
528 for (position in optionStringIndices) {
529 if (!optionStringIndices.hasOwnProperty(position)) { continue; }
531 position = parseInt(position, 10);
532 if (position >= startIndex) {
533 if (nextOptionStringIndex !== null) {
534 nextOptionStringIndex = Math.min(nextOptionStringIndex, position);
537 nextOptionStringIndex = position;
542 if (startIndex !== nextOptionStringIndex) {
543 positionalsEndIndex = consumePositionals(startIndex);
544 // only try to parse the next optional if we didn't consume
545 // the option string during the positionals parsing
546 if (positionalsEndIndex > startIndex) {
547 startIndex = positionalsEndIndex;
551 startIndex = positionalsEndIndex;
555 // if we consumed all the positionals we could and we're not
556 // at the index of an option string, there were extra arguments
557 if (!optionStringIndices[startIndex]) {
558 var strings = argStrings.slice(startIndex, nextOptionStringIndex);
559 extras = extras.concat(strings);
560 startIndex = nextOptionStringIndex;
562 // consume the next optional and any arguments for it
563 startIndex = consumeOptional(startIndex);
566 // consume any positionals following the last Optional
567 var stopIndex = consumePositionals(startIndex);
569 // if we didn't consume all the argument strings, there were extras
570 extras = extras.concat(argStrings.slice(stopIndex));
572 // if we didn't use all the Positional objects, there were too few
573 // arg strings supplied.
574 if (positionals.length > 0) {
575 self.error('too few arguments');
578 // make sure all required actions were present
579 self._actions.forEach(function (action) {
580 if (action.required) {
581 if (_.indexOf(seenActions, action) < 0) {
582 self.error(format('Argument "%s" is required', action.getName()));
587 // make sure all required groups have one option present
588 var actionUsed = false;
589 self._mutuallyExclusiveGroups.forEach(function (group) {
590 if (group.required) {
591 actionUsed = _.any(group._groupActions, function (action) {
592 return _.contains(seenNonDefaultActions, action);
595 // if no actions were used, report the error
598 group._groupActions.forEach(function (action) {
599 if (action.help !== $$.SUPPRESS) {
600 names.push(action.getName());
603 names = names.join(' ');
604 var msg = 'one of the arguments ' + names + ' is required';
610 // return the updated namespace and the extra arguments
611 return [namespace, extras];
614 ArgumentParser.prototype._readArgsFromFiles = function (argStrings) {
615 // expand arguments referencing files
617 var fs = require('fs');
618 var newArgStrings = [];
619 argStrings.forEach(function (argString) {
620 if (_this.fromfilePrefixChars.indexOf(argString[0]) < 0) {
621 // for regular arguments, just add them back into the list
622 newArgStrings.push(argString);
624 // replace arguments referencing files with the file content
627 var filename = argString.slice(1);
628 var content = fs.readFileSync(filename, 'utf8');
629 content = content.trim().split('\n');
630 content.forEach(function (argLine) {
631 _this.convertArgLineToArgs(argLine).forEach(function (arg) {
634 argstrs = _this._readArgsFromFiles(argstrs);
636 newArgStrings.push.apply(newArgStrings, argstrs);
638 return _this.error(error.message);
642 return newArgStrings;
645 ArgumentParser.prototype.convertArgLineToArgs = function (argLine) {
649 ArgumentParser.prototype._matchArgument = function (action, regexpArgStrings) {
651 // match the pattern for this action to the arg strings
652 var regexpNargs = new RegExp('^' + this._getNargsPattern(action));
653 var matches = regexpArgStrings.match(regexpNargs);
656 // throw an exception if we weren't able to find a match
658 switch (action.nargs) {
661 message = 'Expected one argument.';
664 message = 'Expected at most one argument.';
667 message = 'Expected at least one argument.';
670 message = 'Expected %s argument(s)';
673 throw argumentErrorHelper(
675 format(message, action.nargs)
678 // return the number of arguments matched
679 return matches[1].length;
682 ArgumentParser.prototype._matchArgumentsPartial = function (actions, regexpArgStrings) {
683 // progressively shorten the actions list by slicing off the
684 // final actions until we find a match
687 var actionSlice, pattern, matches;
690 var getLength = function (string) {
691 return string.length;
694 for (i = actions.length; i > 0; i--) {
696 actionSlice = actions.slice(0, i);
697 for (j = 0; j < actionSlice.length; j++) {
698 pattern += self._getNargsPattern(actionSlice[j]);
701 pattern = new RegExp('^' + pattern);
702 matches = regexpArgStrings.match(pattern);
704 if (matches && matches.length > 0) {
706 matches = matches.splice(1);
707 result = result.concat(matches.map(getLength));
712 // return the list of arg string counts
716 ArgumentParser.prototype._parseOptional = function (argString) {
717 var action, optionString, argExplicit, optionTuples;
719 // if it's an empty string, it was meant to be a positional
724 // if it doesn't start with a prefix, it was meant to be positional
725 if (this.prefixChars.indexOf(argString[0]) < 0) {
729 // if the option string is present in the parser, return the action
730 if (!!this._optionStringActions[argString]) {
731 return [this._optionStringActions[argString], argString, null];
734 // if it's just a single character, it was meant to be positional
735 if (argString.length === 1) {
739 // if the option string before the "=" is present, return the action
740 if (argString.indexOf('=') >= 0) {
741 var argStringSplit = argString.split('=');
742 optionString = argStringSplit[0];
743 argExplicit = argStringSplit[1];
745 if (!!this._optionStringActions[optionString]) {
746 action = this._optionStringActions[optionString];
747 return [action, optionString, argExplicit];
751 // search through all possible prefixes of the option string
752 // and all actions in the parser for possible interpretations
753 optionTuples = this._getOptionTuples(argString);
755 // if multiple actions match, the option string was ambiguous
756 if (optionTuples.length > 1) {
757 var optionStrings = optionTuples.map(function (optionTuple) {
758 return optionTuple[1];
761 'Ambiguous option: "%s" could match %s.',
762 argString, optionStrings.join(', ')
764 // if exactly one action matched, this segmentation is good,
765 // so return the parsed action
766 } else if (optionTuples.length === 1) {
767 return optionTuples[0];
770 // if it was not found as an option, but it looks like a negative
771 // number, it was meant to be positional
772 // unless there are negative-number-like options
773 if (argString.match(this._regexpNegativeNumber)) {
774 if (!_.any(this._hasNegativeNumberOptionals)) {
778 // if it contains a space, it was meant to be a positional
779 if (argString.search(' ') >= 0) {
783 // it was meant to be an optional but there is no such option
784 // in this parser (though it might be a valid option in a subparser)
785 return [null, argString, null];
788 ArgumentParser.prototype._getOptionTuples = function (optionString) {
790 var chars = this.prefixChars;
794 var actionOptionString;
796 // option strings starting with two prefix characters are only split at
798 if (chars.indexOf(optionString[0]) >= 0 && chars.indexOf(optionString[1]) >= 0) {
799 if (optionString.indexOf('=') >= 0) {
800 var optionStringSplit = optionString.split('=', 1);
802 optionPrefix = optionStringSplit[0];
803 argExplicit = optionStringSplit[1];
805 optionPrefix = optionString;
809 for (actionOptionString in this._optionStringActions) {
810 if (actionOptionString.substr(0, optionPrefix.length) === optionPrefix) {
811 action = this._optionStringActions[actionOptionString];
812 result.push([action, actionOptionString, argExplicit]);
816 // single character options can be concatenated with their arguments
817 // but multiple character options always have to have their argument
819 } else if (chars.indexOf(optionString[0]) >= 0 && chars.indexOf(optionString[1]) < 0) {
820 optionPrefix = optionString;
822 var optionPrefixShort = optionString.substr(0, 2);
823 var argExplicitShort = optionString.substr(2);
825 for (actionOptionString in this._optionStringActions) {
826 action = this._optionStringActions[actionOptionString];
827 if (actionOptionString === optionPrefixShort) {
828 result.push([action, actionOptionString, argExplicitShort]);
829 } else if (actionOptionString.substr(0, optionPrefix.length) === optionPrefix) {
830 result.push([action, actionOptionString, argExplicit]);
834 // shouldn't ever get here
836 throw new Error(format('Unexpected option string: %s.', optionString));
838 // return the collected option tuples
842 ArgumentParser.prototype._getNargsPattern = function (action) {
843 // in all examples below, we have to allow for '--' args
844 // which are represented as '-' in the pattern
847 switch (action.nargs) {
848 // the default (null) is assumed to be a single argument
851 regexpNargs = '(-*A-*)';
853 // allow zero or more arguments
855 regexpNargs = '(-*A?-*)';
857 // allow zero or more arguments
858 case $$.ZERO_OR_MORE:
859 regexpNargs = '(-*[A-]*)';
861 // allow one or more arguments
863 regexpNargs = '(-*A[A-]*)';
865 // allow any number of options or arguments
867 regexpNargs = '([-AO]*)';
869 // allow one argument followed by any number of options or arguments
871 regexpNargs = '(-*A[-AO]*)';
873 // all others should be integers
875 regexpNargs = '(-*' + _.repeat('-*A', action.nargs) + '-*)';
878 // if this is an optional action, -- is not allowed
879 if (action.isOptional()) {
880 regexpNargs = regexpNargs.replace(/-\*/g, '');
881 regexpNargs = regexpNargs.replace(/-/g, '');
884 // return the pattern
889 // Value conversion methods
892 ArgumentParser.prototype._getValues = function (action, argStrings) {
895 // for everything but PARSER args, strip out '--'
896 if (action.nargs !== $$.PARSER && action.nargs !== $$.REMAINDER) {
897 argStrings = argStrings.filter(function (arrayElement) {
898 return arrayElement !== '--';
902 var value, argString;
904 // optional argument produces a default when not present
905 if (argStrings.length === 0 && action.nargs === $$.OPTIONAL) {
907 value = (action.isOptional()) ? action.constant: action.defaultValue;
909 if (typeof(value) === 'string') {
910 value = this._getValue(action, value);
911 this._checkValue(action, value);
914 // when nargs='*' on a positional, if there were no command-line
915 // args, use the default if it is anything other than None
916 } else if (argStrings.length === 0 && action.nargs === $$.ZERO_OR_MORE &&
917 action.optionStrings.length === 0) {
919 value = (action.defaultValue || argStrings);
920 this._checkValue(action, value);
922 // single argument or optional argument produces a single value
923 } else if (argStrings.length === 1 &&
924 (!action.nargs || action.nargs === $$.OPTIONAL)) {
926 argString = argStrings[0];
927 value = this._getValue(action, argString);
928 this._checkValue(action, value);
930 // REMAINDER arguments convert all values, checking none
931 } else if (action.nargs === $$.REMAINDER) {
932 value = argStrings.map(function (v) {
933 return self._getValue(action, v);
936 // PARSER arguments convert all values, but check only the first
937 } else if (action.nargs === $$.PARSER) {
938 value = argStrings.map(function (v) {
939 return self._getValue(action, v);
941 this._checkValue(action, value[0]);
943 // all other types of nargs produce a list
945 value = argStrings.map(function (v) {
946 return self._getValue(action, v);
948 value.forEach(function (v) {
949 self._checkValue(action, v);
953 // return the converted value
957 ArgumentParser.prototype._getValue = function (action, argString) {
960 var typeFunction = this._registryGet('type', action.type, action.type);
961 if (!_.isFunction(typeFunction)) {
962 var message = format('%s is not callable', typeFunction);
963 throw argumentErrorHelper(action, message);
966 // convert the value to the appropriate type
968 result = typeFunction(argString);
970 // ArgumentTypeErrors indicate errors
971 // If action.type is not a registered string, it is a function
972 // Try to deduce its name for inclusion in the error message
973 // Failing that, include the error message it raised.
976 if (_.isString(action.type)) {
979 name = action.type.name || action.type.displayName || '<function>';
981 var msg = format('Invalid %s value: %s', name, argString);
982 if (name === '<function>') {msg += '\n' + e.message; }
983 throw argumentErrorHelper(action, msg);
985 // return the converted value
989 ArgumentParser.prototype._checkValue = function (action, value) {
990 // converted value must be one of the choices (if specified)
991 var choices = action.choices;
993 // choise for argument can by array or string
994 if ((_.isString(choices) || _.isArray(choices)) &&
995 choices.indexOf(value) !== -1) {
998 // choise for subparsers can by only hash
999 if (_.isObject(choices) && !_.isArray(choices) && choices[value]) {
1003 if (_.isString(choices)) {
1004 choices = choices.split('').join(', ');
1006 else if (_.isArray(choices)) {
1007 choices = choices.join(', ');
1010 choices = _.keys(choices).join(', ');
1012 var message = format('Invalid choice: %s (choose from [%s])', value, choices);
1013 throw argumentErrorHelper(action, message);
1018 // Help formatting methods
1022 * ArgumentParser#formatUsage -> string
1024 * Return usage string
1026 * See also [original guide][1]
1028 * [1]:http://docs.python.org/dev/library/argparse.html#printing-help
1030 ArgumentParser.prototype.formatUsage = function () {
1031 var formatter = this._getFormatter();
1032 formatter.addUsage(this.usage, this._actions, this._mutuallyExclusiveGroups);
1033 return formatter.formatHelp();
1037 * ArgumentParser#formatHelp -> string
1041 * See also [original guide][1]
1043 * [1]:http://docs.python.org/dev/library/argparse.html#printing-help
1045 ArgumentParser.prototype.formatHelp = function () {
1046 var formatter = this._getFormatter();
1049 formatter.addUsage(this.usage, this._actions, this._mutuallyExclusiveGroups);
1052 formatter.addText(this.description);
1054 // positionals, optionals and user-defined groups
1055 this._actionGroups.forEach(function (actionGroup) {
1056 formatter.startSection(actionGroup.title);
1057 formatter.addText(actionGroup.description);
1058 formatter.addArguments(actionGroup._groupActions);
1059 formatter.endSection();
1063 formatter.addText(this.epilog);
1065 // determine help from format above
1066 return formatter.formatHelp();
1069 ArgumentParser.prototype._getFormatter = function () {
1070 var FormatterClass = this.formatterClass;
1071 var formatter = new FormatterClass({prog: this.prog});
1080 * ArgumentParser#printUsage() -> Void
1084 * See also [original guide][1]
1086 * [1]:http://docs.python.org/dev/library/argparse.html#printing-help
1088 ArgumentParser.prototype.printUsage = function () {
1089 this._printMessage(this.formatUsage());
1093 * ArgumentParser#printHelp() -> Void
1097 * See also [original guide][1]
1099 * [1]:http://docs.python.org/dev/library/argparse.html#printing-help
1101 ArgumentParser.prototype.printHelp = function () {
1102 this._printMessage(this.formatHelp());
1105 ArgumentParser.prototype._printMessage = function (message, stream) {
1107 stream = process.stdout;
1110 stream.write('' + message);
1119 * ArgumentParser#exit(status=0, message) -> Void
1120 * - status (int): exit status
1121 * - message (string): message
1123 * Print message in stderr/stdout and exit program
1125 ArgumentParser.prototype.exit = function (status, message) {
1128 this._printMessage(message);
1131 this._printMessage(message, process.stderr);
1135 process.exit(status);
1139 * ArgumentParser#error(message) -> Void
1140 * - err (Error|string): message
1142 * Error method Prints a usage message incorporating the message to stderr and
1143 * exits. If you override this in a subclass,
1144 * it should not return -- it should
1145 * either exit or throw an exception.
1148 ArgumentParser.prototype.error = function (err) {
1150 if (err instanceof Error) {
1151 if (this.debug === true) {
1154 message = err.message;
1159 var msg = format('%s: error: %s', this.prog, message) + $$.EOL;
1161 if (this.debug === true) {
1162 throw new Error(msg);
1165 this.printUsage(process.stderr);
1167 return this.exit(2, msg);