forked from garrows/browser-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
423 lines (346 loc) · 9.95 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
'use strict';
var EE = require('events').EventEmitter;
var util = require('util');
var DATABITS = [7, 8];
var STOPBITS = [1, 2];
var PARITY = ['none', 'even', 'mark', 'odd', 'space'];
var FLOWCONTROLS = ['RTSCTS'];
var _options = {
baudrate: 9600,
parity: 'none',
rtscts: false,
databits: 8,
stopbits: 1,
buffersize: 256
};
function convertOptions(options){
switch (options.dataBits) {
case 7:
options.dataBits = 'seven';
break;
case 8:
options.dataBits = 'eight';
break;
}
switch (options.stopBits) {
case 1:
options.stopBits = 'one';
break;
case 2:
options.stopBits = 'two';
break;
}
switch (options.parity) {
case 'none':
options.parity = 'no';
break;
}
return options;
}
function SerialPort(path, options, openImmediately, callback) {
EE.call(this);
var self = this;
var args = Array.prototype.slice.call(arguments);
callback = args.pop();
if (typeof(callback) !== 'function') {
callback = null;
}
options = (typeof options !== 'function') && options || {};
openImmediately = (openImmediately === undefined || openImmediately === null) ? true : openImmediately;
callback = callback || function (err) {
if (err) {
self.emit('error', err);
}
};
var err;
options.baudRate = options.baudRate || options.baudrate || _options.baudrate;
options.dataBits = options.dataBits || options.databits || _options.databits;
if (DATABITS.indexOf(options.dataBits) === -1) {
err = new Error('Invalid "databits": ' + options.dataBits);
callback(err);
return;
}
options.stopBits = options.stopBits || options.stopbits || _options.stopbits;
if (STOPBITS.indexOf(options.stopBits) === -1) {
err = new Error('Invalid "stopbits": ' + options.stopbits);
callback(err);
return;
}
options.parity = options.parity || _options.parity;
if (PARITY.indexOf(options.parity) === -1) {
err = new Error('Invalid "parity": ' + options.parity);
callback(err);
return;
}
if (!path) {
err = new Error('Invalid port specified: ' + path);
callback(err);
return;
}
options.rtscts = _options.rtscts;
if (options.flowControl || options.flowcontrol) {
var fc = options.flowControl || options.flowcontrol;
if (typeof fc === 'boolean') {
options.rtscts = true;
} else {
var clean = fc.every(function (flowControl) {
var fcup = flowControl.toUpperCase();
var idx = FLOWCONTROLS.indexOf(fcup);
if (idx < 0) {
var err = new Error('Invalid "flowControl": ' + fcup + '. Valid options: ' + FLOWCONTROLS.join(', '));
callback(err);
return false;
} else {
// "XON", "XOFF", "XANY", "DTRDTS", "RTSCTS"
switch (idx) {
case 0: options.rtscts = true; break;
}
return true;
}
});
if(!clean){
return;
}
}
}
options.bufferSize = options.bufferSize || options.buffersize || _options.buffersize;
// defaults to chrome.serial if no options.serial passed
// inlined instead of on _options to allow mocking global chrome.serial for optional options test
options.serial = options.serial || (typeof chrome !== 'undefined' && chrome.serial);
if (!options.serial) {
throw new Error('No access to serial ports. Try loading as a Chrome Application.');
}
this.options = convertOptions(options);
this.options.serial.onReceiveError.addListener(function(info){
switch (info.error) {
case 'disconnected':
case 'device_lost':
case 'system_error':
err = new Error('Disconnected');
// send notification of disconnect
if (self.options.disconnectedCallback) {
self.options.disconnectedCallback(err);
} else {
self.emit('disconnect', err);
}
if(self.connectionId >= 0){
self.close();
}
break;
case 'timeout':
break;
}
});
this.path = path;
if (openImmediately) {
process.nextTick(function () {
self.open(callback);
});
}
}
util.inherits(SerialPort, EE);
SerialPort.prototype.connectionId = -1;
SerialPort.prototype.open = function (callback) {
var options = {
bitrate: parseInt(this.options.baudRate, 10),
dataBits: this.options.dataBits,
parityBit: this.options.parity,
stopBits: this.options.stopBits,
ctsFlowControl: this.options.rtscts
};
this.options.serial.connect(this.path, options, this.proxy('onOpen', callback));
};
SerialPort.prototype.onOpen = function (callback, openInfo) {
if(chrome.runtime.lastError){
if(typeof callback === 'function'){
callback(chrome.runtime.lastError);
}else{
this.emit('error', chrome.runtime.lastError);
}
return;
}
this.connectionId = openInfo.connectionId;
if (this.connectionId === -1) {
this.emit('error', new Error('Could not open port.'));
return;
}
this.emit('open', openInfo);
this._reader = this.proxy('onRead');
this.options.serial.onReceive.addListener(this._reader);
if(typeof callback === 'function'){
callback(chrome.runtime.lastError, openInfo);
}
};
SerialPort.prototype.onRead = function (readInfo) {
if (readInfo && this.connectionId === readInfo.connectionId) {
if (this.options.dataCallback) {
this.options.dataCallback(toBuffer(readInfo.data));
} else {
this.emit('data', toBuffer(readInfo.data));
}
}
};
SerialPort.prototype.write = function (buffer, callback) {
if (this.connectionId < 0) {
var err = new Error('Serialport not open.');
if(typeof callback === 'function'){
callback(err);
}else{
this.emit('error', err);
}
return;
}
if (typeof buffer === 'string') {
buffer = str2ab(buffer);
}
//Make sure its not a browserify faux Buffer.
if (buffer instanceof ArrayBuffer === false) {
buffer = buffer2ArrayBuffer(buffer);
}
this.options.serial.send(this.connectionId, buffer, function(info) {
if (typeof callback === 'function') {
callback(chrome.runtime.lastError, info);
}
});
};
SerialPort.prototype.close = function (callback) {
if (this.connectionId < 0) {
var err = new Error('Serialport not open.');
if(typeof callback === 'function'){
callback(err);
}else{
this.emit('error', err);
}
return;
}
this.options.serial.disconnect(this.connectionId, this.proxy('onClose', callback));
};
SerialPort.prototype.onClose = function (callback, result) {
this.connectionId = -1;
this.emit('close');
this.removeAllListeners();
if(this._reader){
this.options.serial.onReceive.removeListener(this._reader);
this._reader = null;
}
if (typeof callback === 'function') {
callback(chrome.runtime.lastError, result);
}
};
SerialPort.prototype.flush = function (callback) {
if (this.connectionId < 0) {
var err = new Error('Serialport not open.');
if(typeof callback === 'function'){
callback(err);
}else{
this.emit('error', err);
}
return;
}
var self = this;
this.options.serial.flush(this.connectionId, function(result) {
if (chrome.runtime.lastError) {
if (typeof callback === 'function') {
callback(chrome.runtime.lastError, result);
} else {
self.emit('error', chrome.runtime.lastError);
}
return;
} else {
callback(null, result);
}
});
};
SerialPort.prototype.drain = function (callback) {
if (this.connectionId < 0) {
var err = new Error('Serialport not open.');
if(typeof callback === 'function'){
callback(err);
}else{
this.emit('error', err);
}
return;
}
if (typeof callback === 'function') {
callback();
}
};
SerialPort.prototype.proxy = function () {
var self = this;
var proxyArgs = [];
//arguments isnt actually an array.
for (var i = 0; i < arguments.length; i++) {
proxyArgs[i] = arguments[i];
}
var functionName = proxyArgs.splice(0, 1)[0];
var func = function() {
var funcArgs = [];
for (var i = 0; i < arguments.length; i++) {
funcArgs[i] = arguments[i];
}
var allArgs = proxyArgs.concat(funcArgs);
self[functionName].apply(self, allArgs);
};
return func;
};
SerialPort.prototype.set = function (options, callback) {
this.options.serial.setControlSignals(this.connectionId, options, function(result){
callback(chrome.runtime.lastError, result);
});
};
SerialPort.prototype.isOpen = function () {
return this.connectionId > -1;
};
function SerialPortList(callback) {
if (typeof chrome != 'undefined' && chrome.serial) {
chrome.serial.getDevices(function(ports) {
var portObjects = new Array(ports.length);
for (var i = 0; i < ports.length; i++) {
portObjects[i] = {
comName: ports[i].path,
manufacturer: ports[i].displayName,
serialNumber: '',
pnpId: '',
locationId:'',
vendorId: '0x' + (ports[i].vendorId||0).toString(16),
productId: '0x' + (ports[i].productId||0).toString(16)
};
}
callback(chrome.runtime.lastError, portObjects);
});
} else {
callback(new Error('No access to serial ports. Try loading as a Chrome Application.'), null);
}
}
// Convert string to ArrayBuffer
function str2ab(str) {
var buf = new ArrayBuffer(str.length);
var bufView = new Uint8Array(buf);
for (var i = 0; i < str.length; i++) {
bufView[i] = str.charCodeAt(i);
}
return buf;
}
// Convert buffer to ArrayBuffer
function buffer2ArrayBuffer(buffer) {
var buf = new ArrayBuffer(buffer.length);
var bufView = new Uint8Array(buf);
for (var i = 0; i < buffer.length; i++) {
bufView[i] = buffer[i];
}
return buf;
}
function toBuffer(ab) {
var buffer = new Buffer(ab.byteLength);
var view = new Uint8Array(ab);
for (var i = 0; i < buffer.length; ++i) {
buffer[i] = view[i];
}
return buffer;
}
module.exports = {
SerialPort: SerialPort,
list: SerialPortList,
buffer2ArrayBuffer: buffer2ArrayBuffer,
used: [] //TODO: Populate this somewhere.
};