@guanghechen/commander 4.7.6 → 4.7.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/cjs/node.cjs CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  var promises = require('node:fs/promises');
4
4
  var path = require('node:path');
5
- var env = require('@guanghechen/env');
6
5
  var reporter = require('@guanghechen/reporter');
6
+ var env = require('@guanghechen/env');
7
7
  var fs = require('node:fs');
8
8
 
9
9
  const WINDOWS_DRIVE_ABSOLUTE_REGEX = /^[a-zA-Z]:[\\/]/;
@@ -94,608 +94,1164 @@ function createNodeCommandRuntime() {
94
94
  };
95
95
  }
96
96
 
97
- const TERMINAL_STYLE = {
98
- bold: '\x1b[1m',
99
- italic: '\x1b[3m',
100
- underline: '\x1b[4m',
101
- cyan: '\x1b[36m',
102
- dim: '\x1b[2m',
103
- reset: '\x1b[0m',
104
- };
105
- function styleText(text, ...styles) {
106
- return `${styles.join('')}${text}${TERMINAL_STYLE.reset}`;
107
- }
108
-
109
- const BUILTIN_LOG_LEVELS = ['debug', 'info', 'hint', 'warn', 'error'];
110
- function resolveReporterLogLevel(raw) {
111
- const normalized = raw.trim().toLowerCase();
112
- return BUILTIN_LOG_LEVELS.find(level => level === normalized);
113
- }
114
- function setReporterLevel(ctx, level) {
115
- const reporter = ctx.reporter;
116
- reporter?.setLevel?.(level);
117
- }
118
- function setReporterFlight(ctx, flight) {
119
- const reporter = ctx.reporter;
120
- reporter?.setFlight?.(flight);
121
- }
122
- const logLevelOption = {
123
- long: 'logLevel',
124
- type: 'string',
125
- args: 'required',
126
- desc: 'Set log level',
127
- default: 'info',
128
- choices: [...BUILTIN_LOG_LEVELS],
129
- coerce: (raw) => {
130
- const level = resolveReporterLogLevel(raw);
131
- if (level === undefined) {
132
- throw new Error(`Invalid log level: ${raw}`);
133
- }
134
- return level;
135
- },
136
- apply: (value, ctx) => {
137
- setReporterLevel(ctx, value);
138
- },
139
- };
140
- const logDateOption = {
141
- long: 'logDate',
142
- type: 'boolean',
143
- args: 'none',
144
- desc: 'Enable log timestamp',
145
- default: true,
146
- apply: (value, ctx) => {
147
- setReporterFlight(ctx, { date: Boolean(value) });
148
- },
149
- };
150
- const logColorfulOption = {
151
- long: 'logColorful',
152
- type: 'boolean',
153
- args: 'none',
154
- desc: 'Enable colorful log output',
155
- default: true,
156
- apply: (value, ctx) => {
157
- setReporterFlight(ctx, { color: Boolean(value) });
158
- },
159
- };
160
- const silentOption = {
161
- long: 'silent',
162
- type: 'boolean',
163
- args: 'none',
164
- desc: 'Suppress non-error output',
165
- default: false,
166
- apply: (value, ctx) => {
167
- if (value) {
168
- setReporterLevel(ctx, 'error');
169
- }
170
- },
171
- };
172
-
173
97
  class CommanderError extends Error {
174
98
  kind;
175
99
  commandPath;
176
- constructor(kind, message, commandPath) {
100
+ meta;
101
+ constructor(kind, message, commandPath, meta) {
177
102
  super(message);
178
103
  this.name = 'CommanderError';
179
104
  this.kind = kind;
180
105
  this.commandPath = commandPath;
106
+ this.meta = meta;
107
+ }
108
+ withIssue(issue) {
109
+ return this.withIssues([issue]);
110
+ }
111
+ withIssues(issues) {
112
+ if (issues.length === 0) {
113
+ return this;
114
+ }
115
+ const nextMeta = {
116
+ commandPath: this.meta?.commandPath ?? this.commandPath,
117
+ token: this.meta?.token,
118
+ option: this.meta?.option,
119
+ argument: this.meta?.argument,
120
+ issues: [...(this.meta?.issues ?? []), ...issues],
121
+ };
122
+ return new CommanderError(this.kind, this.message, this.commandPath, nextMeta);
181
123
  }
182
124
  format() {
125
+ const issues = this.meta?.issues ?? [];
126
+ if (issues.length > 0) {
127
+ const primary = issues.find(issue => issue.kind === 'error') ?? issues[0];
128
+ const lines = [`Error: ${primary.reason.message}`];
129
+ for (const issue of issues) {
130
+ if (issue.kind !== 'hint')
131
+ continue;
132
+ const message = issue.reason.message.startsWith('Hint:')
133
+ ? issue.reason.message
134
+ : `Hint: ${issue.reason.message}`;
135
+ lines.push(message);
136
+ }
137
+ lines.push(`Run "${this.commandPath} --help" for usage.`);
138
+ return lines.join('\n');
139
+ }
183
140
  return `Error: ${this.message}\nRun "${this.commandPath} --help" for usage.`;
184
141
  }
185
142
  }
186
143
 
187
- const LONG_OPTION_REGEX = /^--[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/;
188
- const NEGATIVE_OPTION_REGEX = /^--no-[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/;
189
- const PRESET_FILE_FLAG = '--preset-file';
190
- const PRESET_PROFILE_FLAG = '--preset-profile';
191
- const PRESET_SELECTOR_DELIMITER = ':';
192
- function kebabToCamelCase(str) {
193
- return str.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
194
- }
195
- function camelToKebabCase$1(str) {
196
- return str.replace(/[A-Z]/g, m => '-' + m.toLowerCase());
197
- }
198
- const ANSI_ESCAPE_REGEX = new RegExp(String.raw `\\x1B\\[[0-?]*[ -/]*[@-~]`, 'g');
199
- const DECIMAL_INTEGER_REGEX = /^\d(?:_?\d)*$/;
200
- const DECIMAL_FRACTION_REGEX = /^\d(?:_?\d)*$/;
201
- const DECIMAL_EXPONENT_REGEX = /^[eE][+-]?\d(?:_?\d)*$/;
202
- const BINARY_LITERAL_REGEX = /^0[bB][01](?:_?[01])*$/;
203
- const OCTAL_LITERAL_REGEX = /^0[oO][0-7](?:_?[0-7])*$/;
204
- const HEX_LITERAL_REGEX = /^0[xX][0-9a-fA-F](?:_?[0-9a-fA-F])*$/;
205
- const PRESET_PROFILE_NAME_REGEX = /^[A-Za-z0-9][A-Za-z0-9._-]*$/;
206
- const PRESET_VARIANT_NAME_REGEX = /^[A-Za-z0-9][A-Za-z0-9._-]*$/;
207
- function stripAnsi(value) {
208
- return value.replace(ANSI_ESCAPE_REGEX, '');
209
- }
210
- function isCombiningMark(codePoint) {
211
- return ((codePoint >= 0x0300 && codePoint <= 0x036f) ||
212
- (codePoint >= 0x1ab0 && codePoint <= 0x1aff) ||
213
- (codePoint >= 0x1dc0 && codePoint <= 0x1dff) ||
214
- (codePoint >= 0x20d0 && codePoint <= 0x20ff) ||
215
- (codePoint >= 0xfe20 && codePoint <= 0xfe2f));
216
- }
217
- function isWideCodePoint(codePoint) {
218
- if (codePoint < 0x1100) {
219
- return false;
144
+ async function runCommandAction(params) {
145
+ const { action, actionParams, commandPath } = params;
146
+ if (action === undefined) {
147
+ return;
220
148
  }
221
- return (codePoint <= 0x115f ||
222
- codePoint === 0x2329 ||
223
- codePoint === 0x232a ||
224
- (codePoint >= 0x2e80 && codePoint <= 0x3247 && codePoint !== 0x303f) ||
225
- (codePoint >= 0x3250 && codePoint <= 0x4dbf) ||
226
- (codePoint >= 0x4e00 && codePoint <= 0xa4c6) ||
227
- (codePoint >= 0xa960 && codePoint <= 0xa97c) ||
228
- (codePoint >= 0xac00 && codePoint <= 0xd7a3) ||
229
- (codePoint >= 0xf900 && codePoint <= 0xfaff) ||
230
- (codePoint >= 0xfe10 && codePoint <= 0xfe19) ||
231
- (codePoint >= 0xfe30 && codePoint <= 0xfe6b) ||
232
- (codePoint >= 0xff01 && codePoint <= 0xff60) ||
233
- (codePoint >= 0xffe0 && codePoint <= 0xffe6) ||
234
- (codePoint >= 0x1b000 && codePoint <= 0x1b001) ||
235
- (codePoint >= 0x1f200 && codePoint <= 0x1f251) ||
236
- (codePoint >= 0x20000 && codePoint <= 0x3fffd));
237
- }
238
- function getDisplayWidth(value) {
239
- const normalized = stripAnsi(value).normalize('NFC');
240
- let width = 0;
241
- for (const char of normalized) {
242
- const codePoint = char.codePointAt(0);
243
- if (codePoint === undefined || isCombiningMark(codePoint)) {
244
- continue;
149
+ try {
150
+ await action(actionParams);
151
+ }
152
+ catch (err) {
153
+ if (err instanceof CommanderError) {
154
+ throw err;
245
155
  }
246
- width += isWideCodePoint(codePoint) ? 2 : 1;
156
+ const issue = {
157
+ kind: 'error',
158
+ stage: 'run',
159
+ scope: 'action',
160
+ reason: {
161
+ code: 'action_failed',
162
+ message: err instanceof Error ? err.message : 'action failed',
163
+ details: err instanceof Error
164
+ ? {
165
+ errorName: err.name,
166
+ errorMessage: err.message,
167
+ }
168
+ : {
169
+ errorValue: String(err),
170
+ },
171
+ },
172
+ };
173
+ throw new CommanderError('ActionFailed', err instanceof Error ? err.message : 'action failed', commandPath).withIssue(issue);
247
174
  }
248
- return width;
249
175
  }
250
- function padDisplayEnd(value, targetWidth) {
251
- const width = getDisplayWidth(value);
252
- if (width >= targetWidth) {
253
- return value;
176
+
177
+ const BUILTIN_HELP_OPTION = {
178
+ long: 'help',
179
+ type: 'boolean',
180
+ args: 'none',
181
+ desc: 'Show help information',
182
+ };
183
+ const BUILTIN_VERSION_OPTION = {
184
+ long: 'version',
185
+ type: 'boolean',
186
+ args: 'none',
187
+ desc: 'Show version number',
188
+ };
189
+ function errorKindToIssueScope(kind) {
190
+ switch (kind) {
191
+ case 'UnknownSubcommand':
192
+ return 'command';
193
+ case 'MissingRequiredArgument':
194
+ case 'TooManyArguments':
195
+ case 'UnexpectedArgument':
196
+ return 'argument';
197
+ case 'ActionFailed':
198
+ return 'action';
199
+ case 'ConfigurationError':
200
+ return 'runtime';
201
+ default:
202
+ return 'option';
254
203
  }
255
- return value + ' '.repeat(targetWidth - width);
256
204
  }
257
- function isValidPrimitiveNumberLiteral(rawValue) {
258
- if (rawValue.trim() !== rawValue || rawValue.length === 0) {
259
- return false;
260
- }
261
- if (rawValue === 'NaN' || rawValue === 'Infinity' || rawValue === '-Infinity') {
262
- return false;
263
- }
264
- if (BINARY_LITERAL_REGEX.test(rawValue)) {
265
- return true;
266
- }
267
- if (OCTAL_LITERAL_REGEX.test(rawValue)) {
268
- return true;
269
- }
270
- if (HEX_LITERAL_REGEX.test(rawValue)) {
271
- return true;
205
+ function createBuiltinOptionState(enabled) {
206
+ return {
207
+ version: enabled,
208
+ color: enabled,
209
+ devmode: enabled,
210
+ logLevel: enabled,
211
+ silent: enabled,
212
+ logDate: enabled,
213
+ logColorful: enabled,
214
+ };
215
+ }
216
+ function normalizeBuiltinConfig(builtin) {
217
+ const resolved = {
218
+ option: createBuiltinOptionState(true),
219
+ };
220
+ if (builtin === undefined) {
221
+ return resolved;
272
222
  }
273
- const sign = rawValue[0] === '+' || rawValue[0] === '-' ? rawValue[0] : '';
274
- const body = sign ? rawValue.slice(1) : rawValue;
275
- if (body.length === 0) {
276
- return false;
223
+ if (builtin === true) {
224
+ return {
225
+ option: createBuiltinOptionState(true),
226
+ };
277
227
  }
278
- const expIndex = body.search(/[eE]/);
279
- const basePart = expIndex === -1 ? body : body.slice(0, expIndex);
280
- const expPart = expIndex === -1 ? '' : body.slice(expIndex);
281
- if (expPart && !DECIMAL_EXPONENT_REGEX.test(expPart)) {
282
- return false;
228
+ if (builtin === false) {
229
+ return {
230
+ option: createBuiltinOptionState(false),
231
+ };
283
232
  }
284
- if (basePart.includes('.')) {
285
- const decimalParts = basePart.split('.');
286
- if (decimalParts.length !== 2) {
287
- return false;
233
+ if (builtin.option !== undefined) {
234
+ if (builtin.option === false) {
235
+ resolved.option = createBuiltinOptionState(false);
288
236
  }
289
- const [intPart, fracPart] = decimalParts;
290
- const intOk = intPart.length === 0 || DECIMAL_INTEGER_REGEX.test(intPart);
291
- const fracOk = fracPart.length === 0 || DECIMAL_FRACTION_REGEX.test(fracPart);
292
- if (!intOk || !fracOk) {
293
- return false;
237
+ else if (builtin.option === true) {
238
+ resolved.option = createBuiltinOptionState(true);
239
+ }
240
+ else {
241
+ if (builtin.option.version !== undefined)
242
+ resolved.option.version = builtin.option.version;
243
+ if (builtin.option.color !== undefined)
244
+ resolved.option.color = builtin.option.color;
245
+ if (builtin.option.devmode !== undefined)
246
+ resolved.option.devmode = builtin.option.devmode;
247
+ if (builtin.option.logLevel !== undefined) {
248
+ resolved.option.logLevel = builtin.option.logLevel;
249
+ }
250
+ if (builtin.option.silent !== undefined)
251
+ resolved.option.silent = builtin.option.silent;
252
+ if (builtin.option.logDate !== undefined)
253
+ resolved.option.logDate = builtin.option.logDate;
254
+ if (builtin.option.logColorful !== undefined) {
255
+ resolved.option.logColorful = builtin.option.logColorful;
256
+ }
294
257
  }
295
- return intPart.length > 0 || fracPart.length > 0;
296
258
  }
297
- return DECIMAL_INTEGER_REGEX.test(basePart);
259
+ return resolved;
298
260
  }
299
- function parsePrimitiveNumber(rawValue) {
300
- if (!isValidPrimitiveNumberLiteral(rawValue)) {
301
- return undefined;
302
- }
303
- const normalized = rawValue.replaceAll('_', '');
304
- const value = Number(normalized);
305
- if (!Number.isFinite(value)) {
306
- return undefined;
307
- }
308
- return value;
261
+
262
+ function createCommandContext(params) {
263
+ const { leafCommand, chain, cmds, envs, reporter } = params;
264
+ const envSnapshot = { ...envs };
265
+ return {
266
+ cmd: leafCommand,
267
+ chain,
268
+ envs: envSnapshot,
269
+ controls: { help: false, version: false },
270
+ sources: {
271
+ preset: {
272
+ state: 'none',
273
+ argv: [],
274
+ envs: {},
275
+ },
276
+ user: {
277
+ cmds: [...cmds],
278
+ argv: [],
279
+ envs: envSnapshot,
280
+ },
281
+ },
282
+ reporter,
283
+ };
309
284
  }
310
- function normalizeSubcommandNameForDistance(name) {
311
- return camelToKebabCase$1(name).toLowerCase();
285
+ function freezeInputSources(sources) {
286
+ return Object.freeze({
287
+ preset: Object.freeze({
288
+ state: sources.preset.state,
289
+ argv: Object.freeze([...sources.preset.argv]),
290
+ envs: Object.freeze({ ...sources.preset.envs }),
291
+ meta: sources.preset.meta === undefined ? undefined : Object.freeze({ ...sources.preset.meta }),
292
+ }),
293
+ user: Object.freeze({
294
+ cmds: Object.freeze([...sources.user.cmds]),
295
+ argv: Object.freeze([...sources.user.argv]),
296
+ envs: Object.freeze({ ...sources.user.envs }),
297
+ }),
298
+ });
312
299
  }
313
- function levenshteinDistance(left, right) {
314
- if (left === right) {
315
- return 0;
316
- }
317
- if (left.length === 0) {
318
- return right.length;
319
- }
320
- if (right.length === 0) {
321
- return left.length;
300
+
301
+ function buildHelpSubcommands(params) {
302
+ const { entries, getDescription } = params;
303
+ return entries.map(entry => ({
304
+ name: entry.name,
305
+ aliases: entry.aliases,
306
+ desc: getDescription(entry.command),
307
+ }));
308
+ }
309
+ function buildCompletionMeta(params) {
310
+ const { name, desc, mergedOptions, arguments_, supportsBuiltinVersion, builtinHelpOption, builtinVersionOption, subcommands, resolveSubcommandMeta, } = params;
311
+ const optionMap = new Map();
312
+ for (const option of mergedOptions) {
313
+ optionMap.set(option.long, option);
314
+ }
315
+ optionMap.set('help', builtinHelpOption);
316
+ if (supportsBuiltinVersion) {
317
+ optionMap.set('version', builtinVersionOption);
318
+ }
319
+ const options = Array.from(optionMap.values()).map(option => ({
320
+ long: option.long,
321
+ short: option.short,
322
+ desc: option.desc,
323
+ type: option.type,
324
+ args: option.args,
325
+ choices: option.choices?.map(choice => String(choice)),
326
+ }));
327
+ const argumentsMeta = arguments_.map(argument => ({
328
+ name: argument.name,
329
+ kind: argument.kind,
330
+ type: argument.type,
331
+ choices: argument.type === 'choice' ? argument.choices?.map(choice => String(choice)) : undefined,
332
+ }));
333
+ return {
334
+ name,
335
+ desc,
336
+ aliases: [],
337
+ options,
338
+ arguments: argumentsMeta,
339
+ subcommands: subcommands.map(entry => {
340
+ const subMeta = resolveSubcommandMeta(entry.command);
341
+ return {
342
+ ...subMeta,
343
+ name: entry.name,
344
+ aliases: entry.aliases,
345
+ };
346
+ }),
347
+ };
348
+ }
349
+
350
+ function resolvePresetFileAbsolutePath(params) {
351
+ const { runtime, filepath, baseDirectory } = params;
352
+ if (runtime.isAbsolute(filepath)) {
353
+ return filepath;
322
354
  }
323
- let prev = Array.from({ length: right.length + 1 }, (_, i) => i);
324
- for (let i = 0; i < left.length; i += 1) {
325
- const current = [i + 1];
326
- for (let j = 0; j < right.length; j += 1) {
327
- const substitutionCost = left[i] === right[j] ? 0 : 1;
328
- current[j + 1] = Math.min(current[j] + 1, prev[j + 1] + 1, prev[j] + substitutionCost);
355
+ return runtime.resolve(baseDirectory ?? runtime.cwd(), filepath);
356
+ }
357
+ async function readPresetFile(params) {
358
+ const { runtime, file, commandPath } = params;
359
+ try {
360
+ const stats = await runtime.stat(file.absolutePath);
361
+ if (stats.isDirectory()) {
362
+ throw new Error('target is a directory');
363
+ }
364
+ return await runtime.readFile(file.absolutePath);
365
+ }
366
+ catch (error) {
367
+ const ioError = error;
368
+ if (!file.explicit && ioError.code === 'ENOENT') {
369
+ return undefined;
329
370
  }
330
- prev = current;
371
+ throw new CommanderError('ConfigurationError', `failed to read preset file "${file.displayPath}": ${error.message}`, commandPath);
331
372
  }
332
- return prev[right.length];
333
373
  }
334
- function tokenizeLongOption(arg, commandPath) {
335
- const eqIdx = arg.indexOf('=');
336
- const namePart = eqIdx !== -1 ? arg.slice(0, eqIdx) : arg;
337
- const valuePart = eqIdx !== -1 ? arg.slice(eqIdx) : '';
338
- if (namePart.includes('_')) {
339
- throw new CommanderError('InvalidOptionFormat', `invalid option "${arg}": use '-' instead of '_'`, commandPath);
374
+ function parsePresetEnvsContent(params) {
375
+ const { content, file, commandPath } = params;
376
+ try {
377
+ return env.parse(content);
340
378
  }
341
- const lowerName = namePart.toLowerCase();
342
- if (lowerName === '--no' || lowerName === '--no-') {
343
- throw new CommanderError('InvalidNegativeOption', `invalid negative option syntax "${arg}"`, commandPath);
379
+ catch (error) {
380
+ throw new CommanderError('ConfigurationError', `failed to parse preset env file "${file.displayPath}": ${error.message}`, commandPath);
344
381
  }
345
- if (lowerName.startsWith('--no-')) {
346
- if (valuePart !== '') {
347
- throw new CommanderError('NegativeOptionWithValue', `"${namePart}" does not accept a value`, commandPath);
348
- }
349
- if (!NEGATIVE_OPTION_REGEX.test(lowerName)) {
350
- throw new CommanderError('InvalidOptionFormat', `invalid option format "${arg}"`, commandPath);
382
+ }
383
+ async function buildPresetProfileInputs(params) {
384
+ const { runtime, commandPath, resolvedProfile, validatePresetOptionTokens } = params;
385
+ const presetArgv = [];
386
+ if (resolvedProfile !== undefined && resolvedProfile.optsArgv.length > 0) {
387
+ validatePresetOptionTokens(resolvedProfile.optsArgv, resolvedProfile.optsSourceLabel, commandPath);
388
+ presetArgv.push(...resolvedProfile.optsArgv);
389
+ }
390
+ const presetEnvs = {};
391
+ if (resolvedProfile !== undefined) {
392
+ if (resolvedProfile.profileEnvFileSource !== undefined) {
393
+ const content = await readPresetFile({
394
+ runtime,
395
+ file: resolvedProfile.profileEnvFileSource,
396
+ commandPath,
397
+ });
398
+ if (content !== undefined) {
399
+ Object.assign(presetEnvs, parsePresetEnvsContent({
400
+ content,
401
+ file: resolvedProfile.profileEnvFileSource,
402
+ commandPath,
403
+ }));
404
+ }
405
+ }
406
+ Object.assign(presetEnvs, resolvedProfile.profileInlineEnvs);
407
+ if (resolvedProfile.variantEnvFileSource !== undefined) {
408
+ const content = await readPresetFile({
409
+ runtime,
410
+ file: resolvedProfile.variantEnvFileSource,
411
+ commandPath,
412
+ });
413
+ if (content !== undefined) {
414
+ Object.assign(presetEnvs, parsePresetEnvsContent({
415
+ content,
416
+ file: resolvedProfile.variantEnvFileSource,
417
+ commandPath,
418
+ }));
419
+ }
351
420
  }
352
- const camelName = kebabToCamelCase(lowerName.slice(5));
353
- return {
354
- original: arg,
355
- resolved: `--${camelName}=false`,
356
- name: camelName,
357
- type: 'long',
358
- };
359
- }
360
- if (!LONG_OPTION_REGEX.test(lowerName)) {
361
- throw new CommanderError('InvalidOptionFormat', `invalid option format "${arg}"`, commandPath);
421
+ Object.assign(presetEnvs, resolvedProfile.variantInlineEnvs);
362
422
  }
363
- const camelName = kebabToCamelCase(lowerName.slice(2));
364
- return {
365
- original: arg,
366
- resolved: `--${camelName}${valuePart}`,
367
- name: camelName,
368
- type: 'long',
369
- };
423
+ return { presetArgv, presetEnvs };
370
424
  }
371
- function tokenizeShortOptions(arg, commandPath) {
372
- if (arg.includes('=')) {
373
- throw new CommanderError('UnsupportedShortSyntax', `"${arg}" is not supported. Use "-${arg[1]} ${arg.slice(3)}" instead`, commandPath);
374
- }
375
- const flags = arg.slice(1);
376
- return flags.split('').map(flag => ({
377
- original: `-${flag}`,
378
- resolved: `-${flag}`,
379
- name: flag,
380
- type: 'short',
381
- }));
425
+
426
+ function getExitCode(error) {
427
+ return error.kind === 'ActionFailed' ? 1 : 2;
382
428
  }
383
- function tokenize(argv, commandPath) {
384
- const optionTokens = [];
385
- const restArgs = [];
386
- let passThrough = false;
387
- for (const arg of argv) {
388
- if (arg === '--') {
389
- passThrough = true;
390
- continue;
391
- }
392
- if (passThrough) {
393
- restArgs.push(arg);
394
- continue;
395
- }
396
- if (arg.startsWith('--')) {
397
- optionTokens.push(tokenizeLongOption(arg, commandPath));
398
- continue;
429
+ function renderTermination(params) {
430
+ const { termination, argv, envs, route, controlScan, findCommandByPath, resolveHelpCommand, resolveHelpColor, formatHelpForDisplay, print, } = params;
431
+ if (termination.kind === 'version') {
432
+ print(termination.version);
433
+ return;
434
+ }
435
+ const routeResult = route(argv);
436
+ const leafCommand = routeResult.chain[routeResult.chain.length - 1];
437
+ const controlScanResult = controlScan(routeResult.remaining, leafCommand);
438
+ const helpCommand = findCommandByPath(termination.targetCommandPath) ??
439
+ resolveHelpCommand(leafCommand, controlScanResult.helpTarget);
440
+ const helpColor = resolveHelpColor(helpCommand, controlScanResult.remaining, envs);
441
+ print(formatHelpForDisplay(helpCommand, helpColor));
442
+ }
443
+ function handleRunOutcome(params) {
444
+ const { outcome, argv, envs, route, controlScan, findCommandByPath, resolveHelpCommand, resolveHelpColor, formatHelpForDisplay, print, printError, exit, normalizeControlRunError, } = params;
445
+ if (outcome.kind === 'parsed') {
446
+ return;
447
+ }
448
+ if (outcome.kind === 'terminated') {
449
+ try {
450
+ renderTermination({
451
+ termination: outcome.termination,
452
+ argv,
453
+ envs,
454
+ route,
455
+ controlScan,
456
+ findCommandByPath,
457
+ resolveHelpCommand,
458
+ resolveHelpColor,
459
+ formatHelpForDisplay,
460
+ print,
461
+ });
462
+ return;
399
463
  }
400
- if (arg.startsWith('-') && arg.length > 1) {
401
- optionTokens.push(...tokenizeShortOptions(arg, commandPath));
402
- continue;
464
+ catch (error) {
465
+ if (error instanceof CommanderError) {
466
+ const normalizedError = normalizeControlRunError(error);
467
+ printError(normalizedError.format());
468
+ exit(getExitCode(normalizedError));
469
+ return;
470
+ }
471
+ throw error;
403
472
  }
404
- optionTokens.push({
405
- original: arg,
406
- resolved: arg,
407
- name: '',
408
- type: 'none',
409
- });
410
473
  }
411
- return { optionTokens, restArgs };
412
- }
413
- const BUILTIN_HELP_OPTION = {
414
- long: 'help',
415
- type: 'boolean',
416
- args: 'none',
417
- desc: 'Show help information',
418
- };
419
- const BUILTIN_VERSION_OPTION = {
420
- long: 'version',
421
- type: 'boolean',
422
- args: 'none',
423
- desc: 'Show version number',
424
- };
425
- const BUILTIN_COLOR_OPTION = {
426
- long: 'color',
427
- type: 'boolean',
428
- args: 'none',
429
- desc: 'Enable colored help output',
430
- default: true,
431
- };
432
- function createBuiltinOptionState(enabled) {
433
- return {
434
- version: enabled,
435
- color: enabled,
436
- logLevel: enabled,
437
- silent: enabled,
438
- logDate: enabled,
439
- logColorful: enabled,
440
- };
474
+ printError(outcome.error.format());
475
+ exit(getExitCode(outcome.error));
441
476
  }
442
- function isNoColorEnabled(envs) {
443
- return envs['NO_COLOR'] !== undefined;
477
+ function unwrapParseOutcome(params) {
478
+ const { outcome, commandPath } = params;
479
+ if (outcome.kind === 'parsed') {
480
+ return outcome.parseResult;
481
+ }
482
+ if (outcome.kind === 'terminated') {
483
+ throw new CommanderError('ConfigurationError', 'internal invariant violation: parse mode must not produce termination', commandPath);
484
+ }
485
+ throw outcome.error;
444
486
  }
445
- function normalizeBuiltinConfig(builtin) {
446
- const resolved = {
447
- option: createBuiltinOptionState(true),
448
- };
449
- if (builtin === undefined) {
450
- return resolved;
487
+
488
+ function validateOptionConfig(params) {
489
+ const { opt, commandPath } = params;
490
+ if (opt.long === 'help' ||
491
+ opt.long === 'version' ||
492
+ opt.long === 'devmode' ||
493
+ opt.long === 'logLevel') {
494
+ throw new CommanderError('ConfigurationError', `option long name "${opt.long}" is reserved`, commandPath);
451
495
  }
452
- if (builtin === true) {
453
- return {
454
- option: createBuiltinOptionState(true),
455
- };
496
+ if (opt.type === 'boolean' && opt.args !== 'none') {
497
+ throw new CommanderError('ConfigurationError', `boolean option "--${opt.long}" must have args: 'none'`, commandPath);
456
498
  }
457
- if (builtin === false) {
458
- return {
459
- option: createBuiltinOptionState(false),
460
- };
499
+ if ((opt.type === 'string' || opt.type === 'number') && opt.args === 'none') {
500
+ throw new CommanderError('ConfigurationError', `${opt.type} option "--${opt.long}" must have args: 'required', 'optional', or 'variadic'`, commandPath);
461
501
  }
462
- if (builtin.option !== undefined) {
463
- if (builtin.option === false) {
464
- resolved.option = createBuiltinOptionState(false);
465
- }
466
- else if (builtin.option === true) {
467
- resolved.option = createBuiltinOptionState(true);
468
- }
469
- else {
470
- if (builtin.option.version !== undefined)
471
- resolved.option.version = builtin.option.version;
472
- if (builtin.option.color !== undefined)
473
- resolved.option.color = builtin.option.color;
474
- if (builtin.option.logLevel !== undefined) {
475
- resolved.option.logLevel = builtin.option.logLevel;
476
- }
477
- if (builtin.option.silent !== undefined)
478
- resolved.option.silent = builtin.option.silent;
479
- if (builtin.option.logDate !== undefined)
480
- resolved.option.logDate = builtin.option.logDate;
481
- if (builtin.option.logColorful !== undefined) {
482
- resolved.option.logColorful = builtin.option.logColorful;
483
- }
484
- }
502
+ if (opt.type === 'number' && opt.args === 'optional') {
503
+ throw new CommanderError('ConfigurationError', `number option "--${opt.long}" does not support args: 'optional'`, commandPath);
485
504
  }
486
- return resolved;
487
- }
488
- class Command {
489
- #name;
490
- #desc;
491
- #version;
492
- #builtinConfig;
493
- #builtin;
494
- #presetConfig;
495
- #reporter;
496
- #runtime;
497
- #parent;
498
- #options = [];
499
- #arguments = [];
500
- #examples = [];
501
- #subcommandsList = [];
502
- #subcommandsMap = new Map();
503
- #action = undefined;
504
- constructor(config) {
505
- this.#name = config.name ?? '';
506
- this.#desc = config.desc;
507
- this.#version = config.version;
508
- this.#builtinConfig = config.builtin;
509
- this.#builtin = normalizeBuiltinConfig(config.builtin);
510
- this.#presetConfig = config.preset;
511
- this.#reporter = config.reporter;
512
- this.#runtime = config.runtime ?? getDefaultCommandRuntime();
505
+ if (opt.long.startsWith('no')) {
506
+ throw new CommanderError('ConfigurationError', `option long name cannot start with "no": "${opt.long}"`, commandPath);
513
507
  }
514
- get name() {
515
- return this.#name || undefined;
508
+ if (!/^[a-z][a-zA-Z0-9]*$/.test(opt.long)) {
509
+ throw new CommanderError('ConfigurationError', `option long name must be camelCase: "${opt.long}"`, commandPath);
516
510
  }
517
- get description() {
518
- return this.#desc;
511
+ if (opt.short !== undefined && opt.short.length !== 1) {
512
+ throw new CommanderError('ConfigurationError', `option short name must be a single character: "${opt.short}"`, commandPath);
519
513
  }
520
- get version() {
521
- return this.#version;
514
+ if (opt.required && opt.default !== undefined) {
515
+ throw new CommanderError('ConfigurationError', `option "--${opt.long}" cannot be both required and have a default value`, commandPath);
522
516
  }
523
- get builtin() {
524
- return this.#builtinConfig;
517
+ if (opt.type === 'boolean' && opt.required) {
518
+ throw new CommanderError('ConfigurationError', `boolean option "--${opt.long}" cannot be required`, commandPath);
525
519
  }
526
- get preset() {
527
- return this.#presetConfig === undefined ? undefined : { ...this.#presetConfig };
520
+ if (opt.required && opt.args !== 'required') {
521
+ throw new CommanderError('ConfigurationError', `required option "--${opt.long}" must use args: 'required'`, commandPath);
528
522
  }
529
- get parent() {
530
- return this.#parent;
523
+ }
524
+ function checkOptionUniqueness(params) {
525
+ const { opt, options, commandPath } = params;
526
+ if (options.some(o => o.long === opt.long)) {
527
+ throw new CommanderError('OptionConflict', `option "--${opt.long}" is already defined`, commandPath);
531
528
  }
532
- get options() {
533
- return [...this.#options];
529
+ if (opt.short && options.some(o => o.short === opt.short)) {
530
+ throw new CommanderError('OptionConflict', `short option "-${opt.short}" is already defined`, commandPath);
534
531
  }
535
- get arguments() {
536
- return [...this.#arguments];
532
+ }
533
+ function validateArgumentConfig(params) {
534
+ const { arg, arguments_, commandPath } = params;
535
+ if (arg.kind !== 'required' &&
536
+ arg.kind !== 'optional' &&
537
+ arg.kind !== 'variadic' &&
538
+ arg.kind !== 'some') {
539
+ throw new CommanderError('ConfigurationError', `argument "${arg.name}" must specify a valid kind`, commandPath);
537
540
  }
538
- get examples() {
539
- return this.#examples.map(example => ({ ...example }));
541
+ if (arg.type !== 'string' && arg.type !== 'choice') {
542
+ throw new CommanderError('ConfigurationError', `argument "${arg.name}" must specify a valid type`, commandPath);
540
543
  }
541
- get subcommands() {
542
- return new Map(this.#subcommandsMap);
544
+ if (arg.default !== undefined && arg.kind !== 'optional') {
545
+ throw new CommanderError('ConfigurationError', `only optional argument "${arg.name}" can have a default value`, commandPath);
543
546
  }
544
- option(opt) {
545
- this.#validateOptionConfig(opt);
546
- this.#checkOptionUniqueness(opt);
547
- this.#options.push(opt);
548
- return this;
547
+ if (arg.type === 'string' && arg.choices !== undefined) {
548
+ throw new CommanderError('ConfigurationError', `argument "${arg.name}" of type "string" cannot declare choices`, commandPath);
549
549
  }
550
- argument(arg) {
551
- this.#validateArgumentConfig(arg);
552
- this.#arguments.push(arg);
553
- return this;
550
+ if (arg.type === 'choice') {
551
+ if (!Array.isArray(arg.choices) || arg.choices.length === 0) {
552
+ throw new CommanderError('ConfigurationError', `argument "${arg.name}" of type "choice" must declare a non-empty choices array`, commandPath);
553
+ }
554
+ if (arg.choices.some(choice => typeof choice !== 'string')) {
555
+ throw new CommanderError('ConfigurationError', `argument "${arg.name}" choices must be string[]`, commandPath);
556
+ }
554
557
  }
555
- action(fn) {
556
- this.#action = fn;
557
- return this;
558
+ if (arg.default !== undefined) {
559
+ validateArgumentDefaultValue({ arg, commandPath });
558
560
  }
559
- example(title, usage, desc) {
560
- this.#examples.push(this.#normalizeExample({ title, usage, desc }));
561
- return this;
561
+ if (arg.kind === 'variadic' || arg.kind === 'some') {
562
+ if (arguments_.some(a => a.kind === 'variadic' || a.kind === 'some')) {
563
+ throw new CommanderError('ConfigurationError', 'only one variadic/some argument is allowed', commandPath);
564
+ }
562
565
  }
563
- subcommand(name, cmd) {
564
- if (name === 'help') {
565
- throw new CommanderError('ConfigurationError', '"help" is a reserved subcommand name', this.#getCommandPath());
566
+ if (arguments_.length > 0) {
567
+ const last = arguments_[arguments_.length - 1];
568
+ if (last.kind === 'variadic' || last.kind === 'some') {
569
+ throw new CommanderError('ConfigurationError', 'variadic/some argument must be the last argument', commandPath);
566
570
  }
567
- if (cmd.#parent && cmd.#parent !== this) {
568
- throw new CommanderError('ConfigurationError', `command "${cmd.#name}" already has a parent`, this.#getCommandPath());
571
+ }
572
+ if (arg.kind === 'required') {
573
+ const hasOptional = arguments_.some(a => a.kind === 'optional' || a.kind === 'variadic' || a.kind === 'some');
574
+ if (hasOptional) {
575
+ throw new CommanderError('ConfigurationError', `required argument "${arg.name}" cannot come after optional/variadic/some arguments`, commandPath);
569
576
  }
570
- const occupied = this.#subcommandsMap.get(name);
571
- if (occupied && occupied !== cmd) {
572
- throw new CommanderError('ConfigurationError', `subcommand name/alias "${name}" conflicts with an existing command`, this.#getCommandPath());
577
+ }
578
+ }
579
+ function validateArgumentDefaultValue(params) {
580
+ const { arg, commandPath } = params;
581
+ if (typeof arg.default !== 'string') {
582
+ throw new CommanderError('ConfigurationError', `default value for argument "${arg.name}" must match type "${arg.type}"`, commandPath);
583
+ }
584
+ if (arg.type === 'choice') {
585
+ const choices = arg.choices ?? [];
586
+ if (!choices.includes(arg.default)) {
587
+ throw new CommanderError('ConfigurationError', `default value for argument "${arg.name}" must be one of declared choices`, commandPath);
573
588
  }
574
- const existing = this.#subcommandsList.find(e => e.command === cmd);
575
- if (existing) {
576
- if (existing.name === name || existing.aliases.includes(name)) {
577
- return this;
578
- }
579
- existing.aliases.push(name);
580
- this.#subcommandsMap.set(name, cmd);
581
- }
582
- else {
583
- cmd.#name = name;
584
- cmd.#parent = this;
585
- this.#subcommandsList.push({ name, aliases: [], command: cmd });
586
- this.#subcommandsMap.set(name, cmd);
587
- }
588
- return this;
589
589
  }
590
- async run(params) {
590
+ }
591
+ function normalizeExample(params) {
592
+ const { example, commandPath } = params;
593
+ const title = example.title.trim();
594
+ const usage = example.usage.trim();
595
+ const desc = example.desc.trim();
596
+ if (!title) {
597
+ throw new CommanderError('ConfigurationError', 'example title cannot be empty', commandPath);
598
+ }
599
+ if (!usage) {
600
+ throw new CommanderError('ConfigurationError', 'example usage cannot be empty', commandPath);
601
+ }
602
+ if (!desc) {
603
+ throw new CommanderError('ConfigurationError', 'example description cannot be empty', commandPath);
604
+ }
605
+ return { title, usage, desc };
606
+ }
607
+
608
+ class CommandKernel {
609
+ #port;
610
+ #diagnostics;
611
+ #contextAdapter;
612
+ constructor(params) {
613
+ this.#port = params.port;
614
+ this.#diagnostics = params.diagnostics;
615
+ this.#contextAdapter = params.contextAdapter;
616
+ }
617
+ async execute(params, mode) {
591
618
  const { argv, envs, reporter } = params;
592
619
  try {
593
- const routeResult = this.#route(argv);
620
+ const routeResult = this.#port.route(argv);
594
621
  const { chain } = routeResult;
595
622
  const leafCommand = chain[chain.length - 1];
596
- const ctx = this.#createContext({
623
+ let ctx = this.#port.createContext({
597
624
  chain,
598
625
  cmds: routeResult.cmds,
599
626
  envs,
600
627
  reporter,
601
628
  });
602
- const controlScanResult = this.#controlScan(routeResult.remaining, leafCommand);
603
- ctx.controls = controlScanResult.controls;
604
- ctx.sources.user.argv = [...controlScanResult.remaining];
605
- if (ctx.controls.help) {
606
- const helpCommand = this.#resolveHelpCommand(leafCommand, controlScanResult.helpTarget);
607
- const helpColor = helpCommand.#resolveHelpColorFromTailArgv(controlScanResult.remaining, ctx.envs);
608
- console.log(helpCommand.#formatHelpForDisplay({ color: helpColor }));
609
- return;
629
+ const controlScanResult = this.#port.controlScan(routeResult.remaining, leafCommand);
630
+ ctx = this.#contextAdapter.applyControlScan(ctx, controlScanResult);
631
+ if (mode === 'run') {
632
+ const termination = this.#port.controlRun(leafCommand, controlScanResult);
633
+ if (termination !== undefined) {
634
+ ctx.sources.preset.state = 'skipped';
635
+ return {
636
+ kind: 'terminated',
637
+ termination,
638
+ };
639
+ }
610
640
  }
611
- if (ctx.controls.version) {
612
- console.log(leafCommand.#version);
613
- return;
641
+ let presetResult;
642
+ try {
643
+ presetResult = await this.#port.preset(controlScanResult.remaining, ctx);
644
+ }
645
+ catch (err) {
646
+ if (err instanceof CommanderError) {
647
+ throw this.#diagnostics.withErrorIssue(err, {
648
+ stage: 'preset',
649
+ scope: this.#port.issueScopeFromErrorKind(err.kind),
650
+ });
651
+ }
652
+ throw err;
614
653
  }
615
- const optionPolicyMap = this.#buildOptionPolicyMap(chain);
616
- const presetResult = await this.#preset(controlScanResult.remaining, ctx, optionPolicyMap);
617
- ctx.sources = presetResult.sources;
618
- ctx.envs = presetResult.envs;
619
- const tokenizeResult = tokenize(presetResult.tailArgv, leafCommand.#getCommandPath());
620
- const { optionTokens, restArgs } = tokenizeResult;
621
- const resolveResult = this.#resolve(chain, optionTokens, optionPolicyMap);
622
- const parseResult = this.#parse(chain, resolveResult, optionPolicyMap, ctx, restArgs);
623
- const actionParams = {
624
- ctx: parseResult.ctx,
625
- opts: parseResult.opts,
626
- args: parseResult.args,
627
- rawArgs: parseResult.rawArgs,
628
- };
629
- if (leafCommand.#action) {
630
- await leafCommand.#runAction(actionParams);
654
+ ctx = this.#contextAdapter.applyPresetResult(ctx, presetResult);
655
+ const sourceSegments = presetResult.segments;
656
+ let optionTokens;
657
+ let restArgs;
658
+ try {
659
+ const tokenizeResult = this.#port.tokenize(sourceSegments, this.#port.getCommandPath(leafCommand));
660
+ optionTokens = tokenizeResult.optionTokens;
661
+ restArgs = tokenizeResult.restArgs;
662
+ }
663
+ catch (err) {
664
+ if (err instanceof CommanderError) {
665
+ const enriched = this.#diagnostics.withErrorIssue(err, {
666
+ stage: 'tokenize',
667
+ scope: this.#port.issueScopeFromErrorKind(err.kind),
668
+ });
669
+ throw this.#diagnostics.withPresetInjectedHint(enriched, sourceSegments);
670
+ }
671
+ throw err;
631
672
  }
632
- else if (leafCommand.#subcommandsList.length > 0) {
633
- const helpColor = leafCommand.#resolveHelpColorFromTailArgv(presetResult.tailArgv, ctx.envs);
634
- console.log(leafCommand.#formatHelpForDisplay({ color: helpColor }));
673
+ let optionPolicyMap;
674
+ try {
675
+ optionPolicyMap = this.#port.buildOptionPolicyMap(chain);
676
+ }
677
+ catch (err) {
678
+ if (err instanceof CommanderError) {
679
+ const enriched = this.#diagnostics.withErrorIssue(err, {
680
+ stage: 'builtin-resolve',
681
+ scope: this.#port.issueScopeFromErrorKind(err.kind),
682
+ });
683
+ throw this.#diagnostics.withPresetInjectedHint(enriched, sourceSegments);
684
+ }
685
+ throw err;
635
686
  }
636
- else {
637
- throw new CommanderError('ConfigurationError', `no action defined for command "${leafCommand.#getCommandPath()}"`, leafCommand.#getCommandPath());
687
+ let resolveResult;
688
+ try {
689
+ resolveResult = this.#port.resolve(chain, optionTokens, optionPolicyMap);
690
+ }
691
+ catch (err) {
692
+ if (err instanceof CommanderError) {
693
+ const enriched = this.#diagnostics.withErrorIssue(err, {
694
+ stage: 'resolve',
695
+ scope: this.#port.issueScopeFromErrorKind(err.kind),
696
+ });
697
+ throw this.#diagnostics.withPresetInjectedHint(enriched, sourceSegments);
698
+ }
699
+ throw err;
700
+ }
701
+ let parseResult;
702
+ try {
703
+ parseResult = this.#port.parse(chain, resolveResult, optionPolicyMap, ctx, restArgs);
704
+ }
705
+ catch (err) {
706
+ if (err instanceof CommanderError) {
707
+ const optionConflictSource = this.#diagnostics.resolveOptionConflictSourceAttribution(err, sourceSegments);
708
+ const optionConflictPreset = this.#diagnostics.resolveOptionConflictPresetAttribution(err, sourceSegments, optionConflictSource);
709
+ const enriched = this.#diagnostics.withErrorIssue(err, {
710
+ stage: 'parse',
711
+ scope: this.#port.issueScopeFromErrorKind(err.kind),
712
+ source: optionConflictSource,
713
+ preset: optionConflictPreset,
714
+ });
715
+ throw this.#diagnostics.withPresetInjectedHint(enriched, sourceSegments);
716
+ }
717
+ throw err;
718
+ }
719
+ if (mode === 'run') {
720
+ try {
721
+ await this.#port.run({
722
+ leafCommand,
723
+ parseResult,
724
+ presetResult,
725
+ ctx,
726
+ });
727
+ }
728
+ catch (err) {
729
+ if (err instanceof CommanderError) {
730
+ throw this.#diagnostics.withErrorIssue(err, {
731
+ stage: 'run',
732
+ scope: this.#port.issueScopeFromErrorKind(err.kind),
733
+ });
734
+ }
735
+ throw err;
736
+ }
638
737
  }
738
+ return {
739
+ kind: 'parsed',
740
+ parseResult,
741
+ };
639
742
  }
640
743
  catch (err) {
641
744
  if (err instanceof CommanderError) {
642
- console.error(err.format());
643
- process.exit(2);
644
- return;
745
+ return {
746
+ kind: 'failed',
747
+ error: this.#diagnostics.normalizeCommanderError(err, {
748
+ fallbackStage: mode === 'run' ? 'run' : 'parse',
749
+ fallbackScope: this.#port.issueScopeFromErrorKind(err.kind),
750
+ }),
751
+ };
645
752
  }
646
753
  throw err;
647
754
  }
648
755
  }
649
- async parse(params) {
650
- const { argv, envs, reporter } = params;
651
- const routeResult = this.#route(argv);
652
- const { chain } = routeResult;
653
- const leafCommand = chain[chain.length - 1];
654
- const ctx = this.#createContext({
655
- chain,
656
- cmds: routeResult.cmds,
657
- envs,
658
- reporter,
756
+ }
757
+
758
+ class CommandContextAdapter {
759
+ applyControlScan(ctx, controlScanResult) {
760
+ return {
761
+ ...ctx,
762
+ controls: controlScanResult.controls,
763
+ sources: {
764
+ ...ctx.sources,
765
+ user: {
766
+ ...ctx.sources.user,
767
+ argv: [...controlScanResult.remaining],
768
+ },
769
+ },
770
+ };
771
+ }
772
+ applyPresetResult(ctx, presetResult) {
773
+ return {
774
+ ...ctx,
775
+ sources: presetResult.sources,
776
+ envs: presetResult.envs,
777
+ };
778
+ }
779
+ toActionParams(parseResult) {
780
+ return {
781
+ ctx: parseResult.ctx,
782
+ builtin: parseResult.builtin,
783
+ opts: parseResult.opts,
784
+ args: parseResult.args,
785
+ rawArgs: parseResult.rawArgs,
786
+ };
787
+ }
788
+ }
789
+
790
+ class CommandHintAttributor {
791
+ withPresetInjectedHint(error, sourceSegments) {
792
+ const presetSegments = sourceSegments.filter(segment => segment.source === 'preset');
793
+ if (presetSegments.length === 0) {
794
+ return error;
795
+ }
796
+ if (error.kind === 'ConfigurationError') {
797
+ return error;
798
+ }
799
+ let nextError = error;
800
+ const primaryIssue = nextError.meta?.issues.find(issue => issue.kind === 'error');
801
+ const conflictSources = primaryIssue?.reason.code === 'option_conflict'
802
+ ? this.#inferOptionConflictSources(primaryIssue.reason.message, sourceSegments)
803
+ : undefined;
804
+ const hasMixedConflictAttribution = primaryIssue?.source?.related?.includes('user') === true &&
805
+ primaryIssue.source.related.includes('preset');
806
+ const isMixedConflict = hasMixedConflictAttribution ||
807
+ (conflictSources?.has('user') === true && conflictSources.has('preset'));
808
+ if (isMixedConflict &&
809
+ primaryIssue?.reason.code === 'option_conflict' &&
810
+ !nextError.meta?.issues.some(issue => issue.kind === 'hint' && issue.reason.code === 'mixed_source_conflict')) {
811
+ const mixedHint = {
812
+ kind: 'hint',
813
+ stage: primaryIssue.stage,
814
+ originStage: primaryIssue.originStage,
815
+ scope: 'option',
816
+ source: {
817
+ related: ['user', 'preset'],
818
+ },
819
+ reason: {
820
+ code: 'mixed_source_conflict',
821
+ message: 'option conflict involves both user input and preset-injected tokens',
822
+ },
823
+ preset: this.#resolveOptionConflictPresetByMessage(primaryIssue.reason.message, sourceSegments, { related: ['user', 'preset'] }),
824
+ };
825
+ nextError = nextError.withIssue(mixedHint);
826
+ }
827
+ const shouldAttachPresetTokenHint = primaryIssue?.source?.primary === 'preset' || isMixedConflict;
828
+ if (!shouldAttachPresetTokenHint) {
829
+ return nextError;
830
+ }
831
+ if (nextError.meta?.issues.some(issue => issue.kind === 'hint' && issue.reason.code === 'preset_token_injected')) {
832
+ return nextError;
833
+ }
834
+ const firstSegment = presetSegments[0];
835
+ const moreCount = presetSegments.length - 1;
836
+ const moreText = moreCount > 0 ? ` (+${moreCount} more)` : '';
837
+ const currentPrimaryIssue = nextError.meta?.issues.find(issue => issue.kind === 'error');
838
+ const hint = {
839
+ kind: 'hint',
840
+ stage: currentPrimaryIssue?.stage ?? 'parse',
841
+ originStage: 'preset',
842
+ scope: 'preset',
843
+ source: { primary: 'preset' },
844
+ reason: {
845
+ code: 'preset_token_injected',
846
+ message: `token ${JSON.stringify(firstSegment.value)} was injected from preset profile opts${moreText}`,
847
+ },
848
+ preset: firstSegment.preset,
849
+ };
850
+ return nextError.withIssue(hint);
851
+ }
852
+ resolveOptionConflictSourceAttribution(error, sourceSegments) {
853
+ if (error.kind !== 'OptionConflict') {
854
+ return undefined;
855
+ }
856
+ const sources = this.#inferOptionConflictSources(error.message, sourceSegments);
857
+ if (sources.has('user') && sources.has('preset')) {
858
+ return {
859
+ related: ['user', 'preset'],
860
+ };
861
+ }
862
+ if (sources.has('preset')) {
863
+ return { primary: 'preset' };
864
+ }
865
+ if (sources.has('user')) {
866
+ return { primary: 'user' };
867
+ }
868
+ return undefined;
869
+ }
870
+ resolveOptionConflictPresetAttribution(error, sourceSegments, source) {
871
+ if (error.kind !== 'OptionConflict') {
872
+ return undefined;
873
+ }
874
+ return this.#resolveOptionConflictPresetByMessage(error.message, sourceSegments, source);
875
+ }
876
+ #resolveOptionConflictPresetByMessage(message, sourceSegments, source) {
877
+ const relevantSegments = this.#collectOptionConflictSegments(message, sourceSegments);
878
+ const relevantPresetSegment = relevantSegments.find(segment => segment.source === 'preset' && segment.preset !== undefined);
879
+ if (relevantPresetSegment?.preset !== undefined) {
880
+ return { ...relevantPresetSegment.preset };
881
+ }
882
+ const hasPresetSource = source?.primary === 'preset' || source?.related?.includes('preset') === true;
883
+ if (!hasPresetSource) {
884
+ return undefined;
885
+ }
886
+ const fallbackPresetSegment = sourceSegments.find(segment => segment.source === 'preset' && segment.preset !== undefined);
887
+ return fallbackPresetSegment?.preset === undefined
888
+ ? undefined
889
+ : { ...fallbackPresetSegment.preset };
890
+ }
891
+ #inferOptionConflictSources(message, sourceSegments) {
892
+ const relevantSegments = this.#collectOptionConflictSegments(message, sourceSegments);
893
+ const sources = new Set();
894
+ for (const segment of relevantSegments) {
895
+ sources.add(segment.source);
896
+ }
897
+ return sources;
898
+ }
899
+ #collectOptionConflictSegments(message, sourceSegments) {
900
+ const matchedLongs = Array.from(message.matchAll(/"(--[a-z][a-z0-9]*(?:-[a-z0-9]+)*)"/g), match => match[1]);
901
+ const matchedShorts = Array.from(message.matchAll(/"(-[A-Za-z0-9])"/g), match => match[1]);
902
+ const optionLiterals = new Set([...matchedLongs, ...matchedShorts]);
903
+ const optionSegments = sourceSegments.filter(segment => segment.value.startsWith('-'));
904
+ const relevantSegments = optionLiterals.size === 0
905
+ ? optionSegments
906
+ : optionSegments.filter(segment => {
907
+ for (const literal of optionLiterals) {
908
+ if (segment.value === literal || segment.value.startsWith(`${literal}=`)) {
909
+ return true;
910
+ }
911
+ }
912
+ return false;
913
+ });
914
+ return relevantSegments;
915
+ }
916
+ }
917
+
918
+ const COMMAND_ERROR_ISSUE_CODES = [
919
+ 'invalid_option_format',
920
+ 'invalid_negative_option',
921
+ 'negative_option_with_value',
922
+ 'negative_option_type',
923
+ 'unknown_option',
924
+ 'unknown_subcommand',
925
+ 'unexpected_argument',
926
+ 'missing_value',
927
+ 'invalid_type',
928
+ 'unsupported_short_syntax',
929
+ 'option_conflict',
930
+ 'missing_required',
931
+ 'invalid_choice',
932
+ 'invalid_boolean_value',
933
+ 'missing_required_argument',
934
+ 'too_many_arguments',
935
+ 'configuration_error',
936
+ 'action_failed',
937
+ ];
938
+ const COMMAND_HINT_ISSUE_CODES = [
939
+ 'preset_token_injected',
940
+ 'mixed_source_conflict',
941
+ 'did_you_mean_subcommand',
942
+ 'command_does_not_accept_positional_arguments',
943
+ ];
944
+ const ERROR_ISSUE_CODE_SET = new Set(COMMAND_ERROR_ISSUE_CODES);
945
+ const HINT_ISSUE_CODE_SET = new Set(COMMAND_HINT_ISSUE_CODES);
946
+ function isErrorIssueCode(code) {
947
+ return ERROR_ISSUE_CODE_SET.has(code);
948
+ }
949
+ function isHintIssueCode(code) {
950
+ return HINT_ISSUE_CODE_SET.has(code);
951
+ }
952
+
953
+ function errorKindToIssueCode(kind) {
954
+ switch (kind) {
955
+ case 'InvalidOptionFormat':
956
+ return 'invalid_option_format';
957
+ case 'InvalidNegativeOption':
958
+ return 'invalid_negative_option';
959
+ case 'NegativeOptionWithValue':
960
+ return 'negative_option_with_value';
961
+ case 'NegativeOptionType':
962
+ return 'negative_option_type';
963
+ case 'UnknownOption':
964
+ return 'unknown_option';
965
+ case 'UnknownSubcommand':
966
+ return 'unknown_subcommand';
967
+ case 'UnexpectedArgument':
968
+ return 'unexpected_argument';
969
+ case 'MissingValue':
970
+ return 'missing_value';
971
+ case 'InvalidType':
972
+ return 'invalid_type';
973
+ case 'UnsupportedShortSyntax':
974
+ return 'unsupported_short_syntax';
975
+ case 'OptionConflict':
976
+ return 'option_conflict';
977
+ case 'MissingRequired':
978
+ return 'missing_required';
979
+ case 'InvalidChoice':
980
+ return 'invalid_choice';
981
+ case 'InvalidBooleanValue':
982
+ return 'invalid_boolean_value';
983
+ case 'MissingRequiredArgument':
984
+ return 'missing_required_argument';
985
+ case 'TooManyArguments':
986
+ return 'too_many_arguments';
987
+ case 'ActionFailed':
988
+ return 'action_failed';
989
+ case 'ConfigurationError':
990
+ return 'configuration_error';
991
+ default:
992
+ return 'configuration_error';
993
+ }
994
+ }
995
+ class CommandIssueNormalizer {
996
+ withErrorIssue(error, params) {
997
+ if (error.meta?.issues.some(existing => existing.kind === 'error')) {
998
+ return error;
999
+ }
1000
+ return error.withIssue(this.#buildErrorIssue(error, params));
1001
+ }
1002
+ normalizeCommanderError(error, options) {
1003
+ const issues = error.meta?.issues ?? [];
1004
+ const normalizedIssues = this.#normalizeIssues(issues, {
1005
+ error,
1006
+ fallbackStage: options.fallbackStage,
1007
+ fallbackScope: options.fallbackScope,
659
1008
  });
660
- const controlScanResult = this.#controlScan(routeResult.remaining, leafCommand);
661
- ctx.controls = controlScanResult.controls;
662
- ctx.sources.user.argv = [...controlScanResult.remaining];
663
- const optionPolicyMap = this.#buildOptionPolicyMap(chain);
664
- const presetResult = await this.#preset(controlScanResult.remaining, ctx, optionPolicyMap);
665
- ctx.sources = presetResult.sources;
666
- ctx.envs = presetResult.envs;
667
- const tokenizeResult = tokenize(presetResult.tailArgv, leafCommand.#getCommandPath());
668
- const { optionTokens, restArgs } = tokenizeResult;
669
- const resolveResult = this.#resolve(chain, optionTokens, optionPolicyMap);
670
- return this.#parse(chain, resolveResult, optionPolicyMap, ctx, restArgs);
1009
+ const nextMeta = {
1010
+ commandPath: error.meta?.commandPath ?? error.commandPath,
1011
+ token: error.meta?.token,
1012
+ option: error.meta?.option,
1013
+ argument: error.meta?.argument,
1014
+ issues: normalizedIssues,
1015
+ };
1016
+ return new CommanderError(error.kind, error.message, error.commandPath, nextMeta);
1017
+ }
1018
+ #buildErrorIssue(error, params) {
1019
+ const { stage, scope, token, source, preset, originStage, details } = params;
1020
+ const tokenSource = token === undefined
1021
+ ? undefined
1022
+ : {
1023
+ primary: token.source,
1024
+ };
1025
+ const defaultSource = error.kind === 'MissingRequiredArgument' || error.kind === 'UnknownSubcommand'
1026
+ ? { primary: 'user' }
1027
+ : undefined;
1028
+ const issueSource = source ?? tokenSource ?? defaultSource;
1029
+ const issuePreset = preset ?? token?.preset;
1030
+ const presetSource = issueSource?.primary === 'preset' || issueSource?.related?.includes('preset');
1031
+ const resolvedOriginStage = originStage ?? (presetSource && stage !== 'preset' ? 'preset' : undefined);
1032
+ return {
1033
+ kind: 'error',
1034
+ stage,
1035
+ originStage: resolvedOriginStage,
1036
+ source: issueSource,
1037
+ scope,
1038
+ reason: {
1039
+ code: errorKindToIssueCode(error.kind),
1040
+ message: error.message,
1041
+ details,
1042
+ },
1043
+ preset: issuePreset,
1044
+ };
671
1045
  }
672
- formatHelp() {
673
- return this.#renderHelpPlain(this.#buildHelpData());
1046
+ #normalizeIssues(issues, options) {
1047
+ const normalized = issues
1048
+ .map(issue => this.#normalizeIssue(issue))
1049
+ .filter((issue) => issue !== undefined);
1050
+ const primaryError = normalized.find(issue => issue.kind === 'error');
1051
+ const hints = normalized.filter(issue => issue.kind === 'hint');
1052
+ if (primaryError === undefined) {
1053
+ const fallbackError = this.#buildErrorIssue(options.error, {
1054
+ stage: options.fallbackStage,
1055
+ scope: options.fallbackScope,
1056
+ });
1057
+ return [fallbackError, ...hints];
1058
+ }
1059
+ return [primaryError, ...hints];
1060
+ }
1061
+ #normalizeIssue(issue) {
1062
+ let source = this.#normalizeIssueSource(issue.source);
1063
+ let preset = this.#normalizePresetIssueMeta(issue.preset);
1064
+ const reasonCode = issue.reason.code;
1065
+ if (!this.#hasPresetSource(source)) {
1066
+ preset = undefined;
1067
+ }
1068
+ if (source?.primary === 'preset' && !this.#hasPresetLocator(preset)) {
1069
+ source = this.#dropPresetPrimarySource(source);
1070
+ if (!this.#hasPresetSource(source)) {
1071
+ preset = undefined;
1072
+ }
1073
+ }
1074
+ if (issue.kind === 'error') {
1075
+ const normalizedCode = isErrorIssueCode(reasonCode)
1076
+ ? reasonCode
1077
+ : 'configuration_error';
1078
+ const normalizedReason = normalizedCode === reasonCode
1079
+ ? issue.reason
1080
+ : {
1081
+ code: normalizedCode,
1082
+ message: `invalid error issue code "${reasonCode}"`,
1083
+ details: {
1084
+ ...(issue.reason.details ?? {}),
1085
+ invalidIssueCode: reasonCode,
1086
+ },
1087
+ };
1088
+ return {
1089
+ ...issue,
1090
+ source,
1091
+ preset,
1092
+ reason: normalizedReason,
1093
+ };
1094
+ }
1095
+ if (!isHintIssueCode(reasonCode)) {
1096
+ return undefined;
1097
+ }
1098
+ return {
1099
+ ...issue,
1100
+ source,
1101
+ preset,
1102
+ };
674
1103
  }
675
- #formatHelpForDisplay(params = {}) {
676
- const { color = true } = params;
677
- const helpData = this.#buildHelpData();
678
- if (!this.#shouldRenderStyledHelp(color)) {
679
- return this.#renderHelpPlain(helpData);
1104
+ #normalizeIssueSource(source) {
1105
+ if (source === undefined) {
1106
+ return undefined;
680
1107
  }
681
- return this.#renderHelpTerminal(helpData);
1108
+ const related = source.related === undefined ? undefined : Array.from(new Set(source.related));
1109
+ const primary = source.primary;
1110
+ if (primary !== undefined && related !== undefined && !related.includes(primary)) {
1111
+ related.push(primary);
1112
+ }
1113
+ if (primary === undefined && (related === undefined || related.length === 0)) {
1114
+ return undefined;
1115
+ }
1116
+ return {
1117
+ primary,
1118
+ related,
1119
+ };
682
1120
  }
683
- #shouldRenderStyledHelp(color) {
684
- return color && process.stdout.isTTY === true;
1121
+ #dropPresetPrimarySource(source) {
1122
+ const related = source.related?.filter(item => item !== 'preset');
1123
+ if (related === undefined || related.length === 0) {
1124
+ return undefined;
1125
+ }
1126
+ return {
1127
+ related,
1128
+ };
685
1129
  }
686
- #buildHelpData() {
687
- const parseOptions = this.#resolveOptionPolicy().mergedOptions;
688
- const allOptions = [...parseOptions, BUILTIN_HELP_OPTION];
689
- if (this.#supportsBuiltinVersion()) {
690
- allOptions.push(BUILTIN_VERSION_OPTION);
1130
+ #normalizePresetIssueMeta(preset) {
1131
+ if (preset === undefined) {
1132
+ return undefined;
691
1133
  }
692
- const commandPath = this.#getCommandPath();
693
- let usage = `Usage: ${commandPath}`;
1134
+ const nextPreset = {
1135
+ file: preset.file,
1136
+ profile: preset.profile,
1137
+ variant: preset.variant,
1138
+ optionKey: preset.optionKey,
1139
+ };
1140
+ const hasAnyValue = nextPreset.file !== undefined ||
1141
+ nextPreset.profile !== undefined ||
1142
+ nextPreset.variant !== undefined ||
1143
+ nextPreset.optionKey !== undefined;
1144
+ return hasAnyValue ? nextPreset : undefined;
1145
+ }
1146
+ #hasPresetLocator(preset) {
1147
+ return (preset?.file !== undefined || preset?.profile !== undefined || preset?.variant !== undefined);
1148
+ }
1149
+ #hasPresetSource(source) {
1150
+ return source?.primary === 'preset' || source?.related?.includes('preset') === true;
1151
+ }
1152
+ }
1153
+
1154
+ class CommandDiagnosticsEngine {
1155
+ #issueNormalizer = new CommandIssueNormalizer();
1156
+ #hintAttributor = new CommandHintAttributor();
1157
+ withErrorIssue(error, params) {
1158
+ return this.#issueNormalizer.withErrorIssue(error, params);
1159
+ }
1160
+ withPresetInjectedHint(error, sourceSegments) {
1161
+ return this.#hintAttributor.withPresetInjectedHint(error, sourceSegments);
1162
+ }
1163
+ normalizeCommanderError(error, options) {
1164
+ return this.#issueNormalizer.normalizeCommanderError(error, options);
1165
+ }
1166
+ resolveOptionConflictSourceAttribution(error, sourceSegments) {
1167
+ return this.#hintAttributor.resolveOptionConflictSourceAttribution(error, sourceSegments);
1168
+ }
1169
+ resolveOptionConflictPresetAttribution(error, sourceSegments, source) {
1170
+ return this.#hintAttributor.resolveOptionConflictPresetAttribution(error, sourceSegments, source);
1171
+ }
1172
+ }
1173
+
1174
+ const TERMINAL_STYLE = {
1175
+ bold: '\x1b[1m',
1176
+ italic: '\x1b[3m',
1177
+ underline: '\x1b[4m',
1178
+ cyan: '\x1b[36m',
1179
+ dim: '\x1b[2m',
1180
+ reset: '\x1b[0m',
1181
+ };
1182
+ function styleText(text, ...styles) {
1183
+ return `${styles.join('')}${text}${TERMINAL_STYLE.reset}`;
1184
+ }
1185
+
1186
+ const ANSI_ESCAPE_REGEX = new RegExp(String.raw `\x1B\[[0-?]*[ -/]*[@-~]`, 'g');
1187
+ function camelToKebabCase$4(str) {
1188
+ return str.replace(/[A-Z]/g, m => '-' + m.toLowerCase());
1189
+ }
1190
+ function isNoColorEnabled$1(envs) {
1191
+ return envs['NO_COLOR'] !== undefined;
1192
+ }
1193
+ function stripAnsi(value) {
1194
+ return value.replace(ANSI_ESCAPE_REGEX, '');
1195
+ }
1196
+ function isCombiningMark(codePoint) {
1197
+ return ((codePoint >= 0x0300 && codePoint <= 0x036f) ||
1198
+ (codePoint >= 0x1ab0 && codePoint <= 0x1aff) ||
1199
+ (codePoint >= 0x1dc0 && codePoint <= 0x1dff) ||
1200
+ (codePoint >= 0x20d0 && codePoint <= 0x20ff) ||
1201
+ (codePoint >= 0xfe20 && codePoint <= 0xfe2f));
1202
+ }
1203
+ function isWideCodePoint(codePoint) {
1204
+ if (codePoint < 0x1100) {
1205
+ return false;
1206
+ }
1207
+ return (codePoint <= 0x115f ||
1208
+ codePoint === 0x2329 ||
1209
+ codePoint === 0x232a ||
1210
+ (codePoint >= 0x2e80 && codePoint <= 0x3247 && codePoint !== 0x303f) ||
1211
+ (codePoint >= 0x3250 && codePoint <= 0x4dbf) ||
1212
+ (codePoint >= 0x4e00 && codePoint <= 0xa4c6) ||
1213
+ (codePoint >= 0xa960 && codePoint <= 0xa97c) ||
1214
+ (codePoint >= 0xac00 && codePoint <= 0xd7a3) ||
1215
+ (codePoint >= 0xf900 && codePoint <= 0xfaff) ||
1216
+ (codePoint >= 0xfe10 && codePoint <= 0xfe19) ||
1217
+ (codePoint >= 0xfe30 && codePoint <= 0xfe6b) ||
1218
+ (codePoint >= 0xff01 && codePoint <= 0xff60) ||
1219
+ (codePoint >= 0xffe0 && codePoint <= 0xffe6) ||
1220
+ (codePoint >= 0x1b000 && codePoint <= 0x1b001) ||
1221
+ (codePoint >= 0x1f200 && codePoint <= 0x1f251) ||
1222
+ (codePoint >= 0x20000 && codePoint <= 0x3fffd));
1223
+ }
1224
+ function getDisplayWidth(value) {
1225
+ const normalized = stripAnsi(value).normalize('NFC');
1226
+ let width = 0;
1227
+ for (const char of normalized) {
1228
+ const codePoint = char.codePointAt(0);
1229
+ if (codePoint === undefined || isCombiningMark(codePoint)) {
1230
+ continue;
1231
+ }
1232
+ width += isWideCodePoint(codePoint) ? 2 : 1;
1233
+ }
1234
+ return width;
1235
+ }
1236
+ function padDisplayEnd(value, targetWidth) {
1237
+ const width = getDisplayWidth(value);
1238
+ if (width >= targetWidth) {
1239
+ return value;
1240
+ }
1241
+ return value + ' '.repeat(targetWidth - width);
1242
+ }
1243
+ class CommandHelpRenderer {
1244
+ buildHelpData(params) {
1245
+ const allOptions = [...params.options, params.builtinHelpOption];
1246
+ if (params.supportsBuiltinVersion) {
1247
+ allOptions.push(params.builtinVersionOption);
1248
+ }
1249
+ let usage = `Usage: ${params.commandPath}`;
694
1250
  if (allOptions.length > 0)
695
1251
  usage += ' [options]';
696
- if (this.#subcommandsList.length > 0)
1252
+ if (params.subcommands.length > 0)
697
1253
  usage += ' [command]';
698
- for (const arg of this.#arguments) {
1254
+ for (const arg of params.arguments) {
699
1255
  if (arg.kind === 'required') {
700
1256
  usage += ` <${arg.name}>`;
701
1257
  }
@@ -710,7 +1266,7 @@ class Command {
710
1266
  }
711
1267
  }
712
1268
  const argumentsLines = [];
713
- for (const arg of this.#arguments) {
1269
+ for (const arg of params.arguments) {
714
1270
  const sig = arg.kind === 'required'
715
1271
  ? `<${arg.name}>`
716
1272
  : arg.kind === 'optional'
@@ -746,11 +1302,11 @@ class Command {
746
1302
  if (rankA !== rankB) {
747
1303
  return rankA - rankB;
748
1304
  }
749
- return camelToKebabCase$1(a.long).localeCompare(camelToKebabCase$1(b.long));
1305
+ return camelToKebabCase$4(a.long).localeCompare(camelToKebabCase$4(b.long));
750
1306
  });
751
1307
  const options = [];
752
1308
  for (const opt of sortedOptions) {
753
- const kebabLong = camelToKebabCase$1(opt.long);
1309
+ const kebabLong = camelToKebabCase$4(opt.long);
754
1310
  let sig = opt.short ? `-${opt.short}, ` : ' ';
755
1311
  sig += `--${kebabLong}`;
756
1312
  if (opt.args === 'optional') {
@@ -769,24 +1325,24 @@ class Command {
769
1325
  options.push({ sig, desc });
770
1326
  }
771
1327
  const commands = [];
772
- if (this.#subcommandsList.length > 0) {
1328
+ if (params.subcommands.length > 0) {
773
1329
  commands.push({ name: 'help', desc: 'Show help for a command' });
774
1330
  }
775
- const sortedSubcommands = [...this.#subcommandsList].sort((a, b) => a.name.localeCompare(b.name));
1331
+ const sortedSubcommands = [...params.subcommands].sort((a, b) => a.name.localeCompare(b.name));
776
1332
  for (const entry of sortedSubcommands) {
777
1333
  let name = entry.name;
778
1334
  if (entry.aliases.length > 0) {
779
1335
  name += `, ${entry.aliases.join(', ')}`;
780
1336
  }
781
- commands.push({ name, desc: entry.command.#desc });
1337
+ commands.push({ name, desc: entry.desc });
782
1338
  }
783
- const examples = this.#examples.map(example => ({
1339
+ const examples = params.examples.map(example => ({
784
1340
  title: example.title,
785
- usage: commandPath ? `${commandPath} ${example.usage}` : example.usage,
1341
+ usage: params.commandPath ? `${params.commandPath} ${example.usage}` : example.usage,
786
1342
  desc: example.desc,
787
1343
  }));
788
1344
  return {
789
- desc: this.#desc,
1345
+ desc: params.desc,
790
1346
  usage,
791
1347
  arguments: argumentsLines,
792
1348
  options,
@@ -794,6 +1350,51 @@ class Command {
794
1350
  examples,
795
1351
  };
796
1352
  }
1353
+ formatHelp(helpData) {
1354
+ return this.#renderHelpPlain(helpData);
1355
+ }
1356
+ formatHelpForDisplay(helpData, color) {
1357
+ if (!this.#shouldRenderStyledHelp(color)) {
1358
+ return this.#renderHelpPlain(helpData);
1359
+ }
1360
+ return this.#renderHelpTerminal(helpData);
1361
+ }
1362
+ resolveHelpColorFromTailArgv(params) {
1363
+ const colorOption = params.options.find(opt => opt.long === 'color');
1364
+ let color = !isNoColorEnabled$1(params.envs);
1365
+ if (!colorOption || colorOption.type !== 'boolean' || colorOption.args !== 'none') {
1366
+ return color;
1367
+ }
1368
+ const separatorIndex = params.tailArgv.indexOf('--');
1369
+ const scanTokens = separatorIndex === -1 ? params.tailArgv : params.tailArgv.slice(0, separatorIndex);
1370
+ for (const token of scanTokens) {
1371
+ if (token === '--color') {
1372
+ color = true;
1373
+ continue;
1374
+ }
1375
+ if (token === '--no-color') {
1376
+ color = false;
1377
+ continue;
1378
+ }
1379
+ if (!token.startsWith('--color=')) {
1380
+ continue;
1381
+ }
1382
+ const value = token.slice('--color='.length);
1383
+ if (value === 'true') {
1384
+ color = true;
1385
+ }
1386
+ else if (value === 'false') {
1387
+ color = false;
1388
+ }
1389
+ else {
1390
+ throw new CommanderError('InvalidBooleanValue', `invalid value "${value}" for boolean option "--color". Use "true" or "false"`, params.commandPath);
1391
+ }
1392
+ }
1393
+ return color;
1394
+ }
1395
+ #shouldRenderStyledHelp(color) {
1396
+ return color && process.stdout.isTTY === true;
1397
+ }
797
1398
  #renderHelpPlain(helpData) {
798
1399
  const lines = [];
799
1400
  const labelWidth = this.#getHelpLabelWidth(helpData);
@@ -888,243 +1489,287 @@ class Command {
888
1489
  const outputLabel = styleLabel ? styleLabel(paddedLabel) : paddedLabel;
889
1490
  return ` ${outputLabel} ${desc}`;
890
1491
  }
891
- getCompletionMeta() {
892
- const optionMap = new Map();
893
- for (const option of this.#resolveOptionPolicy().mergedOptions) {
894
- optionMap.set(option.long, option);
895
- }
896
- optionMap.set('help', BUILTIN_HELP_OPTION);
897
- if (this.#supportsBuiltinVersion()) {
898
- optionMap.set('version', BUILTIN_VERSION_OPTION);
899
- }
900
- const allOptions = Array.from(optionMap.values());
901
- const options = [];
902
- const argumentsMeta = [];
903
- for (const opt of allOptions) {
904
- options.push({
905
- long: opt.long,
906
- short: opt.short,
907
- desc: opt.desc,
908
- type: opt.type,
909
- args: opt.args,
910
- choices: opt.choices?.map(choice => String(choice)),
911
- });
1492
+ }
1493
+
1494
+ const DECIMAL_INTEGER_REGEX = /^\d(?:_?\d)*$/;
1495
+ const DECIMAL_FRACTION_REGEX = /^\d(?:_?\d)*$/;
1496
+ const DECIMAL_EXPONENT_REGEX = /^[eE][+-]?\d(?:_?\d)*$/;
1497
+ const BINARY_LITERAL_REGEX = /^0[bB][01](?:_?[01])*$/;
1498
+ const OCTAL_LITERAL_REGEX = /^0[oO][0-7](?:_?[0-7])*$/;
1499
+ const HEX_LITERAL_REGEX = /^0[xX][0-9a-fA-F](?:_?[0-9a-fA-F])*$/;
1500
+ function camelToKebabCase$3(str) {
1501
+ return str.replace(/[A-Z]/g, m => '-' + m.toLowerCase());
1502
+ }
1503
+ function isNoColorEnabled(envs) {
1504
+ return envs['NO_COLOR'] !== undefined;
1505
+ }
1506
+ function isValidPrimitiveNumberLiteral(rawValue) {
1507
+ if (rawValue.trim() !== rawValue || rawValue.length === 0) {
1508
+ return false;
1509
+ }
1510
+ if (rawValue === 'NaN' || rawValue === 'Infinity' || rawValue === '-Infinity') {
1511
+ return false;
1512
+ }
1513
+ if (BINARY_LITERAL_REGEX.test(rawValue)) {
1514
+ return true;
1515
+ }
1516
+ if (OCTAL_LITERAL_REGEX.test(rawValue)) {
1517
+ return true;
1518
+ }
1519
+ if (HEX_LITERAL_REGEX.test(rawValue)) {
1520
+ return true;
1521
+ }
1522
+ const sign = rawValue[0] === '+' || rawValue[0] === '-' ? rawValue[0] : '';
1523
+ const body = sign ? rawValue.slice(1) : rawValue;
1524
+ if (body.length === 0) {
1525
+ return false;
1526
+ }
1527
+ const expIndex = body.search(/[eE]/);
1528
+ const basePart = expIndex === -1 ? body : body.slice(0, expIndex);
1529
+ const expPart = expIndex === -1 ? '' : body.slice(expIndex);
1530
+ if (expPart && !DECIMAL_EXPONENT_REGEX.test(expPart)) {
1531
+ return false;
1532
+ }
1533
+ if (basePart.includes('.')) {
1534
+ const decimalParts = basePart.split('.');
1535
+ if (decimalParts.length !== 2) {
1536
+ return false;
912
1537
  }
913
- for (const arg of this.#arguments) {
914
- argumentsMeta.push({
915
- name: arg.name,
916
- kind: arg.kind,
917
- type: arg.type,
918
- choices: arg.type === 'choice' ? arg.choices?.map(choice => String(choice)) : undefined,
919
- });
1538
+ const [intPart, fracPart] = decimalParts;
1539
+ const intOk = intPart.length === 0 || DECIMAL_INTEGER_REGEX.test(intPart);
1540
+ const fracOk = fracPart.length === 0 || DECIMAL_FRACTION_REGEX.test(fracPart);
1541
+ if (!intOk || !fracOk) {
1542
+ return false;
920
1543
  }
921
- return {
922
- name: this.#name,
923
- desc: this.#desc,
924
- aliases: [],
925
- options,
926
- arguments: argumentsMeta,
927
- subcommands: this.#subcommandsList.map(entry => {
928
- const subMeta = entry.command.getCompletionMeta();
929
- return {
930
- ...subMeta,
931
- name: entry.name,
932
- aliases: entry.aliases,
933
- };
934
- }),
935
- };
1544
+ return intPart.length > 0 || fracPart.length > 0;
936
1545
  }
937
- #findSubcommandEntry(token) {
938
- return this.#subcommandsList.find(e => e.name === token || e.aliases.includes(token));
1546
+ return DECIMAL_INTEGER_REGEX.test(basePart);
1547
+ }
1548
+ function parsePrimitiveNumber(rawValue) {
1549
+ if (!isValidPrimitiveNumberLiteral(rawValue)) {
1550
+ return undefined;
939
1551
  }
940
- #route(argv) {
941
- const chain = [this];
942
- const cmds = [];
943
- let current = this;
944
- let idx = 0;
945
- while (idx < argv.length) {
946
- const token = argv[idx];
947
- if (token.startsWith('-'))
948
- break;
949
- const entry = current.#findSubcommandEntry(token);
950
- if (!entry)
951
- break;
952
- current = entry.command;
953
- cmds.push(token);
954
- chain.push(current);
955
- idx += 1;
956
- }
957
- return { chain, remaining: argv.slice(idx), cmds };
1552
+ const normalized = rawValue.replaceAll('_', '');
1553
+ const value = Number(normalized);
1554
+ if (!Number.isFinite(value)) {
1555
+ return undefined;
958
1556
  }
959
- #controlScan(tailArgv, leafCommand) {
960
- const controls = { help: false, version: false };
961
- const separatorIndex = tailArgv.indexOf('--');
962
- const beforeSeparator = separatorIndex === -1 ? tailArgv : tailArgv.slice(0, separatorIndex);
963
- const afterSeparator = separatorIndex === -1 ? [] : tailArgv.slice(separatorIndex + 1);
964
- let helpTarget;
965
- let scanStartIndex = 0;
966
- if (beforeSeparator[0] === 'help') {
967
- controls.help = true;
968
- scanStartIndex = 1;
969
- const candidate = beforeSeparator[1];
970
- if (candidate !== undefined && !candidate.startsWith('-')) {
971
- helpTarget = candidate;
972
- scanStartIndex = 2;
973
- }
974
- }
975
- const remainingBeforeSeparator = [];
976
- for (let i = scanStartIndex; i < beforeSeparator.length; i += 1) {
977
- const token = beforeSeparator[i];
978
- if (token === '--help') {
979
- controls.help = true;
1557
+ return value;
1558
+ }
1559
+ class CommandOptionParser {
1560
+ parseOptions(params) {
1561
+ const { tokens, allOptions, envs, commandPath } = params;
1562
+ const opts = {};
1563
+ const explicitOptionLongs = new Set();
1564
+ let sawColorToken = false;
1565
+ for (const opt of allOptions) {
1566
+ if (opt.default !== undefined) {
1567
+ opts[opt.long] = opt.default;
1568
+ }
1569
+ else if (opt.type === 'boolean' && opt.args === 'none') {
1570
+ opts[opt.long] = false;
1571
+ }
1572
+ else if (opt.args === 'variadic') {
1573
+ opts[opt.long] = [];
1574
+ }
1575
+ }
1576
+ const optionByLong = new Map();
1577
+ const optionByShort = new Map();
1578
+ for (const opt of allOptions) {
1579
+ optionByLong.set(opt.long, opt);
1580
+ if (opt.short) {
1581
+ optionByShort.set(opt.short, opt);
1582
+ }
1583
+ }
1584
+ let i = 0;
1585
+ while (i < tokens.length) {
1586
+ const token = tokens[i];
1587
+ const opt = token.type === 'long' ? optionByLong.get(token.name) : optionByShort.get(token.name);
1588
+ if (!opt) {
1589
+ i += 1;
1590
+ continue;
1591
+ }
1592
+ explicitOptionLongs.add(opt.long);
1593
+ if (opt.long === 'color') {
1594
+ sawColorToken = true;
1595
+ }
1596
+ const isNegativeToken = token.original.toLowerCase().startsWith('--no-');
1597
+ if (isNegativeToken && !(opt.type === 'boolean' && opt.args === 'none')) {
1598
+ throw new CommanderError('NegativeOptionType', `"--no-${camelToKebabCase$3(opt.long)}" can only be used with boolean options`, commandPath);
1599
+ }
1600
+ if (opt.type === 'boolean' && opt.args === 'none') {
1601
+ const eqIdx = token.resolved.indexOf('=');
1602
+ if (eqIdx !== -1) {
1603
+ const value = token.resolved.slice(eqIdx + 1);
1604
+ if (value === 'true') {
1605
+ opts[opt.long] = true;
1606
+ }
1607
+ else if (value === 'false') {
1608
+ opts[opt.long] = false;
1609
+ }
1610
+ else {
1611
+ throw new CommanderError('InvalidBooleanValue', `invalid value "${value}" for boolean option "--${camelToKebabCase$3(opt.long)}". Use "true" or "false"`, commandPath);
1612
+ }
1613
+ }
1614
+ else {
1615
+ opts[opt.long] = true;
1616
+ }
1617
+ i += 1;
1618
+ continue;
1619
+ }
1620
+ if (opt.args === 'required') {
1621
+ const eqIdx = token.resolved.indexOf('=');
1622
+ let rawValue;
1623
+ if (eqIdx !== -1) {
1624
+ rawValue = token.resolved.slice(eqIdx + 1);
1625
+ }
1626
+ else if (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1627
+ rawValue = tokens[i + 1].original;
1628
+ i += 1;
1629
+ }
1630
+ else {
1631
+ throw new CommanderError('MissingValue', `option "--${camelToKebabCase$3(opt.long)}" requires a value`, commandPath);
1632
+ }
1633
+ opts[opt.long] = this.#convertValue(opt, rawValue, commandPath);
1634
+ i += 1;
1635
+ continue;
1636
+ }
1637
+ if (opt.args === 'optional') {
1638
+ const eqIdx = token.resolved.indexOf('=');
1639
+ if (eqIdx !== -1) {
1640
+ opts[opt.long] = this.#convertValue(opt, token.resolved.slice(eqIdx + 1), commandPath);
1641
+ i += 1;
1642
+ continue;
1643
+ }
1644
+ if (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1645
+ opts[opt.long] = this.#convertValue(opt, tokens[i + 1].original, commandPath);
1646
+ i += 1;
1647
+ }
1648
+ else {
1649
+ opts[opt.long] = undefined;
1650
+ }
1651
+ i += 1;
980
1652
  continue;
981
1653
  }
982
- if (token === '--version' && leafCommand.#supportsBuiltinVersion()) {
983
- controls.version = true;
1654
+ if (opt.args === 'variadic') {
1655
+ const values = Array.isArray(opts[opt.long]) ? opts[opt.long] : [];
1656
+ const eqIdx = token.resolved.indexOf('=');
1657
+ if (eqIdx !== -1) {
1658
+ values.push(this.#convertValue(opt, token.resolved.slice(eqIdx + 1), commandPath));
1659
+ }
1660
+ else {
1661
+ while (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1662
+ i += 1;
1663
+ values.push(this.#convertValue(opt, tokens[i].original, commandPath));
1664
+ }
1665
+ }
1666
+ opts[opt.long] = values;
1667
+ i += 1;
984
1668
  continue;
985
1669
  }
986
- remainingBeforeSeparator.push(token);
1670
+ i += 1;
1671
+ }
1672
+ for (const opt of allOptions) {
1673
+ if (opt.required && !Object.prototype.hasOwnProperty.call(opts, opt.long)) {
1674
+ throw new CommanderError('MissingRequired', `missing required option "--${camelToKebabCase$3(opt.long)}"`, commandPath);
1675
+ }
1676
+ }
1677
+ for (const opt of allOptions) {
1678
+ if (opt.choices && opts[opt.long] !== undefined) {
1679
+ const value = opts[opt.long];
1680
+ const values = Array.isArray(value) ? value : [value];
1681
+ const choices = opt.choices;
1682
+ for (const v of values) {
1683
+ if (!choices.includes(v)) {
1684
+ throw new CommanderError('InvalidChoice', `invalid value "${v}" for option "--${camelToKebabCase$3(opt.long)}". Allowed: ${opt.choices.join(', ')}`, commandPath);
1685
+ }
1686
+ }
1687
+ }
1688
+ }
1689
+ if (isNoColorEnabled(envs) && !sawColorToken && opts['color'] === true) {
1690
+ opts['color'] = false;
987
1691
  }
988
- const remaining = separatorIndex === -1
989
- ? remainingBeforeSeparator
990
- : [...remainingBeforeSeparator, '--', ...afterSeparator];
991
- return {
992
- controls,
993
- remaining,
994
- helpTarget,
995
- };
996
- }
997
- #createContext(params) {
998
- const { chain, cmds, envs, reporter: reporter$1 } = params;
999
- const leafCommand = chain[chain.length - 1];
1000
- const envSnapshot = { ...envs };
1001
1692
  return {
1002
- cmd: leafCommand,
1003
- chain,
1004
- envs: envSnapshot,
1005
- controls: { help: false, version: false },
1006
- sources: {
1007
- preset: {
1008
- argv: [],
1009
- envs: {},
1010
- },
1011
- user: {
1012
- cmds: [...cmds],
1013
- argv: [],
1014
- envs: envSnapshot,
1015
- },
1016
- },
1017
- reporter: reporter$1 ?? this.#reporter ?? new reporter.Reporter(),
1693
+ opts,
1694
+ explicitOptionLongs,
1018
1695
  };
1019
1696
  }
1020
- #resolveHelpCommand(leafCommand, helpTarget) {
1021
- if (helpTarget === undefined) {
1022
- return leafCommand;
1697
+ applyBuiltinDevmodeLogLevel(params) {
1698
+ const { opts, explicitOptionLongs, builtinOption, hasUserOption } = params;
1699
+ const hasBuiltinDevmode = builtinOption.devmode;
1700
+ const hasBuiltinLogLevel = builtinOption.logLevel && !hasUserOption('logLevel');
1701
+ if (!hasBuiltinDevmode || !hasBuiltinLogLevel) {
1702
+ return;
1703
+ }
1704
+ if (opts['devmode'] !== true) {
1705
+ return;
1023
1706
  }
1024
- const target = leafCommand.#findSubcommandEntry(helpTarget);
1025
- if (target === undefined) {
1026
- return leafCommand;
1707
+ if (explicitOptionLongs.has('logLevel')) {
1708
+ return;
1027
1709
  }
1028
- return target.command;
1710
+ opts['logLevel'] = 'debug';
1029
1711
  }
1030
- async #preset(controlTailArgv, ctx, optionPolicyMap) {
1031
- const commandPath = ctx.chain[ctx.chain.length - 1].#getCommandPath();
1032
- const separatorIndex = controlTailArgv.indexOf('--');
1033
- const beforeSeparator = separatorIndex === -1 ? controlTailArgv : controlTailArgv.slice(0, separatorIndex);
1034
- const afterSeparator = separatorIndex === -1 ? [] : controlTailArgv.slice(separatorIndex + 1);
1035
- const profileScanResult = this.#scanPresetProfileDirectives(beforeSeparator, commandPath);
1036
- const cleanArgv = separatorIndex === -1
1037
- ? profileScanResult.cleanArgv
1038
- : [...profileScanResult.cleanArgv, '--', ...afterSeparator];
1039
- const commandChain = ctx.chain;
1040
- const commandPresetFile = this.#resolveCommandPresetFileFromChain(commandChain);
1041
- const effectivePresetFile = profileScanResult.presetFile ?? commandPresetFile;
1042
- const commandPresetProfile = this.#resolveCommandPresetProfileFromChain(commandChain);
1043
- const useCommandPresetProfile = profileScanResult.presetProfile === undefined && commandPresetProfile !== undefined;
1044
- if (useCommandPresetProfile) {
1045
- this.#assertPresetProfileSelectorValue(commandPresetProfile, 'command.preset.profile', commandPath);
1046
- }
1047
- const effectivePresetProfile = profileScanResult.presetProfile ?? commandPresetProfile;
1048
- const effectivePresetProfileSourceName = profileScanResult.presetProfile !== undefined
1049
- ? PRESET_PROFILE_FLAG
1050
- : commandPresetProfile !== undefined
1051
- ? 'command.preset.profile'
1052
- : undefined;
1053
- if (effectivePresetFile === undefined && useCommandPresetProfile) {
1054
- throw new CommanderError('ConfigurationError', 'cannot use "command.preset.profile" without "command.preset.file" or "--preset-file"', commandPath);
1055
- }
1056
- const resolvedProfile = await this.#resolvePresetProfile({
1057
- presetFile: effectivePresetFile,
1058
- presetProfile: effectivePresetProfile,
1059
- presetProfileSourceName: effectivePresetProfileSourceName,
1060
- commandPath,
1061
- });
1062
- const userSources = {
1063
- cmds: [...ctx.sources.user.cmds],
1064
- argv: [...cleanArgv],
1065
- envs: { ...ctx.sources.user.envs },
1712
+ resolveBuiltinParsedOptions(params) {
1713
+ const { opts, builtinOption, hasUserOption } = params;
1714
+ const builtin = {
1715
+ devmode: builtinOption.devmode ? Boolean(opts['devmode']) : false,
1066
1716
  };
1067
- const presetArgv = [];
1068
- if (resolvedProfile !== undefined && resolvedProfile.optsArgv.length > 0) {
1069
- this.#validatePresetOptionTokens(resolvedProfile.optsArgv, resolvedProfile.optsSourceLabel, commandPath);
1070
- this.#assertPresetOptionFragments(resolvedProfile.optsArgv, resolvedProfile.optsSourceLabel, commandChain, optionPolicyMap);
1071
- presetArgv.push(...resolvedProfile.optsArgv);
1072
- }
1073
- const presetEnvs = {};
1074
- if (resolvedProfile !== undefined) {
1075
- if (resolvedProfile.profileEnvFileSource !== undefined) {
1076
- const content = await this.#readPresetFile(resolvedProfile.profileEnvFileSource, commandPath);
1077
- if (content !== undefined) {
1078
- const parsed = this.#parsePresetEnvsContent(content, resolvedProfile.profileEnvFileSource, commandPath);
1079
- Object.assign(presetEnvs, parsed);
1080
- }
1081
- }
1082
- Object.assign(presetEnvs, resolvedProfile.profileInlineEnvs);
1083
- if (resolvedProfile.variantEnvFileSource !== undefined) {
1084
- const content = await this.#readPresetFile(resolvedProfile.variantEnvFileSource, commandPath);
1085
- if (content !== undefined) {
1086
- const parsed = this.#parsePresetEnvsContent(content, resolvedProfile.variantEnvFileSource, commandPath);
1087
- Object.assign(presetEnvs, parsed);
1088
- }
1089
- }
1090
- Object.assign(presetEnvs, resolvedProfile.variantInlineEnvs);
1717
+ if (builtinOption.color && !hasUserOption('color')) {
1718
+ builtin.color = Boolean(opts['color']);
1091
1719
  }
1092
- const sources = {
1093
- user: userSources,
1094
- preset: {
1095
- argv: presetArgv,
1096
- envs: presetEnvs,
1097
- },
1098
- };
1099
- const envs = { ...sources.user.envs, ...sources.preset.envs };
1100
- const tailArgv = [...sources.preset.argv, ...sources.user.argv];
1101
- return { tailArgv, envs, sources };
1102
- }
1103
- #resolveCommandPresetFileFromChain(chain) {
1104
- for (let index = chain.length - 1; index >= 0; index -= 1) {
1105
- const preset = chain[index].#presetConfig;
1106
- if (preset?.file !== undefined) {
1107
- return preset.file;
1720
+ if (builtinOption.logLevel && !hasUserOption('logLevel')) {
1721
+ const logLevel = opts['logLevel'];
1722
+ if (typeof logLevel === 'string') {
1723
+ builtin.logLevel = logLevel;
1108
1724
  }
1109
1725
  }
1110
- return undefined;
1111
- }
1112
- #resolveCommandPresetProfileFromChain(chain) {
1113
- for (let index = chain.length - 1; index >= 0; index -= 1) {
1114
- const preset = chain[index].#presetConfig;
1115
- if (preset?.profile !== undefined) {
1116
- return preset.profile;
1117
- }
1726
+ if (builtinOption.silent && !hasUserOption('silent')) {
1727
+ builtin.silent = Boolean(opts['silent']);
1118
1728
  }
1119
- return undefined;
1729
+ if (builtinOption.logDate && !hasUserOption('logDate')) {
1730
+ builtin.logDate = Boolean(opts['logDate']);
1731
+ }
1732
+ if (builtinOption.logColorful && !hasUserOption('logColorful')) {
1733
+ builtin.logColorful = Boolean(opts['logColorful']);
1734
+ }
1735
+ return builtin;
1120
1736
  }
1121
- #resolvePresetFileAbsolutePath(filepath, baseDirectory) {
1122
- if (this.#runtime.isAbsolute(filepath)) {
1123
- return filepath;
1737
+ #convertValue(opt, rawValue, commandPath) {
1738
+ if (opt.coerce) {
1739
+ return opt.coerce(rawValue);
1740
+ }
1741
+ if (opt.type === 'number') {
1742
+ const num = parsePrimitiveNumber(rawValue);
1743
+ if (num === undefined) {
1744
+ throw new CommanderError('InvalidType', `invalid number "${rawValue}" for option "--${camelToKebabCase$3(opt.long)}"`, commandPath);
1745
+ }
1746
+ return num;
1124
1747
  }
1125
- return this.#runtime.resolve(baseDirectory ?? this.#runtime.cwd(), filepath);
1748
+ return rawValue;
1126
1749
  }
1127
- async #resolvePresetProfile(params) {
1750
+ }
1751
+
1752
+ const PRESET_FILE_FLAG = '--preset-file';
1753
+ const PRESET_PROFILE_FLAG = '--preset-profile';
1754
+ const PRESET_SELECTOR_DELIMITER = ':';
1755
+ const PRESET_PROFILE_NAME_REGEX = /^[A-Za-z0-9][A-Za-z0-9._-]*$/;
1756
+ const PRESET_VARIANT_NAME_REGEX = /^[A-Za-z0-9][A-Za-z0-9._-]*$/;
1757
+ function kebabToCamelCase$1(str) {
1758
+ return str.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
1759
+ }
1760
+ function camelToKebabCase$2(str) {
1761
+ return str.replace(/[A-Z]/g, m => '-' + m.toLowerCase());
1762
+ }
1763
+ class CommandPresetProfileParser {
1764
+ #resolvePresetFileAbsolutePath;
1765
+ #resolvePath;
1766
+ #readPresetFile;
1767
+ constructor(params) {
1768
+ this.#resolvePresetFileAbsolutePath = params.resolvePresetFileAbsolutePath;
1769
+ this.#resolvePath = params.resolvePath;
1770
+ this.#readPresetFile = params.readPresetFile;
1771
+ }
1772
+ async resolvePresetProfile(params) {
1128
1773
  const { presetFile, presetProfile, presetProfileSourceName, commandPath } = params;
1129
1774
  if (presetFile === undefined) {
1130
1775
  if (presetProfile !== undefined) {
@@ -1167,9 +1812,9 @@ class Command {
1167
1812
  : `${resolvedProfileName}${PRESET_SELECTOR_DELIMITER}${selectedVariantName}`;
1168
1813
  const mergedOpts = { ...(profile.opts ?? {}), ...(selectedVariant?.opts ?? {}) };
1169
1814
  const optsArgv = this.#buildPresetArgvFromProfileOptions(mergedOpts, profileSelectorLabel, commandPath);
1170
- const profileInlineEnvs = this.#normalizePresetProfileEnvs(profile.envs, profileSelectorLabel, commandPath);
1171
- const variantInlineEnvs = this.#normalizePresetProfileEnvs(selectedVariant?.envs, profileSelectorLabel, commandPath);
1172
- const profileDir = this.#runtime.resolve(profileFile.absolutePath, '..');
1815
+ const profileInlineEnvs = this.#normalizePresetProfileEnvs(profile.envs);
1816
+ const variantInlineEnvs = this.#normalizePresetProfileEnvs(selectedVariant?.envs);
1817
+ const profileDir = this.#resolvePath(profileFile.absolutePath, '..');
1173
1818
  let profileEnvFileSource;
1174
1819
  if (profile.envFile !== undefined) {
1175
1820
  profileEnvFileSource = {
@@ -1191,19 +1836,49 @@ class Command {
1191
1836
  variantName: selectedVariantName,
1192
1837
  optsArgv,
1193
1838
  optsSourceLabel: `${profileFile.displayPath}#${profileSelectorLabel}.opts`,
1839
+ issueMeta: {
1840
+ file: profileFile.displayPath,
1841
+ profile: resolvedProfileName,
1842
+ variant: selectedVariantName,
1843
+ },
1194
1844
  profileInlineEnvs,
1195
1845
  variantInlineEnvs,
1196
1846
  profileEnvFileSource,
1197
1847
  variantEnvFileSource,
1198
1848
  };
1199
1849
  }
1200
- #parsePresetProfileManifest(content, filepath, commandPath) {
1201
- let parsed;
1202
- try {
1203
- parsed = JSON.parse(content);
1850
+ assertPresetProfileSelectorValue(selector, sourceName, commandPath) {
1851
+ void this.#parsePresetProfileSelector(selector, sourceName, commandPath);
1852
+ }
1853
+ validatePresetOptionTokens(tokens, filepath, commandPath) {
1854
+ if (tokens.length === 0) {
1855
+ return;
1204
1856
  }
1205
- catch (error) {
1206
- throw new CommanderError('ConfigurationError', `failed to parse preset file "${filepath}": ${error.message}`, commandPath);
1857
+ if (!tokens[0].startsWith('-')) {
1858
+ throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": bare token "${tokens[0]}" cannot appear before any option token`, commandPath);
1859
+ }
1860
+ for (const token of tokens) {
1861
+ if (token === '--') {
1862
+ throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": "--" is not allowed`, commandPath);
1863
+ }
1864
+ if (token === 'help' || token === '--help' || token === '--version') {
1865
+ throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": control token "${token}" is not allowed`, commandPath);
1866
+ }
1867
+ if (token === PRESET_FILE_FLAG ||
1868
+ token.startsWith(`${PRESET_FILE_FLAG}=`) ||
1869
+ token === PRESET_PROFILE_FLAG ||
1870
+ token.startsWith(`${PRESET_PROFILE_FLAG}=`)) {
1871
+ throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": preset directive "${token}" is not allowed`, commandPath);
1872
+ }
1873
+ }
1874
+ }
1875
+ #parsePresetProfileManifest(content, filepath, commandPath) {
1876
+ let parsed;
1877
+ try {
1878
+ parsed = JSON.parse(content);
1879
+ }
1880
+ catch (error) {
1881
+ throw new CommanderError('ConfigurationError', `failed to parse preset file "${filepath}": ${error.message}`, commandPath);
1207
1882
  }
1208
1883
  if (typeof parsed !== 'object' || parsed === null || Array.isArray(parsed)) {
1209
1884
  throw new CommanderError('ConfigurationError', `invalid preset file "${filepath}": root must be an object`, commandPath);
@@ -1223,7 +1898,7 @@ class Command {
1223
1898
  if (typeof defaultsRecord.profile !== 'string') {
1224
1899
  throw new CommanderError('ConfigurationError', `invalid preset file "${filepath}": "defaults.profile" must be a string`, commandPath);
1225
1900
  }
1226
- this.#assertPresetProfileSelectorValue(defaultsRecord.profile, 'defaults.profile', commandPath);
1901
+ this.assertPresetProfileSelectorValue(defaultsRecord.profile, 'defaults.profile', commandPath);
1227
1902
  }
1228
1903
  defaults = { profile: defaultsRecord.profile };
1229
1904
  }
@@ -1379,7 +2054,7 @@ class Command {
1379
2054
  }
1380
2055
  throw new CommanderError('ConfigurationError', `${valueLabel} must be boolean|string|number|(string|number)[]`, commandPath);
1381
2056
  }
1382
- #normalizePresetProfileEnvs(envs, _profileName, _commandPath) {
2057
+ #normalizePresetProfileEnvs(envs) {
1383
2058
  return envs === undefined ? {} : { ...envs };
1384
2059
  }
1385
2060
  #normalizePresetOptionName(rawName, profileName, commandPath) {
@@ -1396,7 +2071,7 @@ class Command {
1396
2071
  if (!/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/.test(lowered)) {
1397
2072
  throw new CommanderError('ConfigurationError', `invalid option name "${rawName}" in preset profile "${profileName}"`, commandPath);
1398
2073
  }
1399
- return kebabToCamelCase(lowered);
2074
+ return kebabToCamelCase$1(lowered);
1400
2075
  }
1401
2076
  if (!/^[a-z][a-zA-Z0-9]*$/.test(stripped)) {
1402
2077
  throw new CommanderError('ConfigurationError', `invalid option name "${rawName}" in preset profile "${profileName}"`, commandPath);
@@ -1407,7 +2082,7 @@ class Command {
1407
2082
  const argv = [];
1408
2083
  for (const [rawName, rawValue] of Object.entries(opts)) {
1409
2084
  const optionName = this.#normalizePresetOptionName(rawName, profileName, commandPath);
1410
- const kebabName = camelToKebabCase$1(optionName);
2085
+ const kebabName = camelToKebabCase$2(optionName);
1411
2086
  const positiveFlag = `--${kebabName}`;
1412
2087
  const negativeFlag = `--no-${kebabName}`;
1413
2088
  if (typeof rawValue === 'boolean') {
@@ -1429,80 +2104,6 @@ class Command {
1429
2104
  }
1430
2105
  return argv;
1431
2106
  }
1432
- #scanPresetProfileDirectives(argv, commandPath) {
1433
- const cleanArgv = [];
1434
- let presetFile;
1435
- let presetProfile;
1436
- const assignDirective = (flag, value) => {
1437
- if (flag === PRESET_FILE_FLAG) {
1438
- presetFile = value;
1439
- }
1440
- else {
1441
- this.#assertPresetProfileSelectorValue(value, PRESET_PROFILE_FLAG, commandPath);
1442
- presetProfile = value;
1443
- }
1444
- };
1445
- let index = 0;
1446
- while (index < argv.length) {
1447
- const token = argv[index];
1448
- if (token === PRESET_FILE_FLAG || token === PRESET_PROFILE_FLAG) {
1449
- const value = argv[index + 1];
1450
- if (value === undefined || value.length === 0) {
1451
- throw new CommanderError('ConfigurationError', `missing value for "${token}"`, commandPath);
1452
- }
1453
- assignDirective(token, value);
1454
- index += 2;
1455
- continue;
1456
- }
1457
- if (token.startsWith(`${PRESET_FILE_FLAG}=`)) {
1458
- const value = token.slice(PRESET_FILE_FLAG.length + 1);
1459
- if (value.length === 0) {
1460
- throw new CommanderError('ConfigurationError', `missing value for "${PRESET_FILE_FLAG}"`, commandPath);
1461
- }
1462
- assignDirective(PRESET_FILE_FLAG, value);
1463
- index += 1;
1464
- continue;
1465
- }
1466
- if (token.startsWith(`${PRESET_PROFILE_FLAG}=`)) {
1467
- const value = token.slice(PRESET_PROFILE_FLAG.length + 1);
1468
- if (value.length === 0) {
1469
- throw new CommanderError('ConfigurationError', `missing value for "${PRESET_PROFILE_FLAG}"`, commandPath);
1470
- }
1471
- assignDirective(PRESET_PROFILE_FLAG, value);
1472
- index += 1;
1473
- continue;
1474
- }
1475
- cleanArgv.push(token);
1476
- index += 1;
1477
- }
1478
- return { cleanArgv, presetFile, presetProfile };
1479
- }
1480
- #assertPresetOptionFragments(tokens, filepath, chain, optionPolicyMap) {
1481
- if (tokens.length === 0) {
1482
- return;
1483
- }
1484
- const commandPath = chain[chain.length - 1].#getCommandPath();
1485
- try {
1486
- const { optionTokens, restArgs } = tokenize(tokens, commandPath);
1487
- void restArgs;
1488
- const { argTokens } = this.#resolve(chain, optionTokens, optionPolicyMap);
1489
- if (argTokens.length > 0) {
1490
- throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": token "${argTokens[0].original}" cannot be resolved as an option fragment`, commandPath);
1491
- }
1492
- }
1493
- catch (error) {
1494
- if (error instanceof CommanderError) {
1495
- if (error.kind === 'ConfigurationError') {
1496
- throw error;
1497
- }
1498
- throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": ${error.message}`, commandPath);
1499
- }
1500
- throw error;
1501
- }
1502
- }
1503
- #assertPresetProfileSelectorValue(selector, sourceName, commandPath) {
1504
- void this.#parsePresetProfileSelector(selector, sourceName, commandPath);
1505
- }
1506
2107
  #parsePresetProfileSelector(selector, sourceName, commandPath) {
1507
2108
  const normalizedSelector = selector.trim();
1508
2109
  const separatorIndex = normalizedSelector.indexOf(PRESET_SELECTOR_DELIMITER);
@@ -1534,713 +2135,1374 @@ class Command {
1534
2135
  }
1535
2136
  throw new CommanderError('ConfigurationError', `invalid variant name for "${sourceName}": "${variantName}" (must match ${PRESET_VARIANT_NAME_REGEX.source})`, commandPath);
1536
2137
  }
1537
- async #readPresetFile(file, commandPath) {
1538
- try {
1539
- const stats = await this.#runtime.stat(file.absolutePath);
1540
- if (stats.isDirectory()) {
1541
- throw new Error('target is a directory');
1542
- }
1543
- return await this.#runtime.readFile(file.absolutePath);
2138
+ }
2139
+
2140
+ const BUILTIN_LOG_LEVELS = ['debug', 'info', 'hint', 'warn', 'error'];
2141
+ function resolveReporterLogLevel(raw) {
2142
+ const normalized = raw.trim().toLowerCase();
2143
+ return BUILTIN_LOG_LEVELS.find(level => level === normalized);
2144
+ }
2145
+ function setReporterLevel(ctx, level) {
2146
+ const reporter = ctx.reporter;
2147
+ reporter?.setLevel?.(level);
2148
+ }
2149
+ function setReporterFlight(ctx, flight) {
2150
+ const reporter = ctx.reporter;
2151
+ reporter?.setFlight?.(flight);
2152
+ }
2153
+ const devmodeOption = {
2154
+ long: 'devmode',
2155
+ type: 'boolean',
2156
+ args: 'none',
2157
+ desc: 'Enable development mode',
2158
+ default: false,
2159
+ };
2160
+ const logLevelOption = {
2161
+ long: 'logLevel',
2162
+ type: 'string',
2163
+ args: 'required',
2164
+ desc: 'Set log level',
2165
+ default: 'info',
2166
+ choices: [...BUILTIN_LOG_LEVELS],
2167
+ coerce: (raw) => {
2168
+ const level = resolveReporterLogLevel(raw);
2169
+ if (level === undefined) {
2170
+ throw new Error(`Invalid log level: ${raw}`);
1544
2171
  }
1545
- catch (error) {
1546
- const ioError = error;
1547
- if (!file.explicit && ioError.code === 'ENOENT') {
1548
- return undefined;
1549
- }
1550
- throw new CommanderError('ConfigurationError', `failed to read preset file "${file.displayPath}": ${error.message}`, commandPath);
2172
+ return level;
2173
+ },
2174
+ apply: (value, ctx) => {
2175
+ setReporterLevel(ctx, value);
2176
+ },
2177
+ };
2178
+ const logDateOption = {
2179
+ long: 'logDate',
2180
+ type: 'boolean',
2181
+ args: 'none',
2182
+ desc: 'Enable log timestamp',
2183
+ default: true,
2184
+ apply: (value, ctx) => {
2185
+ setReporterFlight(ctx, { date: Boolean(value) });
2186
+ },
2187
+ };
2188
+ const logColorfulOption = {
2189
+ long: 'logColorful',
2190
+ type: 'boolean',
2191
+ args: 'none',
2192
+ desc: 'Enable colorful log output',
2193
+ default: true,
2194
+ apply: (value, ctx) => {
2195
+ setReporterFlight(ctx, { color: Boolean(value) });
2196
+ },
2197
+ };
2198
+ const silentOption = {
2199
+ long: 'silent',
2200
+ type: 'boolean',
2201
+ args: 'none',
2202
+ desc: 'Suppress non-error output',
2203
+ default: false,
2204
+ apply: (value, ctx) => {
2205
+ if (value) {
2206
+ setReporterLevel(ctx, 'error');
1551
2207
  }
2208
+ },
2209
+ };
2210
+
2211
+ const BUILTIN_COLOR_OPTION = {
2212
+ long: 'color',
2213
+ type: 'boolean',
2214
+ args: 'none',
2215
+ desc: 'Enable colored help output',
2216
+ default: true,
2217
+ };
2218
+ function resolveOptionPolicy(params) {
2219
+ const { builtinOption, localOptions } = params;
2220
+ const optionMap = new Map();
2221
+ const hasUserOption = (long) => localOptions.some(option => option.long === long);
2222
+ if (builtinOption.color && !hasUserOption('color')) {
2223
+ optionMap.set('color', BUILTIN_COLOR_OPTION);
1552
2224
  }
1553
- #parsePresetEnvsContent(content, file, commandPath) {
1554
- try {
1555
- return env.parse(content);
1556
- }
1557
- catch (error) {
1558
- throw new CommanderError('ConfigurationError', `failed to parse preset env file "${file.displayPath}": ${error.message}`, commandPath);
1559
- }
2225
+ if (builtinOption.devmode) {
2226
+ optionMap.set('devmode', devmodeOption);
1560
2227
  }
1561
- #validatePresetOptionTokens(tokens, filepath, commandPath) {
1562
- if (tokens.length === 0) {
1563
- return;
2228
+ if (builtinOption.logLevel && !hasUserOption('logLevel')) {
2229
+ optionMap.set('logLevel', logLevelOption);
2230
+ }
2231
+ if (builtinOption.silent && !hasUserOption('silent')) {
2232
+ optionMap.set('silent', silentOption);
2233
+ }
2234
+ if (builtinOption.logDate && !hasUserOption('logDate')) {
2235
+ optionMap.set('logDate', logDateOption);
2236
+ }
2237
+ if (builtinOption.logColorful && !hasUserOption('logColorful')) {
2238
+ optionMap.set('logColorful', logColorfulOption);
2239
+ }
2240
+ for (const option of localOptions) {
2241
+ optionMap.set(option.long, option);
2242
+ }
2243
+ return {
2244
+ mergedOptions: Array.from(optionMap.values()),
2245
+ };
2246
+ }
2247
+ function buildOptionPolicyMap(params) {
2248
+ const { chain, resolveOptionPolicy } = params;
2249
+ const optionPolicyMap = new Map();
2250
+ for (const command of chain) {
2251
+ optionPolicyMap.set(command, resolveOptionPolicy(command));
2252
+ }
2253
+ return optionPolicyMap;
2254
+ }
2255
+ function mustGetOptionPolicy(params) {
2256
+ const { optionPolicyMap, command, resolveOptionPolicy } = params;
2257
+ const policy = optionPolicyMap.get(command) ?? resolveOptionPolicy(command);
2258
+ optionPolicyMap.set(command, policy);
2259
+ return policy;
2260
+ }
2261
+
2262
+ function scanControl(params) {
2263
+ const { tailArgv, supportsBuiltinVersion } = params;
2264
+ const controls = { help: false, version: false };
2265
+ const separatorIndex = tailArgv.indexOf('--');
2266
+ const beforeSeparator = separatorIndex === -1 ? tailArgv : tailArgv.slice(0, separatorIndex);
2267
+ const afterSeparator = separatorIndex === -1 ? [] : tailArgv.slice(separatorIndex + 1);
2268
+ let helpTarget;
2269
+ let scanStartIndex = 0;
2270
+ if (beforeSeparator[0] === 'help') {
2271
+ controls.help = true;
2272
+ scanStartIndex = 1;
2273
+ const candidate = beforeSeparator[1];
2274
+ if (candidate !== undefined && !candidate.startsWith('-')) {
2275
+ helpTarget = candidate;
2276
+ scanStartIndex = 2;
2277
+ }
2278
+ }
2279
+ const remainingBeforeSeparator = [];
2280
+ for (let index = scanStartIndex; index < beforeSeparator.length; index += 1) {
2281
+ const token = beforeSeparator[index];
2282
+ if (token === '--help') {
2283
+ controls.help = true;
2284
+ continue;
1564
2285
  }
1565
- if (!tokens[0].startsWith('-')) {
1566
- throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": bare token "${tokens[0]}" cannot appear before any option token`, commandPath);
2286
+ if (token === '--version' && supportsBuiltinVersion) {
2287
+ controls.version = true;
2288
+ continue;
1567
2289
  }
1568
- for (const token of tokens) {
1569
- if (token === '--') {
1570
- throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": "--" is not allowed`, commandPath);
1571
- }
1572
- if (token === 'help' || token === '--help' || token === '--version') {
1573
- throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": control token "${token}" is not allowed`, commandPath);
1574
- }
1575
- if (token === PRESET_FILE_FLAG ||
1576
- token.startsWith(`${PRESET_FILE_FLAG}=`) ||
1577
- token === PRESET_PROFILE_FLAG ||
1578
- token.startsWith(`${PRESET_PROFILE_FLAG}=`)) {
1579
- throw new CommanderError('ConfigurationError', `invalid preset options in "${filepath}": preset directive "${token}" is not allowed`, commandPath);
1580
- }
2290
+ remainingBeforeSeparator.push(token);
2291
+ }
2292
+ return {
2293
+ controls,
2294
+ remaining: separatorIndex === -1
2295
+ ? remainingBeforeSeparator
2296
+ : [...remainingBeforeSeparator, '--', ...afterSeparator],
2297
+ helpTarget,
2298
+ };
2299
+ }
2300
+ function runControl(params) {
2301
+ const { leafCommand, controlScanResult, resolveHelpCommand, getCommandPath, getCommandVersion } = params;
2302
+ if (controlScanResult.controls.help) {
2303
+ const helpCommand = resolveHelpCommand(leafCommand, controlScanResult.helpTarget);
2304
+ return {
2305
+ kind: 'help',
2306
+ targetCommandPath: getCommandPath(helpCommand),
2307
+ };
2308
+ }
2309
+ if (controlScanResult.controls.version) {
2310
+ const version = getCommandVersion(leafCommand);
2311
+ if (version !== undefined) {
2312
+ return {
2313
+ kind: 'version',
2314
+ targetCommandPath: getCommandPath(leafCommand),
2315
+ version,
2316
+ };
1581
2317
  }
1582
2318
  }
1583
- #resolve(chain, tokens, optionPolicyMap) {
1584
- const consumedTokens = new Map();
1585
- let remaining = [...tokens];
1586
- const shadowed = new Set();
1587
- for (let i = chain.length - 1; i >= 0; i--) {
1588
- const cmd = chain[i];
1589
- const policy = this.#mustGetOptionPolicy(optionPolicyMap, cmd);
1590
- const result = cmd.#shift(remaining, shadowed, policy.mergedOptions);
1591
- consumedTokens.set(cmd, result.consumed);
1592
- remaining = result.remaining;
1593
- for (const opt of cmd.#options) {
1594
- shadowed.add(opt.long);
1595
- }
1596
- }
1597
- const argTokens = [];
1598
- for (const token of remaining) {
1599
- if (token.type !== 'none') {
1600
- const leafCommand = chain[chain.length - 1];
1601
- throw new CommanderError('UnknownOption', `unknown option "${token.original}" for command "${leafCommand.#getCommandPath()}"`, leafCommand.#getCommandPath());
1602
- }
1603
- argTokens.push(token);
1604
- }
1605
- return { consumedTokens, argTokens };
1606
- }
1607
- #shift(tokens, shadowed, allOptions) {
1608
- const effectiveOptions = allOptions.filter(o => !shadowed.has(o.long));
1609
- const optionByLong = new Map();
1610
- const optionByShort = new Map();
1611
- for (const opt of effectiveOptions) {
1612
- optionByLong.set(opt.long, opt);
1613
- if (opt.short) {
1614
- optionByShort.set(opt.short, opt);
1615
- }
2319
+ return undefined;
2320
+ }
2321
+
2322
+ function resolveStage(params) {
2323
+ const { chain, tokens, optionPolicyMap, mustGetOptionPolicy, getLocalOptions, getCommandPath, withUnknownOptionIssue, } = params;
2324
+ try {
2325
+ return resolveTokensByChain({
2326
+ chain,
2327
+ tokens,
2328
+ optionPolicyMap,
2329
+ mustGetOptionPolicy,
2330
+ getLocalOptions,
2331
+ getCommandPath,
2332
+ });
2333
+ }
2334
+ catch (error) {
2335
+ if (error instanceof CommanderError && error.kind === 'UnknownOption') {
2336
+ const unresolvedToken = error.meta?.token === undefined
2337
+ ? undefined
2338
+ : tokens.find(token => token.original === error.meta?.token);
2339
+ throw withUnknownOptionIssue(error, unresolvedToken);
1616
2340
  }
1617
- const consumed = [];
1618
- const remaining = [];
1619
- let i = 0;
1620
- while (i < tokens.length) {
1621
- const token = tokens[i];
1622
- if (token.type === 'long') {
1623
- const opt = optionByLong.get(token.name);
1624
- if (opt) {
1625
- consumed.push(token);
1626
- if (opt.args === 'required') {
1627
- if (!token.resolved.includes('=') && i + 1 < tokens.length) {
1628
- i += 1;
1629
- consumed.push(tokens[i]);
1630
- }
2341
+ throw error;
2342
+ }
2343
+ }
2344
+ function shiftTokens(params) {
2345
+ const { tokens, shadowed, allOptions } = params;
2346
+ const effectiveOptions = allOptions.filter(option => !shadowed.has(option.long));
2347
+ const optionByLong = new Map();
2348
+ const optionByShort = new Map();
2349
+ for (const option of effectiveOptions) {
2350
+ optionByLong.set(option.long, option);
2351
+ if (option.short) {
2352
+ optionByShort.set(option.short, option);
2353
+ }
2354
+ }
2355
+ const consumed = [];
2356
+ const remaining = [];
2357
+ let index = 0;
2358
+ while (index < tokens.length) {
2359
+ const token = tokens[index];
2360
+ if (token.type === 'long') {
2361
+ const option = optionByLong.get(token.name);
2362
+ if (option !== undefined) {
2363
+ consumed.push(token);
2364
+ if (option.args === 'required') {
2365
+ if (!token.resolved.includes('=') && index + 1 < tokens.length) {
2366
+ index += 1;
2367
+ consumed.push(tokens[index]);
1631
2368
  }
1632
- else if (opt.args === 'optional') {
1633
- if (!token.resolved.includes('=') &&
1634
- i + 1 < tokens.length &&
1635
- tokens[i + 1].type === 'none') {
1636
- i += 1;
1637
- consumed.push(tokens[i]);
1638
- }
2369
+ }
2370
+ else if (option.args === 'optional') {
2371
+ if (!token.resolved.includes('=') &&
2372
+ index + 1 < tokens.length &&
2373
+ tokens[index + 1].type === 'none') {
2374
+ index += 1;
2375
+ consumed.push(tokens[index]);
1639
2376
  }
1640
- else if (opt.args === 'variadic') {
1641
- if (!token.resolved.includes('=')) {
1642
- while (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1643
- i += 1;
1644
- consumed.push(tokens[i]);
1645
- }
1646
- }
2377
+ }
2378
+ else if (option.args === 'variadic' && !token.resolved.includes('=')) {
2379
+ while (index + 1 < tokens.length && tokens[index + 1].type === 'none') {
2380
+ index += 1;
2381
+ consumed.push(tokens[index]);
1647
2382
  }
1648
- i += 1;
1649
- continue;
1650
2383
  }
1651
- remaining.push(token);
1652
- i += 1;
2384
+ index += 1;
1653
2385
  continue;
1654
2386
  }
1655
- if (token.type === 'short') {
1656
- const opt = optionByShort.get(token.name);
1657
- if (opt) {
1658
- consumed.push(token);
1659
- if (opt.args === 'required') {
1660
- if (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1661
- i += 1;
1662
- consumed.push(tokens[i]);
1663
- }
1664
- }
1665
- else if (opt.args === 'optional') {
1666
- if (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1667
- i += 1;
1668
- consumed.push(tokens[i]);
1669
- }
2387
+ remaining.push(token);
2388
+ index += 1;
2389
+ continue;
2390
+ }
2391
+ if (token.type === 'short') {
2392
+ const option = optionByShort.get(token.name);
2393
+ if (option !== undefined) {
2394
+ consumed.push(token);
2395
+ if (option.args === 'required' || option.args === 'optional') {
2396
+ if (index + 1 < tokens.length && tokens[index + 1].type === 'none') {
2397
+ index += 1;
2398
+ consumed.push(tokens[index]);
1670
2399
  }
1671
- else if (opt.args === 'variadic') {
1672
- while (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1673
- i += 1;
1674
- consumed.push(tokens[i]);
1675
- }
2400
+ }
2401
+ else if (option.args === 'variadic') {
2402
+ while (index + 1 < tokens.length && tokens[index + 1].type === 'none') {
2403
+ index += 1;
2404
+ consumed.push(tokens[index]);
1676
2405
  }
1677
- i += 1;
1678
- continue;
1679
2406
  }
1680
- remaining.push(token);
1681
- i += 1;
2407
+ index += 1;
1682
2408
  continue;
1683
2409
  }
1684
2410
  remaining.push(token);
1685
- i += 1;
2411
+ index += 1;
2412
+ continue;
1686
2413
  }
1687
- return { consumed, remaining };
2414
+ remaining.push(token);
2415
+ index += 1;
1688
2416
  }
1689
- #parse(chain, resolveResult, optionPolicyMap, ctx, restArgs) {
1690
- const { consumedTokens, argTokens } = resolveResult;
1691
- const leafCommand = chain[chain.length - 1];
1692
- this.#validateMergedShortOptions(chain, optionPolicyMap);
1693
- const optsMap = new Map();
1694
- for (const cmd of chain) {
1695
- const policy = this.#mustGetOptionPolicy(optionPolicyMap, cmd);
1696
- const tokens = consumedTokens.get(cmd) ?? [];
1697
- const opts = cmd.#parseOptions(tokens, policy.mergedOptions, ctx.envs);
1698
- optsMap.set(cmd, opts);
1699
- for (const opt of policy.mergedOptions) {
1700
- if (opt.apply && opts[opt.long] !== undefined) {
1701
- opt.apply(opts[opt.long], ctx);
1702
- }
1703
- }
1704
- }
1705
- const leafLocalOpts = {};
1706
- const leafParsedOpts = optsMap.get(leafCommand) ?? {};
1707
- for (const opt of leafCommand.#options) {
1708
- if (Object.prototype.hasOwnProperty.call(leafParsedOpts, opt.long)) {
1709
- leafLocalOpts[opt.long] = leafParsedOpts[opt.long];
1710
- }
2417
+ return { consumed, remaining };
2418
+ }
2419
+ function resolveTokensByChain(params) {
2420
+ const { chain, tokens, optionPolicyMap, mustGetOptionPolicy, getLocalOptions, getCommandPath } = params;
2421
+ const consumedTokens = new Map();
2422
+ let remaining = [...tokens];
2423
+ const shadowed = new Set();
2424
+ for (let index = chain.length - 1; index >= 0; index -= 1) {
2425
+ const command = chain[index];
2426
+ const policy = mustGetOptionPolicy(optionPolicyMap, command);
2427
+ const result = shiftTokens({
2428
+ tokens: remaining,
2429
+ shadowed,
2430
+ allOptions: policy.mergedOptions,
2431
+ });
2432
+ consumedTokens.set(command, result.consumed);
2433
+ remaining = result.remaining;
2434
+ for (const option of getLocalOptions(command)) {
2435
+ shadowed.add(option.long);
2436
+ }
2437
+ }
2438
+ const leafCommand = chain[chain.length - 1];
2439
+ const leafCommandPath = getCommandPath(leafCommand);
2440
+ const argTokens = [];
2441
+ for (const token of remaining) {
2442
+ if (token.type !== 'none') {
2443
+ throw new CommanderError('UnknownOption', `unknown option "${token.original}" for command "${leafCommandPath}"`, leafCommandPath, {
2444
+ commandPath: leafCommandPath,
2445
+ token: token.original,
2446
+ issues: [],
2447
+ });
1711
2448
  }
1712
- leafCommand.#assertUnknownSubcommand(ctx.sources.user.argv);
1713
- const rawArgStrings = [...argTokens.map(t => t.original), ...restArgs];
1714
- const { args, rawArgs } = leafCommand.#parseArguments(rawArgStrings);
1715
- const parseCtx = {
1716
- ...ctx,
1717
- sources: this.#freezeInputSources(ctx.sources),
1718
- };
1719
- return { ctx: parseCtx, opts: leafLocalOpts, args, rawArgs };
2449
+ argTokens.push(token);
1720
2450
  }
1721
- #parseOptions(tokens, allOptions, envs) {
1722
- const opts = {};
1723
- let sawColorToken = false;
1724
- for (const opt of allOptions) {
1725
- if (opt.default !== undefined) {
1726
- opts[opt.long] = opt.default;
1727
- }
1728
- else if (opt.type === 'boolean' && opt.args === 'none') {
1729
- opts[opt.long] = false;
1730
- }
1731
- else if (opt.args === 'variadic') {
1732
- opts[opt.long] = [];
1733
- }
2451
+ return { consumedTokens, argTokens };
2452
+ }
2453
+ function validateMergedShortOptions(params) {
2454
+ const { chain, optionPolicyMap, mustGetOptionPolicy, rootCommandPath } = params;
2455
+ const mergedByLong = new Map();
2456
+ for (const command of chain) {
2457
+ const policy = mustGetOptionPolicy(optionPolicyMap, command);
2458
+ for (const option of policy.mergedOptions) {
2459
+ mergedByLong.set(option.long, option);
2460
+ }
2461
+ }
2462
+ const shortMap = new Map();
2463
+ for (const option of mergedByLong.values()) {
2464
+ if (!option.short) {
2465
+ continue;
1734
2466
  }
1735
- const optionByLong = new Map();
1736
- const optionByShort = new Map();
1737
- for (const opt of allOptions) {
1738
- optionByLong.set(opt.long, opt);
1739
- if (opt.short) {
1740
- optionByShort.set(opt.short, opt);
1741
- }
2467
+ const existingLong = shortMap.get(option.short);
2468
+ if (existingLong !== undefined && existingLong !== option.long) {
2469
+ throw new CommanderError('OptionConflict', `short option "-${option.short}" conflicts with "--${existingLong}"`, rootCommandPath);
1742
2470
  }
1743
- let i = 0;
1744
- while (i < tokens.length) {
1745
- const token = tokens[i];
1746
- const opt = token.type === 'long' ? optionByLong.get(token.name) : optionByShort.get(token.name);
1747
- if (!opt) {
1748
- i += 1;
1749
- continue;
1750
- }
1751
- if (opt.long === 'color') {
1752
- sawColorToken = true;
1753
- }
1754
- const isNegativeToken = token.original.toLowerCase().startsWith('--no-');
1755
- if (isNegativeToken && !(opt.type === 'boolean' && opt.args === 'none')) {
1756
- throw new CommanderError('NegativeOptionType', `"--no-${camelToKebabCase$1(opt.long)}" can only be used with boolean options`, this.#getCommandPath());
1757
- }
1758
- if (opt.type === 'boolean' && opt.args === 'none') {
1759
- const eqIdx = token.resolved.indexOf('=');
1760
- if (eqIdx !== -1) {
1761
- const value = token.resolved.slice(eqIdx + 1);
1762
- if (value === 'true') {
1763
- opts[opt.long] = true;
1764
- }
1765
- else if (value === 'false') {
1766
- opts[opt.long] = false;
1767
- }
1768
- else {
1769
- throw new CommanderError('InvalidBooleanValue', `invalid value "${value}" for boolean option "--${camelToKebabCase$1(opt.long)}". Use "true" or "false"`, this.#getCommandPath());
1770
- }
1771
- }
1772
- else {
1773
- opts[opt.long] = true;
1774
- }
1775
- i += 1;
1776
- continue;
1777
- }
1778
- if (opt.args === 'required') {
1779
- const eqIdx = token.resolved.indexOf('=');
1780
- let rawValue;
1781
- if (eqIdx !== -1) {
1782
- rawValue = token.resolved.slice(eqIdx + 1);
1783
- }
1784
- else if (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1785
- rawValue = tokens[i + 1].original;
1786
- i += 1;
1787
- }
1788
- else {
1789
- throw new CommanderError('MissingValue', `option "--${camelToKebabCase$1(opt.long)}" requires a value`, this.#getCommandPath());
1790
- }
1791
- opts[opt.long] = this.#convertValue(opt, rawValue);
1792
- i += 1;
1793
- continue;
1794
- }
1795
- if (opt.args === 'optional') {
1796
- const eqIdx = token.resolved.indexOf('=');
1797
- if (eqIdx !== -1) {
1798
- opts[opt.long] = this.#convertValue(opt, token.resolved.slice(eqIdx + 1));
1799
- i += 1;
1800
- continue;
1801
- }
1802
- if (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1803
- opts[opt.long] = this.#convertValue(opt, tokens[i + 1].original);
1804
- i += 1;
1805
- }
1806
- else {
1807
- opts[opt.long] = undefined;
1808
- }
1809
- i += 1;
1810
- continue;
1811
- }
1812
- if (opt.args === 'variadic') {
1813
- const values = Array.isArray(opts[opt.long]) ? opts[opt.long] : [];
1814
- const eqIdx = token.resolved.indexOf('=');
1815
- if (eqIdx !== -1) {
1816
- values.push(this.#convertValue(opt, token.resolved.slice(eqIdx + 1)));
1817
- }
1818
- else {
1819
- while (i + 1 < tokens.length && tokens[i + 1].type === 'none') {
1820
- i += 1;
1821
- values.push(this.#convertValue(opt, tokens[i].original));
1822
- }
1823
- }
1824
- opts[opt.long] = values;
1825
- i += 1;
1826
- continue;
1827
- }
1828
- i += 1;
1829
- }
1830
- for (const opt of allOptions) {
1831
- if (opt.required && !Object.prototype.hasOwnProperty.call(opts, opt.long)) {
1832
- throw new CommanderError('MissingRequired', `missing required option "--${camelToKebabCase$1(opt.long)}"`, this.#getCommandPath());
1833
- }
1834
- }
1835
- for (const opt of allOptions) {
1836
- if (opt.choices && opts[opt.long] !== undefined) {
1837
- const value = opts[opt.long];
1838
- const values = Array.isArray(value) ? value : [value];
1839
- const choices = opt.choices;
1840
- for (const v of values) {
1841
- if (!choices.includes(v)) {
1842
- throw new CommanderError('InvalidChoice', `invalid value "${v}" for option "--${camelToKebabCase$1(opt.long)}". Allowed: ${opt.choices.join(', ')}`, this.#getCommandPath());
1843
- }
1844
- }
1845
- }
1846
- }
1847
- if (isNoColorEnabled(envs) && !sawColorToken && opts['color'] === true) {
1848
- opts['color'] = false;
1849
- }
1850
- return opts;
1851
- }
1852
- #convertValue(opt, rawValue) {
1853
- if (opt.coerce) {
1854
- return opt.coerce(rawValue);
1855
- }
1856
- if (opt.type === 'number') {
1857
- const num = parsePrimitiveNumber(rawValue);
1858
- if (num === undefined) {
1859
- throw new CommanderError('InvalidType', `invalid number "${rawValue}" for option "--${camelToKebabCase$1(opt.long)}"`, this.#getCommandPath());
1860
- }
1861
- return num;
1862
- }
1863
- return rawValue;
2471
+ shortMap.set(option.short, option.long);
1864
2472
  }
1865
- #parseArguments(rawArgs) {
1866
- const argumentDefs = this.#arguments;
1867
- const args = {};
1868
- if (argumentDefs.length === 0 && rawArgs.length > 0) {
1869
- throw new CommanderError('UnexpectedArgument', `unexpected argument "${rawArgs[0]}"`, this.#getCommandPath());
1870
- }
1871
- const missing = [];
1872
- let remaining = rawArgs.length;
1873
- for (const def of argumentDefs) {
1874
- if (def.kind === 'required') {
1875
- if (remaining === 0) {
1876
- missing.push(def.name);
1877
- }
1878
- else {
1879
- remaining -= 1;
1880
- }
1881
- continue;
1882
- }
1883
- if (def.kind === 'optional') {
1884
- if (remaining > 0) {
1885
- remaining -= 1;
1886
- }
1887
- continue;
1888
- }
1889
- if (def.kind === 'some') {
1890
- if (remaining === 0) {
1891
- missing.push(def.name);
1892
- }
1893
- remaining = 0;
1894
- continue;
1895
- }
1896
- remaining = 0;
1897
- }
1898
- if (missing.length > 0) {
1899
- throw new CommanderError('MissingRequiredArgument', `missing required argument(s): ${missing.join(', ')}`, this.#getCommandPath());
1900
- }
1901
- let index = 0;
1902
- for (const def of argumentDefs) {
1903
- if (def.kind === 'variadic') {
1904
- const rest = rawArgs.slice(index);
1905
- args[def.name] = rest.map(raw => this.#convertArgument(def, raw));
1906
- index = rawArgs.length;
1907
- break;
1908
- }
1909
- if (def.kind === 'some') {
1910
- const rest = rawArgs.slice(index);
1911
- args[def.name] = rest.map(raw => this.#convertArgument(def, raw));
1912
- index = rawArgs.length;
1913
- break;
1914
- }
1915
- if (def.kind === 'optional') {
1916
- const raw = rawArgs[index];
1917
- if (raw === undefined) {
1918
- args[def.name] = def.default ?? undefined;
1919
- continue;
1920
- }
1921
- args[def.name] = this.#convertArgument(def, raw);
1922
- index += 1;
1923
- continue;
1924
- }
1925
- const raw = rawArgs[index];
1926
- args[def.name] = this.#convertArgument(def, raw);
1927
- index += 1;
1928
- }
1929
- const hasRestArgument = argumentDefs.some(a => a.kind === 'variadic' || a.kind === 'some');
1930
- if (!hasRestArgument && index < rawArgs.length) {
1931
- throw new CommanderError('TooManyArguments', `too many arguments: expected ${argumentDefs.length}, got ${rawArgs.length}`, this.#getCommandPath());
1932
- }
1933
- return { args, rawArgs };
2473
+ }
2474
+
2475
+ function camelToKebabCase$1(str) {
2476
+ return str.replace(/[A-Z]/g, m => '-' + m.toLowerCase());
2477
+ }
2478
+ function normalizeSubcommandNameForDistance(name) {
2479
+ return camelToKebabCase$1(name).toLowerCase();
2480
+ }
2481
+ function levenshteinDistance(left, right) {
2482
+ if (left === right) {
2483
+ return 0;
1934
2484
  }
1935
- #convertArgument(def, raw) {
1936
- let value;
1937
- if (def.coerce) {
1938
- try {
1939
- value = def.coerce(raw);
1940
- }
1941
- catch {
1942
- throw new CommanderError('InvalidType', `invalid value "${raw}" for argument "${def.name}"`, this.#getCommandPath());
1943
- }
1944
- }
1945
- else {
1946
- value = raw;
1947
- }
1948
- if (typeof value !== 'string') {
1949
- throw new CommanderError('InvalidType', `invalid value for argument "${def.name}": expected ${def.type}`, this.#getCommandPath());
1950
- }
1951
- if (def.type === 'choice') {
1952
- const choices = def.choices ?? [];
1953
- if (!choices.includes(value)) {
1954
- throw new CommanderError('InvalidChoice', `invalid value "${value}" for argument "${def.name}". Allowed: ${choices
1955
- .map(choice => JSON.stringify(choice))
1956
- .join(', ')}`, this.#getCommandPath());
1957
- }
1958
- }
1959
- return value;
2485
+ if (left.length === 0) {
2486
+ return right.length;
1960
2487
  }
1961
- #assertUnknownSubcommand(userTailArgv) {
1962
- if (this.#subcommandsList.length === 0) {
1963
- return;
1964
- }
1965
- const token = userTailArgv[0];
1966
- if (token === undefined || token.startsWith('-') || token === 'help') {
1967
- return;
1968
- }
1969
- if (this.#findSubcommandEntry(token) !== undefined) {
1970
- return;
1971
- }
1972
- const hints = [];
1973
- if (this.#arguments.length === 0) {
1974
- hints.push(`Hint: command "${this.#getCommandPath()}" does not accept positional arguments.`);
1975
- }
1976
- const candidate = this.#resolveDidYouMeanSubcommandName(token);
1977
- if (candidate !== undefined) {
1978
- hints.push(`Hint: did you mean "${candidate}"?`);
1979
- }
1980
- const details = hints.length > 0 ? `\n${hints.join('\n')}` : '';
1981
- throw new CommanderError('UnknownSubcommand', `unknown subcommand "${token}" for command "${this.#getCommandPath()}"${details}`, this.#getCommandPath());
2488
+ if (right.length === 0) {
2489
+ return left.length;
1982
2490
  }
1983
- #resolveDidYouMeanSubcommandName(token) {
1984
- const source = normalizeSubcommandNameForDistance(token);
1985
- let minDistance = Number.POSITIVE_INFINITY;
1986
- let bestName;
1987
- let isUniqueBest = false;
1988
- for (const entry of this.#subcommandsList) {
1989
- const target = normalizeSubcommandNameForDistance(entry.name);
1990
- const distance = levenshteinDistance(source, target);
1991
- if (distance < minDistance) {
1992
- minDistance = distance;
1993
- bestName = entry.name;
1994
- isUniqueBest = true;
1995
- }
1996
- else if (distance === minDistance) {
1997
- isUniqueBest = false;
1998
- }
1999
- }
2000
- if (minDistance <= 2 && isUniqueBest) {
2001
- return bestName;
2491
+ let prev = Array.from({ length: right.length + 1 }, (_, index) => index);
2492
+ for (let row = 0; row < left.length; row += 1) {
2493
+ const current = [row + 1];
2494
+ for (let col = 0; col < right.length; col += 1) {
2495
+ const substitutionCost = left[row] === right[col] ? 0 : 1;
2496
+ current[col + 1] = Math.min(current[col] + 1, prev[col + 1] + 1, prev[col] + substitutionCost);
2002
2497
  }
2003
- return undefined;
2004
- }
2005
- #hasUserOption(long) {
2006
- return this.#options.some(option => option.long === long);
2007
- }
2008
- #supportsBuiltinVersion() {
2009
- return this.#version !== undefined && this.#builtin.option.version;
2498
+ prev = current;
2010
2499
  }
2011
- #resolveOptionPolicy() {
2012
- const optionMap = new Map();
2013
- const hasUserColor = this.#hasUserOption('color');
2014
- const hasUserLogLevel = this.#hasUserOption('logLevel');
2015
- const hasUserSilent = this.#hasUserOption('silent');
2016
- const hasUserLogDate = this.#hasUserOption('logDate');
2017
- const hasUserLogColorful = this.#hasUserOption('logColorful');
2018
- if (this.#builtin.option.color && !hasUserColor) {
2019
- optionMap.set('color', BUILTIN_COLOR_OPTION);
2020
- }
2021
- if (this.#builtin.option.logLevel && !hasUserLogLevel) {
2022
- optionMap.set('logLevel', logLevelOption);
2023
- }
2024
- if (this.#builtin.option.silent && !hasUserSilent) {
2025
- optionMap.set('silent', silentOption);
2026
- }
2027
- if (this.#builtin.option.logDate && !hasUserLogDate) {
2028
- optionMap.set('logDate', logDateOption);
2029
- }
2030
- if (this.#builtin.option.logColorful && !hasUserLogColorful) {
2031
- optionMap.set('logColorful', logColorfulOption);
2032
- }
2033
- for (const opt of this.#options) {
2034
- optionMap.set(opt.long, opt);
2500
+ return prev[right.length];
2501
+ }
2502
+ function convertArgumentValue(params) {
2503
+ const { def, raw, commandPath } = params;
2504
+ let value;
2505
+ if (def.coerce) {
2506
+ try {
2507
+ value = def.coerce(raw);
2035
2508
  }
2036
- return {
2037
- mergedOptions: Array.from(optionMap.values()),
2038
- };
2039
- }
2040
- #buildOptionPolicyMap(chain) {
2041
- const optionPolicyMap = new Map();
2042
- for (const cmd of chain) {
2043
- optionPolicyMap.set(cmd, cmd.#resolveOptionPolicy());
2509
+ catch {
2510
+ throw new CommanderError('InvalidType', `invalid value "${raw}" for argument "${def.name}"`, commandPath);
2044
2511
  }
2045
- return optionPolicyMap;
2046
- }
2047
- #mustGetOptionPolicy(optionPolicyMap, cmd) {
2048
- const policy = optionPolicyMap.get(cmd) ?? cmd.#resolveOptionPolicy();
2049
- optionPolicyMap.set(cmd, policy);
2050
- return policy;
2051
2512
  }
2052
- #validateMergedShortOptions(chain, optionPolicyMap) {
2053
- const mergedByLong = new Map();
2054
- for (const cmd of chain) {
2055
- const policy = this.#mustGetOptionPolicy(optionPolicyMap, cmd);
2056
- for (const opt of policy.mergedOptions) {
2057
- mergedByLong.set(opt.long, opt);
2058
- }
2059
- }
2060
- const shortMap = new Map();
2061
- for (const opt of mergedByLong.values()) {
2062
- if (!opt.short)
2063
- continue;
2064
- const existingLong = shortMap.get(opt.short);
2065
- if (existingLong && existingLong !== opt.long) {
2066
- throw new CommanderError('OptionConflict', `short option "-${opt.short}" conflicts with "--${existingLong}"`, this.#getCommandPath());
2067
- }
2068
- shortMap.set(opt.short, opt.long);
2069
- }
2513
+ else {
2514
+ value = raw;
2070
2515
  }
2071
- #validateOptionConfig(opt) {
2072
- if (opt.long === 'help' || opt.long === 'version') {
2073
- throw new CommanderError('ConfigurationError', `option long name "${opt.long}" is reserved`, this.#getCommandPath());
2074
- }
2075
- if (opt.type === 'boolean' && opt.args !== 'none') {
2076
- throw new CommanderError('ConfigurationError', `boolean option "--${opt.long}" must have args: 'none'`, this.#getCommandPath());
2077
- }
2078
- if ((opt.type === 'string' || opt.type === 'number') && opt.args === 'none') {
2079
- throw new CommanderError('ConfigurationError', `${opt.type} option "--${opt.long}" must have args: 'required', 'optional', or 'variadic'`, this.#getCommandPath());
2080
- }
2081
- if (opt.type === 'number' && opt.args === 'optional') {
2082
- throw new CommanderError('ConfigurationError', `number option "--${opt.long}" does not support args: 'optional'`, this.#getCommandPath());
2083
- }
2084
- if (opt.long.startsWith('no')) {
2085
- throw new CommanderError('ConfigurationError', `option long name cannot start with "no": "${opt.long}"`, this.#getCommandPath());
2086
- }
2087
- if (!/^[a-z][a-zA-Z0-9]*$/.test(opt.long)) {
2088
- throw new CommanderError('ConfigurationError', `option long name must be camelCase: "${opt.long}"`, this.#getCommandPath());
2089
- }
2090
- if (opt.short !== undefined && opt.short.length !== 1) {
2091
- throw new CommanderError('ConfigurationError', `option short name must be a single character: "${opt.short}"`, this.#getCommandPath());
2092
- }
2093
- if (opt.required && opt.default !== undefined) {
2094
- throw new CommanderError('ConfigurationError', `option "--${opt.long}" cannot be both required and have a default value`, this.#getCommandPath());
2095
- }
2096
- if (opt.type === 'boolean' && opt.required) {
2097
- throw new CommanderError('ConfigurationError', `boolean option "--${opt.long}" cannot be required`, this.#getCommandPath());
2098
- }
2099
- if (opt.required && opt.args !== 'required') {
2100
- throw new CommanderError('ConfigurationError', `required option "--${opt.long}" must use args: 'required'`, this.#getCommandPath());
2101
- }
2516
+ if (typeof value !== 'string') {
2517
+ throw new CommanderError('InvalidType', `invalid value for argument "${def.name}": expected ${def.type}`, commandPath);
2102
2518
  }
2103
- #checkOptionUniqueness(opt) {
2104
- if (this.#options.some(o => o.long === opt.long)) {
2105
- throw new CommanderError('OptionConflict', `option "--${opt.long}" is already defined`, this.#getCommandPath());
2106
- }
2107
- if (opt.short && this.#options.some(o => o.short === opt.short)) {
2108
- throw new CommanderError('OptionConflict', `short option "-${opt.short}" is already defined`, this.#getCommandPath());
2519
+ if (def.type === 'choice') {
2520
+ const choices = def.choices ?? [];
2521
+ if (!choices.includes(value)) {
2522
+ throw new CommanderError('InvalidChoice', `invalid value "${value}" for argument "${def.name}". Allowed: ${choices
2523
+ .map(choice => JSON.stringify(choice))
2524
+ .join(', ')}`, commandPath);
2109
2525
  }
2110
2526
  }
2111
- #validateArgumentConfig(arg) {
2112
- if (arg.kind !== 'required' &&
2113
- arg.kind !== 'optional' &&
2114
- arg.kind !== 'variadic' &&
2115
- arg.kind !== 'some') {
2116
- throw new CommanderError('ConfigurationError', `argument "${arg.name}" must specify a valid kind`, this.#getCommandPath());
2117
- }
2118
- if (arg.type !== 'string' && arg.type !== 'choice') {
2119
- throw new CommanderError('ConfigurationError', `argument "${arg.name}" must specify a valid type`, this.#getCommandPath());
2120
- }
2121
- if (arg.default !== undefined && arg.kind !== 'optional') {
2122
- throw new CommanderError('ConfigurationError', `only optional argument "${arg.name}" can have a default value`, this.#getCommandPath());
2123
- }
2124
- if (arg.type === 'string' && arg.choices !== undefined) {
2125
- throw new CommanderError('ConfigurationError', `argument "${arg.name}" of type "string" cannot declare choices`, this.#getCommandPath());
2126
- }
2127
- if (arg.type === 'choice') {
2128
- if (!Array.isArray(arg.choices) || arg.choices.length === 0) {
2129
- throw new CommanderError('ConfigurationError', `argument "${arg.name}" of type "choice" must declare a non-empty choices array`, this.#getCommandPath());
2130
- }
2131
- if (arg.choices.some(choice => typeof choice !== 'string')) {
2132
- throw new CommanderError('ConfigurationError', `argument "${arg.name}" choices must be string[]`, this.#getCommandPath());
2527
+ return value;
2528
+ }
2529
+ function parseArguments(params) {
2530
+ const { argumentDefs, rawArgs, commandPath } = params;
2531
+ const args = {};
2532
+ if (argumentDefs.length === 0 && rawArgs.length > 0) {
2533
+ throw new CommanderError('UnexpectedArgument', `unexpected argument "${rawArgs[0]}"`, commandPath);
2534
+ }
2535
+ const missing = [];
2536
+ let remaining = rawArgs.length;
2537
+ for (const def of argumentDefs) {
2538
+ if (def.kind === 'required') {
2539
+ if (remaining === 0) {
2540
+ missing.push(def.name);
2133
2541
  }
2134
- }
2135
- if (arg.default !== undefined) {
2136
- this.#validateArgumentDefaultValue(arg);
2137
- }
2138
- if (arg.kind === 'variadic' || arg.kind === 'some') {
2139
- if (this.#arguments.some(a => a.kind === 'variadic' || a.kind === 'some')) {
2140
- throw new CommanderError('ConfigurationError', 'only one variadic/some argument is allowed', this.#getCommandPath());
2542
+ else {
2543
+ remaining -= 1;
2141
2544
  }
2545
+ continue;
2142
2546
  }
2143
- if (this.#arguments.length > 0) {
2144
- const last = this.#arguments[this.#arguments.length - 1];
2145
- if (last.kind === 'variadic' || last.kind === 'some') {
2146
- throw new CommanderError('ConfigurationError', 'variadic/some argument must be the last argument', this.#getCommandPath());
2547
+ if (def.kind === 'optional') {
2548
+ if (remaining > 0) {
2549
+ remaining -= 1;
2147
2550
  }
2551
+ continue;
2148
2552
  }
2149
- if (arg.kind === 'required') {
2150
- const hasOptional = this.#arguments.some(a => a.kind === 'optional' || a.kind === 'variadic' || a.kind === 'some');
2151
- if (hasOptional) {
2152
- throw new CommanderError('ConfigurationError', `required argument "${arg.name}" cannot come after optional/variadic/some arguments`, this.#getCommandPath());
2553
+ if (def.kind === 'some') {
2554
+ if (remaining === 0) {
2555
+ missing.push(def.name);
2153
2556
  }
2557
+ remaining = 0;
2558
+ continue;
2154
2559
  }
2560
+ remaining = 0;
2561
+ }
2562
+ if (missing.length > 0) {
2563
+ throw new CommanderError('MissingRequiredArgument', `missing required argument(s): ${missing.join(', ')}`, commandPath);
2155
2564
  }
2156
- #validateArgumentDefaultValue(arg) {
2157
- if (typeof arg.default !== 'string') {
2158
- throw new CommanderError('ConfigurationError', `default value for argument "${arg.name}" must match type "${arg.type}"`, this.#getCommandPath());
2565
+ let index = 0;
2566
+ for (const def of argumentDefs) {
2567
+ if (def.kind === 'variadic' || def.kind === 'some') {
2568
+ const rest = rawArgs.slice(index);
2569
+ args[def.name] = rest.map(raw => convertArgumentValue({ def, raw, commandPath }));
2570
+ index = rawArgs.length;
2571
+ break;
2159
2572
  }
2160
- if (arg.type === 'choice') {
2161
- const choices = arg.choices ?? [];
2162
- if (!choices.includes(arg.default)) {
2163
- throw new CommanderError('ConfigurationError', `default value for argument "${arg.name}" must be one of declared choices`, this.#getCommandPath());
2573
+ if (def.kind === 'optional') {
2574
+ const raw = rawArgs[index];
2575
+ if (raw === undefined) {
2576
+ args[def.name] = def.default ?? undefined;
2577
+ continue;
2164
2578
  }
2579
+ args[def.name] = convertArgumentValue({ def, raw, commandPath });
2580
+ index += 1;
2581
+ continue;
2165
2582
  }
2583
+ const raw = rawArgs[index];
2584
+ args[def.name] = convertArgumentValue({ def, raw, commandPath });
2585
+ index += 1;
2586
+ }
2587
+ const hasRestArgument = argumentDefs.some(def => def.kind === 'variadic' || def.kind === 'some');
2588
+ if (!hasRestArgument && index < rawArgs.length) {
2589
+ throw new CommanderError('TooManyArguments', `too many arguments: expected ${argumentDefs.length}, got ${rawArgs.length}`, commandPath);
2590
+ }
2591
+ return { args, rawArgs };
2592
+ }
2593
+ function resolveDidYouMeanSubcommandName(token, subcommands) {
2594
+ const source = normalizeSubcommandNameForDistance(token);
2595
+ let minDistance = Number.POSITIVE_INFINITY;
2596
+ let bestName;
2597
+ let isUniqueBest = false;
2598
+ for (const entry of subcommands) {
2599
+ const target = normalizeSubcommandNameForDistance(entry.name);
2600
+ const distance = levenshteinDistance(source, target);
2601
+ if (distance < minDistance) {
2602
+ minDistance = distance;
2603
+ bestName = entry.name;
2604
+ isUniqueBest = true;
2605
+ }
2606
+ else if (distance === minDistance) {
2607
+ isUniqueBest = false;
2608
+ }
2609
+ }
2610
+ if (minDistance <= 2 && isUniqueBest) {
2611
+ return bestName;
2612
+ }
2613
+ return undefined;
2614
+ }
2615
+ function assertUnknownSubcommand(params) {
2616
+ const { userTailArgv, subcommands, hasArguments, commandPath, withDiagnosticsIssue } = params;
2617
+ if (subcommands.length === 0) {
2618
+ return;
2619
+ }
2620
+ const token = userTailArgv[0];
2621
+ if (token === undefined || token.startsWith('-') || token === 'help') {
2622
+ return;
2623
+ }
2624
+ const matched = subcommands.some(entry => entry.name === token || entry.aliases.includes(token));
2625
+ if (matched) {
2626
+ return;
2627
+ }
2628
+ let error = new CommanderError('UnknownSubcommand', `unknown subcommand "${token}" for command "${commandPath}"`, commandPath);
2629
+ error = withDiagnosticsIssue(error);
2630
+ if (!hasArguments) {
2631
+ const hint = {
2632
+ kind: 'hint',
2633
+ stage: 'parse',
2634
+ scope: 'command',
2635
+ reason: {
2636
+ code: 'command_does_not_accept_positional_arguments',
2637
+ message: `command "${commandPath}" does not accept positional arguments`,
2638
+ },
2639
+ };
2640
+ error = error.withIssue(hint);
2641
+ }
2642
+ const candidate = resolveDidYouMeanSubcommandName(token, subcommands);
2643
+ if (candidate !== undefined) {
2644
+ const hint = {
2645
+ kind: 'hint',
2646
+ stage: 'parse',
2647
+ scope: 'command',
2648
+ reason: {
2649
+ code: 'did_you_mean_subcommand',
2650
+ message: `did you mean "${candidate}"?`,
2651
+ details: { candidate },
2652
+ },
2653
+ };
2654
+ error = error.withIssue(hint);
2655
+ }
2656
+ throw error;
2657
+ }
2658
+ function collectRawArguments(params) {
2659
+ const { argTokens, restArgs } = params;
2660
+ return [...argTokens.map(token => token.original), ...restArgs];
2661
+ }
2662
+ function parseStage(params) {
2663
+ const { chain, resolveResult, optionPolicyMap, ctx, restArgs, rootCommandPath, mustGetOptionPolicy, parseOptions, applyBuiltinDevmodeLogLevel, resolveBuiltinParsedOptions, applyOptionCallbacks, getLocalOptions, getSubcommands, getArguments, getCommandPath, withUnknownSubcommandIssue, freezeInputSources, } = params;
2664
+ const { consumedTokens, argTokens } = resolveResult;
2665
+ const leafCommand = chain[chain.length - 1];
2666
+ validateMergedShortOptions({
2667
+ chain,
2668
+ optionPolicyMap,
2669
+ mustGetOptionPolicy: (map, command) => mustGetOptionPolicy(map, command),
2670
+ rootCommandPath,
2671
+ });
2672
+ const optsMap = new Map();
2673
+ const builtinMap = new Map();
2674
+ for (const command of chain) {
2675
+ const policy = mustGetOptionPolicy(optionPolicyMap, command);
2676
+ const tokens = consumedTokens.get(command) ?? [];
2677
+ const commandPath = getCommandPath(command);
2678
+ const parseOptionsResult = parseOptions({
2679
+ command,
2680
+ tokens,
2681
+ allOptions: policy.mergedOptions,
2682
+ envs: ctx.envs,
2683
+ commandPath,
2684
+ });
2685
+ const opts = parseOptionsResult.opts;
2686
+ applyBuiltinDevmodeLogLevel({
2687
+ command,
2688
+ opts,
2689
+ explicitOptionLongs: parseOptionsResult.explicitOptionLongs,
2690
+ });
2691
+ optsMap.set(command, opts);
2692
+ builtinMap.set(command, resolveBuiltinParsedOptions({ command, opts }));
2693
+ applyOptionCallbacks({
2694
+ command,
2695
+ opts,
2696
+ allOptions: policy.mergedOptions,
2697
+ ctx,
2698
+ });
2166
2699
  }
2167
- #normalizeExample(example) {
2168
- const title = example.title.trim();
2169
- const usage = example.usage.trim();
2170
- const desc = example.desc.trim();
2171
- if (!title) {
2172
- throw new CommanderError('ConfigurationError', 'example title cannot be empty', this.#getCommandPath());
2700
+ const leafLocalOpts = {};
2701
+ const leafParsedOpts = optsMap.get(leafCommand) ?? {};
2702
+ for (const option of getLocalOptions(leafCommand)) {
2703
+ if (Object.prototype.hasOwnProperty.call(leafParsedOpts, option.long)) {
2704
+ leafLocalOpts[option.long] = leafParsedOpts[option.long];
2705
+ }
2706
+ }
2707
+ const leafCommandPath = getCommandPath(leafCommand);
2708
+ const leafArguments = getArguments(leafCommand);
2709
+ assertUnknownSubcommand({
2710
+ userTailArgv: ctx.sources.user.argv,
2711
+ subcommands: getSubcommands(leafCommand),
2712
+ hasArguments: leafArguments.length > 0,
2713
+ commandPath: leafCommandPath,
2714
+ withDiagnosticsIssue: withUnknownSubcommandIssue,
2715
+ });
2716
+ const rawArgStrings = collectRawArguments({ argTokens, restArgs });
2717
+ const { args, rawArgs } = parseArguments({
2718
+ argumentDefs: leafArguments,
2719
+ rawArgs: rawArgStrings,
2720
+ commandPath: leafCommandPath,
2721
+ });
2722
+ const parseCtx = {
2723
+ ...ctx,
2724
+ sources: freezeInputSources(ctx.sources),
2725
+ };
2726
+ return {
2727
+ ctx: parseCtx,
2728
+ builtin: builtinMap.get(leafCommand) ?? { devmode: false },
2729
+ opts: leafLocalOpts,
2730
+ args,
2731
+ rawArgs,
2732
+ };
2733
+ }
2734
+
2735
+ function resolvePresetConfigFromChain(params) {
2736
+ const { chain, getPresetConfig } = params;
2737
+ let presetFile;
2738
+ let presetProfile;
2739
+ for (let index = chain.length - 1; index >= 0; index -= 1) {
2740
+ const presetConfig = getPresetConfig(chain[index]);
2741
+ if (presetFile === undefined && presetConfig?.file !== undefined) {
2742
+ presetFile = presetConfig.file;
2173
2743
  }
2174
- if (!usage) {
2175
- throw new CommanderError('ConfigurationError', 'example usage cannot be empty', this.#getCommandPath());
2744
+ if (presetProfile === undefined && presetConfig?.profile !== undefined) {
2745
+ presetProfile = presetConfig.profile;
2176
2746
  }
2177
- if (!desc) {
2178
- throw new CommanderError('ConfigurationError', 'example description cannot be empty', this.#getCommandPath());
2747
+ if (presetFile !== undefined && presetProfile !== undefined) {
2748
+ break;
2179
2749
  }
2180
- return { title, usage, desc };
2181
2750
  }
2182
- async #runAction(params) {
2183
- if (!this.#action)
2751
+ return { presetFile, presetProfile };
2752
+ }
2753
+ function scanPresetDirectives(params) {
2754
+ const { argv, commandPath, presetFileFlag, presetProfileFlag, assertPresetProfileSelectorValue } = params;
2755
+ const cleanArgv = [];
2756
+ let presetFile;
2757
+ let presetProfile;
2758
+ const assignDirective = (flag, value) => {
2759
+ if (flag === presetFileFlag) {
2760
+ presetFile = value;
2184
2761
  return;
2185
- try {
2186
- await this.#action(params);
2187
2762
  }
2188
- catch (err) {
2189
- if (err instanceof Error) {
2190
- console.error(`Error: ${err.message}`);
2763
+ assertPresetProfileSelectorValue(value, presetProfileFlag, commandPath);
2764
+ presetProfile = value;
2765
+ };
2766
+ let index = 0;
2767
+ while (index < argv.length) {
2768
+ const token = argv[index];
2769
+ if (token === presetFileFlag || token === presetProfileFlag) {
2770
+ const value = argv[index + 1];
2771
+ if (value === undefined || value.length === 0) {
2772
+ throw new CommanderError('ConfigurationError', `missing value for "${token}"`, commandPath);
2773
+ }
2774
+ assignDirective(token, value);
2775
+ index += 2;
2776
+ continue;
2777
+ }
2778
+ if (token.startsWith(`${presetFileFlag}=`)) {
2779
+ const value = token.slice(presetFileFlag.length + 1);
2780
+ if (value.length === 0) {
2781
+ throw new CommanderError('ConfigurationError', `missing value for "${presetFileFlag}"`, commandPath);
2191
2782
  }
2192
- else {
2193
- console.error('Error: action failed');
2783
+ assignDirective(presetFileFlag, value);
2784
+ index += 1;
2785
+ continue;
2786
+ }
2787
+ if (token.startsWith(`${presetProfileFlag}=`)) {
2788
+ const value = token.slice(presetProfileFlag.length + 1);
2789
+ if (value.length === 0) {
2790
+ throw new CommanderError('ConfigurationError', `missing value for "${presetProfileFlag}"`, commandPath);
2194
2791
  }
2195
- process.exit(1);
2792
+ assignDirective(presetProfileFlag, value);
2793
+ index += 1;
2794
+ continue;
2196
2795
  }
2796
+ cleanArgv.push(token);
2797
+ index += 1;
2197
2798
  }
2198
- #resolveHelpColorFromTailArgv(tailArgv, envs, policy = this.#resolveOptionPolicy()) {
2199
- const colorOption = policy.mergedOptions.find(opt => opt.long === 'color');
2200
- let color = !isNoColorEnabled(envs);
2201
- if (!colorOption || colorOption.type !== 'boolean' || colorOption.args !== 'none') {
2202
- return color;
2203
- }
2204
- const separatorIndex = tailArgv.indexOf('--');
2205
- const scanTokens = separatorIndex === -1 ? tailArgv : tailArgv.slice(0, separatorIndex);
2206
- for (const token of scanTokens) {
2207
- if (token === '--color') {
2208
- color = true;
2209
- continue;
2210
- }
2211
- if (token === '--no-color') {
2212
- color = false;
2213
- continue;
2214
- }
2215
- if (!token.startsWith('--color=')) {
2216
- continue;
2217
- }
2218
- const value = token.slice('--color='.length);
2219
- if (value === 'true') {
2220
- color = true;
2221
- }
2222
- else if (value === 'false') {
2223
- color = false;
2224
- }
2225
- else {
2226
- throw new CommanderError('InvalidBooleanValue', `invalid value "${value}" for boolean option "--color". Use "true" or "false"`, this.#getCommandPath());
2799
+ return { cleanArgv, presetFile, presetProfile };
2800
+ }
2801
+ function buildPresetSources(params) {
2802
+ const { userCmds, userArgv, userEnvs, presetArgv, presetEnvs, presetMeta } = params;
2803
+ const presetSourceMeta = presetMeta === undefined
2804
+ ? undefined
2805
+ : {
2806
+ applied: true,
2807
+ file: presetMeta.file,
2808
+ profile: presetMeta.profile,
2809
+ variant: presetMeta.variant,
2810
+ };
2811
+ const presetState = presetSourceMeta === undefined ? 'none' : 'applied';
2812
+ const sources = {
2813
+ user: {
2814
+ cmds: [...userCmds],
2815
+ argv: [...userArgv],
2816
+ envs: { ...userEnvs },
2817
+ },
2818
+ preset: {
2819
+ state: presetState,
2820
+ argv: [...presetArgv],
2821
+ envs: { ...presetEnvs },
2822
+ meta: presetSourceMeta === undefined ? undefined : { ...presetSourceMeta },
2823
+ },
2824
+ };
2825
+ const envs = { ...sources.user.envs, ...sources.preset.envs };
2826
+ const tailArgv = [...sources.preset.argv, ...sources.user.argv];
2827
+ const segments = [
2828
+ ...sources.preset.argv.map(value => ({
2829
+ value,
2830
+ source: 'preset',
2831
+ preset: sources.preset.meta === undefined
2832
+ ? undefined
2833
+ : {
2834
+ file: sources.preset.meta.file,
2835
+ profile: sources.preset.meta.profile,
2836
+ variant: sources.preset.meta.variant,
2837
+ },
2838
+ })),
2839
+ ...sources.user.argv.map(value => ({ value, source: 'user' })),
2840
+ ];
2841
+ return {
2842
+ sources,
2843
+ tailArgv,
2844
+ envs,
2845
+ segments,
2846
+ };
2847
+ }
2848
+ async function resolvePresetStage(params) {
2849
+ const { controlTailArgv, chain, commandPath, presetFileFlag, presetProfileFlag, getPresetConfig, assertPresetProfileSelectorValue, resolvePresetProfile, } = params;
2850
+ const separatorIndex = controlTailArgv.indexOf('--');
2851
+ const beforeSeparator = separatorIndex === -1 ? controlTailArgv : controlTailArgv.slice(0, separatorIndex);
2852
+ const afterSeparator = separatorIndex === -1 ? [] : controlTailArgv.slice(separatorIndex + 1);
2853
+ const profileScanResult = scanPresetDirectives({
2854
+ argv: beforeSeparator,
2855
+ commandPath,
2856
+ presetFileFlag,
2857
+ presetProfileFlag,
2858
+ assertPresetProfileSelectorValue,
2859
+ });
2860
+ const cleanArgv = separatorIndex === -1
2861
+ ? profileScanResult.cleanArgv
2862
+ : [...profileScanResult.cleanArgv, '--', ...afterSeparator];
2863
+ const resolvedCommandPresetConfig = resolvePresetConfigFromChain({
2864
+ chain,
2865
+ getPresetConfig,
2866
+ });
2867
+ const commandPresetFile = resolvedCommandPresetConfig.presetFile;
2868
+ const effectivePresetFile = profileScanResult.presetFile ?? commandPresetFile;
2869
+ const commandPresetProfile = resolvedCommandPresetConfig.presetProfile;
2870
+ const useCommandPresetProfile = profileScanResult.presetProfile === undefined && commandPresetProfile !== undefined;
2871
+ if (useCommandPresetProfile) {
2872
+ assertPresetProfileSelectorValue(commandPresetProfile, 'command.preset.profile', commandPath);
2873
+ }
2874
+ const effectivePresetProfile = profileScanResult.presetProfile ?? commandPresetProfile;
2875
+ const effectivePresetProfileSourceName = profileScanResult.presetProfile !== undefined
2876
+ ? presetProfileFlag
2877
+ : commandPresetProfile !== undefined
2878
+ ? 'command.preset.profile'
2879
+ : undefined;
2880
+ if (effectivePresetFile === undefined && useCommandPresetProfile) {
2881
+ throw new CommanderError('ConfigurationError', 'cannot use "command.preset.profile" without "command.preset.file" or "--preset-file"', commandPath);
2882
+ }
2883
+ const resolvedProfile = await resolvePresetProfile({
2884
+ presetFile: effectivePresetFile,
2885
+ presetProfile: effectivePresetProfile,
2886
+ presetProfileSourceName: effectivePresetProfileSourceName,
2887
+ commandPath,
2888
+ });
2889
+ return { cleanArgv, resolvedProfile };
2890
+ }
2891
+ async function runPresetStage(params) {
2892
+ const { controlTailArgv, chain, commandPath, presetFileFlag, presetProfileFlag, runtime, userCmds, userEnvs, getPresetConfig, assertPresetProfileSelectorValue, resolvePresetProfile, validatePresetOptionTokens, } = params;
2893
+ const { cleanArgv, resolvedProfile } = await resolvePresetStage({
2894
+ controlTailArgv,
2895
+ chain,
2896
+ commandPath,
2897
+ presetFileFlag,
2898
+ presetProfileFlag,
2899
+ getPresetConfig,
2900
+ assertPresetProfileSelectorValue,
2901
+ resolvePresetProfile,
2902
+ });
2903
+ const { presetArgv, presetEnvs } = await buildPresetProfileInputs({
2904
+ runtime,
2905
+ commandPath,
2906
+ resolvedProfile,
2907
+ validatePresetOptionTokens,
2908
+ });
2909
+ const { tailArgv, envs, segments, sources } = buildPresetSources({
2910
+ userCmds,
2911
+ userArgv: cleanArgv,
2912
+ userEnvs,
2913
+ presetArgv,
2914
+ presetEnvs,
2915
+ presetMeta: resolvedProfile?.issueMeta,
2916
+ });
2917
+ return { tailArgv, envs, segments, sources };
2918
+ }
2919
+
2920
+ function findSubcommandEntry(entries, token) {
2921
+ return entries.find(entry => entry.name === token || entry.aliases.includes(token));
2922
+ }
2923
+ function routeCommandChain(params) {
2924
+ const { root, argv, getSubcommandEntries } = params;
2925
+ const chain = [root];
2926
+ const cmds = [];
2927
+ let current = root;
2928
+ let index = 0;
2929
+ while (index < argv.length) {
2930
+ const token = argv[index];
2931
+ if (token.startsWith('-')) {
2932
+ break;
2933
+ }
2934
+ const entry = findSubcommandEntry(getSubcommandEntries(current), token);
2935
+ if (entry === undefined) {
2936
+ break;
2937
+ }
2938
+ current = entry.command;
2939
+ cmds.push(token);
2940
+ chain.push(current);
2941
+ index += 1;
2942
+ }
2943
+ return {
2944
+ chain,
2945
+ cmds,
2946
+ remaining: argv.slice(index),
2947
+ };
2948
+ }
2949
+ function resolveHelpCommand(params) {
2950
+ const { leafCommand, helpTarget, getSubcommandEntries } = params;
2951
+ if (helpTarget === undefined) {
2952
+ return leafCommand;
2953
+ }
2954
+ const entry = findSubcommandEntry(getSubcommandEntries(leafCommand), helpTarget);
2955
+ if (entry === undefined) {
2956
+ return leafCommand;
2957
+ }
2958
+ return entry.command;
2959
+ }
2960
+ function findCommandByPath(params) {
2961
+ const { root, commandPath, getCommandName, getSubcommandEntries } = params;
2962
+ if (!commandPath) {
2963
+ return root;
2964
+ }
2965
+ const segments = commandPath.split(' ').filter(Boolean);
2966
+ if (segments.length === 0) {
2967
+ return root;
2968
+ }
2969
+ let startIndex = 0;
2970
+ const rootName = getCommandName(root);
2971
+ if (rootName !== undefined && segments[0] === rootName) {
2972
+ startIndex = 1;
2973
+ }
2974
+ let current = root;
2975
+ for (const segment of segments.slice(startIndex)) {
2976
+ if (current === undefined) {
2977
+ return undefined;
2978
+ }
2979
+ const entry = findSubcommandEntry(getSubcommandEntries(current), segment);
2980
+ current = entry?.command;
2981
+ }
2982
+ return current;
2983
+ }
2984
+
2985
+ async function runStage(params) {
2986
+ const { leafCommand, actionParams, tailArgv, envs, hasAction, runAction, hasSubcommands, renderHelpForDisplay, print, getCommandPath, } = params;
2987
+ if (hasAction(leafCommand)) {
2988
+ await runAction(leafCommand, actionParams);
2989
+ return;
2990
+ }
2991
+ if (hasSubcommands(leafCommand)) {
2992
+ print(renderHelpForDisplay(leafCommand, {
2993
+ tailArgv,
2994
+ envs,
2995
+ }));
2996
+ return;
2997
+ }
2998
+ throw new CommanderError('ConfigurationError', `no action defined for command "${getCommandPath(leafCommand)}"`, getCommandPath(leafCommand));
2999
+ }
3000
+
3001
+ const LONG_OPTION_REGEX = /^--[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/;
3002
+ const NEGATIVE_OPTION_REGEX = /^--no-[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/;
3003
+ function kebabToCamelCase(str) {
3004
+ return str.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
3005
+ }
3006
+ function tokenizeLongOption(segment, commandPath) {
3007
+ const arg = segment.value;
3008
+ const eqIdx = arg.indexOf('=');
3009
+ const namePart = eqIdx !== -1 ? arg.slice(0, eqIdx) : arg;
3010
+ const valuePart = eqIdx !== -1 ? arg.slice(eqIdx) : '';
3011
+ if (namePart.includes('_')) {
3012
+ throw new CommanderError('InvalidOptionFormat', `invalid option "${arg}": use '-' instead of '_'`, commandPath);
3013
+ }
3014
+ const lowerName = namePart.toLowerCase();
3015
+ if (lowerName === '--no' || lowerName === '--no-') {
3016
+ throw new CommanderError('InvalidNegativeOption', `invalid negative option syntax "${arg}"`, commandPath);
3017
+ }
3018
+ if (lowerName.startsWith('--no-')) {
3019
+ if (valuePart !== '') {
3020
+ throw new CommanderError('NegativeOptionWithValue', `"${namePart}" does not accept a value`, commandPath);
3021
+ }
3022
+ if (!NEGATIVE_OPTION_REGEX.test(lowerName)) {
3023
+ throw new CommanderError('InvalidOptionFormat', `invalid option format "${arg}"`, commandPath);
3024
+ }
3025
+ const camelName = kebabToCamelCase(lowerName.slice(5));
3026
+ return {
3027
+ original: arg,
3028
+ resolved: `--${camelName}=false`,
3029
+ name: camelName,
3030
+ type: 'long',
3031
+ source: segment.source,
3032
+ preset: segment.preset,
3033
+ };
3034
+ }
3035
+ if (!LONG_OPTION_REGEX.test(lowerName)) {
3036
+ throw new CommanderError('InvalidOptionFormat', `invalid option format "${arg}"`, commandPath);
3037
+ }
3038
+ const camelName = kebabToCamelCase(lowerName.slice(2));
3039
+ return {
3040
+ original: arg,
3041
+ resolved: `--${camelName}${valuePart}`,
3042
+ name: camelName,
3043
+ type: 'long',
3044
+ source: segment.source,
3045
+ preset: segment.preset,
3046
+ };
3047
+ }
3048
+ function tokenizeShortOptions(segment, commandPath) {
3049
+ const arg = segment.value;
3050
+ if (arg.includes('=')) {
3051
+ throw new CommanderError('UnsupportedShortSyntax', `"${arg}" is not supported. Use "-${arg[1]} ${arg.slice(3)}" instead`, commandPath);
3052
+ }
3053
+ return arg
3054
+ .slice(1)
3055
+ .split('')
3056
+ .map(flag => ({
3057
+ original: `-${flag}`,
3058
+ resolved: `-${flag}`,
3059
+ name: flag,
3060
+ type: 'short',
3061
+ source: segment.source,
3062
+ preset: segment.preset,
3063
+ }));
3064
+ }
3065
+ function tokenizeArgv(segments, commandPath) {
3066
+ const optionTokens = [];
3067
+ const restArgs = [];
3068
+ let passThrough = false;
3069
+ for (const segment of segments) {
3070
+ const arg = segment.value;
3071
+ if (arg === '--') {
3072
+ passThrough = true;
3073
+ continue;
3074
+ }
3075
+ if (passThrough) {
3076
+ restArgs.push(segment.value);
3077
+ continue;
3078
+ }
3079
+ if (arg.startsWith('--')) {
3080
+ optionTokens.push(tokenizeLongOption(segment, commandPath));
3081
+ continue;
3082
+ }
3083
+ if (arg.startsWith('-') && arg.length > 1) {
3084
+ optionTokens.push(...tokenizeShortOptions(segment, commandPath));
3085
+ continue;
3086
+ }
3087
+ optionTokens.push({
3088
+ original: arg,
3089
+ resolved: arg,
3090
+ name: '',
3091
+ type: 'none',
3092
+ source: segment.source,
3093
+ preset: segment.preset,
3094
+ });
3095
+ }
3096
+ return { optionTokens, restArgs };
3097
+ }
3098
+
3099
+ class Command {
3100
+ #name;
3101
+ #desc;
3102
+ #version;
3103
+ #builtinConfig;
3104
+ #builtin;
3105
+ #presetConfig;
3106
+ #reporter;
3107
+ #runtime;
3108
+ #contextAdapter = new CommandContextAdapter();
3109
+ #diagnostics = new CommandDiagnosticsEngine();
3110
+ #helpRenderer = new CommandHelpRenderer();
3111
+ #optionParser = new CommandOptionParser();
3112
+ #presetProfileParser;
3113
+ #kernel;
3114
+ #parent;
3115
+ #options = [];
3116
+ #arguments = [];
3117
+ #examples = [];
3118
+ #subcommandsList = [];
3119
+ #subcommandsMap = new Map();
3120
+ #action = undefined;
3121
+ constructor(config) {
3122
+ this.#name = config.name ?? '';
3123
+ this.#desc = config.desc;
3124
+ this.#version = config.version;
3125
+ this.#builtinConfig = config.builtin;
3126
+ this.#builtin = normalizeBuiltinConfig(config.builtin);
3127
+ this.#presetConfig = config.preset;
3128
+ this.#reporter = config.reporter;
3129
+ this.#runtime = config.runtime ?? getDefaultCommandRuntime();
3130
+ this.#presetProfileParser = new CommandPresetProfileParser({
3131
+ resolvePresetFileAbsolutePath: (filepath, baseDirectory) => resolvePresetFileAbsolutePath({
3132
+ runtime: this.#runtime,
3133
+ filepath,
3134
+ baseDirectory,
3135
+ }),
3136
+ resolvePath: (...paths) => this.#runtime.resolve(...paths),
3137
+ readPresetFile: async (file, commandPath) => readPresetFile({ runtime: this.#runtime, file, commandPath }),
3138
+ });
3139
+ this.#kernel = new CommandKernel({
3140
+ port: {
3141
+ route: argv => this.#route(argv),
3142
+ createContext: params => this.#createContext(params),
3143
+ controlScan: (tailArgv, leafCommand) => this.#controlScan(tailArgv, leafCommand),
3144
+ controlRun: (leafCommand, controlScanResult) => this.#controlRun(leafCommand, controlScanResult),
3145
+ preset: async (tailArgv, ctx) => this.#preset(tailArgv, ctx),
3146
+ tokenize: (segments, commandPath) => tokenizeArgv(segments, commandPath),
3147
+ getCommandPath: command => command.#getCommandPath(),
3148
+ buildOptionPolicyMap: chain => this.#buildOptionPolicyMap(chain),
3149
+ resolve: (chain, optionTokens, optionPolicyMap) => this.#resolve(chain, optionTokens, optionPolicyMap),
3150
+ parse: (chain, resolveResult, optionPolicyMap, ctx, restArgs) => this.#parse(chain, resolveResult, optionPolicyMap, ctx, restArgs),
3151
+ run: async ({ leafCommand, parseResult, presetResult, ctx }) => runStage({
3152
+ leafCommand,
3153
+ actionParams: this.#contextAdapter.toActionParams(parseResult),
3154
+ tailArgv: presetResult.tailArgv,
3155
+ envs: ctx.envs,
3156
+ hasAction: command => command.#action !== undefined,
3157
+ runAction: async (command, actionParams) => runCommandAction({
3158
+ action: command.#action,
3159
+ actionParams,
3160
+ commandPath: command.#getCommandPath(),
3161
+ }),
3162
+ hasSubcommands: command => command.#subcommandsList.length > 0,
3163
+ renderHelpForDisplay: (command, options) => {
3164
+ const helpColor = command.#resolveHelpColorFromTailArgv(options.tailArgv, options.envs);
3165
+ return command.#formatHelpForDisplay({ color: helpColor });
3166
+ },
3167
+ print: content => {
3168
+ console.log(content);
3169
+ },
3170
+ getCommandPath: command => command.#getCommandPath(),
3171
+ }),
3172
+ issueScopeFromErrorKind: kind => errorKindToIssueScope(kind),
3173
+ },
3174
+ diagnostics: this.#diagnostics,
3175
+ contextAdapter: this.#contextAdapter,
3176
+ });
3177
+ }
3178
+ get name() {
3179
+ return this.#name || undefined;
3180
+ }
3181
+ get description() {
3182
+ return this.#desc;
3183
+ }
3184
+ get version() {
3185
+ return this.#version;
3186
+ }
3187
+ get builtin() {
3188
+ return this.#builtinConfig;
3189
+ }
3190
+ get preset() {
3191
+ return this.#presetConfig === undefined ? undefined : { ...this.#presetConfig };
3192
+ }
3193
+ get parent() {
3194
+ return this.#parent;
3195
+ }
3196
+ get options() {
3197
+ return [...this.#options];
3198
+ }
3199
+ get arguments() {
3200
+ return [...this.#arguments];
3201
+ }
3202
+ get examples() {
3203
+ return this.#examples.map(example => ({ ...example }));
3204
+ }
3205
+ get subcommands() {
3206
+ return new Map(this.#subcommandsMap);
3207
+ }
3208
+ option(opt) {
3209
+ const commandPath = this.#getCommandPath();
3210
+ validateOptionConfig({ opt, commandPath });
3211
+ checkOptionUniqueness({ opt, options: this.#options, commandPath });
3212
+ this.#options.push(opt);
3213
+ return this;
3214
+ }
3215
+ argument(arg) {
3216
+ validateArgumentConfig({
3217
+ arg: arg,
3218
+ arguments_: this.#arguments,
3219
+ commandPath: this.#getCommandPath(),
3220
+ });
3221
+ this.#arguments.push(arg);
3222
+ return this;
3223
+ }
3224
+ action(fn) {
3225
+ this.#action = fn;
3226
+ return this;
3227
+ }
3228
+ example(title, usage, desc) {
3229
+ this.#examples.push(normalizeExample({
3230
+ example: { title, usage, desc },
3231
+ commandPath: this.#getCommandPath(),
3232
+ }));
3233
+ return this;
3234
+ }
3235
+ subcommand(name, cmd) {
3236
+ if (name === 'help') {
3237
+ throw new CommanderError('ConfigurationError', '"help" is a reserved subcommand name', this.#getCommandPath());
3238
+ }
3239
+ if (cmd.#parent && cmd.#parent !== this) {
3240
+ throw new CommanderError('ConfigurationError', `command "${cmd.#name}" already has a parent`, this.#getCommandPath());
3241
+ }
3242
+ const occupied = this.#subcommandsMap.get(name);
3243
+ if (occupied && occupied !== cmd) {
3244
+ throw new CommanderError('ConfigurationError', `subcommand name/alias "${name}" conflicts with an existing command`, this.#getCommandPath());
3245
+ }
3246
+ const existing = this.#subcommandsList.find(e => e.command === cmd);
3247
+ if (existing) {
3248
+ if (existing.name === name || existing.aliases.includes(name)) {
3249
+ return this;
2227
3250
  }
3251
+ existing.aliases.push(name);
3252
+ this.#subcommandsMap.set(name, cmd);
2228
3253
  }
2229
- return color;
3254
+ else {
3255
+ cmd.#name = name;
3256
+ cmd.#parent = this;
3257
+ this.#subcommandsList.push({ name, aliases: [], command: cmd });
3258
+ this.#subcommandsMap.set(name, cmd);
3259
+ }
3260
+ return this;
2230
3261
  }
2231
- #freezeInputSources(sources) {
2232
- return Object.freeze({
2233
- preset: Object.freeze({
2234
- argv: Object.freeze([...sources.preset.argv]),
2235
- envs: Object.freeze({ ...sources.preset.envs }),
3262
+ async run(params) {
3263
+ const outcome = await this.#execute(params, 'run');
3264
+ handleRunOutcome({
3265
+ outcome,
3266
+ argv: params.argv,
3267
+ envs: params.envs,
3268
+ route: argv => this.#route(argv),
3269
+ controlScan: (tailArgv, leafCommand) => this.#controlScan(tailArgv, leafCommand),
3270
+ findCommandByPath: commandPath => this.#findCommandByPath(commandPath),
3271
+ resolveHelpCommand: (leafCommand, helpTarget) => this.#resolveHelpCommand(leafCommand, helpTarget),
3272
+ resolveHelpColor: (command, tailArgv, envs) => command.#resolveHelpColorFromTailArgv(tailArgv, envs),
3273
+ formatHelpForDisplay: (command, color) => command.#formatHelpForDisplay({ color }),
3274
+ print: content => {
3275
+ console.log(content);
3276
+ },
3277
+ printError: content => {
3278
+ console.error(content);
3279
+ },
3280
+ exit: code => this.#exit(code),
3281
+ normalizeControlRunError: error => {
3282
+ const enrichedError = this.#diagnostics.withErrorIssue(error, {
3283
+ stage: 'control-run',
3284
+ scope: 'control',
3285
+ });
3286
+ return this.#diagnostics.normalizeCommanderError(enrichedError, {
3287
+ fallbackStage: 'control-run',
3288
+ fallbackScope: 'control',
3289
+ });
3290
+ },
3291
+ });
3292
+ }
3293
+ #exit(code) {
3294
+ process.exit(code);
3295
+ }
3296
+ async parse(params) {
3297
+ const outcome = await this.#execute(params, 'parse');
3298
+ return unwrapParseOutcome({
3299
+ outcome,
3300
+ commandPath: this.#getCommandPath(),
3301
+ });
3302
+ }
3303
+ async #execute(params, mode) {
3304
+ return this.#kernel.execute(params, mode);
3305
+ }
3306
+ #controlRun(leafCommand, controlScanResult) {
3307
+ return runControl({
3308
+ leafCommand,
3309
+ controlScanResult,
3310
+ resolveHelpCommand: (leaf, helpTarget) => this.#resolveHelpCommand(leaf, helpTarget),
3311
+ getCommandPath: command => command.#getCommandPath(),
3312
+ getCommandVersion: command => command.#version,
3313
+ });
3314
+ }
3315
+ #findCommandByPath(commandPath) {
3316
+ return findCommandByPath({
3317
+ root: this,
3318
+ commandPath,
3319
+ getCommandName: command => command.#name || undefined,
3320
+ getSubcommandEntries: command => command.#subcommandsList,
3321
+ });
3322
+ }
3323
+ formatHelp() {
3324
+ return this.#helpRenderer.formatHelp(this.#buildHelpData());
3325
+ }
3326
+ #formatHelpForDisplay(params = {}) {
3327
+ const { color = true } = params;
3328
+ return this.#helpRenderer.formatHelpForDisplay(this.#buildHelpData(), color);
3329
+ }
3330
+ #buildHelpData() {
3331
+ const subcommands = buildHelpSubcommands({
3332
+ entries: this.#subcommandsList,
3333
+ getDescription: command => command.#desc,
3334
+ });
3335
+ return this.#helpRenderer.buildHelpData({
3336
+ desc: this.#desc,
3337
+ commandPath: this.#getCommandPath(),
3338
+ arguments: this.#arguments,
3339
+ options: this.#resolveOptionPolicy().mergedOptions,
3340
+ supportsBuiltinVersion: this.#supportsBuiltinVersion(),
3341
+ subcommands,
3342
+ examples: this.#examples,
3343
+ builtinHelpOption: BUILTIN_HELP_OPTION,
3344
+ builtinVersionOption: BUILTIN_VERSION_OPTION,
3345
+ });
3346
+ }
3347
+ getCompletionMeta() {
3348
+ return buildCompletionMeta({
3349
+ name: this.#name,
3350
+ desc: this.#desc,
3351
+ mergedOptions: this.#resolveOptionPolicy().mergedOptions,
3352
+ arguments_: this.#arguments,
3353
+ supportsBuiltinVersion: this.#supportsBuiltinVersion(),
3354
+ builtinHelpOption: BUILTIN_HELP_OPTION,
3355
+ builtinVersionOption: BUILTIN_VERSION_OPTION,
3356
+ subcommands: this.#subcommandsList,
3357
+ resolveSubcommandMeta: command => command.getCompletionMeta(),
3358
+ });
3359
+ }
3360
+ #route(argv) {
3361
+ return routeCommandChain({
3362
+ root: this,
3363
+ argv,
3364
+ getSubcommandEntries: command => command.#subcommandsList,
3365
+ });
3366
+ }
3367
+ #controlScan(tailArgv, leafCommand) {
3368
+ return scanControl({
3369
+ tailArgv,
3370
+ supportsBuiltinVersion: leafCommand.#supportsBuiltinVersion(),
3371
+ });
3372
+ }
3373
+ #createContext(params) {
3374
+ const { chain, cmds, envs, reporter: reporter$1 } = params;
3375
+ const leafCommand = chain[chain.length - 1];
3376
+ return createCommandContext({
3377
+ leafCommand,
3378
+ chain,
3379
+ cmds,
3380
+ envs,
3381
+ reporter: reporter$1 ?? this.#reporter ?? new reporter.Reporter(),
3382
+ });
3383
+ }
3384
+ #resolveHelpCommand(leafCommand, helpTarget) {
3385
+ return resolveHelpCommand({
3386
+ leafCommand,
3387
+ helpTarget,
3388
+ getSubcommandEntries: command => command.#subcommandsList,
3389
+ });
3390
+ }
3391
+ async #preset(controlTailArgv, ctx) {
3392
+ const commandPath = ctx.chain[ctx.chain.length - 1].#getCommandPath();
3393
+ return runPresetStage({
3394
+ controlTailArgv,
3395
+ chain: ctx.chain,
3396
+ commandPath,
3397
+ presetFileFlag: PRESET_FILE_FLAG,
3398
+ presetProfileFlag: PRESET_PROFILE_FLAG,
3399
+ runtime: this.#runtime,
3400
+ userCmds: ctx.sources.user.cmds,
3401
+ userEnvs: ctx.sources.user.envs,
3402
+ getPresetConfig: command => command.#presetConfig,
3403
+ assertPresetProfileSelectorValue: (value, sourceName, path) => this.#presetProfileParser.assertPresetProfileSelectorValue(value, sourceName, path),
3404
+ resolvePresetProfile: params => this.#presetProfileParser.resolvePresetProfile(params),
3405
+ validatePresetOptionTokens: (tokens, filepath, path) => this.#presetProfileParser.validatePresetOptionTokens(tokens, filepath, path),
3406
+ });
3407
+ }
3408
+ #resolve(chain, tokens, optionPolicyMap) {
3409
+ return resolveStage({
3410
+ chain,
3411
+ tokens,
3412
+ optionPolicyMap,
3413
+ mustGetOptionPolicy: (map, command) => this.#mustGetOptionPolicy(map, command),
3414
+ getLocalOptions: command => command.#options,
3415
+ getCommandPath: command => command.#getCommandPath(),
3416
+ withUnknownOptionIssue: (error, token) => this.#diagnostics.withErrorIssue(error, {
3417
+ stage: 'resolve',
3418
+ scope: 'option',
3419
+ token,
3420
+ }),
3421
+ });
3422
+ }
3423
+ #parse(chain, resolveResult, optionPolicyMap, ctx, restArgs) {
3424
+ return parseStage({
3425
+ chain,
3426
+ resolveResult,
3427
+ optionPolicyMap,
3428
+ ctx,
3429
+ restArgs,
3430
+ rootCommandPath: this.#getCommandPath(),
3431
+ mustGetOptionPolicy: (map, command) => this.#mustGetOptionPolicy(map, command),
3432
+ parseOptions: ({ command, tokens, allOptions, envs, commandPath }) => command.#optionParser.parseOptions({
3433
+ tokens,
3434
+ allOptions,
3435
+ envs,
3436
+ commandPath,
2236
3437
  }),
2237
- user: Object.freeze({
2238
- cmds: Object.freeze([...sources.user.cmds]),
2239
- argv: Object.freeze([...sources.user.argv]),
2240
- envs: Object.freeze({ ...sources.user.envs }),
3438
+ applyBuiltinDevmodeLogLevel: ({ command, opts, explicitOptionLongs }) => {
3439
+ command.#optionParser.applyBuiltinDevmodeLogLevel({
3440
+ opts,
3441
+ explicitOptionLongs,
3442
+ builtinOption: command.#builtin.option,
3443
+ hasUserOption: long => command.#hasUserOption(long),
3444
+ });
3445
+ },
3446
+ resolveBuiltinParsedOptions: ({ command, opts }) => command.#optionParser.resolveBuiltinParsedOptions({
3447
+ opts,
3448
+ builtinOption: command.#builtin.option,
3449
+ hasUserOption: long => command.#hasUserOption(long),
3450
+ }),
3451
+ applyOptionCallbacks: ({ opts, allOptions, ctx }) => {
3452
+ for (const option of allOptions) {
3453
+ if (option.apply && opts[option.long] !== undefined) {
3454
+ option.apply(opts[option.long], ctx);
3455
+ }
3456
+ }
3457
+ },
3458
+ getLocalOptions: command => command.#options,
3459
+ getSubcommands: command => command.#subcommandsList,
3460
+ getArguments: command => command.#arguments,
3461
+ getCommandPath: command => command.#getCommandPath(),
3462
+ withUnknownSubcommandIssue: error => this.#diagnostics.withErrorIssue(error, {
3463
+ stage: 'parse',
3464
+ scope: 'command',
3465
+ source: { primary: 'user' },
2241
3466
  }),
3467
+ freezeInputSources: sources => this.#freezeInputSources(sources),
2242
3468
  });
2243
3469
  }
3470
+ #hasUserOption(long) {
3471
+ return this.#options.some(option => option.long === long);
3472
+ }
3473
+ #supportsBuiltinVersion() {
3474
+ return this.#version !== undefined && this.#builtin.option.version;
3475
+ }
3476
+ #resolveOptionPolicy() {
3477
+ return resolveOptionPolicy({
3478
+ builtinOption: this.#builtin.option,
3479
+ localOptions: this.#options,
3480
+ });
3481
+ }
3482
+ #buildOptionPolicyMap(chain) {
3483
+ return buildOptionPolicyMap({
3484
+ chain,
3485
+ resolveOptionPolicy: command => command.#resolveOptionPolicy(),
3486
+ });
3487
+ }
3488
+ #mustGetOptionPolicy(optionPolicyMap, cmd) {
3489
+ return mustGetOptionPolicy({
3490
+ optionPolicyMap,
3491
+ command: cmd,
3492
+ resolveOptionPolicy: command => command.#resolveOptionPolicy(),
3493
+ });
3494
+ }
3495
+ #resolveHelpColorFromTailArgv(tailArgv, envs, policy = this.#resolveOptionPolicy()) {
3496
+ return this.#helpRenderer.resolveHelpColorFromTailArgv({
3497
+ tailArgv,
3498
+ envs,
3499
+ options: policy.mergedOptions,
3500
+ commandPath: this.#getCommandPath(),
3501
+ });
3502
+ }
3503
+ #freezeInputSources(sources) {
3504
+ return freezeInputSources(sources);
3505
+ }
2244
3506
  #getCommandPath() {
2245
3507
  const parts = [];
2246
3508
  let current = this;
@@ -3123,6 +4385,5 @@ exports.isIpv4 = isIpv4;
3123
4385
  exports.isIpv6 = isIpv6;
3124
4386
  exports.logColorfulOption = logColorfulOption;
3125
4387
  exports.logDateOption = logDateOption;
3126
- exports.logLevelOption = logLevelOption;
3127
4388
  exports.setDefaultCommandRuntime = setDefaultCommandRuntime;
3128
4389
  exports.silentOption = silentOption;