source: frontend/node_modules/commander/lib/command.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 60.9 KB
RevLine 
[9af201e]1const EventEmitter = require('events').EventEmitter;
2const childProcess = require('child_process');
3const path = require('path');
4const fs = require('fs');
5
6const { Argument, humanReadableArgName } = require('./argument.js');
7const { CommanderError } = require('./error.js');
8const { Help } = require('./help.js');
9const { Option, splitOptionFlags } = require('./option.js');
10const { suggestSimilar } = require('./suggestSimilar');
11
12// @ts-check
13
14class Command extends EventEmitter {
15 /**
16 * Initialize a new `Command`.
17 *
18 * @param {string} [name]
19 */
20
21 constructor(name) {
22 super();
23 /** @type {Command[]} */
24 this.commands = [];
25 /** @type {Option[]} */
26 this.options = [];
27 this.parent = null;
28 this._allowUnknownOption = false;
29 this._allowExcessArguments = true;
30 /** @type {Argument[]} */
31 this._args = [];
32 /** @type {string[]} */
33 this.args = []; // cli args with options removed
34 this.rawArgs = [];
35 this.processedArgs = []; // like .args but after custom processing and collecting variadic
36 this._scriptPath = null;
37 this._name = name || '';
38 this._optionValues = {};
39 this._optionValueSources = {}; // default < config < env < cli
40 this._storeOptionsAsProperties = false;
41 this._actionHandler = null;
42 this._executableHandler = false;
43 this._executableFile = null; // custom name for executable
44 this._defaultCommandName = null;
45 this._exitCallback = null;
46 this._aliases = [];
47 this._combineFlagAndOptionalValue = true;
48 this._description = '';
49 this._argsDescription = undefined; // legacy
50 this._enablePositionalOptions = false;
51 this._passThroughOptions = false;
52 this._lifeCycleHooks = {}; // a hash of arrays
53 /** @type {boolean | string} */
54 this._showHelpAfterError = false;
55 this._showSuggestionAfterError = false;
56
57 // see .configureOutput() for docs
58 this._outputConfiguration = {
59 writeOut: (str) => process.stdout.write(str),
60 writeErr: (str) => process.stderr.write(str),
61 getOutHelpWidth: () => process.stdout.isTTY ? process.stdout.columns : undefined,
62 getErrHelpWidth: () => process.stderr.isTTY ? process.stderr.columns : undefined,
63 outputError: (str, write) => write(str)
64 };
65
66 this._hidden = false;
67 this._hasHelpOption = true;
68 this._helpFlags = '-h, --help';
69 this._helpDescription = 'display help for command';
70 this._helpShortFlag = '-h';
71 this._helpLongFlag = '--help';
72 this._addImplicitHelpCommand = undefined; // Deliberately undefined, not decided whether true or false
73 this._helpCommandName = 'help';
74 this._helpCommandnameAndArgs = 'help [command]';
75 this._helpCommandDescription = 'display help for command';
76 this._helpConfiguration = {};
77 }
78
79 /**
80 * Copy settings that are useful to have in common across root command and subcommands.
81 *
82 * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)
83 *
84 * @param {Command} sourceCommand
85 * @return {Command} returns `this` for executable command
86 */
87 copyInheritedSettings(sourceCommand) {
88 this._outputConfiguration = sourceCommand._outputConfiguration;
89 this._hasHelpOption = sourceCommand._hasHelpOption;
90 this._helpFlags = sourceCommand._helpFlags;
91 this._helpDescription = sourceCommand._helpDescription;
92 this._helpShortFlag = sourceCommand._helpShortFlag;
93 this._helpLongFlag = sourceCommand._helpLongFlag;
94 this._helpCommandName = sourceCommand._helpCommandName;
95 this._helpCommandnameAndArgs = sourceCommand._helpCommandnameAndArgs;
96 this._helpCommandDescription = sourceCommand._helpCommandDescription;
97 this._helpConfiguration = sourceCommand._helpConfiguration;
98 this._exitCallback = sourceCommand._exitCallback;
99 this._storeOptionsAsProperties = sourceCommand._storeOptionsAsProperties;
100 this._combineFlagAndOptionalValue = sourceCommand._combineFlagAndOptionalValue;
101 this._allowExcessArguments = sourceCommand._allowExcessArguments;
102 this._enablePositionalOptions = sourceCommand._enablePositionalOptions;
103 this._showHelpAfterError = sourceCommand._showHelpAfterError;
104 this._showSuggestionAfterError = sourceCommand._showSuggestionAfterError;
105
106 return this;
107 }
108
109 /**
110 * Define a command.
111 *
112 * There are two styles of command: pay attention to where to put the description.
113 *
114 * @example
115 * // Command implemented using action handler (description is supplied separately to `.command`)
116 * program
117 * .command('clone <source> [destination]')
118 * .description('clone a repository into a newly created directory')
119 * .action((source, destination) => {
120 * console.log('clone command called');
121 * });
122 *
123 * // Command implemented using separate executable file (description is second parameter to `.command`)
124 * program
125 * .command('start <service>', 'start named service')
126 * .command('stop [service]', 'stop named service, or all if no name supplied');
127 *
128 * @param {string} nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`
129 * @param {Object|string} [actionOptsOrExecDesc] - configuration options (for action), or description (for executable)
130 * @param {Object} [execOpts] - configuration options (for executable)
131 * @return {Command} returns new command for action handler, or `this` for executable command
132 */
133
134 command(nameAndArgs, actionOptsOrExecDesc, execOpts) {
135 let desc = actionOptsOrExecDesc;
136 let opts = execOpts;
137 if (typeof desc === 'object' && desc !== null) {
138 opts = desc;
139 desc = null;
140 }
141 opts = opts || {};
142 const [, name, args] = nameAndArgs.match(/([^ ]+) *(.*)/);
143
144 const cmd = this.createCommand(name);
145 if (desc) {
146 cmd.description(desc);
147 cmd._executableHandler = true;
148 }
149 if (opts.isDefault) this._defaultCommandName = cmd._name;
150 cmd._hidden = !!(opts.noHelp || opts.hidden); // noHelp is deprecated old name for hidden
151 cmd._executableFile = opts.executableFile || null; // Custom name for executable file, set missing to null to match constructor
152 if (args) cmd.arguments(args);
153 this.commands.push(cmd);
154 cmd.parent = this;
155 cmd.copyInheritedSettings(this);
156
157 if (desc) return this;
158 return cmd;
159 };
160
161 /**
162 * Factory routine to create a new unattached command.
163 *
164 * See .command() for creating an attached subcommand, which uses this routine to
165 * create the command. You can override createCommand to customise subcommands.
166 *
167 * @param {string} [name]
168 * @return {Command} new command
169 */
170
171 createCommand(name) {
172 return new Command(name);
173 };
174
175 /**
176 * You can customise the help with a subclass of Help by overriding createHelp,
177 * or by overriding Help properties using configureHelp().
178 *
179 * @return {Help}
180 */
181
182 createHelp() {
183 return Object.assign(new Help(), this.configureHelp());
184 };
185
186 /**
187 * You can customise the help by overriding Help properties using configureHelp(),
188 * or with a subclass of Help by overriding createHelp().
189 *
190 * @param {Object} [configuration] - configuration options
191 * @return {Command|Object} `this` command for chaining, or stored configuration
192 */
193
194 configureHelp(configuration) {
195 if (configuration === undefined) return this._helpConfiguration;
196
197 this._helpConfiguration = configuration;
198 return this;
199 }
200
201 /**
202 * The default output goes to stdout and stderr. You can customise this for special
203 * applications. You can also customise the display of errors by overriding outputError.
204 *
205 * The configuration properties are all functions:
206 *
207 * // functions to change where being written, stdout and stderr
208 * writeOut(str)
209 * writeErr(str)
210 * // matching functions to specify width for wrapping help
211 * getOutHelpWidth()
212 * getErrHelpWidth()
213 * // functions based on what is being written out
214 * outputError(str, write) // used for displaying errors, and not used for displaying help
215 *
216 * @param {Object} [configuration] - configuration options
217 * @return {Command|Object} `this` command for chaining, or stored configuration
218 */
219
220 configureOutput(configuration) {
221 if (configuration === undefined) return this._outputConfiguration;
222
223 Object.assign(this._outputConfiguration, configuration);
224 return this;
225 }
226
227 /**
228 * Display the help or a custom message after an error occurs.
229 *
230 * @param {boolean|string} [displayHelp]
231 * @return {Command} `this` command for chaining
232 */
233 showHelpAfterError(displayHelp = true) {
234 if (typeof displayHelp !== 'string') displayHelp = !!displayHelp;
235 this._showHelpAfterError = displayHelp;
236 return this;
237 }
238
239 /**
240 * Display suggestion of similar commands for unknown commands, or options for unknown options.
241 *
242 * @param {boolean} [displaySuggestion]
243 * @return {Command} `this` command for chaining
244 */
245 showSuggestionAfterError(displaySuggestion = true) {
246 this._showSuggestionAfterError = !!displaySuggestion;
247 return this;
248 }
249
250 /**
251 * Add a prepared subcommand.
252 *
253 * See .command() for creating an attached subcommand which inherits settings from its parent.
254 *
255 * @param {Command} cmd - new subcommand
256 * @param {Object} [opts] - configuration options
257 * @return {Command} `this` command for chaining
258 */
259
260 addCommand(cmd, opts) {
261 if (!cmd._name) throw new Error('Command passed to .addCommand() must have a name');
262
263 // To keep things simple, block automatic name generation for deeply nested executables.
264 // Fail fast and detect when adding rather than later when parsing.
265 function checkExplicitNames(commandArray) {
266 commandArray.forEach((cmd) => {
267 if (cmd._executableHandler && !cmd._executableFile) {
268 throw new Error(`Must specify executableFile for deeply nested executable: ${cmd.name()}`);
269 }
270 checkExplicitNames(cmd.commands);
271 });
272 }
273 checkExplicitNames(cmd.commands);
274
275 opts = opts || {};
276 if (opts.isDefault) this._defaultCommandName = cmd._name;
277 if (opts.noHelp || opts.hidden) cmd._hidden = true; // modifying passed command due to existing implementation
278
279 this.commands.push(cmd);
280 cmd.parent = this;
281 return this;
282 };
283
284 /**
285 * Factory routine to create a new unattached argument.
286 *
287 * See .argument() for creating an attached argument, which uses this routine to
288 * create the argument. You can override createArgument to return a custom argument.
289 *
290 * @param {string} name
291 * @param {string} [description]
292 * @return {Argument} new argument
293 */
294
295 createArgument(name, description) {
296 return new Argument(name, description);
297 };
298
299 /**
300 * Define argument syntax for command.
301 *
302 * The default is that the argument is required, and you can explicitly
303 * indicate this with <> around the name. Put [] around the name for an optional argument.
304 *
305 * @example
306 * program.argument('<input-file>');
307 * program.argument('[output-file]');
308 *
309 * @param {string} name
310 * @param {string} [description]
311 * @param {Function|*} [fn] - custom argument processing function
312 * @param {*} [defaultValue]
313 * @return {Command} `this` command for chaining
314 */
315 argument(name, description, fn, defaultValue) {
316 const argument = this.createArgument(name, description);
317 if (typeof fn === 'function') {
318 argument.default(defaultValue).argParser(fn);
319 } else {
320 argument.default(fn);
321 }
322 this.addArgument(argument);
323 return this;
324 }
325
326 /**
327 * Define argument syntax for command, adding multiple at once (without descriptions).
328 *
329 * See also .argument().
330 *
331 * @example
332 * program.arguments('<cmd> [env]');
333 *
334 * @param {string} names
335 * @return {Command} `this` command for chaining
336 */
337
338 arguments(names) {
339 names.split(/ +/).forEach((detail) => {
340 this.argument(detail);
341 });
342 return this;
343 };
344
345 /**
346 * Define argument syntax for command, adding a prepared argument.
347 *
348 * @param {Argument} argument
349 * @return {Command} `this` command for chaining
350 */
351 addArgument(argument) {
352 const previousArgument = this._args.slice(-1)[0];
353 if (previousArgument && previousArgument.variadic) {
354 throw new Error(`only the last argument can be variadic '${previousArgument.name()}'`);
355 }
356 if (argument.required && argument.defaultValue !== undefined && argument.parseArg === undefined) {
357 throw new Error(`a default value for a required argument is never used: '${argument.name()}'`);
358 }
359 this._args.push(argument);
360 return this;
361 }
362
363 /**
364 * Override default decision whether to add implicit help command.
365 *
366 * addHelpCommand() // force on
367 * addHelpCommand(false); // force off
368 * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details
369 *
370 * @return {Command} `this` command for chaining
371 */
372
373 addHelpCommand(enableOrNameAndArgs, description) {
374 if (enableOrNameAndArgs === false) {
375 this._addImplicitHelpCommand = false;
376 } else {
377 this._addImplicitHelpCommand = true;
378 if (typeof enableOrNameAndArgs === 'string') {
379 this._helpCommandName = enableOrNameAndArgs.split(' ')[0];
380 this._helpCommandnameAndArgs = enableOrNameAndArgs;
381 }
382 this._helpCommandDescription = description || this._helpCommandDescription;
383 }
384 return this;
385 };
386
387 /**
388 * @return {boolean}
389 * @api private
390 */
391
392 _hasImplicitHelpCommand() {
393 if (this._addImplicitHelpCommand === undefined) {
394 return this.commands.length && !this._actionHandler && !this._findCommand('help');
395 }
396 return this._addImplicitHelpCommand;
397 };
398
399 /**
400 * Add hook for life cycle event.
401 *
402 * @param {string} event
403 * @param {Function} listener
404 * @return {Command} `this` command for chaining
405 */
406
407 hook(event, listener) {
408 const allowedValues = ['preAction', 'postAction'];
409 if (!allowedValues.includes(event)) {
410 throw new Error(`Unexpected value for event passed to hook : '${event}'.
411Expecting one of '${allowedValues.join("', '")}'`);
412 }
413 if (this._lifeCycleHooks[event]) {
414 this._lifeCycleHooks[event].push(listener);
415 } else {
416 this._lifeCycleHooks[event] = [listener];
417 }
418 return this;
419 }
420
421 /**
422 * Register callback to use as replacement for calling process.exit.
423 *
424 * @param {Function} [fn] optional callback which will be passed a CommanderError, defaults to throwing
425 * @return {Command} `this` command for chaining
426 */
427
428 exitOverride(fn) {
429 if (fn) {
430 this._exitCallback = fn;
431 } else {
432 this._exitCallback = (err) => {
433 if (err.code !== 'commander.executeSubCommandAsync') {
434 throw err;
435 } else {
436 // Async callback from spawn events, not useful to throw.
437 }
438 };
439 }
440 return this;
441 };
442
443 /**
444 * Call process.exit, and _exitCallback if defined.
445 *
446 * @param {number} exitCode exit code for using with process.exit
447 * @param {string} code an id string representing the error
448 * @param {string} message human-readable description of the error
449 * @return never
450 * @api private
451 */
452
453 _exit(exitCode, code, message) {
454 if (this._exitCallback) {
455 this._exitCallback(new CommanderError(exitCode, code, message));
456 // Expecting this line is not reached.
457 }
458 process.exit(exitCode);
459 };
460
461 /**
462 * Register callback `fn` for the command.
463 *
464 * @example
465 * program
466 * .command('serve')
467 * .description('start service')
468 * .action(function() {
469 * // do work here
470 * });
471 *
472 * @param {Function} fn
473 * @return {Command} `this` command for chaining
474 */
475
476 action(fn) {
477 const listener = (args) => {
478 // The .action callback takes an extra parameter which is the command or options.
479 const expectedArgsCount = this._args.length;
480 const actionArgs = args.slice(0, expectedArgsCount);
481 if (this._storeOptionsAsProperties) {
482 actionArgs[expectedArgsCount] = this; // backwards compatible "options"
483 } else {
484 actionArgs[expectedArgsCount] = this.opts();
485 }
486 actionArgs.push(this);
487
488 return fn.apply(this, actionArgs);
489 };
490 this._actionHandler = listener;
491 return this;
492 };
493
494 /**
495 * Factory routine to create a new unattached option.
496 *
497 * See .option() for creating an attached option, which uses this routine to
498 * create the option. You can override createOption to return a custom option.
499 *
500 * @param {string} flags
501 * @param {string} [description]
502 * @return {Option} new option
503 */
504
505 createOption(flags, description) {
506 return new Option(flags, description);
507 };
508
509 /**
510 * Add an option.
511 *
512 * @param {Option} option
513 * @return {Command} `this` command for chaining
514 */
515 addOption(option) {
516 const oname = option.name();
517 const name = option.attributeName();
518
519 let defaultValue = option.defaultValue;
520
521 // preassign default value for --no-*, [optional], <required>, or plain flag if boolean value
522 if (option.negate || option.optional || option.required || typeof defaultValue === 'boolean') {
523 // when --no-foo we make sure default is true, unless a --foo option is already defined
524 if (option.negate) {
525 const positiveLongFlag = option.long.replace(/^--no-/, '--');
526 defaultValue = this._findOption(positiveLongFlag) ? this.getOptionValue(name) : true;
527 }
528 // preassign only if we have a default
529 if (defaultValue !== undefined) {
530 this.setOptionValueWithSource(name, defaultValue, 'default');
531 }
532 }
533
534 // register the option
535 this.options.push(option);
536
537 // handler for cli and env supplied values
538 const handleOptionValue = (val, invalidValueMessage, valueSource) => {
539 // Note: using closure to access lots of lexical scoped variables.
540 const oldValue = this.getOptionValue(name);
541
542 // custom processing
543 if (val !== null && option.parseArg) {
544 try {
545 val = option.parseArg(val, oldValue === undefined ? defaultValue : oldValue);
546 } catch (err) {
547 if (err.code === 'commander.invalidArgument') {
548 const message = `${invalidValueMessage} ${err.message}`;
549 this._displayError(err.exitCode, err.code, message);
550 }
551 throw err;
552 }
553 } else if (val !== null && option.variadic) {
554 val = option._concatValue(val, oldValue);
555 }
556
557 // unassigned or boolean value
558 if (typeof oldValue === 'boolean' || typeof oldValue === 'undefined') {
559 // if no value, negate false, and we have a default, then use it!
560 if (val == null) {
561 this.setOptionValueWithSource(name, option.negate ? false : defaultValue || true, valueSource);
562 } else {
563 this.setOptionValueWithSource(name, val, valueSource);
564 }
565 } else if (val !== null) {
566 // reassign
567 this.setOptionValueWithSource(name, option.negate ? false : val, valueSource);
568 }
569 };
570
571 this.on('option:' + oname, (val) => {
572 const invalidValueMessage = `error: option '${option.flags}' argument '${val}' is invalid.`;
573 handleOptionValue(val, invalidValueMessage, 'cli');
574 });
575
576 if (option.envVar) {
577 this.on('optionEnv:' + oname, (val) => {
578 const invalidValueMessage = `error: option '${option.flags}' value '${val}' from env '${option.envVar}' is invalid.`;
579 handleOptionValue(val, invalidValueMessage, 'env');
580 });
581 }
582
583 return this;
584 }
585
586 /**
587 * Internal implementation shared by .option() and .requiredOption()
588 *
589 * @api private
590 */
591 _optionEx(config, flags, description, fn, defaultValue) {
592 const option = this.createOption(flags, description);
593 option.makeOptionMandatory(!!config.mandatory);
594 if (typeof fn === 'function') {
595 option.default(defaultValue).argParser(fn);
596 } else if (fn instanceof RegExp) {
597 // deprecated
598 const regex = fn;
599 fn = (val, def) => {
600 const m = regex.exec(val);
601 return m ? m[0] : def;
602 };
603 option.default(defaultValue).argParser(fn);
604 } else {
605 option.default(fn);
606 }
607
608 return this.addOption(option);
609 }
610
611 /**
612 * Define option with `flags`, `description` and optional
613 * coercion `fn`.
614 *
615 * The `flags` string contains the short and/or long flags,
616 * separated by comma, a pipe or space. The following are all valid
617 * all will output this way when `--help` is used.
618 *
619 * "-p, --pepper"
620 * "-p|--pepper"
621 * "-p --pepper"
622 *
623 * @example
624 * // simple boolean defaulting to undefined
625 * program.option('-p, --pepper', 'add pepper');
626 *
627 * program.pepper
628 * // => undefined
629 *
630 * --pepper
631 * program.pepper
632 * // => true
633 *
634 * // simple boolean defaulting to true (unless non-negated option is also defined)
635 * program.option('-C, --no-cheese', 'remove cheese');
636 *
637 * program.cheese
638 * // => true
639 *
640 * --no-cheese
641 * program.cheese
642 * // => false
643 *
644 * // required argument
645 * program.option('-C, --chdir <path>', 'change the working directory');
646 *
647 * --chdir /tmp
648 * program.chdir
649 * // => "/tmp"
650 *
651 * // optional argument
652 * program.option('-c, --cheese [type]', 'add cheese [marble]');
653 *
654 * @param {string} flags
655 * @param {string} [description]
656 * @param {Function|*} [fn] - custom option processing function or default value
657 * @param {*} [defaultValue]
658 * @return {Command} `this` command for chaining
659 */
660
661 option(flags, description, fn, defaultValue) {
662 return this._optionEx({}, flags, description, fn, defaultValue);
663 };
664
665 /**
666 * Add a required option which must have a value after parsing. This usually means
667 * the option must be specified on the command line. (Otherwise the same as .option().)
668 *
669 * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.
670 *
671 * @param {string} flags
672 * @param {string} [description]
673 * @param {Function|*} [fn] - custom option processing function or default value
674 * @param {*} [defaultValue]
675 * @return {Command} `this` command for chaining
676 */
677
678 requiredOption(flags, description, fn, defaultValue) {
679 return this._optionEx({ mandatory: true }, flags, description, fn, defaultValue);
680 };
681
682 /**
683 * Alter parsing of short flags with optional values.
684 *
685 * @example
686 * // for `.option('-f,--flag [value]'):
687 * program.combineFlagAndOptionalValue(true); // `-f80` is treated like `--flag=80`, this is the default behaviour
688 * program.combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`
689 *
690 * @param {Boolean} [combine=true] - if `true` or omitted, an optional value can be specified directly after the flag.
691 */
692 combineFlagAndOptionalValue(combine = true) {
693 this._combineFlagAndOptionalValue = !!combine;
694 return this;
695 };
696
697 /**
698 * Allow unknown options on the command line.
699 *
700 * @param {Boolean} [allowUnknown=true] - if `true` or omitted, no error will be thrown
701 * for unknown options.
702 */
703 allowUnknownOption(allowUnknown = true) {
704 this._allowUnknownOption = !!allowUnknown;
705 return this;
706 };
707
708 /**
709 * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.
710 *
711 * @param {Boolean} [allowExcess=true] - if `true` or omitted, no error will be thrown
712 * for excess arguments.
713 */
714 allowExcessArguments(allowExcess = true) {
715 this._allowExcessArguments = !!allowExcess;
716 return this;
717 };
718
719 /**
720 * Enable positional options. Positional means global options are specified before subcommands which lets
721 * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.
722 * The default behaviour is non-positional and global options may appear anywhere on the command line.
723 *
724 * @param {Boolean} [positional=true]
725 */
726 enablePositionalOptions(positional = true) {
727 this._enablePositionalOptions = !!positional;
728 return this;
729 };
730
731 /**
732 * Pass through options that come after command-arguments rather than treat them as command-options,
733 * so actual command-options come before command-arguments. Turning this on for a subcommand requires
734 * positional options to have been enabled on the program (parent commands).
735 * The default behaviour is non-positional and options may appear before or after command-arguments.
736 *
737 * @param {Boolean} [passThrough=true]
738 * for unknown options.
739 */
740 passThroughOptions(passThrough = true) {
741 this._passThroughOptions = !!passThrough;
742 if (!!this.parent && passThrough && !this.parent._enablePositionalOptions) {
743 throw new Error('passThroughOptions can not be used without turning on enablePositionalOptions for parent command(s)');
744 }
745 return this;
746 };
747
748 /**
749 * Whether to store option values as properties on command object,
750 * or store separately (specify false). In both cases the option values can be accessed using .opts().
751 *
752 * @param {boolean} [storeAsProperties=true]
753 * @return {Command} `this` command for chaining
754 */
755
756 storeOptionsAsProperties(storeAsProperties = true) {
757 this._storeOptionsAsProperties = !!storeAsProperties;
758 if (this.options.length) {
759 throw new Error('call .storeOptionsAsProperties() before adding options');
760 }
761 return this;
762 };
763
764 /**
765 * Retrieve option value.
766 *
767 * @param {string} key
768 * @return {Object} value
769 */
770
771 getOptionValue(key) {
772 if (this._storeOptionsAsProperties) {
773 return this[key];
774 }
775 return this._optionValues[key];
776 };
777
778 /**
779 * Store option value.
780 *
781 * @param {string} key
782 * @param {Object} value
783 * @return {Command} `this` command for chaining
784 */
785
786 setOptionValue(key, value) {
787 if (this._storeOptionsAsProperties) {
788 this[key] = value;
789 } else {
790 this._optionValues[key] = value;
791 }
792 return this;
793 };
794
795 /**
796 * Store option value and where the value came from.
797 *
798 * @param {string} key
799 * @param {Object} value
800 * @param {string} source - expected values are default/config/env/cli
801 * @return {Command} `this` command for chaining
802 */
803
804 setOptionValueWithSource(key, value, source) {
805 this.setOptionValue(key, value);
806 this._optionValueSources[key] = source;
807 return this;
808 }
809
810 /**
811 * Get source of option value.
812 * Expected values are default | config | env | cli
813 *
814 * @param {string} key
815 * @return {string}
816 */
817
818 getOptionValueSource(key) {
819 return this._optionValueSources[key];
820 };
821
822 /**
823 * Get user arguments implied or explicit arguments.
824 * Side-effects: set _scriptPath if args included application, and use that to set implicit command name.
825 *
826 * @api private
827 */
828
829 _prepareUserArgs(argv, parseOptions) {
830 if (argv !== undefined && !Array.isArray(argv)) {
831 throw new Error('first parameter to parse must be array or undefined');
832 }
833 parseOptions = parseOptions || {};
834
835 // Default to using process.argv
836 if (argv === undefined) {
837 argv = process.argv;
838 // @ts-ignore: unknown property
839 if (process.versions && process.versions.electron) {
840 parseOptions.from = 'electron';
841 }
842 }
843 this.rawArgs = argv.slice();
844
845 // make it a little easier for callers by supporting various argv conventions
846 let userArgs;
847 switch (parseOptions.from) {
848 case undefined:
849 case 'node':
850 this._scriptPath = argv[1];
851 userArgs = argv.slice(2);
852 break;
853 case 'electron':
854 // @ts-ignore: unknown property
855 if (process.defaultApp) {
856 this._scriptPath = argv[1];
857 userArgs = argv.slice(2);
858 } else {
859 userArgs = argv.slice(1);
860 }
861 break;
862 case 'user':
863 userArgs = argv.slice(0);
864 break;
865 default:
866 throw new Error(`unexpected parse option { from: '${parseOptions.from}' }`);
867 }
868 if (!this._scriptPath && require.main) {
869 this._scriptPath = require.main.filename;
870 }
871
872 // Guess name, used in usage in help.
873 this._name = this._name || (this._scriptPath && path.basename(this._scriptPath, path.extname(this._scriptPath)));
874
875 return userArgs;
876 }
877
878 /**
879 * Parse `argv`, setting options and invoking commands when defined.
880 *
881 * The default expectation is that the arguments are from node and have the application as argv[0]
882 * and the script being run in argv[1], with user parameters after that.
883 *
884 * @example
885 * program.parse(process.argv);
886 * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions
887 * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
888 *
889 * @param {string[]} [argv] - optional, defaults to process.argv
890 * @param {Object} [parseOptions] - optionally specify style of options with from: node/user/electron
891 * @param {string} [parseOptions.from] - where the args are from: 'node', 'user', 'electron'
892 * @return {Command} `this` command for chaining
893 */
894
895 parse(argv, parseOptions) {
896 const userArgs = this._prepareUserArgs(argv, parseOptions);
897 this._parseCommand([], userArgs);
898
899 return this;
900 };
901
902 /**
903 * Parse `argv`, setting options and invoking commands when defined.
904 *
905 * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.
906 *
907 * The default expectation is that the arguments are from node and have the application as argv[0]
908 * and the script being run in argv[1], with user parameters after that.
909 *
910 * @example
911 * await program.parseAsync(process.argv);
912 * await program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions
913 * await program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
914 *
915 * @param {string[]} [argv]
916 * @param {Object} [parseOptions]
917 * @param {string} parseOptions.from - where the args are from: 'node', 'user', 'electron'
918 * @return {Promise}
919 */
920
921 async parseAsync(argv, parseOptions) {
922 const userArgs = this._prepareUserArgs(argv, parseOptions);
923 await this._parseCommand([], userArgs);
924
925 return this;
926 };
927
928 /**
929 * Execute a sub-command executable.
930 *
931 * @api private
932 */
933
934 _executeSubCommand(subcommand, args) {
935 args = args.slice();
936 let launchWithNode = false; // Use node for source targets so do not need to get permissions correct, and on Windows.
937 const sourceExt = ['.js', '.ts', '.tsx', '.mjs', '.cjs'];
938
939 // Not checking for help first. Unlikely to have mandatory and executable, and can't robustly test for help flags in external command.
940 this._checkForMissingMandatoryOptions();
941
942 // Want the entry script as the reference for command name and directory for searching for other files.
943 let scriptPath = this._scriptPath;
944 // Fallback in case not set, due to how Command created or called.
945 if (!scriptPath && require.main) {
946 scriptPath = require.main.filename;
947 }
948
949 let baseDir;
950 try {
951 const resolvedLink = fs.realpathSync(scriptPath);
952 baseDir = path.dirname(resolvedLink);
953 } catch (e) {
954 baseDir = '.'; // dummy, probably not going to find executable!
955 }
956
957 // name of the subcommand, like `pm-install`
958 let bin = path.basename(scriptPath, path.extname(scriptPath)) + '-' + subcommand._name;
959 if (subcommand._executableFile) {
960 bin = subcommand._executableFile;
961 }
962
963 const localBin = path.join(baseDir, bin);
964 if (fs.existsSync(localBin)) {
965 // prefer local `./<bin>` to bin in the $PATH
966 bin = localBin;
967 } else {
968 // Look for source files.
969 sourceExt.forEach((ext) => {
970 if (fs.existsSync(`${localBin}${ext}`)) {
971 bin = `${localBin}${ext}`;
972 }
973 });
974 }
975 launchWithNode = sourceExt.includes(path.extname(bin));
976
977 let proc;
978 if (process.platform !== 'win32') {
979 if (launchWithNode) {
980 args.unshift(bin);
981 // add executable arguments to spawn
982 args = incrementNodeInspectorPort(process.execArgv).concat(args);
983
984 proc = childProcess.spawn(process.argv[0], args, { stdio: 'inherit' });
985 } else {
986 proc = childProcess.spawn(bin, args, { stdio: 'inherit' });
987 }
988 } else {
989 args.unshift(bin);
990 // add executable arguments to spawn
991 args = incrementNodeInspectorPort(process.execArgv).concat(args);
992 proc = childProcess.spawn(process.execPath, args, { stdio: 'inherit' });
993 }
994
995 const signals = ['SIGUSR1', 'SIGUSR2', 'SIGTERM', 'SIGINT', 'SIGHUP'];
996 signals.forEach((signal) => {
997 // @ts-ignore
998 process.on(signal, () => {
999 if (proc.killed === false && proc.exitCode === null) {
1000 proc.kill(signal);
1001 }
1002 });
1003 });
1004
1005 // By default terminate process when spawned process terminates.
1006 // Suppressing the exit if exitCallback defined is a bit messy and of limited use, but does allow process to stay running!
1007 const exitCallback = this._exitCallback;
1008 if (!exitCallback) {
1009 proc.on('close', process.exit.bind(process));
1010 } else {
1011 proc.on('close', () => {
1012 exitCallback(new CommanderError(process.exitCode || 0, 'commander.executeSubCommandAsync', '(close)'));
1013 });
1014 }
1015 proc.on('error', (err) => {
1016 // @ts-ignore
1017 if (err.code === 'ENOENT') {
1018 const executableMissing = `'${bin}' does not exist
1019 - if '${subcommand._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead
1020 - if the default executable name is not suitable, use the executableFile option to supply a custom name`;
1021 throw new Error(executableMissing);
1022 // @ts-ignore
1023 } else if (err.code === 'EACCES') {
1024 throw new Error(`'${bin}' not executable`);
1025 }
1026 if (!exitCallback) {
1027 process.exit(1);
1028 } else {
1029 const wrappedError = new CommanderError(1, 'commander.executeSubCommandAsync', '(error)');
1030 wrappedError.nestedError = err;
1031 exitCallback(wrappedError);
1032 }
1033 });
1034
1035 // Store the reference to the child process
1036 this.runningCommand = proc;
1037 };
1038
1039 /**
1040 * @api private
1041 */
1042
1043 _dispatchSubcommand(commandName, operands, unknown) {
1044 const subCommand = this._findCommand(commandName);
1045 if (!subCommand) this.help({ error: true });
1046
1047 if (subCommand._executableHandler) {
1048 this._executeSubCommand(subCommand, operands.concat(unknown));
1049 } else {
1050 return subCommand._parseCommand(operands, unknown);
1051 }
1052 };
1053
1054 /**
1055 * Check this.args against expected this._args.
1056 *
1057 * @api private
1058 */
1059
1060 _checkNumberOfArguments() {
1061 // too few
1062 this._args.forEach((arg, i) => {
1063 if (arg.required && this.args[i] == null) {
1064 this.missingArgument(arg.name());
1065 }
1066 });
1067 // too many
1068 if (this._args.length > 0 && this._args[this._args.length - 1].variadic) {
1069 return;
1070 }
1071 if (this.args.length > this._args.length) {
1072 this._excessArguments(this.args);
1073 }
1074 };
1075
1076 /**
1077 * Process this.args using this._args and save as this.processedArgs!
1078 *
1079 * @api private
1080 */
1081
1082 _processArguments() {
1083 const myParseArg = (argument, value, previous) => {
1084 // Extra processing for nice error message on parsing failure.
1085 let parsedValue = value;
1086 if (value !== null && argument.parseArg) {
1087 try {
1088 parsedValue = argument.parseArg(value, previous);
1089 } catch (err) {
1090 if (err.code === 'commander.invalidArgument') {
1091 const message = `error: command-argument value '${value}' is invalid for argument '${argument.name()}'. ${err.message}`;
1092 this._displayError(err.exitCode, err.code, message);
1093 }
1094 throw err;
1095 }
1096 }
1097 return parsedValue;
1098 };
1099
1100 this._checkNumberOfArguments();
1101
1102 const processedArgs = [];
1103 this._args.forEach((declaredArg, index) => {
1104 let value = declaredArg.defaultValue;
1105 if (declaredArg.variadic) {
1106 // Collect together remaining arguments for passing together as an array.
1107 if (index < this.args.length) {
1108 value = this.args.slice(index);
1109 if (declaredArg.parseArg) {
1110 value = value.reduce((processed, v) => {
1111 return myParseArg(declaredArg, v, processed);
1112 }, declaredArg.defaultValue);
1113 }
1114 } else if (value === undefined) {
1115 value = [];
1116 }
1117 } else if (index < this.args.length) {
1118 value = this.args[index];
1119 if (declaredArg.parseArg) {
1120 value = myParseArg(declaredArg, value, declaredArg.defaultValue);
1121 }
1122 }
1123 processedArgs[index] = value;
1124 });
1125 this.processedArgs = processedArgs;
1126 }
1127
1128 /**
1129 * Once we have a promise we chain, but call synchronously until then.
1130 *
1131 * @param {Promise|undefined} promise
1132 * @param {Function} fn
1133 * @return {Promise|undefined}
1134 * @api private
1135 */
1136
1137 _chainOrCall(promise, fn) {
1138 // thenable
1139 if (promise && promise.then && typeof promise.then === 'function') {
1140 // already have a promise, chain callback
1141 return promise.then(() => fn());
1142 }
1143 // callback might return a promise
1144 return fn();
1145 }
1146
1147 /**
1148 *
1149 * @param {Promise|undefined} promise
1150 * @param {string} event
1151 * @return {Promise|undefined}
1152 * @api private
1153 */
1154
1155 _chainOrCallHooks(promise, event) {
1156 let result = promise;
1157 const hooks = [];
1158 getCommandAndParents(this)
1159 .reverse()
1160 .filter(cmd => cmd._lifeCycleHooks[event] !== undefined)
1161 .forEach(hookedCommand => {
1162 hookedCommand._lifeCycleHooks[event].forEach((callback) => {
1163 hooks.push({ hookedCommand, callback });
1164 });
1165 });
1166 if (event === 'postAction') {
1167 hooks.reverse();
1168 }
1169
1170 hooks.forEach((hookDetail) => {
1171 result = this._chainOrCall(result, () => {
1172 return hookDetail.callback(hookDetail.hookedCommand, this);
1173 });
1174 });
1175 return result;
1176 }
1177
1178 /**
1179 * Process arguments in context of this command.
1180 * Returns action result, in case it is a promise.
1181 *
1182 * @api private
1183 */
1184
1185 _parseCommand(operands, unknown) {
1186 const parsed = this.parseOptions(unknown);
1187 this._parseOptionsEnv(); // after cli, so parseArg not called on both cli and env
1188 operands = operands.concat(parsed.operands);
1189 unknown = parsed.unknown;
1190 this.args = operands.concat(unknown);
1191
1192 if (operands && this._findCommand(operands[0])) {
1193 return this._dispatchSubcommand(operands[0], operands.slice(1), unknown);
1194 }
1195 if (this._hasImplicitHelpCommand() && operands[0] === this._helpCommandName) {
1196 if (operands.length === 1) {
1197 this.help();
1198 }
1199 return this._dispatchSubcommand(operands[1], [], [this._helpLongFlag]);
1200 }
1201 if (this._defaultCommandName) {
1202 outputHelpIfRequested(this, unknown); // Run the help for default command from parent rather than passing to default command
1203 return this._dispatchSubcommand(this._defaultCommandName, operands, unknown);
1204 }
1205 if (this.commands.length && this.args.length === 0 && !this._actionHandler && !this._defaultCommandName) {
1206 // probably missing subcommand and no handler, user needs help (and exit)
1207 this.help({ error: true });
1208 }
1209
1210 outputHelpIfRequested(this, parsed.unknown);
1211 this._checkForMissingMandatoryOptions();
1212
1213 // We do not always call this check to avoid masking a "better" error, like unknown command.
1214 const checkForUnknownOptions = () => {
1215 if (parsed.unknown.length > 0) {
1216 this.unknownOption(parsed.unknown[0]);
1217 }
1218 };
1219
1220 const commandEvent = `command:${this.name()}`;
1221 if (this._actionHandler) {
1222 checkForUnknownOptions();
1223 this._processArguments();
1224
1225 let actionResult;
1226 actionResult = this._chainOrCallHooks(actionResult, 'preAction');
1227 actionResult = this._chainOrCall(actionResult, () => this._actionHandler(this.processedArgs));
1228 if (this.parent) this.parent.emit(commandEvent, operands, unknown); // legacy
1229 actionResult = this._chainOrCallHooks(actionResult, 'postAction');
1230 return actionResult;
1231 }
1232 if (this.parent && this.parent.listenerCount(commandEvent)) {
1233 checkForUnknownOptions();
1234 this._processArguments();
1235 this.parent.emit(commandEvent, operands, unknown); // legacy
1236 } else if (operands.length) {
1237 if (this._findCommand('*')) { // legacy default command
1238 return this._dispatchSubcommand('*', operands, unknown);
1239 }
1240 if (this.listenerCount('command:*')) {
1241 // skip option check, emit event for possible misspelling suggestion
1242 this.emit('command:*', operands, unknown);
1243 } else if (this.commands.length) {
1244 this.unknownCommand();
1245 } else {
1246 checkForUnknownOptions();
1247 this._processArguments();
1248 }
1249 } else if (this.commands.length) {
1250 checkForUnknownOptions();
1251 // This command has subcommands and nothing hooked up at this level, so display help (and exit).
1252 this.help({ error: true });
1253 } else {
1254 checkForUnknownOptions();
1255 this._processArguments();
1256 // fall through for caller to handle after calling .parse()
1257 }
1258 };
1259
1260 /**
1261 * Find matching command.
1262 *
1263 * @api private
1264 */
1265 _findCommand(name) {
1266 if (!name) return undefined;
1267 return this.commands.find(cmd => cmd._name === name || cmd._aliases.includes(name));
1268 };
1269
1270 /**
1271 * Return an option matching `arg` if any.
1272 *
1273 * @param {string} arg
1274 * @return {Option}
1275 * @api private
1276 */
1277
1278 _findOption(arg) {
1279 return this.options.find(option => option.is(arg));
1280 };
1281
1282 /**
1283 * Display an error message if a mandatory option does not have a value.
1284 * Lazy calling after checking for help flags from leaf subcommand.
1285 *
1286 * @api private
1287 */
1288
1289 _checkForMissingMandatoryOptions() {
1290 // Walk up hierarchy so can call in subcommand after checking for displaying help.
1291 for (let cmd = this; cmd; cmd = cmd.parent) {
1292 cmd.options.forEach((anOption) => {
1293 if (anOption.mandatory && (cmd.getOptionValue(anOption.attributeName()) === undefined)) {
1294 cmd.missingMandatoryOptionValue(anOption);
1295 }
1296 });
1297 }
1298 };
1299
1300 /**
1301 * Parse options from `argv` removing known options,
1302 * and return argv split into operands and unknown arguments.
1303 *
1304 * Examples:
1305 *
1306 * argv => operands, unknown
1307 * --known kkk op => [op], []
1308 * op --known kkk => [op], []
1309 * sub --unknown uuu op => [sub], [--unknown uuu op]
1310 * sub -- --unknown uuu op => [sub --unknown uuu op], []
1311 *
1312 * @param {String[]} argv
1313 * @return {{operands: String[], unknown: String[]}}
1314 */
1315
1316 parseOptions(argv) {
1317 const operands = []; // operands, not options or values
1318 const unknown = []; // first unknown option and remaining unknown args
1319 let dest = operands;
1320 const args = argv.slice();
1321
1322 function maybeOption(arg) {
1323 return arg.length > 1 && arg[0] === '-';
1324 }
1325
1326 // parse options
1327 let activeVariadicOption = null;
1328 while (args.length) {
1329 const arg = args.shift();
1330
1331 // literal
1332 if (arg === '--') {
1333 if (dest === unknown) dest.push(arg);
1334 dest.push(...args);
1335 break;
1336 }
1337
1338 if (activeVariadicOption && !maybeOption(arg)) {
1339 this.emit(`option:${activeVariadicOption.name()}`, arg);
1340 continue;
1341 }
1342 activeVariadicOption = null;
1343
1344 if (maybeOption(arg)) {
1345 const option = this._findOption(arg);
1346 // recognised option, call listener to assign value with possible custom processing
1347 if (option) {
1348 if (option.required) {
1349 const value = args.shift();
1350 if (value === undefined) this.optionMissingArgument(option);
1351 this.emit(`option:${option.name()}`, value);
1352 } else if (option.optional) {
1353 let value = null;
1354 // historical behaviour is optional value is following arg unless an option
1355 if (args.length > 0 && !maybeOption(args[0])) {
1356 value = args.shift();
1357 }
1358 this.emit(`option:${option.name()}`, value);
1359 } else { // boolean flag
1360 this.emit(`option:${option.name()}`);
1361 }
1362 activeVariadicOption = option.variadic ? option : null;
1363 continue;
1364 }
1365 }
1366
1367 // Look for combo options following single dash, eat first one if known.
1368 if (arg.length > 2 && arg[0] === '-' && arg[1] !== '-') {
1369 const option = this._findOption(`-${arg[1]}`);
1370 if (option) {
1371 if (option.required || (option.optional && this._combineFlagAndOptionalValue)) {
1372 // option with value following in same argument
1373 this.emit(`option:${option.name()}`, arg.slice(2));
1374 } else {
1375 // boolean option, emit and put back remainder of arg for further processing
1376 this.emit(`option:${option.name()}`);
1377 args.unshift(`-${arg.slice(2)}`);
1378 }
1379 continue;
1380 }
1381 }
1382
1383 // Look for known long flag with value, like --foo=bar
1384 if (/^--[^=]+=/.test(arg)) {
1385 const index = arg.indexOf('=');
1386 const option = this._findOption(arg.slice(0, index));
1387 if (option && (option.required || option.optional)) {
1388 this.emit(`option:${option.name()}`, arg.slice(index + 1));
1389 continue;
1390 }
1391 }
1392
1393 // Not a recognised option by this command.
1394 // Might be a command-argument, or subcommand option, or unknown option, or help command or option.
1395
1396 // An unknown option means further arguments also classified as unknown so can be reprocessed by subcommands.
1397 if (maybeOption(arg)) {
1398 dest = unknown;
1399 }
1400
1401 // If using positionalOptions, stop processing our options at subcommand.
1402 if ((this._enablePositionalOptions || this._passThroughOptions) && operands.length === 0 && unknown.length === 0) {
1403 if (this._findCommand(arg)) {
1404 operands.push(arg);
1405 if (args.length > 0) unknown.push(...args);
1406 break;
1407 } else if (arg === this._helpCommandName && this._hasImplicitHelpCommand()) {
1408 operands.push(arg);
1409 if (args.length > 0) operands.push(...args);
1410 break;
1411 } else if (this._defaultCommandName) {
1412 unknown.push(arg);
1413 if (args.length > 0) unknown.push(...args);
1414 break;
1415 }
1416 }
1417
1418 // If using passThroughOptions, stop processing options at first command-argument.
1419 if (this._passThroughOptions) {
1420 dest.push(arg);
1421 if (args.length > 0) dest.push(...args);
1422 break;
1423 }
1424
1425 // add arg
1426 dest.push(arg);
1427 }
1428
1429 return { operands, unknown };
1430 };
1431
1432 /**
1433 * Return an object containing options as key-value pairs
1434 *
1435 * @return {Object}
1436 */
1437 opts() {
1438 if (this._storeOptionsAsProperties) {
1439 // Preserve original behaviour so backwards compatible when still using properties
1440 const result = {};
1441 const len = this.options.length;
1442
1443 for (let i = 0; i < len; i++) {
1444 const key = this.options[i].attributeName();
1445 result[key] = key === this._versionOptionName ? this._version : this[key];
1446 }
1447 return result;
1448 }
1449
1450 return this._optionValues;
1451 };
1452
1453 /**
1454 * Internal bottleneck for handling of parsing errors.
1455 *
1456 * @api private
1457 */
1458 _displayError(exitCode, code, message) {
1459 this._outputConfiguration.outputError(`${message}\n`, this._outputConfiguration.writeErr);
1460 if (typeof this._showHelpAfterError === 'string') {
1461 this._outputConfiguration.writeErr(`${this._showHelpAfterError}\n`);
1462 } else if (this._showHelpAfterError) {
1463 this._outputConfiguration.writeErr('\n');
1464 this.outputHelp({ error: true });
1465 }
1466 this._exit(exitCode, code, message);
1467 }
1468
1469 /**
1470 * Apply any option related environment variables, if option does
1471 * not have a value from cli or client code.
1472 *
1473 * @api private
1474 */
1475 _parseOptionsEnv() {
1476 this.options.forEach((option) => {
1477 if (option.envVar && option.envVar in process.env) {
1478 const optionKey = option.attributeName();
1479 // Priority check. Do not overwrite cli or options from unknown source (client-code).
1480 if (this.getOptionValue(optionKey) === undefined || ['default', 'config', 'env'].includes(this.getOptionValueSource(optionKey))) {
1481 if (option.required || option.optional) { // option can take a value
1482 // keep very simple, optional always takes value
1483 this.emit(`optionEnv:${option.name()}`, process.env[option.envVar]);
1484 } else { // boolean
1485 // keep very simple, only care that envVar defined and not the value
1486 this.emit(`optionEnv:${option.name()}`);
1487 }
1488 }
1489 }
1490 });
1491 }
1492
1493 /**
1494 * Argument `name` is missing.
1495 *
1496 * @param {string} name
1497 * @api private
1498 */
1499
1500 missingArgument(name) {
1501 const message = `error: missing required argument '${name}'`;
1502 this._displayError(1, 'commander.missingArgument', message);
1503 };
1504
1505 /**
1506 * `Option` is missing an argument.
1507 *
1508 * @param {Option} option
1509 * @api private
1510 */
1511
1512 optionMissingArgument(option) {
1513 const message = `error: option '${option.flags}' argument missing`;
1514 this._displayError(1, 'commander.optionMissingArgument', message);
1515 };
1516
1517 /**
1518 * `Option` does not have a value, and is a mandatory option.
1519 *
1520 * @param {Option} option
1521 * @api private
1522 */
1523
1524 missingMandatoryOptionValue(option) {
1525 const message = `error: required option '${option.flags}' not specified`;
1526 this._displayError(1, 'commander.missingMandatoryOptionValue', message);
1527 };
1528
1529 /**
1530 * Unknown option `flag`.
1531 *
1532 * @param {string} flag
1533 * @api private
1534 */
1535
1536 unknownOption(flag) {
1537 if (this._allowUnknownOption) return;
1538 let suggestion = '';
1539
1540 if (flag.startsWith('--') && this._showSuggestionAfterError) {
1541 // Looping to pick up the global options too
1542 let candidateFlags = [];
1543 let command = this;
1544 do {
1545 const moreFlags = command.createHelp().visibleOptions(command)
1546 .filter(option => option.long)
1547 .map(option => option.long);
1548 candidateFlags = candidateFlags.concat(moreFlags);
1549 command = command.parent;
1550 } while (command && !command._enablePositionalOptions);
1551 suggestion = suggestSimilar(flag, candidateFlags);
1552 }
1553
1554 const message = `error: unknown option '${flag}'${suggestion}`;
1555 this._displayError(1, 'commander.unknownOption', message);
1556 };
1557
1558 /**
1559 * Excess arguments, more than expected.
1560 *
1561 * @param {string[]} receivedArgs
1562 * @api private
1563 */
1564
1565 _excessArguments(receivedArgs) {
1566 if (this._allowExcessArguments) return;
1567
1568 const expected = this._args.length;
1569 const s = (expected === 1) ? '' : 's';
1570 const forSubcommand = this.parent ? ` for '${this.name()}'` : '';
1571 const message = `error: too many arguments${forSubcommand}. Expected ${expected} argument${s} but got ${receivedArgs.length}.`;
1572 this._displayError(1, 'commander.excessArguments', message);
1573 };
1574
1575 /**
1576 * Unknown command.
1577 *
1578 * @api private
1579 */
1580
1581 unknownCommand() {
1582 const unknownName = this.args[0];
1583 let suggestion = '';
1584
1585 if (this._showSuggestionAfterError) {
1586 const candidateNames = [];
1587 this.createHelp().visibleCommands(this).forEach((command) => {
1588 candidateNames.push(command.name());
1589 // just visible alias
1590 if (command.alias()) candidateNames.push(command.alias());
1591 });
1592 suggestion = suggestSimilar(unknownName, candidateNames);
1593 }
1594
1595 const message = `error: unknown command '${unknownName}'${suggestion}`;
1596 this._displayError(1, 'commander.unknownCommand', message);
1597 };
1598
1599 /**
1600 * Set the program version to `str`.
1601 *
1602 * This method auto-registers the "-V, --version" flag
1603 * which will print the version number when passed.
1604 *
1605 * You can optionally supply the flags and description to override the defaults.
1606 *
1607 * @param {string} str
1608 * @param {string} [flags]
1609 * @param {string} [description]
1610 * @return {this | string} `this` command for chaining, or version string if no arguments
1611 */
1612
1613 version(str, flags, description) {
1614 if (str === undefined) return this._version;
1615 this._version = str;
1616 flags = flags || '-V, --version';
1617 description = description || 'output the version number';
1618 const versionOption = this.createOption(flags, description);
1619 this._versionOptionName = versionOption.attributeName();
1620 this.options.push(versionOption);
1621 this.on('option:' + versionOption.name(), () => {
1622 this._outputConfiguration.writeOut(`${str}\n`);
1623 this._exit(0, 'commander.version', str);
1624 });
1625 return this;
1626 };
1627
1628 /**
1629 * Set the description to `str`.
1630 *
1631 * @param {string} [str]
1632 * @param {Object} [argsDescription]
1633 * @return {string|Command}
1634 */
1635 description(str, argsDescription) {
1636 if (str === undefined && argsDescription === undefined) return this._description;
1637 this._description = str;
1638 if (argsDescription) {
1639 this._argsDescription = argsDescription;
1640 }
1641 return this;
1642 };
1643
1644 /**
1645 * Set an alias for the command.
1646 *
1647 * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.
1648 *
1649 * @param {string} [alias]
1650 * @return {string|Command}
1651 */
1652
1653 alias(alias) {
1654 if (alias === undefined) return this._aliases[0]; // just return first, for backwards compatibility
1655
1656 /** @type {Command} */
1657 let command = this;
1658 if (this.commands.length !== 0 && this.commands[this.commands.length - 1]._executableHandler) {
1659 // assume adding alias for last added executable subcommand, rather than this
1660 command = this.commands[this.commands.length - 1];
1661 }
1662
1663 if (alias === command._name) throw new Error('Command alias can\'t be the same as its name');
1664
1665 command._aliases.push(alias);
1666 return this;
1667 };
1668
1669 /**
1670 * Set aliases for the command.
1671 *
1672 * Only the first alias is shown in the auto-generated help.
1673 *
1674 * @param {string[]} [aliases]
1675 * @return {string[]|Command}
1676 */
1677
1678 aliases(aliases) {
1679 // Getter for the array of aliases is the main reason for having aliases() in addition to alias().
1680 if (aliases === undefined) return this._aliases;
1681
1682 aliases.forEach((alias) => this.alias(alias));
1683 return this;
1684 };
1685
1686 /**
1687 * Set / get the command usage `str`.
1688 *
1689 * @param {string} [str]
1690 * @return {String|Command}
1691 */
1692
1693 usage(str) {
1694 if (str === undefined) {
1695 if (this._usage) return this._usage;
1696
1697 const args = this._args.map((arg) => {
1698 return humanReadableArgName(arg);
1699 });
1700 return [].concat(
1701 (this.options.length || this._hasHelpOption ? '[options]' : []),
1702 (this.commands.length ? '[command]' : []),
1703 (this._args.length ? args : [])
1704 ).join(' ');
1705 }
1706
1707 this._usage = str;
1708 return this;
1709 };
1710
1711 /**
1712 * Get or set the name of the command
1713 *
1714 * @param {string} [str]
1715 * @return {string|Command}
1716 */
1717
1718 name(str) {
1719 if (str === undefined) return this._name;
1720 this._name = str;
1721 return this;
1722 };
1723
1724 /**
1725 * Return program help documentation.
1726 *
1727 * @param {{ error: boolean }} [contextOptions] - pass {error:true} to wrap for stderr instead of stdout
1728 * @return {string}
1729 */
1730
1731 helpInformation(contextOptions) {
1732 const helper = this.createHelp();
1733 if (helper.helpWidth === undefined) {
1734 helper.helpWidth = (contextOptions && contextOptions.error) ? this._outputConfiguration.getErrHelpWidth() : this._outputConfiguration.getOutHelpWidth();
1735 }
1736 return helper.formatHelp(this, helper);
1737 };
1738
1739 /**
1740 * @api private
1741 */
1742
1743 _getHelpContext(contextOptions) {
1744 contextOptions = contextOptions || {};
1745 const context = { error: !!contextOptions.error };
1746 let write;
1747 if (context.error) {
1748 write = (arg) => this._outputConfiguration.writeErr(arg);
1749 } else {
1750 write = (arg) => this._outputConfiguration.writeOut(arg);
1751 }
1752 context.write = contextOptions.write || write;
1753 context.command = this;
1754 return context;
1755 }
1756
1757 /**
1758 * Output help information for this command.
1759 *
1760 * Outputs built-in help, and custom text added using `.addHelpText()`.
1761 *
1762 * @param {{ error: boolean } | Function} [contextOptions] - pass {error:true} to write to stderr instead of stdout
1763 */
1764
1765 outputHelp(contextOptions) {
1766 let deprecatedCallback;
1767 if (typeof contextOptions === 'function') {
1768 deprecatedCallback = contextOptions;
1769 contextOptions = undefined;
1770 }
1771 const context = this._getHelpContext(contextOptions);
1772
1773 getCommandAndParents(this).reverse().forEach(command => command.emit('beforeAllHelp', context));
1774 this.emit('beforeHelp', context);
1775
1776 let helpInformation = this.helpInformation(context);
1777 if (deprecatedCallback) {
1778 helpInformation = deprecatedCallback(helpInformation);
1779 if (typeof helpInformation !== 'string' && !Buffer.isBuffer(helpInformation)) {
1780 throw new Error('outputHelp callback must return a string or a Buffer');
1781 }
1782 }
1783 context.write(helpInformation);
1784
1785 this.emit(this._helpLongFlag); // deprecated
1786 this.emit('afterHelp', context);
1787 getCommandAndParents(this).forEach(command => command.emit('afterAllHelp', context));
1788 };
1789
1790 /**
1791 * You can pass in flags and a description to override the help
1792 * flags and help description for your command. Pass in false to
1793 * disable the built-in help option.
1794 *
1795 * @param {string | boolean} [flags]
1796 * @param {string} [description]
1797 * @return {Command} `this` command for chaining
1798 */
1799
1800 helpOption(flags, description) {
1801 if (typeof flags === 'boolean') {
1802 this._hasHelpOption = flags;
1803 return this;
1804 }
1805 this._helpFlags = flags || this._helpFlags;
1806 this._helpDescription = description || this._helpDescription;
1807
1808 const helpFlags = splitOptionFlags(this._helpFlags);
1809 this._helpShortFlag = helpFlags.shortFlag;
1810 this._helpLongFlag = helpFlags.longFlag;
1811
1812 return this;
1813 };
1814
1815 /**
1816 * Output help information and exit.
1817 *
1818 * Outputs built-in help, and custom text added using `.addHelpText()`.
1819 *
1820 * @param {{ error: boolean }} [contextOptions] - pass {error:true} to write to stderr instead of stdout
1821 */
1822
1823 help(contextOptions) {
1824 this.outputHelp(contextOptions);
1825 let exitCode = process.exitCode || 0;
1826 if (exitCode === 0 && contextOptions && typeof contextOptions !== 'function' && contextOptions.error) {
1827 exitCode = 1;
1828 }
1829 // message: do not have all displayed text available so only passing placeholder.
1830 this._exit(exitCode, 'commander.help', '(outputHelp)');
1831 };
1832
1833 /**
1834 * Add additional text to be displayed with the built-in help.
1835 *
1836 * Position is 'before' or 'after' to affect just this command,
1837 * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.
1838 *
1839 * @param {string} position - before or after built-in help
1840 * @param {string | Function} text - string to add, or a function returning a string
1841 * @return {Command} `this` command for chaining
1842 */
1843 addHelpText(position, text) {
1844 const allowedValues = ['beforeAll', 'before', 'after', 'afterAll'];
1845 if (!allowedValues.includes(position)) {
1846 throw new Error(`Unexpected value for position to addHelpText.
1847Expecting one of '${allowedValues.join("', '")}'`);
1848 }
1849 const helpEvent = `${position}Help`;
1850 this.on(helpEvent, (context) => {
1851 let helpStr;
1852 if (typeof text === 'function') {
1853 helpStr = text({ error: context.error, command: context.command });
1854 } else {
1855 helpStr = text;
1856 }
1857 // Ignore falsy value when nothing to output.
1858 if (helpStr) {
1859 context.write(`${helpStr}\n`);
1860 }
1861 });
1862 return this;
1863 }
1864};
1865
1866/**
1867 * Output help information if help flags specified
1868 *
1869 * @param {Command} cmd - command to output help for
1870 * @param {Array} args - array of options to search for help flags
1871 * @api private
1872 */
1873
1874function outputHelpIfRequested(cmd, args) {
1875 const helpOption = cmd._hasHelpOption && args.find(arg => arg === cmd._helpLongFlag || arg === cmd._helpShortFlag);
1876 if (helpOption) {
1877 cmd.outputHelp();
1878 // (Do not have all displayed text available so only passing placeholder.)
1879 cmd._exit(0, 'commander.helpDisplayed', '(outputHelp)');
1880 }
1881}
1882
1883/**
1884 * Scan arguments and increment port number for inspect calls (to avoid conflicts when spawning new command).
1885 *
1886 * @param {string[]} args - array of arguments from node.execArgv
1887 * @returns {string[]}
1888 * @api private
1889 */
1890
1891function incrementNodeInspectorPort(args) {
1892 // Testing for these options:
1893 // --inspect[=[host:]port]
1894 // --inspect-brk[=[host:]port]
1895 // --inspect-port=[host:]port
1896 return args.map((arg) => {
1897 if (!arg.startsWith('--inspect')) {
1898 return arg;
1899 }
1900 let debugOption;
1901 let debugHost = '127.0.0.1';
1902 let debugPort = '9229';
1903 let match;
1904 if ((match = arg.match(/^(--inspect(-brk)?)$/)) !== null) {
1905 // e.g. --inspect
1906 debugOption = match[1];
1907 } else if ((match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+)$/)) !== null) {
1908 debugOption = match[1];
1909 if (/^\d+$/.test(match[3])) {
1910 // e.g. --inspect=1234
1911 debugPort = match[3];
1912 } else {
1913 // e.g. --inspect=localhost
1914 debugHost = match[3];
1915 }
1916 } else if ((match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/)) !== null) {
1917 // e.g. --inspect=localhost:1234
1918 debugOption = match[1];
1919 debugHost = match[3];
1920 debugPort = match[4];
1921 }
1922
1923 if (debugOption && debugPort !== '0') {
1924 return `${debugOption}=${debugHost}:${parseInt(debugPort) + 1}`;
1925 }
1926 return arg;
1927 });
1928}
1929
1930/**
1931 * @param {Command} startCommand
1932 * @returns {Command[]}
1933 * @api private
1934 */
1935
1936function getCommandAndParents(startCommand) {
1937 const result = [];
1938 for (let command = startCommand; command; command = command.parent) {
1939 result.push(command);
1940 }
1941 return result;
1942}
1943
1944exports.Command = Command;
Note: See TracBrowser for help on using the repository browser.