-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathcli.ts
More file actions
581 lines (552 loc) · 19.9 KB
/
cli.ts
File metadata and controls
581 lines (552 loc) · 19.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
import { parseRawArgs, usage, usageForCommand } from './utils/args.ts';
import { asAppError, AppError, normalizeError } from './utils/errors.ts';
import { printHumanError, printJson } from './utils/output.ts';
import { readVersion } from './utils/version.ts';
import { pathToFileURL } from 'node:url';
import { sendToDaemon } from './daemon-client.ts';
import fs from 'node:fs';
import type { BatchStep } from './client-types.ts';
import {
createAgentDeviceClient,
type AgentDeviceClientConfig,
type AgentDeviceDaemonTransport,
} from './client.ts';
import { materializeRemoteConnectionForCommand } from './cli/commands/connection-runtime.ts';
import { tryRunClientBackedCommand } from './cli/commands/router.ts';
import { runReactDevtoolsCommand } from './cli/commands/react-devtools.ts';
import { readCliBatchStepsJson } from './cli/batch-steps.ts';
import {
createRequestId,
emitDiagnostic,
flushDiagnosticsToSessionFile,
getDiagnosticsMeta,
withDiagnosticsScope,
} from './utils/diagnostics.ts';
import { resolveDaemonPaths } from './daemon/config.ts';
import { applyDefaultPlatformBinding, resolveBindingSettings } from './utils/session-binding.ts';
import { resolveCliOptions } from './utils/cli-options.ts';
import { maybeRunUpgradeNotifier } from './utils/update-check.ts';
import { resolveRemoteConnectionDefaults } from './remote-connection-state.ts';
import { resolveRemoteAuthForCli } from './cli/auth-session.ts';
import type { CliFlags, FlagKey } from './utils/cli-flags.ts';
import type { SessionRuntimeHints } from './contracts.ts';
type CliDeps = {
sendToDaemon: typeof sendToDaemon;
};
const DEFAULT_CLI_DEPS: CliDeps = {
sendToDaemon,
};
const METRO_RUNTIME_OVERRIDE_FLAG_KEYS = new Set<FlagKey>([
'launchUrl',
'metroBearerToken',
'metroKind',
'metroListenHost',
'metroNoInstallDeps',
'metroNoReuseExisting',
'metroPreparePort',
'metroProbeTimeoutMs',
'metroProjectRoot',
'metroProxyBaseUrl',
'metroPublicBaseUrl',
'metroRuntimeFile',
'metroStartupTimeoutMs',
'metroStatusHost',
]);
const REMOTE_MATERIALIZATION_DEFERRED_COMMANDS = new Set([
'connect',
'connection',
'close',
'disconnect',
'metro',
'session',
]);
export async function runCli(argv: string[], deps: CliDeps = DEFAULT_CLI_DEPS): Promise<void> {
const requestId = createRequestId();
const version = readVersion();
const debugEnabled = isDebugRequested(argv);
const jsonRequested = argv.includes('--json');
// Best-effort session guess used only for pre-parse diagnostics scope.
// After parse succeeds, request dispatch uses parsed flags/session resolution.
const sessionGuess = guessSessionFromArgv(argv) ?? process.env.AGENT_DEVICE_SESSION ?? 'default';
await withDiagnosticsScope(
{
session: sessionGuess,
requestId,
command: argv[0],
debug: debugEnabled,
},
async () => {
let parsed: ReturnType<typeof resolveCliOptions>;
try {
parsed = resolveCliOptions(argv, { cwd: process.cwd(), env: process.env });
} catch (error) {
emitDiagnostic({
level: 'error',
phase: 'cli_parse_failed',
data: {
error: error instanceof Error ? error.message : String(error),
},
});
const normalized = normalizeError(error, {
diagnosticId: getDiagnosticsMeta().diagnosticId,
logPath: flushDiagnosticsToSessionFile({ force: true }) ?? undefined,
});
if (jsonRequested) {
printJson({ success: false, error: normalized });
} else {
printHumanError(normalized, { showDetails: debugEnabled });
}
process.exit(1);
return;
}
for (const warning of parsed.warnings) {
process.stderr.write(`Warning: ${warning}\n`);
}
if (parsed.flags.version) {
process.stdout.write(`${version}\n`);
process.exit(0);
}
const isHelpAlias = parsed.command === 'help';
const isHelpFlag = parsed.flags.help;
if (isHelpAlias || isHelpFlag) {
if (isHelpAlias && parsed.positionals.length > 1) {
printHumanError(new AppError('INVALID_ARGS', 'help accepts at most one command.'));
process.exit(1);
}
const helpTarget = isHelpAlias ? parsed.positionals[0] : parsed.command;
if (!helpTarget) {
process.stdout.write(`${usage()}\n`);
process.exit(0);
}
const commandHelp = usageForCommand(helpTarget);
if (commandHelp) {
process.stdout.write(commandHelp);
process.exit(0);
}
printHumanError(new AppError('INVALID_ARGS', `Unknown command: ${helpTarget}`));
process.stdout.write(`${usage()}\n`);
process.exit(1);
}
if (!parsed.command) {
process.stdout.write(`${usage()}\n`);
process.exit(1);
}
const { command, positionals } = parsed;
const debugOutputEnabled = isParsedDebugRequested(command, parsed.providedFlags);
let binding: ReturnType<typeof resolveBindingSettings>;
let flags: typeof parsed.flags;
let daemonPaths: ReturnType<typeof resolveDaemonPaths>;
let sessionName: string;
let connectionDefaults: ReturnType<typeof resolveActiveConnectionDefaults>;
let effectiveFlags: typeof parsed.flags;
const explicitFlagKeys = new Set(parsed.providedFlags.map((entry) => entry.key));
try {
binding = resolveBindingSettings({
policyOverrides: parsed.flags,
configuredPlatform: parsed.flags.platform,
configuredSession: parsed.flags.session,
});
flags = binding.lockPolicy
? { ...parsed.flags }
: applyDefaultPlatformBinding(parsed.flags, {
policyOverrides: parsed.flags,
configuredPlatform: parsed.flags.platform,
configuredSession: parsed.flags.session,
});
daemonPaths = resolveDaemonPaths(flags.stateDir);
sessionName = flags.session ?? 'default';
connectionDefaults = resolveActiveConnectionDefaults({
command,
explicitFlagKeys,
stateDir: daemonPaths.baseDir,
session: sessionName,
remoteConfig: flags.remoteConfig,
hasResolvedSession: flags.session !== undefined,
});
effectiveFlags = connectionDefaults
? mergeConnectionFlags(flags, connectionDefaults.flags, explicitFlagKeys)
: flags;
} catch (err) {
const appErr = asAppError(err);
const normalized = normalizeError(appErr, {
diagnosticId: getDiagnosticsMeta().diagnosticId,
logPath: flushDiagnosticsToSessionFile({ force: true }) ?? undefined,
});
if (parsed.flags.json) {
printJson({ success: false, error: normalized });
} else {
printHumanError(normalized, { showDetails: debugOutputEnabled });
}
process.exit(1);
return;
}
let logTailStopper: (() => void) | null = null;
try {
if (command === 'react-devtools') {
const exitCode = await runReactDevtoolsCommand(positionals, {
flags: effectiveFlags,
stateDir: daemonPaths.baseDir,
session: effectiveFlags.session ?? sessionName,
cwd: process.cwd(),
env: process.env,
});
process.exit(exitCode);
return;
}
maybeRunUpgradeNotifier({
command,
currentVersion: version,
stateDir: daemonPaths.baseDir,
flags: effectiveFlags,
});
let resolvedRuntime = connectionDefaults?.runtime;
const buildClientConfig = (
currentFlags: CliFlags,
runtime: SessionRuntimeHints | undefined,
): AgentDeviceClientConfig => ({
session: currentFlags.session,
requestId,
stateDir: currentFlags.stateDir,
daemonBaseUrl: currentFlags.daemonBaseUrl,
daemonAuthToken: currentFlags.daemonAuthToken,
daemonTransport: currentFlags.daemonTransport,
daemonServerMode: currentFlags.daemonServerMode,
tenant: currentFlags.tenant,
sessionIsolation: currentFlags.sessionIsolation,
runId: currentFlags.runId,
leaseId: currentFlags.leaseId,
leaseBackend: currentFlags.leaseBackend,
runtime,
lockPolicy: binding.lockPolicy,
lockPlatform: binding.defaultPlatform,
cwd: process.cwd(),
debug: debugOutputEnabled,
});
let parsedBatchSteps: BatchStep[] | undefined;
if (command === 'batch') {
if (positionals.length > 0) {
throw new AppError('INVALID_ARGS', 'batch does not accept positional arguments.');
}
parsedBatchSteps = readBatchSteps(flags);
}
if (shouldResolveRemoteAuth(command)) {
const authResolution = await resolveRemoteAuthForCli({
command,
flags: effectiveFlags,
stateDir: daemonPaths.baseDir,
env: process.env,
});
effectiveFlags = authResolution.flags;
}
if (effectiveFlags.remoteConfig && shouldMaterializeRemoteConnection(command)) {
const materializationClient = createAgentDeviceClient(
buildClientConfig(effectiveFlags, resolvedRuntime),
{
transport: deps.sendToDaemon as AgentDeviceDaemonTransport,
},
);
const materialized = await materializeRemoteConnectionForCommand({
command,
flags: effectiveFlags,
client: materializationClient,
runtime: resolvedRuntime,
batchSteps: parsedBatchSteps,
forceRuntimePrepare: hasExplicitMetroRuntimeOverrides(explicitFlagKeys),
});
effectiveFlags = materialized.flags;
resolvedRuntime = materialized.runtime;
}
if (
shouldWarnOpenMayMissRemoteRuntime({
command,
flags: effectiveFlags,
runtime: resolvedRuntime,
explicitFlagKeys,
hadConnectionDefaults: Boolean(connectionDefaults),
})
) {
process.stderr.write(
'Warning: open is using explicit remote daemon or tenant flags without saved Metro runtime hints. React Native apps may launch without bundle/runtime hints; prefer connect --remote-config <path> first or pass --remote-config <path> on this command.\n',
);
}
const remoteDaemonBaseUrl = effectiveFlags.daemonBaseUrl;
logTailStopper =
debugOutputEnabled && !effectiveFlags.json && !remoteDaemonBaseUrl
? startDaemonLogTail(daemonPaths.logPath)
: null;
const client = createAgentDeviceClient(buildClientConfig(effectiveFlags, resolvedRuntime), {
transport: createCliDaemonTransport({
command,
flags: effectiveFlags,
transport: deps.sendToDaemon as AgentDeviceDaemonTransport,
}),
});
if (command === 'batch') {
if (!parsedBatchSteps) {
throw new AppError('INVALID_ARGS', 'batch requires --steps or --steps-file.');
}
const batchSteps = parsedBatchSteps.map((step, _index) => ({
...step,
input:
binding.lockPolicy && flags.platform === undefined
? { ...step.input }
: applyDefaultPlatformBinding(step.input, {
policyOverrides: effectiveFlags,
configuredPlatform: effectiveFlags.platform,
configuredSession: effectiveFlags.session,
inheritedPlatform: effectiveFlags.platform,
}),
}));
if (
await tryRunClientBackedCommand({
command,
positionals,
flags: { ...effectiveFlags, batchSteps },
client,
})
) {
return;
}
} else if (command === 'runtime') {
throw new AppError(
'INVALID_ARGS',
'runtime command was removed. Use connect --remote-config <path> for remote runs, or metro prepare --remote-config <path> for inspection.',
);
} else if (
await tryRunClientBackedCommand({ command, positionals, flags: effectiveFlags, client })
) {
return;
}
throw new AppError('INVALID_ARGS', `Unknown command: ${command}`);
} catch (err) {
const appErr = asAppError(err);
const normalized = normalizeError(appErr, {
diagnosticId: getDiagnosticsMeta().diagnosticId,
logPath: flushDiagnosticsToSessionFile({ force: true }) ?? undefined,
});
if (command === 'close' && isDaemonStartupFailure(appErr)) {
if (effectiveFlags.json) {
printJson({ success: true, data: { closed: 'session', source: 'no-daemon' } });
}
return;
}
if (effectiveFlags.json) {
printJson({
success: false,
error: normalized,
});
} else {
printHumanError(normalized, { showDetails: debugOutputEnabled });
if (debugOutputEnabled) {
try {
const logPath = daemonPaths.logPath;
if (fs.existsSync(logPath)) {
const content = fs.readFileSync(logPath, 'utf8');
const lines = content.split('\n');
const tail = lines.slice(Math.max(0, lines.length - 200)).join('\n');
if (tail.trim().length > 0) {
process.stderr.write(`\n[daemon log]\n${tail}\n`);
}
}
} catch {}
}
}
if (logTailStopper) logTailStopper();
process.exit(1);
} finally {
if (logTailStopper) logTailStopper();
}
},
);
}
function isDebugRequested(argv: string[]): boolean {
try {
const parsed = parseRawArgs(argv);
return isParsedDebugRequested(parsed.command ?? '', parsed.providedFlags);
} catch {
return argv.includes('--debug') || argv.includes('-v') || argv.includes('--verbose');
}
}
function isParsedDebugRequested(
command: string,
providedFlags: Array<{ key: FlagKey; token: string }>,
): boolean {
return providedFlags.some(
(entry) =>
entry.key === 'verbose' &&
(entry.token === '--debug' || entry.token === '-v' || command !== 'test'),
);
}
function readBatchSteps(flags: ReturnType<typeof resolveCliOptions>['flags']): BatchStep[] {
let raw = '';
if (flags.steps) {
raw = flags.steps;
} else if (flags.stepsFile) {
try {
raw = fs.readFileSync(flags.stepsFile, 'utf8');
} catch (error) {
const message = error instanceof Error ? error.message : String(error);
throw new AppError(
'INVALID_ARGS',
`Failed to read --steps-file ${flags.stepsFile}: ${message}`,
);
}
}
return readCliBatchStepsJson(raw);
}
function isDaemonStartupFailure(error: AppError): boolean {
if (error.code !== 'COMMAND_FAILED') return false;
if (error.details?.kind === 'daemon_startup_failed') return true;
if (!error.message.toLowerCase().includes('failed to start daemon')) return false;
return typeof error.details?.infoPath === 'string' || typeof error.details?.lockPath === 'string';
}
function resolveActiveConnectionDefaults(options: {
command: string;
explicitFlagKeys: Set<FlagKey>;
stateDir: string;
session: string;
remoteConfig?: string;
hasResolvedSession: boolean;
}): {
flags: Partial<CliFlags>;
runtime?: SessionRuntimeHints;
} | null {
if (options.command === 'connect' || options.command === 'connection') return null;
const defaults = resolveRemoteConnectionDefaults({
stateDir: options.stateDir,
session: options.session,
remoteConfig: options.remoteConfig,
cwd: process.cwd(),
env: process.env,
allowActiveFallback:
!options.explicitFlagKeys.has('session') &&
(!options.remoteConfig || options.command === 'disconnect' || !options.hasResolvedSession),
validateRemoteConfigHash: options.command !== 'disconnect',
});
return defaults;
}
function shouldMaterializeRemoteConnection(command: string): boolean {
return !REMOTE_MATERIALIZATION_DEFERRED_COMMANDS.has(command);
}
function shouldResolveRemoteAuth(command: string): boolean {
return command !== 'auth' && command !== 'connection';
}
function shouldWarnOpenMayMissRemoteRuntime(options: {
command: string;
flags: CliFlags;
runtime?: SessionRuntimeHints;
explicitFlagKeys: Set<FlagKey>;
hadConnectionDefaults: boolean;
}): boolean {
if (options.command !== 'open') return false;
if (options.runtime) return false;
if (options.flags.bundleUrl || options.flags.metroHost || options.flags.metroPort) return false;
if (options.flags.remoteConfig) return false;
if (options.hadConnectionDefaults) return false;
return hasExplicitRemoteScopeFlags(options.explicitFlagKeys);
}
function hasExplicitRemoteScopeFlags(explicitFlagKeys: Set<FlagKey>): boolean {
return (
explicitFlagKeys.has('daemonBaseUrl') ||
explicitFlagKeys.has('daemonTransport') ||
explicitFlagKeys.has('tenant') ||
explicitFlagKeys.has('sessionIsolation') ||
explicitFlagKeys.has('runId') ||
explicitFlagKeys.has('leaseId') ||
explicitFlagKeys.has('leaseBackend')
);
}
function mergeConnectionFlags(
flags: CliFlags,
defaults: Partial<CliFlags>,
explicitFlagKeys: Set<FlagKey>,
): CliFlags {
const merged = { ...flags };
for (const [key, value] of Object.entries(defaults) as Array<[FlagKey, unknown]>) {
if (value === undefined) continue;
if (explicitFlagKeys.has(key)) continue;
(merged as Record<string, unknown>)[key] = value;
}
return merged;
}
function hasExplicitMetroRuntimeOverrides(explicitFlagKeys: Set<FlagKey>): boolean {
for (const key of METRO_RUNTIME_OVERRIDE_FLAG_KEYS) {
if (explicitFlagKeys.has(key)) {
return true;
}
}
return false;
}
function createCliDaemonTransport(options: {
command: string;
flags: CliFlags;
transport: AgentDeviceDaemonTransport;
}): AgentDeviceDaemonTransport {
const { command, flags, transport } = options;
if (command !== 'test' || flags.json) return transport;
return async (req) =>
await transport({
...req,
meta: {
...req.meta,
requestProgress: 'replay-test',
},
});
}
function guessSessionFromArgv(argv: string[]): string | null {
for (let i = 0; i < argv.length; i += 1) {
const token = argv[i]!;
if (token.startsWith('--session=')) {
const inline = token.slice('--session='.length).trim();
return inline.length > 0 ? inline : null;
}
if (token === '--session') {
const value = argv[i + 1]?.trim();
if (value && !value.startsWith('-')) return value;
return null;
}
}
return null;
}
const isDirectRun = pathToFileURL(process.argv[1] ?? '').href === import.meta.url;
if (isDirectRun) {
runCli(process.argv.slice(2)).catch((err) => {
const appErr = asAppError(err);
printHumanError(normalizeError(appErr), { showDetails: true });
process.exit(1);
});
}
function startDaemonLogTail(logPath: string): (() => void) | null {
try {
let offset = fs.existsSync(logPath) ? fs.statSync(logPath).size : 0;
let stopped = false;
const interval = setInterval(() => {
if (stopped) return;
if (!fs.existsSync(logPath)) return;
try {
const stats = fs.statSync(logPath);
if (stats.size < offset) offset = 0;
if (stats.size <= offset) return;
const fd = fs.openSync(logPath, 'r');
try {
const buffer = Buffer.alloc(stats.size - offset);
fs.readSync(fd, buffer, 0, buffer.length, offset);
offset = stats.size;
if (buffer.length > 0) {
process.stdout.write(buffer.toString('utf8'));
}
} finally {
fs.closeSync(fd);
}
} catch {
// Best-effort tailing should not crash CLI flow.
}
}, 200);
return () => {
stopped = true;
clearInterval(interval);
};
} catch {
return null;
}
}