-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.js
88 lines (75 loc) · 1.93 KB
/
app.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
var express = require('express');
var path = require('path');
var bodyParser = require('body-parser');
var compiler = require('compilex');
var app = express();
app.use(bodyParser());
//compilex
var option = {stats : true};
compiler.init(option);
app.get('/' , function (req , res ) {
res.sendfile( __dirname + "/index.html");
});
app.post('/compilecode' , function (req , res ) {
var code = req.body.code;
var input = req.body.input;
var inputRadio = req.body.inputRadio;
var lang = req.body.lang;
if((lang === "C") || (lang === "C++"))
{
if(inputRadio === "true")
{
var envData = { OS : "linux" , cmd : "gcc"};
compiler.compileCPPWithInput(envData , code ,input , function (data) {
if(data.error)
{
res.send(data.error);
}
else
{
res.send(data.output);
}
});
}
else
{
var envData = { OS : "linux" , cmd : "gcc"};
compiler.compileCPP(envData , code , function (data) {
if(data.error)
{
res.send(data.error);
}
else
{
res.send(data.output);
}
});
}
}
if( lang === "Python")
{
if(inputRadio === "true")
{
var envData = { OS : "linux"};
compiler.compilePythonWithInput(envData , code , input , function(data){
res.send(data);
});
}
else
{
var envData = { OS : "linux"};
compiler.compilePython(envData , code , function(data){
res.send(data);
});
}
}
});
compiler.flush(function(){
console.log('All temporary files flushed !');
});
app.get('/fullStat' , function(req , res ){
compiler.fullStat(function(data){
res.send(data);
});
});
app.listen(8080);