forked from p5-serial/p5.serialserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p5.serialserver.js
267 lines (213 loc) · 6.31 KB
/
p5.serialserver.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
/*
p5.serialserver.js
*/
var SerialPort = require("serialport");
var LOGGING = false;
var wss = null;
var serialPort = null;
var serialPortName = "";
var clients = [];
var logit = function(mess) {
if (LOGGING) {
console.log(mess);
}
};
var start = function () {
logit("start()");
var SERVER_PORT = 8081;
var WebSocketServer = require('ws').Server;
wss = new WebSocketServer({perMessageDeflate: false, port: SERVER_PORT});
var openSerial = function(serialport, serialoptions) {
logit("openSerial: " + serialport);
if (serialPort == null || serialPort.isOpen() == false) {
logit("serialPort == null || !serialPort.isOpen()");
serialPortName = serialport;
if (!serialoptions.hasOwnProperty('autoOpen')) {
serialoptions.autoOpen = false;
}
serialPort = new SerialPort(serialport, serialoptions,
function(err) {
if (err) {
console.log(err);
sendit({method:'error', data: err});
}
}
);
serialPort.on('data', function(incoming) {
//{"type":"Buffer","data":[10]}
for (var i = 0; i < incoming.length; i++) {
sendit({method:'data',data:incoming[i]});
}
});
serialPort.on('close', function(data) {
logit("serialPort.on close");
sendit({method: 'close', data:data});
});
serialPort.on('error', function(data) {
logit("serialPort.on error " + data, true);
sendit({method: 'error', data:data});
});
serialPort.open(function (err) {
logit("serialPort.open");
if ( err ) {
console.log(err);
sendit({method:'error', data:"Couldn't open port: " + serialport});
} else {
sendit({method:'openserial',data:{}});
}
});
} else {
if (serialport == serialPortName) {
sendit({method:'error', data:"Already open"});
logit("serialPort is already open");
sendit({method:'openserial',data:{}});
} else {
// Trying to open a second port
sendit({method:'error', data:"Unsupported operation, "+serialPortName+" is already open. You will receive data from that port."});
logit("Unsupported operation, "+serialPortName+" is already open.");
}
}
};
var closeSerial = function() {
logit("closeSerial");
if (serialPort != null && serialPort.isOpen()) {
logit("serialPort != null && serialPort.isOpen so close");
logit("serialPort.flush, drain, close");
serialPort.flush();
serialPort.drain();
serialPort.close(
function(error) {
if (error) {
sendit({method:'error', data:error});
console.log(error);
}
}
);
serialPort = null;
}
// Let's try to close a different way
if (serialPort != null && serialPort.isOpen()) {
logit("serialPort != null && serialPort.isOpen() is true so serialPort = null");
serialPort = null;
}
};
var sendit = function(toSend) {
var dataToSend = JSON.stringify(toSend);
for (var c = 0; c < clients.length; c++) {
try {
clients[c].send(dataToSend);
} catch (error) {
console.log("Error sending: ", error);
}
}
};
wss.on("connection", (ws) => {
// Push the connection into the array of clients
clients.push(ws);
// Create an object to hold information about the connection
ws.clientData = {
origin: ws.upgradeReq.headers['origin'],
id: ws.upgradeReq.headers['sec-websocket-key']
}
sendit({method: 'registerClient', data: ws.clientData})
SerialPort.list(function (err, ports) {
var portNames = [];
ports.forEach(function(port) {
portNames.push(port.comName);
});
sendit({method: 'list', data: portNames});
});
ws.on('message', function(inmessage) {
var message = JSON.parse(inmessage);
if (typeof message !== "undefined" && typeof message.method !== "undefined" && typeof message.data !== "undefined") {
if (message.method === "echo") {
sendit({method:'echo', data:message.data});
} else if (message.method === "registerClient") {
for (var c = 0; c < clients.length; c++) {
sendit({method: 'registerClient', data: clients[c].clientData})
}
} else if (message.method === "list") {
SerialPort.list(function (err, ports) {
var portNames = [];
ports.forEach(function(port) {
portNames.push(port.comName);
});
sendit({method:'list', data:portNames});
});
} else if (message.method === "openserial") {
logit("message.method === openserial");
// Open up
if (typeof message.data.serialport === 'string') {
logit("new SerialPort.SerialPort");
openSerial(message.data.serialport, message.data.serialoptions);
} else {
logit("User didn't specify a port to open");
sendit({method: 'error', data:"You must specify a serial port to open"});
}
} else if (message.method === "write") {
serialPort.write(message.data);
} else if (message.method === "close") {
logit("message.method === close");
closeSerial();
}
}
else {
console.log("Not a message I understand: " + JSON.stringify(message));
}
});
ws.on('close', function() {
logit("ws.on close - client left");
for (var c = 0; c < clients.length; c++) {
if (clients[c] === ws) {
logit("removing client from array");
clients.splice(c,1);
logit(clients.length + " clients left");
break;
}
}
if (clients.length == 0) {
logit("clients.length == 0 checking to see if we should close serial port")
// Should close serial port
closeSerial();
}
});
});
};
var stop = function() {
logit("stop()");
if (serialPort != null && serialPort.isOpen()) {
logit("serialPort != null && serialPort.isOpen() is true");
logit("serialPort.flush, drain, close");
serialPort.flush();
serialPort.drain();
serialPort.close(
function(error) {
if (error) {
console.log("Close Error: " + error);
}
}
);
}
try {
for (var c = 0; c < clients.length; c++) {
if (clients[c] != null) {
logit("clients[" + c + "] != null, close");
clients[c].close();
}
}
} catch (e) {
console.log("Error Closing: " + e);
}
if (wss != null) {
logit("wss != null so wss.close()");
wss.close();
}
// Let's try to close a different way
if (serialPort != null && serialPort.isOpen()) {
logit("serialPort != null && serialPort.isOpen() is true so serialPort = null");
serialPort = null;
}
}
module.exports.start = start;
module.exports.stop = stop;
//start();