-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathandroid-debug-service.ts
202 lines (155 loc) · 7.76 KB
/
android-debug-service.ts
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
import { sleep } from "../common/helpers";
import { ChildProcess } from "child_process";
import { DebugServiceBase } from "./debug-service-base";
class AndroidDebugService extends DebugServiceBase implements IPlatformDebugService {
private _device: Mobile.IAndroidDevice = null;
private _debuggerClientProcess: ChildProcess;
public get platform() {
return "android";
}
private get device(): Mobile.IAndroidDevice {
return this._device;
}
private set device(newDevice) {
this._device = newDevice;
}
constructor(private $devicesService: Mobile.IDevicesService,
private $errors: IErrors,
private $logger: ILogger,
private $config: IConfiguration,
private $androidDeviceDiscovery: Mobile.IDeviceDiscovery,
private $androidProcessService: Mobile.IAndroidProcessService,
private $net: INet) {
super();
}
public async debug(debugData: IDebugData, debugOptions: IDebugOptions): Promise<string[]> {
return debugOptions.emulator
? this.debugOnEmulator(debugData, debugOptions)
: this.debugOnDevice(debugData, debugOptions);
}
public async debugStart(debugData: IDebugData, debugOptions: IDebugOptions): Promise<void> {
await this.$devicesService.initialize({ platform: this.platform, deviceId: debugData.deviceIdentifier });
let action = (device: Mobile.IAndroidDevice): Promise<void> => {
this.device = device;
return this.debugStartCore(debugData.applicationIdentifier, debugOptions);
};
await this.$devicesService.execute(action, this.getCanExecuteAction(debugData.deviceIdentifier));
}
public async debugStop(): Promise<void> {
this.stopDebuggerClient();
return;
}
private async debugOnEmulator(debugData: IDebugData, debugOptions: IDebugOptions): Promise<string[]> {
// Assure we've detected the emulator as device
// For example in case deployOnEmulator had stated new emulator instance
// we need some time to detect it. Let's force detection.
await this.$androidDeviceDiscovery.startLookingForDevices();
return this.debugOnDevice(debugData, debugOptions);
}
private async getForwardedLocalDebugPortForPackageName(deviceId: string, packageName: string): Promise<number> {
let port = -1;
let forwardsResult = await this.device.adb.executeCommand(["forward", "--list"]);
let unixSocketName = `${packageName}-inspectorServer`;
//matches 123a188909e6czzc tcp:40001 localabstract:org.nativescript.testUnixSockets-debug
let regexp = new RegExp(`(?:${deviceId} tcp:)([\\d]+)(?= localabstract:${unixSocketName})`, "g");
let match = regexp.exec(forwardsResult);
if (match) {
port = parseInt(match[1]);
} else {
port = await this.$net.getAvailablePortInRange(40000);
await this.unixSocketForward(port, `${unixSocketName}`);
}
return port;
}
private async unixSocketForward(local: number, remote: string): Promise<void> {
return this.device.adb.executeCommand(["forward", `tcp:${local}`, `localabstract:${remote}`]);
}
private async debugOnDevice(debugData: IDebugData, debugOptions: IDebugOptions): Promise<string[]> {
let packageFile = "";
if (!debugOptions.start && !debugOptions.emulator) {
packageFile = debugData.pathToAppPackage;
this.$logger.out("Using ", packageFile);
}
await this.$devicesService.initialize({ platform: this.platform, deviceId: debugData.deviceIdentifier });
let action = (device: Mobile.IAndroidDevice): Promise<string> => this.debugCore(device, packageFile, debugData.applicationIdentifier, debugOptions);
const result = await this.$devicesService.execute(action, this.getCanExecuteAction(debugData.deviceIdentifier));
return _.map(result, r => r.result);
}
private async debugCore(device: Mobile.IAndroidDevice, packageFile: string, packageName: string, debugOptions: IDebugOptions): Promise<string> {
this.device = device;
await this.printDebugPort(device.deviceInfo.identifier, packageName);
if (debugOptions.start) {
return await this.attachDebugger(device.deviceInfo.identifier, packageName, debugOptions);
} else if (debugOptions.stop) {
await this.detachDebugger(packageName);
return null;
} else {
await this.startAppWithDebugger(packageFile, packageName, debugOptions);
return await this.attachDebugger(device.deviceInfo.identifier, packageName, debugOptions);
}
}
private async printDebugPort(deviceId: string, packageName: string): Promise<void> {
let port = await this.getForwardedLocalDebugPortForPackageName(deviceId, packageName);
this.$logger.info("device: " + deviceId + " debug port: " + port + "\n");
}
private async attachDebugger(deviceId: string, packageName: string, debugOptions: IDebugOptions): Promise<string> {
if (!(await this.isAppRunning(packageName, deviceId))) {
this.$errors.failWithoutHelp(`The application ${packageName} does not appear to be running on ${deviceId} or is not built with debugging enabled.`);
}
let startDebuggerCommand = ["am", "broadcast", "-a", `\"${packageName}-debug\"`, "--ez", "enable", "true"];
await this.device.adb.executeShellCommand(startDebuggerCommand);
let port = await this.getForwardedLocalDebugPortForPackageName(deviceId, packageName);
return `chrome-devtools://devtools/bundled/inspector.html?experiments=true&ws=localhost:${port}`;
}
private detachDebugger(packageName: string): Promise<void> {
return this.device.adb.executeShellCommand(["am", "broadcast", "-a", `${packageName}-debug`, "--ez", "enable", "false"]);
}
private async startAppWithDebugger(packageFile: string, packageName: string, debugOptions: IDebugOptions): Promise<void> {
if (!debugOptions.emulator && !this.$config.debugLivesync) {
await this.device.applicationManager.uninstallApplication(packageName);
await this.device.applicationManager.installApplication(packageFile);
}
await this.debugStartCore(packageName, debugOptions);
}
private async debugStartCore(packageName: string, debugOptions: IDebugOptions): Promise<void> {
// Arguments passed to executeShellCommand must be in array ([]), but it turned out adb shell "arg with intervals" still works correctly.
// As we need to redirect output of a command on the device, keep using only one argument.
// We could rewrite this with two calls - touch and rm -f , but -f flag is not available on old Android, so rm call will fail when file does not exist.
await this.device.applicationManager.stopApplication(packageName);
if (debugOptions.debugBrk) {
await this.device.adb.executeShellCommand([`cat /dev/null > /data/local/tmp/${packageName}-debugbreak`]);
}
await this.device.adb.executeShellCommand([`cat /dev/null > /data/local/tmp/${packageName}-debugger-started`]);
await this.device.applicationManager.startApplication(packageName);
await this.waitForDebugger(packageName);
}
private async waitForDebugger(packageName: String): Promise<void> {
let waitText: string = `0 /data/local/tmp/${packageName}-debugger-started`;
let maxWait = 12;
let debugerStarted: boolean = false;
while (maxWait > 0 && !debugerStarted) {
let forwardsResult = await this.device.adb.executeShellCommand(["ls", "-s", `/data/local/tmp/${packageName}-debugger-started`]);
maxWait--;
debugerStarted = forwardsResult.indexOf(waitText) === -1;
if (!debugerStarted) {
await sleep(500);
}
}
if (debugerStarted) {
this.$logger.info("# NativeScript Debugger started #");
} else {
this.$logger.warn("# NativeScript Debugger did not start in time #");
}
}
private async isAppRunning(appIdentifier: string, deviceIdentifier: string): Promise<boolean> {
const debuggableApps = await this.$androidProcessService.getDebuggableApps(deviceIdentifier);
return !!_.find(debuggableApps, a => a.appIdentifier === appIdentifier);
}
private stopDebuggerClient(): void {
if (this._debuggerClientProcess) {
this._debuggerClientProcess.kill();
this._debuggerClientProcess = null;
}
}
}
$injector.register("androidDebugService", AndroidDebugService);