forked from simontaylor81/node-eiscp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eiscp.js
490 lines (407 loc) · 16.8 KB
/
eiscp.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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
/*jslint node:true nomen:true*/
'use strict';
var self, eiscp, send_queue,
net = require('net'),
dgram = require('dgram'),
util = require('util'),
async = require('async'),
events = require('events'),
eiscp_commands = require('./eiscp-commands.json'),
COMMANDS = eiscp_commands.commands,
COMMAND_MAPPINGS = eiscp_commands.command_mappings,
VALUE_MAPPINGS = eiscp_commands.value_mappings,
MODELSETS = eiscp_commands.modelsets,
config = { port: 60128, reconnect: true, reconnect_sleep: 5, modelsets: [], send_delay: 500, verify_commands: true };
module.exports = self = new events.EventEmitter();
self.is_connected = false;
function in_modelsets(set) {
// returns true if set is in modelsets false otherwise
return (config.modelsets.indexOf(set) !== -1);
}
function eiscp_packet(data) {
/*
Wraps command or iscp message in eISCP packet for communicating over Ethernet
type is device type where 1 is receiver and x is for the discovery broadcast
Returns complete eISCP packet as a buffer ready to be sent
*/
var iscp_msg, header;
// Add ISCP header if not already present
if (data.charAt(0) !== '!') { data = '!1' + data; }
// ISCP message
iscp_msg = new Buffer(data + '\x0D\x0a');
// eISCP header
header = new Buffer([
73, 83, 67, 80, // magic
0, 0, 0, 16, // header size
0, 0, 0, 0, // data size
1, // version
0, 0, 0 // reserved
]);
// write data size to eISCP header
header.writeUInt32BE(iscp_msg.length, 8);
return Buffer.concat([header, iscp_msg]);
}
function eiscp_packet_extract(packet) {
/*
Exracts message from eISCP packet
Strip first 18 bytes and last 3 since that's only the header and end characters
*/
return packet.toString('ascii', 18, packet.length - 3);
}
function iscp_to_command(iscp_message) {
/*
Transform a low-level ISCP message to a high-level command
*/
var command = iscp_message.slice(0, 3),
value = iscp_message.slice(3),
result = {};
Object.keys(COMMANDS).forEach(function (zone) {
if (typeof COMMANDS[zone][command] !== 'undefined') {
var zone_cmd = COMMANDS[zone][command];
result.command = zone_cmd.name;
result.zone = zone;
if (typeof zone_cmd.values[value] !== 'undefined') {
result.argument = zone_cmd.values[value].name;
} else if (typeof VALUE_MAPPINGS[zone][command].INTRANGES !== 'undefined' && /^[0-9a-fA-F]+$/.test(value)) {
// It's a range so we need to convert args from hex to decimal
result.argument = parseInt(value, 16);
}
}
});
return result;
}
// TODO: This function is starting to get very big, it should be split up into smaller parts and oranized better
function command_to_iscp(command, args, zone) {
/*
Transform high-level command to a low-level ISCP message
*/
var base, parts, prefix, value, i, len, intranges,
default_zone = 'main';
function parse_command(cmd) {
// Splits and normalizes command into 3 parts: { zone, command, value }
// Split by space, dot, equals and colon
var parts = cmd.toLowerCase().split(/[\s\.=:]/).filter(function (item) { return item !== ''; });
if (parts.length < 2 || parts.length > 3) { return false; }
if (parts.length === 2) { parts.unshift("main"); }
return {
zone: parts[0],
command: parts[1],
value: parts[2]
};
}
function in_intrange(number, range) {
var parts = range.split(',');
number = parseInt(number, 10);
return (parts.length === 2 && number >= parseInt(parts[0], 10) && number <= parseInt(parts[1], 10));
}
// If parts are not explicitly given - parse the command
if (typeof args === 'undefined' && typeof zone === 'undefined') {
parts = parse_command(command);
if(!parts) {
// Error parsing command
self.emit('error', util.format("ERROR (cmd_parse_error) Command and arguments provided could not be parsed (%s)", command));
return;
}
zone = parts.zone;
command = parts.command;
args = parts.value;
}
self.emit('debug', util.format('DEBUG (command_to_iscp) Zone: %s | Command: %s | Argument: %s', zone, command, args));
// Find the command in our database, resolve to internal eISCP command
if (typeof COMMANDS[zone] === 'undefined') {
self.emit('error', util.format("ERROR (zone_not_exist) Zone %s does not exist in command file", zone));
return;
}
if (typeof COMMAND_MAPPINGS[zone][command] === 'undefined') {
self.emit('error', util.format("ERROR (cmd_not_exist) Command %s does not exist in zone %s", command, zone));
return;
}
prefix = COMMAND_MAPPINGS[zone][command];
if (typeof VALUE_MAPPINGS[zone][prefix][args] === 'undefined') {
if (typeof VALUE_MAPPINGS[zone][prefix].INTRANGES !== 'undefined' && /^[0-9\-+]+$/.test(args)) {
// This command is part of a integer range
intranges = VALUE_MAPPINGS[zone][prefix].INTRANGES;
len = intranges.length;
for (i = 0; i < len; i += 1) {
if (in_modelsets(intranges[i].models) && in_intrange(args, intranges[i].range)) {
// args is an integer and is in the available range for this command
value = args;
}
}
if (typeof value === 'undefined' && config.verify_commands) {
self.emit('error', util.format("ERROR (arg_not_in_range) Command %s=%s is not available on this model", command, args));
return;
} else {
value = args;
}
if (value.indexOf('+') !== -1){ // For range -12 to + 12
// Convert decimal number to hexadecimal since receiver doesn't understand decimal
value = (+value).toString(16).toUpperCase();
value = '+' + value;
} else {
// Convert decimal number to hexadecimal since receiver doesn't understand decimal
value = (+value).toString(16).toUpperCase();
// Pad value if it is not 2 digits
value = (value.length < 2) ? '0' + value : value;
}
} else {
// Not yet supported command
self.emit('error', util.format("ERROR (arg_not_exist) Argument %s does not exist in command %s", args, command));
return;
}
} else {
// Check if the commands modelset is in the receviers modelsets
if (!config.verify_commands || in_modelsets(VALUE_MAPPINGS[zone][prefix][args].models)) {
value = VALUE_MAPPINGS[zone][prefix][args].value;
} else {
self.emit('error', util.format("ERROR (cmd_not_supported) Command %s in zone %s is not supported on this model.", command, zone));
return;
}
}
self.emit('debug', util.format('DEBUG (command_to_iscp) raw command "%s"', prefix + value));
return prefix + value;
}
self.discover = function () {
/*
discover([options, ] callback)
Sends broadcast and waits for response callback called when number of devices or timeout reached
option.devices - stop listening after this amount of devices have answered (default: 1)
option.timeout - time in seconds to wait for devices to respond (default: 10)
option.address - broadcast address to send magic packet to (default: 255.255.255.255)
option.port - receiver port should always be 60128 this is just available if you need it
*/
var callback, timeout_timer,
options = {},
result = [],
client = dgram.createSocket('udp4'),
argv = Array.prototype.slice.call(arguments),
argc = argv.length;
if (argc === 1 && typeof argv[0] === 'function') {
callback = argv[0];
} else if (argc === 2 && typeof argv[1] === 'function') {
options = argv[0];
callback = argv[1];
} else {
return;
}
options.devices = options.devices || 1;
options.timeout = options.timeout || 10;
options.address = options.address || '255.255.255.255';
options.port = options.port || 60128;
function close() {
client.close();
callback(false, result);
}
client
.on('error', function (err) {
self.emit('error', util.format("ERROR (server_error) Server error on %s:%s - %s", options.address, options.port, err));
client.close();
callback(err, null);
})
.on('message', function (packet, rinfo) {
var message = eiscp_packet_extract(packet),
command = message.slice(0, 3),
data;
if (command === 'ECN') {
data = message.slice(3).split('/');
result.push({
host: rinfo.address,
port: data[1],
model: data[0],
mac: data[3].slice(0, 12), // There's lots of null chars after MAC so we slice them off
areacode: data[2]
});
self.emit('debug', util.format("DEBUG (received_discovery) Received discovery packet from %s:%s (%j)", rinfo.address, rinfo.port, result));
if (result.length >= options.devices) {
clearTimeout(timeout_timer);
close();
}
} else {
self.emit('debug', util.format("DEBUG (received_data) Recevied data from %s:%s - %j", rinfo.address, rinfo.port, message));
}
})
.on('listening', function () {
client.setBroadcast(true);
var buffer = eiscp_packet('!xECNQSTN');
self.emit('debug', util.format("DEBUG (sent_discovery) Sent broadcast discovery packet to %s:%s", options.address, options.port));
client.send(buffer, 0, buffer.length, options.port, options.address);
timeout_timer = setTimeout(close, options.timeout * 1000);
})
.bind(0);
};
self.connect = function (options) {
/*
No options required if you only have one receiver on your network. We will find it and connect to it!
options.host - Hostname/IP
options.port - Port (default: 60128)
options.send_delay - Delay in milliseconds between each command sent to receiver (default: 500)
options.model - Should be discovered automatically but if you want to override it you can
options.reconnect - Try to reconnect if connection is lost (default: false)
options.reconnect_sleep - Time in seconds to sleep between reconnection attempts (default: 5)
options.verify_commands - Whether the reject commands not found for the current model
*/
var connection_properties;
options = options || {};
config.host = options.host || config.host;
config.port = options.port || config.port;
config.model = options.model || config.model;
config.reconnect = (options.reconnect === undefined) ? config.reconnect : options.reconnect;
config.reconnect_sleep = options.reconnect_sleep || config.reconnect_sleep;
config.verify_commands = (options.verify_commands === undefined) ? config.verify_commands : options.verify_commands;
connection_properties = {
host: config.host,
port: config.port
};
// If no host is configured - we connect to the first device to answer
if (typeof config.host === 'undefined' || config.host === '') {
self.discover(function (err, hosts) {
if (!err && hosts && hosts.length > 0) {
self.connect(hosts[0]);
}
return;
});
return;
}
// If host is configured but no model is set - we send a discover directly to this receiver
if (typeof config.model === 'undefined' || config.model === '') {
self.discover({address: config.host}, function (err, hosts) {
if (!err && hosts && hosts.length > 0) {
self.connect(hosts[0]);
}
return;
});
return;
}
/*
Compute modelsets for this model (so commands which are possible on this model are allowed)
Note that this is not an exact match, model only has to be part of the modelname
*/
Object.keys(MODELSETS).forEach(function (set) {
MODELSETS[set].forEach(function (models) {
if (models.indexOf(config.model) !== -1) {
config.modelsets.push(set);
}
});
});
self.emit('debug', util.format("INFO (connecting) Connecting to %s:%s (model: %s)", config.host, config.port, config.model));
// Reconnect if we have previously connected
if (typeof eiscp !== 'undefined') {
eiscp.connect(connection_properties);
return;
}
// Connecting the first time
eiscp = net.connect(connection_properties);
eiscp.
on('connect', function () {
self.is_connected = true;
self.emit('debug', util.format("INFO (connected) Connected to %s:%s (model: %s)", config.host, config.port, config.model));
self.emit('connect', config.host, config.port, config.model);
}).
on('close', function () {
self.is_connected = false;
self.emit('debug', util.format("INFO (disconnected) Disconnected from %s:%s", config.host, config.port));
self.emit('close', config.host, config.port);
if (config.reconnect) {
setTimeout(self.connect, config.reconnect_sleep * 1000);
}
}).
on('error', function (err) {
self.emit('error', util.format("ERROR (server_error) Server error on %s:%s - %s", config.host, config.port, err));
eiscp.destroy();
}).
on('data', function (data) {
var iscp_message = eiscp_packet_extract(data),
result = iscp_to_command(iscp_message);
result.iscp_command = iscp_message;
result.host = config.host;
result.port = config.port;
result.model = config.model;
self.emit('debug', util.format("DEBUG (received_data) Received data from %s:%s - %j", config.host, config.port, result));
self.emit('data', result);
// If the command is supported we emit it as well
if (typeof result.command !== 'undefined') {
if (Array.isArray(result.command)) {
result.command.forEach(function (cmd) {
self.emit(cmd, result.argument);
});
} else {
self.emit(result.command, result.argument);
}
}
});
};
self.close = self.disconnect = function () {
if (self.is_connected) {
eiscp.destroy();
}
};
send_queue = async.queue(function (data, callback) {
/*
Syncronous queue which sends commands to device
callback(bool error, string error_message)
*/
if (self.is_connected) {
self.emit('debug', util.format("DEBUG (sent_command) Sent command to %s:%s - %s", config.host, config.port, data));
eiscp.write(eiscp_packet(data));
setTimeout(callback, config.send_delay, false);
return;
}
self.emit('error', util.format("ERROR (send_not_connected) Not connected, can't send data: %j", data));
callback('Send command, while not connected', null);
}, 1);
self.raw = function (data, callback) {
/*
Send a low level command like PWR01
callback only tells you that the command was sent but not that it succsessfully did what you asked
*/
if (typeof data !== 'undefined' && data !== '') {
send_queue.push(data, function (err) {
if (typeof callback === 'function') {
callback(err, null);
}
});
} else if (typeof callback === 'function') {
callback(true, 'No data provided.');
}
};
self.command = function (data, callback) {
/*
Send a high level command like system-power=query
callback only tells you that the command was sent but not that it succsessfully did what you asked
*/
self.raw(command_to_iscp(data), callback);
};
self.get_commands = function (zone, callback) {
/*
Returns all commands in given zone
*/
var result = [];
async.each(Object.keys(COMMAND_MAPPINGS[zone]), function (cmd, cb) {
//console.log(cmd);
result.push(cmd);
cb();
}, function (err) {
callback(err, result);
});
};
self.get_command = function (command, callback) {
/*
Returns all command values in given zone and command
*/
var val, zone,
result = [],
parts = command.split('.');
if (parts.length !== 2) {
zone = 'main';
command = parts[0];
} else {
zone = parts[0];
command = parts[1];
}
async.each(Object.keys(VALUE_MAPPINGS[zone][COMMAND_MAPPINGS[zone][command]]), function (val, cb) {
result.push(val);
cb();
}, function (err) {
callback(err, result);
});
};