-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathios-debugger-port-service.ts
151 lines (133 loc) · 4.39 KB
/
ios-debugger-port-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
import {
DEBUGGER_PORT_FOUND_EVENT_NAME,
ATTACH_REQUEST_EVENT_NAME,
IOS_APP_CRASH_LOG_REG_EXP,
} from "../common/constants";
import { cache } from "../common/decorators";
import { APPLICATION_RESPONSE_TIMEOUT_SECONDS } from "../constants";
import { IiOSNotification } from "../declarations";
import { IDictionary } from "../common/declarations";
import { injector } from "../common/yok";
export class IOSDebuggerPortService implements IIOSDebuggerPortService {
public static DEBUG_PORT_LOG_REGEX = /NativeScript debugger has opened inspector socket on port (\d+?) for (.*)[.]/;
private mapDebuggerPortData: IDictionary<IIOSDebuggerPortStoredData> = {};
private currentAppId: string;
constructor(
private $logParserService: ILogParserService,
private $iOSNotification: IiOSNotification,
private $devicePlatformsConstants: Mobile.IDevicePlatformsConstants,
private $logger: ILogger
) {}
public async getPort(data: IIOSDebuggerPortInputData): Promise<number> {
return new Promise<number>((resolve, reject) => {
const key = `${data.deviceId}${data.appId}`;
const retryInterval = 500;
let retryCount = Math.max(
(APPLICATION_RESPONSE_TIMEOUT_SECONDS * 1000) / retryInterval,
10
);
const interval = setInterval(() => {
const port = this.getPortByKey(key);
if (port || retryCount === 0) {
clearInterval(interval);
resolve(port);
} else {
if (
this.mapDebuggerPortData[key] &&
this.mapDebuggerPortData[key].error
) {
clearInterval(interval);
reject(this.mapDebuggerPortData[key].error);
} else {
retryCount--;
}
}
}, retryInterval);
});
}
public async attachToDebuggerPortFoundEvent(appId: string): Promise<void> {
this.currentAppId = appId;
this.attachToDebuggerPortFoundEventCore();
this.attachToAttachRequestEvent();
}
@cache()
private attachToDebuggerPortFoundEventCore(): void {
this.$logParserService.addParseRule({
regex: IOSDebuggerPortService.DEBUG_PORT_LOG_REGEX,
handler: this.handlePortFound.bind(this),
name: "debugPort",
platform: this.$devicePlatformsConstants.iOS.toLowerCase(),
});
this.$logParserService.addParseRule({
regex: IOS_APP_CRASH_LOG_REG_EXP,
handler: this.handleAppCrash.bind(this),
name: "appCrash",
platform: this.$devicePlatformsConstants.iOS.toLowerCase(),
});
}
private handleAppCrash(matches: RegExpMatchArray, deviceId: string): void {
const data = {
port: 0,
appId: this.currentAppId,
deviceId,
error: new Error("The application has been terminated."),
};
this.clearTimeout(data);
this.setData(data, { port: data.port, error: data.error });
}
private handlePortFound(matches: RegExpMatchArray, deviceId: string): void {
const data = {
port: parseInt(matches[1]),
appId: matches[2],
deviceId,
};
this.$logger.trace(DEBUGGER_PORT_FOUND_EVENT_NAME, data);
this.clearTimeout(data);
this.setData(data, { port: data.port });
}
@cache()
private attachToAttachRequestEvent(): void {
this.$iOSNotification.on(
ATTACH_REQUEST_EVENT_NAME,
(data: IIOSDebuggerPortData) => {
this.$logger.trace(ATTACH_REQUEST_EVENT_NAME, data);
const timer = setTimeout(() => {
this.clearTimeout(data);
if (!this.getPortByKey(`${data.deviceId}${data.appId}`)) {
this.$logger.warn(
`NativeScript debugger was not able to get inspector socket port on device ${data.deviceId} for application ${data.appId}.`
);
}
}, APPLICATION_RESPONSE_TIMEOUT_SECONDS * 1000);
this.setData(data, { port: null, timer });
}
);
}
private getPortByKey(key: string): number {
if (this.mapDebuggerPortData[key] && this.mapDebuggerPortData[key].port) {
return this.mapDebuggerPortData[key].port;
}
return null;
}
private setData(
data: IIOSDebuggerPortData,
storedData: IIOSDebuggerPortStoredData
): void {
const key = `${data.deviceId}${data.appId}`;
if (!this.mapDebuggerPortData[key]) {
this.mapDebuggerPortData[key] = <any>{};
}
this.mapDebuggerPortData[key].port = storedData.port;
this.mapDebuggerPortData[key].timer = storedData.timer;
this.mapDebuggerPortData[key].error = storedData.error;
}
private clearTimeout(data: IIOSDebuggerPortData): void {
const storedData = this.mapDebuggerPortData[
`${data.deviceId}${data.appId}`
];
if (storedData && storedData.timer) {
clearTimeout(storedData.timer);
}
}
}
injector.register("iOSDebuggerPortService", IOSDebuggerPortService);