This repository was archived by the owner on Aug 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.js
52 lines (44 loc) · 1.58 KB
/
tasks.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
var fs = require('fs');
var path = require('path');
var random = require('./random.js');
module.exports = {
execSaveResults: function(toExec, resultsFolder, callback) {
var resultsFile = random.generateUUID() + '.json';
var resultsPath = path.join(resultsFolder, resultsFile);
var procData = {};
procData.toExec = toExec;
procData.resultsFile = resultsFile;
procData.startedAt = new Date().toISOString();
procData.inProgress = true;
// write in-progress procData to file
fs.writeFile(resultsPath, JSON.stringify(procData), function(err) {
// handle errors
if (err) {
callback(err);
return;
}
// start the child process once the in-progress file has been written
require('child_process').exec(toExec, function(err, stdout, stderr) {
// copy procData into finalData
var finalData = JSON.parse(JSON.stringify(procData));
// on finish, update finalData
finalData.inProgress = false;
finalData.finishedAt = new Date().toISOString();
finalData.stdout = stdout.split('\n');
finalData.stderr = stderr.split('\n');
// write success/error into finalData
if (err === null) {
finalData.success = true;
} else {
finalData.error = err;
}
// write finished finalData to file
fs.writeFile(resultsPath, JSON.stringify(finalData), function(err) {
if (err) console.log(err);
});
});
// return the in-progress data
callback(null, procData);
});
}
};