-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathios-device-lib.js
More file actions
203 lines (166 loc) · 6.42 KB
/
Copy pathios-device-lib.js
File metadata and controls
203 lines (166 loc) · 6.42 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
const { v4: uuidv4 } = require('uuid');
const EventEmitter = require("events");
const Constants = require("./constants");
const IOSDeviceLibStdioHandler = require("./ios-device-lib-stdio-handler").IOSDeviceLibStdioHandler;
const MethodNames = {
install: "install",
uninstall: "uninstall",
list: "list",
log: "log",
upload: "upload",
download: "download",
read: "read",
delete: "delete",
postNotification: "postNotification",
awaitNotificationResponse: "awaitNotificationResponse",
start: "start",
stop: "stop",
apps: "apps",
connectToPort: "connectToPort"
};
const Events = {
deviceLogData: "deviceLogData"
};
class IOSDeviceLib extends EventEmitter {
constructor(onDeviceFound, onDeviceUpdated, onDeviceLost, options) {
super();
this._options = options || {};
this._iosDeviceLibStdioHandler = new IOSDeviceLibStdioHandler(this._options);
this._iosDeviceLibStdioHandler.startReadingData();
this._iosDeviceLibStdioHandler.on(Constants.DeviceFoundEventName, onDeviceFound);
this._iosDeviceLibStdioHandler.on(Constants.DeviceUpdatedEventName, onDeviceUpdated);
this._iosDeviceLibStdioHandler.on(Constants.DeviceLostEventName, onDeviceLost);
}
install(ipaPath, deviceIdentifiers) {
return deviceIdentifiers.map(di => this._getPromise(MethodNames.install, [ipaPath, [di]]));
}
uninstall(appId, deviceIdentifiers) {
return deviceIdentifiers.map(di => this._getPromise(MethodNames.uninstall, [appId, [di]]));
}
list(listArray) {
return listArray.map(listObject => this._getPromise(MethodNames.list, [listObject]));
}
upload(uploadArray) {
return uploadArray.map(uploadObject => this._getPromise(MethodNames.upload, [uploadObject]));
}
download(downloadArray) {
return downloadArray.map(downloadObject => this._getPromise(MethodNames.download, [downloadObject]));
}
read(readArray) {
return readArray.map(readObject => this._getPromise(MethodNames.read, [readObject]));
}
delete(deleteArray) {
return deleteArray.map(deleteObject => this._getPromise(MethodNames.delete, [deleteObject]));
}
postNotification(postNotificationArray) {
return postNotificationArray.map(notificationObject => this._getPromise(MethodNames.postNotification, [notificationObject]));
}
awaitNotificationResponse(awaitNotificationResponseArray) {
return awaitNotificationResponseArray.map(awaitNotificationObject => this._getPromise(MethodNames.awaitNotificationResponse, [awaitNotificationObject]));
}
apps(deviceIdentifiers) {
return deviceIdentifiers.map(di => this._getPromise(MethodNames.apps, [di]));
}
start(startArray) {
return startArray.map(startObject => this._getPromise(MethodNames.start, [startObject]));
}
stop(stopArray) {
return stopArray.map(stopObject => this._getPromise(MethodNames.stop, [stopObject]));
}
startDeviceLog(deviceIdentifiers) {
this._getPromise(MethodNames.log, deviceIdentifiers, { shouldEmit: true, disregardTimeout: true, doNotFailOnDeviceLost: true });
}
connectToPort(connectToPortArray) {
return connectToPortArray.map(connectToPortObject => this._getPromise(MethodNames.connectToPort, [connectToPortObject]));
}
dispose(signal) {
this.removeAllListeners();
this._iosDeviceLibStdioHandler.dispose(signal);
}
_getPromise(methodName, args, options = {}) {
return new Promise((resolve, reject) => {
if (!args || !args.length) {
return reject(new Error("No arguments provided"));
}
let timer = null;
let eventHandler = null;
let deviceLostHandler = null;
const id = uuidv4();
const removeListeners = () => {
if (eventHandler) {
this._iosDeviceLibStdioHandler.removeListener(Constants.DataEventName, eventHandler);
}
if (deviceLostHandler) {
this._iosDeviceLibStdioHandler.removeListener(Constants.DeviceLostEventName, deviceLostHandler);
}
};
// In case device is lost during waiting for operation to complete
// or in case we do not execute operation in the specified timeout
// remove all handlers and reject the promise.
// NOTE: This is not applicable for device logs, where the Promise is not awaited
// Rejecting it results in Unhandled Rejection
const handleMessage = (message) => {
removeListeners();
message.error ? reject(message.error) : resolve(message);
};
const targetDeviceIds = this._getTargetDeviceIds(args);
deviceLostHandler = (device) => {
if (targetDeviceIds.size && !targetDeviceIds.has(device.deviceId)) {
return;
}
let message = `Device ${device.deviceId} lost during operation ${methodName} for message ${id}`;
if (!options.doNotFailOnDeviceLost) {
const error = new Error(message);
error.deviceId = device.deviceId;
message = { error };
}
handleMessage(message);
};
eventHandler = (message) => {
if (message && message.id === id) {
if (timer) {
clearTimeout(timer);
}
delete message.id;
if (options && options.shouldEmit) {
this.emit(Events.deviceLogData, message);
} else {
handleMessage(message);
}
}
};
if (this._options.timeout && !options.disregardTimeout) {
// TODO: Check if we should clear the timers when dispose is called.
timer = setTimeout(() => {
handleMessage({ error: new Error(`Timeout waiting for ${methodName} response from ios-device-lib, message id: ${id}.`) });
}, this._options.timeout);
}
this._iosDeviceLibStdioHandler.on(Constants.DataEventName, eventHandler);
this._iosDeviceLibStdioHandler.on(Constants.DeviceLostEventName, deviceLostHandler);
this._iosDeviceLibStdioHandler.writeData(this._getMessage(id, methodName, args));
});
}
_getMessage(id, name, args) {
return JSON.stringify({ methods: [{ id: id, name: name, args: args }] }) + '\n';
}
// Device identifiers appear in method args either as bare strings (apps, log,
// and the nested array of install/uninstall) or as a deviceId property on an
// operation object. Other strings in args (an IPA path, an app id) are
// collected too; they can never equal a device identifier, so they cannot
// cause a lost-device event to be matched to the wrong operation.
_getTargetDeviceIds(args) {
const deviceIds = new Set();
const collect = (value) => {
if (typeof value === "string") {
deviceIds.add(value);
} else if (Array.isArray(value)) {
value.forEach(collect);
} else if (value && typeof value === "object" && typeof value.deviceId === "string") {
deviceIds.add(value.deviceId);
}
};
collect(args);
return deviceIds;
}
}
exports.IOSDeviceLib = IOSDeviceLib;