-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathcli.ts
More file actions
255 lines (246 loc) · 9.07 KB
/
cli.ts
File metadata and controls
255 lines (246 loc) · 9.07 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
import { parseArgs, usage } 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';
export async function runCli(argv: string[]): Promise<void> {
const parsed = parseArgs(argv);
if (parsed.flags.version) {
process.stdout.write(`${readVersion()}\n`);
process.exit(0);
}
if (parsed.flags.help || !parsed.command) {
process.stdout.write(`${usage()}\n`);
process.exit(parsed.flags.help ? 0 : 1);
}
const { command, positionals, flags } = parsed;
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 sendToDaemon({
session: sessionName,
command: 'session_list',
positionals: [],
flags: {},
});
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 sendToDaemon({
session: sessionName,
command: command!,
positionals,
flags,
});
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') {
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(`Clicked @${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 && typeof app.launchable === 'boolean') {
return `${bundleId} (launchable=${app.launchable})`;
}
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}\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 (flags.json) {
printJson({
success: false,
error: { code: appErr.code, message: appErr.message, details: appErr.details },
});
} else {
printHumanError(appErr);
if (flags.verbose) {
try {
const fs = await import('node:fs');
const os = await import('node:os');
const path = await import('node:path');
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);
}
}
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;
const stats = fs.statSync(logPath);
if (stats.size <= offset) return;
const fd = fs.openSync(logPath, 'r');
const buffer = Buffer.alloc(stats.size - offset);
fs.readSync(fd, buffer, 0, buffer.length, offset);
fs.closeSync(fd);
offset = stats.size;
if (buffer.length > 0) {
process.stdout.write(buffer.toString('utf8'));
}
}, 200);
return () => {
stopped = true;
clearInterval(interval);
};
} catch {
return null;
}
}