-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.js
461 lines (416 loc) · 12.3 KB
/
main.js
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
'use strict';
/*
* Created with @iobroker/create-adapter v1.17.0
*/
const utils = require('@iobroker/adapter-core');
const adb = require('@devicefarmer/adbkit').Adb;
const states = {
connection: {
name: "connection",
common: {
name: "Connection status",
type: 'boolean',
role: 'indicator.connected',
read: true,
write: false,
def: false
}
},
shell: {
name: "shell",
common: {
name: "Shell command",
type: 'string',
role: 'command',
read: true,
write: true
},
},
result: {
name: "result",
common: {
name: "Command result",
type: 'string',
role: 'text',
read: true,
write: false
},
},
startApp: {
name: "startApp",
common: {
name: "Start an application",
type: 'string',
role: 'text',
read: true,
write: true,
desc: "Start an application. Specify the component name with package name prefix to create an explicit intent, such as com.example.app/.ExampleActivity."
},
},
stopApp: {
name: "stopApp",
common: {
name: "Stop an application",
type: 'string',
role: 'text',
read: true,
write: true,
desc: "Stop an application. Force stop everything associated with package (the app's package name)."
},
},
reboot: {
name: "reboot",
common: {
name: "Reboots the device",
type: 'boolean',
role: 'button',
read: true,
write: true,
desc: "Reboots the device",
def: false
},
},
screencap: {
name: "screencap",
common: {
name: "Take screenshot",
type: 'boolean',
role: 'button',
read: true,
write: true,
desc: "Takes a screenshot in PNG format",
def: false
},
}
};
class Adb extends utils.Adapter {
/**
* @param {Partial<ioBroker.AdapterOptions>} [options={}]
*/
constructor(options) {
// @ts-ignore
super({
...options,
name: 'adb',
});
this.on('ready', this.onReady.bind(this));
this.on('stateChange', this.onStateChange.bind(this));
// this.on('message', this.onMessage.bind(this));
this.on('unload', this.onUnload.bind(this));
this.devices = new Array();
}
/**
* Is called when databases are connected and adapter received configuration.
*/
async onReady() {
this.setState('info.connection', false, true);
this.client = adb.createClient({ host: this.config.adbHostOption, port: this.config.adbPortOption });
this.restoreDevices();
await this.trackDevices();
this.connectAllDevices();
this.subscribeStates('*');
}
/**
* Is called when adapter shuts down - callback has to be called under any circumstances!
* @param {() => void} callback
*/
onUnload(callback) {
try {
this.log.info('cleaned everything up...');
for (let i in this.devices) {
this.devices[i].close();
delete this.devices[i];
}
callback();
} catch (e) {
callback();
}
}
/**
* Is called if a subscribed state changes
* @param {string} id
* @param {ioBroker.State | null | undefined} state
*/
async onStateChange(id, state) {
if (!state || state.ack === true) return;
const path = id.split(".");
const name = path.pop();
const objectId = path.pop();
const androidDevice = this.getAndroidDeviceByObject(this.devices, objectId);
if (!androidDevice) return;
const strValue = String(state.val);
if (name == states.shell.name) {
await androidDevice.shell(strValue);
}
else if (name == states.startApp.name) {
await androidDevice.startApp(strValue);
}
else if (name == states.stopApp.name) {
await androidDevice.stopApp(strValue);
}
else if (name == states.reboot.name) {
await androidDevice.reboot();
}
else if (name == states.screencap.name) {
await androidDevice.screencap();
}
}
async trackDevices() {
try {
var tracker = await this.client.trackDevices();
this.setState('info.connection', true, true);
tracker.on('add', async function (device) {
this.log.info('Device ' + device.id + " was plugged");
const androidDevice = this.getAndroidDeviceById(this.devices, device.id);
if (androidDevice)
androidDevice.onConnected();
}.bind(this));
tracker.on('remove', async function (device) {
this.log.info('Device ' + device.id + " was unplugged");
const androidDevice = this.getAndroidDeviceById(this.devices, device.id);
if (androidDevice)
androidDevice.onDisconnected();
}.bind(this));
tracker.on('end', function () {
this.log.info('Tracking stopped');
}.bind(this));
} catch (err) {
this.log.error('Something went wrong:', err.stack);
}
}
connectAllDevices() {
this.devices.forEach(async (device, valueAgain, set) => {
await device.connect();
});
}
/**
* Restore devices from config
* @private
*/
restoreDevices() {
this.config.devices.forEach((device => {
if (device.enabled) {
const androidDevice = new AndroidDevice(this, this.client, device.ip, device.port, device.name);
this.devices.push(androidDevice);
}
}).bind(this));
}
/**
* @private
*/
getAndroidDeviceById(devices, deviceId) {
return devices.find((val, i, arr) => val.id == deviceId);
}
/**
* @private
* @returns {AndroidDevice|undefined}
*/
getAndroidDeviceByObject(devices, objectId) {
return devices.find((val, i, arr) => val.objectId == objectId);
}
}
class AndroidDevice {
constructor(adapter, client, ip, port, name) {
this.adapter = adapter;
this.client = client;
this.ip = ip;
this.port = port;
this.name = name;
this.id = "";
this.objectId = this.getObjectId(ip + ":" + port);
this.connection = false;
this.createDeviceObject().then();
this.device = undefined;
}
/**
* Connect to device
*/
async connect() {
try {
const id = await this.client.connect(this.ip, this.port);
this.id = id;
this.device = this.client.getDevice(this.id);
this.onConnected();
return true;
}
catch (e) {
this.onDisconnected();
this.setError('Can not connect to ' + this.name + " (" + this.ip + '). ' + e.message);
return false;
}
}
/**
* Try connect to device
* @returns Connection status
*/
async tryConnect() {
if (!this.connection) {
if (!await this.connect()) {
return false;
}
await this.device.waitForDevice();
}
return true;
}
/**
* Close connection to device
*/
close() {
this.client.disconnect(this.ip, this.port, function (err, id) {
if (err) {
this.adapter.log.error("Disconnect error: " + err.message);
}
}.bind(this));
}
/**
* Reboot the device
*/
async reboot() {
if (!(await this.tryConnect())) return;
try {
await this.device.reboot();
}
catch (e) {
this.setError(e.message);
}
}
/**
* Execute shell command
* @param {string} command
*/
async shell(command) {
if (!(await this.tryConnect())) return;
try {
if (command.startsWith("shell")) command = command.substring(5).trim();
if (!command) return;
const shellOut = await this.device.shell(command);
const output = await adb.util.readAll(shellOut);
const result = output.toString().trim();
this.setResult(result);
} catch (e) {
this.setError(e.message);
}
}
/**
* Start an application
* @param {string} component
*/
async startApp(component) {
if (!component) return;
if (component.split("/").length < 2) component += '/.MainActivity';
await this.shell("am start -n " + component.trim());
}
/**
* Stop an application
* @param {string} $package
*/
async stopApp($package) {
if (!$package) return;
await this.shell("am force-stop " + $package.split("/")[0].trim());
}
/**
* Take screenshot
*/
async screencap() {
if (!(await this.tryConnect())) return;
try {
const stream = await this.device.screencap();
let output = await adb.util.readAll(stream);
const pngHeader = [0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a];
let i = 0;
let j = 0;
while (i < output.length) {
if (output[i] == pngHeader[j]) {
j++;
if (j >= pngHeader.length) {
output = output.slice(i - pngHeader.length + 1, output.length);
break;
}
}
else {
j = 0;
}
i++;
}
this.adapter.writeFile(this.adapter.namespace, "/screenshot.png", output, function () {
this.setResult("Screenshot taken");
}.bind(this));
} catch (e) {
this.setError(e.message);
}
}
onConnected() {
this.connection = true;
this.adapter.setState(this.getStateId(states.connection), { val: true, ack: true });
}
onDisconnected() {
this.connection = false;
this.adapter.setState(this.getStateId(states.connection), { val: false, ack: true });
}
/**
* Set result command
* @private
* @param {string} result
*/
setResult(result) {
if (!result || result.length === 0) result = "ok";
this.adapter.setState(this.getStateId(states.result), { val: result, ack: true });
}
/**
* Set error message
* @param {string} error
*/
setError(error) {
if (!error || error.length === 0) return;
this.adapter.log.error(error);
this.adapter.setState(this.getStateId(states.result), { val: "error: " + error, ack: true });
}
/**
* @private
*/
async createDeviceObject() {
const objectId = this.objectId;
await this.adapter.setObjectNotExistsAsync(objectId, {
type: 'device',
common: {
name: this.name || this.id,
type: 'string',
role: 'device',
read: true,
write: false
},
native: {},
});
for (var i in states) {
var state = states[i];
await this.adapter.setObjectNotExistsAsync(objectId + "." + state.name, {
type: 'state',
common: state.common,
native: {},
});
}
}
/**
* @private
*/
getObjectId(deviceId) {
return deviceId.replace(/\./g, '_');
}
/**
* @private
*/
getStateId(state) {
return this.objectId + "." + state.name;
}
}
// @ts-ignore parent is a valid property on module
if (module.parent) {
// Export the constructor in compact mode
/**
* @param {Partial<ioBroker.AdapterOptions>} [options={}]
*/
module.exports = (options) => new Adb(options);
} else {
// otherwise start the instance directly
new Adb();
}