forked from yaacov/node-modbus-serial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
571 lines (488 loc) · 17 KB
/
index.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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
'use strict';
/**
* Copyright (c) 2015, Yaacov Zamir <[email protected]>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* Add bit operation functions to Buffer
*/
require('./utils/buffer_bit')();
var crc16 = require('./utils/crc16');
/**
* @fileoverview ModbusRTU module, exports the ModbusRTU class.
* this class makes ModbusRTU calls fun and easy.
*
* Modbus is a serial communications protocol, first used in 1979.
* Modbus is simple and robust, openly published, royalty-free and
* easy to deploy and maintain.
*/
/**
* Parse the data for a Modbus -
* Read Coils (FC=02, 01)
*
* @param {Buffer} data the data buffer to parse.
* @param {Function} next the function to call next.
*/
function _readFC2(data, next) {
var length = data.readUInt8(2);
var contents = [];
for (var i = 0; i < length; i++) {
var reg = data[i + 3];
for (var j = 0; j < 8; j++) {
contents.push((reg & 1) == 1);
reg = reg >> 1;
}
}
if (next)
next(null, {"data": contents, "buffer": data.slice(3, 3 + length)});
}
/**
* Parse the data for a Modbus -
* Read Input Registers (FC=04, 03)
*
* @param {Buffer} data the data buffer to parse.
* @param {Function} next the function to call next.
*/
function _readFC4(data, next) {
var length = data.readUInt8(2);
var contents = [];
for (var i = 0; i < length; i += 2) {
var reg = data.readUInt16BE(i + 3);
contents.push(reg);
}
if (next)
next(null, {"data": contents, "buffer": data.slice(3, 3 + length)});
}
/**
* Parse the data for a Modbus -
* Force Single Coil (FC=05)
*
* @param {Buffer} data the data buffer to parse.
* @param {Function} next the function to call next.
*/
function _readFC5(data, next) {
var dataAddress = data.readUInt16BE(2);
var state = data.readUInt16BE(4);
if (next)
next(null, {"address": dataAddress, "state": (state == 0xff00)});
}
/**
* Parse the data for a Modbus -
* Preset Single Registers (FC=06)
*
* @param {Buffer} data the data buffer to parse.
* @param {Function} next the function to call next.
*/
function _readFC6(data, next) {
var dataAddress = data.readUInt16BE(2);
var value = data.readUInt16BE(4);
if (next)
next(null, {"address": dataAddress, "value": value});
}
/**
* Parse the data for a Modbus -
* Preset Multiple Registers (FC=15, 16)
*
* @param {Buffer} data the data buffer to parse.
* @param {Function} next the function to call next.
*/
function _readFC16(data, next) {
var dataAddress = data.readUInt16BE(2);
var length = data.readUInt16BE(4);
if (next)
next(null, {"address": dataAddress, "length": length});
}
/**
* Class making ModbusRTU calls fun and easy.
*
* @param {SerialPort} port the serial port to use.
*/
var ModbusRTU = function (port) {
// the serial port to use
this._port = port;
// state variables
this._nextAddress = null; // unit address of current function call.
this._nextCode = null; // function code of current function call.
this._nextLength = 0; // number of bytes in current answer.
this._next = null; // the function to call on success or failure
this._unitID = 1;
};
/**
* Open the serial port and register Modbus parsers
*
* @param {Function} callback the function to call next on open success
* of failure.
*/
ModbusRTU.prototype.open = function (callback) {
var modbus = this;
// open the serial port
modbus._port.open(function (error) {
if (error) {
/* On serial port open error
* call next function
*/
if (callback)
callback(error);
} else {
/* On serial port open OK
* call next function
*/
if (callback)
callback(error);
/* On serial port success
* register the modbus parser functions
*/
modbus._port.on('data', function(data) {
// set locale helpers variables
var length = modbus._nextLength;
var next = modbus._next;
/* check incoming data
*/
/* check minimal length
*/
if (data.length < 5) {
error = "Data length error, expected " +
length + " got " + data.length;
if (next)
next(error);
return;
}
/* check message CRC
* if CRC is bad raise an error
*/
var crcIn = data.readUInt16LE(data.length - 2);
if (crcIn != crc16(data.slice(0, -2))) {
error = "CRC error";
if (next)
next(error);
return;
}
// if crc is OK, read address and function code
var address = data.readUInt8(0);
var code = data.readUInt8(1);
/* check for modbus exception
*/
if (data.length == 5 &&
code == (0x80 | modbus._nextCode)) {
error = "Modbus exception " + data.readUInt8(2);
if (next)
next(error);
return;
}
/* check message length
* if we do not expect this data
* raise an error
*/
if (data.length != length) {
error = "Data length error, expected " +
length + " got " + data.length;
if (next)
next(error);
return;
}
/* check message address and code
* if we do not expect this message
* raise an error
*/
if (address != modbus._nextAddress || code != modbus._nextCode) {
error = "Unexpected data error, expected " +
modbus._nextAddress + " got " + address;
if (next)
next(error);
return;
}
// data is OK - clear state variables
modbus._nextAddress = null;
modbus._nextCode = null;
modbus._next = null;
/* parse incoming data
*/
switch (code) {
case 1:
case 2:
// Read Coil Status (FC=01)
// Read Input Status (FC=02)
_readFC2(data, next);
break;
case 3:
case 4:
// Read Input Registers (FC=04)
// Read Holding Registers (FC=03)
_readFC4(data, next);
break;
case 5:
// Force Single Coil
_readFC5(data, next);
break;
case 6:
// Preset Single Register
_readFC6(data, next);
break;
case 15:
case 16:
// Force Multiple Coils
// Preset Multiple Registers
_readFC16(data, next);
break;
}
});
}
});
};
/**
* Write a Modbus "Read Coil Status" (FC=01) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the first coil.
* @param {number} length the total number of coils requested.
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC1 = function (address, dataAddress, length, next) {
this.writeFC2(address, dataAddress, length, next, 1);
};
/**
* Write a Modbus "Read Input Status" (FC=02) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the first digital input.
* @param {number} length the total number of digital inputs requested.
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC2 = function (address, dataAddress, length, next, code) {
// function code defaults to 2
code = code || 2;
// check port is actually open before attempting write
if( this._port.isOpen() === false) {
var error = "Port Not Open";
if (next) next(error);
return;
}
// set state variables
this._nextAddress = address;
this._nextCode = code;
this._nextLength = 3 + parseInt((length - 1) / 8 + 1) + 2;
this._next = next;
var codeLength = 6;
var buf = new Buffer(codeLength + 2); // add 2 crc bytes
buf.writeUInt8(address, 0);
buf.writeUInt8(code, 1);
buf.writeUInt16BE(dataAddress, 2);
buf.writeUInt16BE(length, 4);
// add crc bytes to buffer
buf.writeUInt16LE(crc16(buf.slice(0, -2)), codeLength);
// write buffer to serial port
this._port.write(buf);
};
/**
* Write a Modbus "Read Holding Registers" (FC=03) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the first register.
* @param {number} length the total number of registers requested.
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC3 = function (address, dataAddress, length, next) {
this.writeFC4(address, dataAddress, length, next, 3);
};
/**
* Write a Modbus "Read Input Registers" (FC=04) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the first register.
* @param {number} length the total number of registers requested.
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC4 = function (address, dataAddress, length, next, code) {
// function code defaults to 4
code = code || 4;
// check port is actually open before attempting write
if( this._port.isOpen() === false) {
var error = "Port Not Open";
if (next) next(error);
return;
}
// set state variables
this._nextAddress = address;
this._nextCode = code;
this._nextLength = 3 + 2 * length + 2;
this._next = next;
var codeLength = 6;
var buf = new Buffer(codeLength + 2); // add 2 crc bytes
buf.writeUInt8(address, 0);
buf.writeUInt8(code, 1);
buf.writeUInt16BE(dataAddress, 2);
buf.writeUInt16BE(length, 4);
// add crc bytes to buffer
buf.writeUInt16LE(crc16(buf.slice(0, -2)), codeLength);
// write buffer to serial port
this._port.write(buf);
};
/**
* Write a Modbus "Force Single Coil" (FC=05) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the coil.
* @param {number} state the boolean state to write to the coil (true / false).
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC5 = function (address, dataAddress, state, next) {
var code = 5;
// check port is actually open before attempting write
if( this._port.isOpen() === false) {
var error = "Port Not Open";
if (next) next(error);
return;
}
// set state variables
this._nextAddress = address;
this._nextCode = code;
this._nextLength = 8;
this._next = next;
var codeLength = 6;
var buf = new Buffer(codeLength + 2); // add 2 crc bytes
buf.writeUInt8(address, 0);
buf.writeUInt8(code, 1);
buf.writeUInt16BE(dataAddress, 2);
if (state) {
buf.writeUInt16BE(0xff00, 4);
} else {
buf.writeUInt16BE(0x0000, 4);
}
// add crc bytes to buffer
buf.writeUInt16LE(crc16(buf.slice(0, -2)), codeLength);
// write buffer to serial port
this._port.write(buf);
};
/**
* Write a Modbus "Preset Single Register " (FC=6) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the register.
* @param {number} value the value to write to the register.
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC6 = function (address, dataAddress, value, next) {
var code = 6;
// check port is actually open before attempting write
if( this._port.isOpen() === false) {
var error = "Port Not Open";
if (next) next(error);
return;
}
// set state variables
this._nextAddress = address;
this._nextCode = code;
this._nextLength = 8;
this._next = next;
var codeLength = 6; // 1B deviceAddress + 1B functionCode + 2B dataAddress + 2B value
var buf = new Buffer(codeLength + 2); // add 2 crc bytes
buf.writeUInt8(address, 0);
buf.writeUInt8(code, 1);
buf.writeUInt16BE(dataAddress, 2);
buf.writeUInt16BE(value, 4);
// add crc bytes to buffer
buf.writeUInt16LE(crc16(buf.slice(0, -2)), codeLength);
// write buffer to serial port
this._port.write(buf);
};
/**
* Write a Modbus "Force Multiple Coils" (FC=15) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the first coil.
* @param {Array} array the array of boolean states to write to coils.
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC15 = function (address, dataAddress, array, next) {
var code = 15;
// check port is actually open before attempting write
if( this._port.isOpen() === false) {
var error = "Port Not Open";
if (next) next(error);
return;
}
// set state variables
this._nextAddress = address;
this._nextCode = code;
this._nextLength = 8;
this._next = next;
var dataBytes = Math.ceil(array.length / 8);
var codeLength = 7 + dataBytes;
var buf = new Buffer(codeLength + 2); // add 2 crc bytes
buf.writeUInt8(address, 0);
buf.writeUInt8(code, 1);
buf.writeUInt16BE(dataAddress, 2);
buf.writeUInt16BE(array.length, 4);
buf.writeUInt8(dataBytes, 6);
// clear the data bytes before writing bits data
for (var i = 0; i < dataBytes; i++) {
buf.writeUInt8(0, 7 + i);
}
for (var i = 0; i < array.length; i++) {
// buffer bits are already all zero (0)
// only set the ones set to one (1)
if (array[i]) {
buf.writeBit(1, i, 7);
}
}
// add crc bytes to buffer
buf.writeUInt16LE(crc16(buf.slice(0, -2)), codeLength);
// write buffer to serial port
this._port.write(buf);
};
/**
* Write a Modbus "Preset Multiple Registers" (FC=16) to serial port.
*
* @param {number} address the slave unit address.
* @param {number} dataAddress the Data Address of the first register.
* @param {Array} array the array of values to write to registers.
* @param {Function} next the function to call next.
*/
ModbusRTU.prototype.writeFC16 = function (address, dataAddress, array, next) {
var code = 16;
// check port is actually open before attempting write
if( this._port.isOpen() === false) {
var error = "Port Not Open";
if (next) next(error);
return;
}
// set state variables
this._nextAddress = address;
this._nextCode = code;
this._nextLength = 8;
this._next = next;
var codeLength = 7 + 2 * array.length;
var buf = new Buffer(codeLength + 2); // add 2 crc bytes
buf.writeUInt8(address, 0);
buf.writeUInt8(code, 1);
buf.writeUInt16BE(dataAddress, 2);
buf.writeUInt16BE(array.length, 4);
buf.writeUInt8(array.length * 2, 6);
for (var i = 0; i < array.length; i++) {
buf.writeUInt16BE(array[i], 7 + 2 * i);
}
// add crc bytes to buffer
buf.writeUInt16LE(crc16(buf.slice(0, -2)), codeLength);
// write buffer to serial port
this._port.write(buf);
};
// add the connection shorthand API
require('./apis/connection')(ModbusRTU);
// add the promise API
require('./apis/promise')(ModbusRTU);
// exports
module.exports = ModbusRTU;
module.exports.TestPort = require('./ports/testport');
module.exports.TcpPort = require('./ports/tcpport');
module.exports.TelnetPort = require('./ports/telnetport');
module.exports.C701Port = require('./ports/c701port');