-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathandroid-device-debug-service.ts
229 lines (198 loc) · 6.05 KB
/
android-device-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
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
import { sleep } from "../common/helpers";
import { DebugServiceBase } from "./debug-service-base";
import { LiveSyncPaths } from "../common/constants";
import { performanceLog } from "../common/decorators";
import {
IDeviceDebugService,
IDebugData,
IDebugOptions,
IDebugResultInfo,
} from "../definitions/debug";
import { IStaticConfig } from "../declarations";
import { IErrors, INet } from "../common/declarations";
import { ICleanupService } from "../definitions/cleanup-service";
import { injector } from "../common/yok";
import * as _ from "lodash";
export class AndroidDeviceDebugService
extends DebugServiceBase
implements IDeviceDebugService {
private _packageName: string;
private deviceIdentifier: string;
public get platform() {
return "android";
}
constructor(
protected device: Mobile.IAndroidDevice,
protected $devicesService: Mobile.IDevicesService,
protected $cleanupService: ICleanupService,
private $errors: IErrors,
private $logger: ILogger,
private $androidProcessService: Mobile.IAndroidProcessService,
private $staticConfig: IStaticConfig,
private $net: INet,
private $deviceLogProvider: Mobile.IDeviceLogProvider
) {
super(device, $devicesService);
this.deviceIdentifier = device.deviceInfo.identifier;
}
@performanceLog()
public async debug(
debugData: IDebugData,
debugOptions: IDebugOptions
): Promise<IDebugResultInfo> {
this._packageName = debugData.applicationIdentifier;
const result = await this.debugCore(
debugData.applicationIdentifier,
debugOptions
);
// TODO: extract this logic outside the debug service
if (debugOptions.start && !debugOptions.justlaunch) {
const pid = await this.$androidProcessService.getAppProcessId(
this.deviceIdentifier,
debugData.applicationIdentifier
);
if (pid) {
this.$deviceLogProvider.setApplicationPidForDevice(
this.deviceIdentifier,
pid
);
this.$deviceLogProvider.setProjectDirForDevice(
this.device.deviceInfo.identifier,
debugData.projectDir
);
const device = await this.$devicesService.getDevice(
this.deviceIdentifier
);
await device.openDeviceLogStream();
}
}
return result;
}
public debugStop(): Promise<void> {
return this.removePortForwarding();
}
private async removePortForwarding(packageName?: string): Promise<void> {
const port = await this.getForwardedDebugPort(
this.device.deviceInfo.identifier,
packageName || this._packageName
);
return this.device.adb.executeCommand([
"forward",
"--remove",
`tcp:${port}`,
]);
}
// TODO: Remove this method and reuse logic from androidProcessService
private async getForwardedDebugPort(
deviceId: string,
packageName: string
): Promise<number> {
let port = -1;
const forwardsResult = await this.device.adb.executeCommand([
"forward",
"--list",
]);
const unixSocketName = `${packageName}-inspectorServer`;
//matches 123a188909e6czzc tcp:40001 localabstract:org.nativescript.testUnixSockets-debug
const regexp = new RegExp(
`(?:${deviceId} tcp:)([\\d]+)(?= localabstract:${unixSocketName})`,
"g"
);
const match = regexp.exec(forwardsResult);
if (match) {
port = parseInt(match[1]);
} else {
port = await this.$net.getAvailablePortInRange(40000);
await this.unixSocketForward(port, `${unixSocketName}`);
}
await this.$cleanupService.addCleanupCommand({
command: await this.$staticConfig.getAdbFilePath(),
args: ["-s", deviceId, "forward", "--remove", `tcp:${port}`],
});
return port;
}
// TODO: Remove this method and reuse logic from androidProcessService
private async unixSocketForward(
local: number,
remote: string
): Promise<void> {
await this.device.adb.executeCommand([
"forward",
`tcp:${local}`,
`localabstract:${remote}`,
]);
}
@performanceLog()
private async debugCore(
appId: string,
debugOptions: IDebugOptions
): Promise<IDebugResultInfo> {
const result: IDebugResultInfo = { debugUrl: null };
if (debugOptions.stop) {
await this.removePortForwarding();
return result;
}
await this.validateRunningApp(this.deviceIdentifier, appId);
if (debugOptions.debugBrk) {
await this.waitForDebugServer(appId);
}
const debugPort = await this.getForwardedDebugPort(
this.deviceIdentifier,
appId
);
await this.printDebugPort(this.deviceIdentifier, debugPort);
result.debugUrl = this.getChromeDebugUrl(debugOptions, debugPort);
return result;
}
private async printDebugPort(deviceId: string, port: number): Promise<void> {
this.$logger.info("device: " + deviceId + " debug port: " + port + "\n");
}
// TODO: extract this logic outside the debug service
private async validateRunningApp(
deviceId: string,
packageName: string
): Promise<void> {
if (!(await this.isAppRunning(packageName, deviceId))) {
this.$errors.fail(
`The application ${packageName} does not appear to be running on ${deviceId} or is not built with debugging enabled. Try starting the application manually.`
);
}
}
private async waitForDebugServer(appId: String): Promise<void> {
const debuggerStartedFilePath = `${LiveSyncPaths.ANDROID_TMP_DIR_NAME}/${appId}-debugger-started`;
const waitText: string = `0 ${debuggerStartedFilePath}`;
let maxWait = 12;
let debuggerStarted: boolean = false;
while (maxWait > 0 && !debuggerStarted) {
const forwardsResult = await this.device.adb.executeShellCommand([
"ls",
"-s",
debuggerStartedFilePath,
]);
maxWait--;
debuggerStarted = forwardsResult.indexOf(waitText) === -1;
if (!debuggerStarted) {
await sleep(500);
}
}
if (debuggerStarted) {
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);
}
}
injector.register(
"androidDeviceDebugService",
AndroidDeviceDebugService,
false
);