-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathcli.ts
More file actions
305 lines (292 loc) · 10.7 KB
/
cli.ts
File metadata and controls
305 lines (292 loc) · 10.7 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
import { parseArgs, toDaemonFlags, usage, usageForCommand } from './utils/args.ts';
import { asAppError, AppError } from './utils/errors.ts';
import { formatSnapshotText, 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 os from 'node:os';
import path from 'node:path';
type CliDeps = {
sendToDaemon: typeof sendToDaemon;
};
const DEFAULT_CLI_DEPS: CliDeps = {
sendToDaemon,
};
export async function runCli(argv: string[], deps: CliDeps = DEFAULT_CLI_DEPS): Promise<void> {
const parsed = parseArgs(argv);
for (const warning of parsed.warnings) {
process.stderr.write(`Warning: ${warning}\n`);
}
if (parsed.flags.version) {
process.stdout.write(`${readVersion()}\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, flags } = parsed;
const daemonFlags = toDaemonFlags(flags);
const sessionName = flags.session ?? process.env.AGENT_DEVICE_SESSION ?? 'default';
const logTailStopper = flags.verbose && !flags.json ? startDaemonLogTail() : null;
try {
if (command === 'session') {
const sub = positionals[0] ?? 'list';
if (sub !== 'list') {
throw new AppError('INVALID_ARGS', 'session only supports list');
}
const response = await deps.sendToDaemon({
session: sessionName,
command: 'session_list',
positionals: [],
flags: daemonFlags,
});
if (!response.ok) throw new AppError(response.error.code as any, response.error.message);
if (flags.json) printJson({ success: true, data: response.data ?? {} });
else process.stdout.write(`${JSON.stringify(response.data ?? {}, null, 2)}\n`);
if (logTailStopper) logTailStopper();
return;
}
const response = await deps.sendToDaemon({
session: sessionName,
command: command!,
positionals,
flags: daemonFlags,
});
if (response.ok) {
if (flags.json) {
printJson({ success: true, data: response.data ?? {} });
if (logTailStopper) logTailStopper();
return;
}
if (command === 'snapshot') {
process.stdout.write(
formatSnapshotText((response.data ?? {}) as Record<string, unknown>, {
raw: flags.snapshotRaw,
flatten: flags.snapshotInteractiveOnly,
}),
);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'get') {
const sub = positionals[0];
if (sub === 'text') {
const text = (response.data as any)?.text ?? '';
process.stdout.write(`${text}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (sub === 'attrs') {
const node = (response.data as any)?.node ?? {};
process.stdout.write(`${JSON.stringify(node, null, 2)}\n`);
if (logTailStopper) logTailStopper();
return;
}
}
if (command === 'find') {
const data = response.data as any;
if (typeof data?.text === 'string') {
process.stdout.write(`${data.text}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (typeof data?.found === 'boolean') {
process.stdout.write(`Found: ${data.found}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (data?.node) {
process.stdout.write(`${JSON.stringify(data.node, null, 2)}\n`);
if (logTailStopper) logTailStopper();
return;
}
}
if (command === 'is') {
const predicate = (response.data as any)?.predicate ?? 'assertion';
process.stdout.write(`Passed: is ${predicate}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'boot') {
const platform = (response.data as any)?.platform ?? 'unknown';
const device = (response.data as any)?.device ?? (response.data as any)?.id ?? 'unknown';
process.stdout.write(`Boot ready: ${device} (${platform})\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'click' || command === 'press') {
const ref = (response.data as any)?.ref ?? '';
const x = (response.data as any)?.x;
const y = (response.data as any)?.y;
if (ref && typeof x === 'number' && typeof y === 'number') {
process.stdout.write(`Tapped @${ref} (${x}, ${y})\n`);
}
if (logTailStopper) logTailStopper();
return;
}
if (response.data && typeof response.data === 'object') {
const data = response.data as Record<string, unknown>;
if (command === 'devices') {
const devices = Array.isArray((data as any).devices) ? (data as any).devices : [];
const lines = devices.map((d: any) => {
const name = d?.name ?? d?.id ?? 'unknown';
const platform = d?.platform ?? 'unknown';
const kind = d?.kind ? ` ${d.kind}` : '';
const booted = typeof d?.booted === 'boolean' ? ` booted=${d.booted}` : '';
return `${name} (${platform}${kind})${booted}`;
});
process.stdout.write(`${lines.join('\n')}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'apps') {
const apps = Array.isArray((data as any).apps) ? (data as any).apps : [];
const lines = apps.map((app: any) => {
if (typeof app === 'string') return app;
if (app && typeof app === 'object') {
const bundleId = app.bundleId ?? app.package;
const name = app.name ?? app.label;
if (name && bundleId) return `${name} (${bundleId})`;
if (bundleId) return String(bundleId);
return JSON.stringify(app);
}
return String(app);
});
process.stdout.write(`${lines.join('\n')}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'appstate') {
const platform = (data as any)?.platform;
const appBundleId = (data as any)?.appBundleId;
const appName = (data as any)?.appName;
const source = (data as any)?.source;
const pkg = (data as any)?.package;
const activity = (data as any)?.activity;
if (platform === 'ios') {
process.stdout.write(`Foreground app: ${appName ?? appBundleId ?? 'unknown'}\n`);
if (appBundleId) process.stdout.write(`Bundle: ${appBundleId}\n`);
if (source) process.stdout.write(`Source: ${source}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (platform === 'android') {
process.stdout.write(`Foreground app: ${pkg ?? 'unknown'}\n`);
if (activity) process.stdout.write(`Activity: ${activity}\n`);
if (logTailStopper) logTailStopper();
return;
}
}
}
if (logTailStopper) logTailStopper();
return;
}
throw new AppError(response.error.code as any, response.error.message, response.error.details);
} catch (err) {
const appErr = asAppError(err);
if (command === 'close' && isDaemonStartupFailure(appErr)) {
if (flags.json) {
printJson({ success: true, data: { closed: 'session', source: 'no-daemon' } });
}
if (logTailStopper) logTailStopper();
return;
}
if (flags.json) {
printJson({
success: false,
error: { code: appErr.code, message: appErr.message, details: appErr.details },
});
} else {
printHumanError(appErr);
if (flags.verbose) {
try {
const logPath = path.join(os.homedir(), '.agent-device', 'daemon.log');
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 {
// ignore
}
}
}
if (logTailStopper) logTailStopper();
process.exit(1);
}
}
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';
}
const isDirectRun = pathToFileURL(process.argv[1] ?? '').href === import.meta.url;
if (isDirectRun) {
runCli(process.argv.slice(2)).catch((err) => {
const appErr = asAppError(err);
printHumanError(appErr);
process.exit(1);
});
}
function startDaemonLogTail(): (() => void) | null {
try {
const logPath = path.join(os.homedir(), '.agent-device', 'daemon.log');
let offset = 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;
}
}