forked from pvsioweb/pvsio-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpvssocketserver.js
299 lines (278 loc) · 13 KB
/
pvssocketserver.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
#!/usr/bin/env node
/**
Copyright (c) 2012
Patrick Oladimeji
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* This file creates a connection to a pvsio process run locally or at specified host.
* It also creates an express webserver to serve demo applications e.g. the infusion
* pump pvsio demo.
* The websocket connection started by this process listens for 3 commands:
* sendCommand: used to send a pvsio command to the processs
* startProcess: used to start the pvsio process
* getSourceCode: used to get the source code of the pvs code being executed
* @author patrick
* @date 28 Jul 2012 21:52:31
*
*/
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50, es5: true */
/*global define, d3, require, __dirname, process*/
function run() {
"use strict";
var pvsio = require("./pvsprocess"),
ws = require("ws"),
util = require("util"),
http = require("http"),
fs = require("fs"),
express = require("express"),
webserver = express(),
procWrapper = require("./processwrapper"),
uploadDir = "/public/uploads",
host = "0.0.0.0",
port = 8082,
workspace = __dirname + "/public",
pvsioProcessMap = {},//each client should get his own process
httpServer = http.createServer(webserver);
var p, clientid = 0, WebSocketServer = ws.Server;
/**
* Utility function that dispatches responses to websocket clients
* @param {{type:string, data}} token The token to send to the client
* @param {Socket} socket The websocket to use to send the token
*/
function processCallback(tok, socket) {
//called when any data is recieved from pvs process
//if the type of the token is 'processExited' then send message to client if the socket is still open
if (tok.type === 'processExited') {
if (socket.readyState === 1) {
socket.send(JSON.stringify(tok));
}
} else {//send the message normally
socket.send(JSON.stringify(tok));
}
}
/**
* save the file described in request parameter into the uploads directory
* @param {object} token
*/
function saveTempFile(token, cb) {
var fileContent = token.fileContent;
var fileName = token.newFileName;
var oldFileName = token.oldFileName, oldFilePath = __dirname + uploadDir + "/" + oldFileName;
var destName = __dirname + uploadDir + "/" + fileName;
if (fileContent && fileName) {
fs.writeFileSync(destName, fileContent);
} else if (oldFileName && fileName) {
fs.renameSync(oldFilePath, destName);
}
cb({fileName: fileName});
}
/**
* Creates a project
* @param {Request} req
* @param {Response} res
*/
function createProject(opt) {
var uploadSpecPath = __dirname + uploadDir + "/" + opt.uploadedSpecFileName;
var projectName = opt.projectName;
var prototypeImage = opt.prototypeImage;
var uploadImagePath = __dirname + uploadDir + "/" + opt.uploadedImageFileName;
var projectPath = __dirname + "/public/projects/" + projectName;
var newImagePath = projectPath + "/" + opt.clientImageFileName,
newSpecPath = projectPath + "/" + opt.clientSpecFileName;
var obj = {type: "projectCreated"};
try {
if (fs.existsSync(projectPath)) {
obj.err = "Project with the same name exists. Please choose a different name. Old project name was " + projectPath;
} else {
//create a project folder
fs.mkdirSync(projectPath);
fs.renameSync(uploadImagePath, newImagePath);
fs.renameSync(uploadSpecPath, newSpecPath);
obj.image = newImagePath.split("/").slice(-1).reduce(function (a, b) {return a.concat(b); });
obj.projectPath = projectPath;
obj.imageFullPath = newImagePath;
obj.name = projectName;
obj.spec = newSpecPath.split("/").slice(-1).reduce(function (a, b) {return a.concat(b); });
obj.specFullPath = newSpecPath;
util.log("Source code has been saved.");
}
} catch (err) {
obj.err = err;
}
return obj;
}
/**
* Lists all the projects on the server
* @return {Array<string>} A list of project names
*/
function listProjects() {
var imageExts = ["jpg", "jpeg", "png"],
specExts = ["pvs"];
var projectDir = __dirname + "/public/projects/";
var res = fs.readdirSync(projectDir).map(function (d, i) {
var p = {name: d, projectPath: projectDir + d, other: []};
var stat = fs.statSync(projectDir + d);
if (stat.isDirectory()) {
fs.readdirSync(projectDir + d).forEach(function (f) {
stat = fs.statSync(projectDir + d + "/" + f);
if (stat.isFile()) {
var ext = f.indexOf(".") > -1 ? f.split(".")[1].toLowerCase() : "";
if (imageExts.indexOf(ext) > -1) {
p.image = f;
p.imageFullPath = projectDir + d + "/" + f;
} else if (specExts.indexOf(ext) > -1) {
p.spec = f;
p.specFullPath = projectDir + d + "/" + f;
} else if (f === "widgetDefinition.json") {
p.widgetDefinition = JSON.parse(fs.readFileSync(projectDir + d + "/" + f, "utf8"));
} else {
p.other.push(f);
}
}
});
return p;
} else {
return null;
}
}).filter(function (d) {return d !== null; });
return res;
}
//create the express static server and use public dir as the default serving directory
webserver.use(express.static(__dirname + "/public"));
webserver.use(express.bodyParser({ keepExtensions: true, uploadDir: __dirname + uploadDir}));
/**
* used to manage file upload process for pvsio-web
*/
webserver.all("/upload", function (req, res) {
util.log(JSON.stringify(req.files));
var fileName = req.files.file.path.split("/").slice(-1).join("");
//should return a map of oldname to new name for the uploaded files
res.send({fileName: fileName});
});
function typeCheck(filePath, cb) {
procWrapper().exec({
command: "proveit " + filePath,
callBack: cb
});
}
/**
get function maps for client sockets
*/
function createClientFunctionMaps() {
var map = {
"saveTempFile": function (token, socket, socketid) {
saveTempFile(token, function (res) {
res.id = token.id;
res.serverSent = new Date().getTime();
processCallback(res, socket);
});
},
"listProjects": function (token, socket, socketid) {
var projects = listProjects();
var res = {id: token.id, serverSent: new Date().getTime(), projects: projects};
processCallback(res, socket);
},
"createProject": function (token, socket, socketid) {
p = pvsioProcessMap[socketid] || pvsio();
pvsioProcessMap[socketid] = p;
util.log(JSON.stringify(token));
var res = createProject(token);
res.id = token.id;
res.serverSent = new Date().getTime();
processCallback(res, socket);
},
"typeCheck": function (token, socket, socketid) {
typeCheck(token.filePath, function (err, stdout, stderr) {
var res = {id: token.id, err: err, stdout: stdout, stderr: stderr};
processCallback(res, socket);
});
},
"sendCommand": function (token, socket, socketid) {
p = pvsioProcessMap[socketid];
p.sendCommand(token.data.command);
console.log(p.workspaceDir());
},
"startProcess": function (token, socket, socketid) {
util.log("Calling start process for client... " + socketid);
p = pvsioProcessMap[socketid];
//close the process if it exists and recreate it
if (p) {
p.close();
delete pvsioProcessMap[socketid];
}
//recreate the pvsio process
p = pvsio();
pvsioProcessMap[socketid] = p;
//set the workspace dir and start the pvs process with a callback for processing any responses from
//the process
p.workspaceDir(__dirname + "/public/projects/" + token.data.projectName)
.start(token.data.fileName, function (token) {
token.socketId = socketid;
processCallback(token, socket);
},
function (res) {
res.id = token.id;
res.serverSent = new Date().getTime();
processCallback(res, socket);
});
},
"readFile": function (token, socket, socketid) {
p = pvsioProcessMap[socketid];
p.readFile(token.fileName, function (err, content) {
var res = {id: token.id, serverSent: new Date().getTime(), fileContent: content};
processCallback(res, socket);
});
},
"writeFile": function (token, socket, socketid) {
p = pvsioProcessMap[socketid];
p.writeFile(token.data.fileName, token.data.fileContent, function (err) {
util.log("back from write file ...");
var res = {id: token.id, serverSent: new Date().getTime()};
///continue here !!! files saved need to inform client about need to restart pvsioweb with appropriate files
if (!err) {
util.log("Source code has been saved. Closing process ... " + socketid);
res.type = "fileSaved";
} else {
res.type = "error";
res.err = err;
util.log(err);
}
processCallback(res, socket);
});
}
};
return map;
}
var wsServer = new WebSocketServer({server: httpServer});
wsServer.on("connection", function (socket) {
var socketid = clientid++;
var functionMaps = createClientFunctionMaps();
socket.on("message", function (m) {
var token = JSON.parse(m);
var f = functionMaps[token.type];
if (f && typeof f === 'function') {
//call the function with token and socket as parameter
f(token, socket, socketid);
} else {
util.log("f is something unexpected -- I expected a function but got type " + typeof f);
}
});
socket.on("close", function (e) {
util.log("closing websocket client " + socketid);
var _p = pvsioProcessMap[socketid];
if (_p) {
_p.close();
}
delete pvsioProcessMap[socketid];
});
});
wsServer.on("error", function (err) {
util.log(JSON.stringify(err));
});
httpServer.listen(port);
console.log("http server started .." + "now listening on port " + port);
}
run();