-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
175 lines (163 loc) · 4.39 KB
/
main.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
Split(['#left', '#right'], {
gutterSize: 8
});
Split(['#rtop', '#rbot'], {
sizes: [40, 60],
direction: 'vertical',
gutterSize: 8
});
const sourceTmpl = "public class Test {\n public static void main(String[] args) {\n }\n}";
const storeOk = typeof(Storage) !== "undefined";
function initIndex() {
var idx = storeOk && +localStorage.next || 0;
var bang = window.location.hash.substr(2);
if (/^[0-7]$/.test(bang)) {
return +bang;
} else {
if (storeOk) {
localStorage.next = (idx + 1) % 8;
delete localStorage[localStorage.next];
}
history.replaceState('', document.title, window.location.pathname + "#!" + idx);
return idx;
}
}
const sourceIdx = initIndex();
function getSource() {
return storeOk && localStorage[sourceIdx] || sourceTmpl;
}
function setSource(source) {
if (storeOk) {
localStorage[sourceIdx] = source;
}
}
const editor = ace.edit("editor");
editor.setTheme("ace/theme/tomorrow");
editor.session.setMode("ace/mode/java");
editor.session.doc.setNewLineMode("unix");
editor.setValue(getSource(), 1);
function htmlEscape(str) {
return str.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
}
const log = document.getElementById("logs");
var log_pos = 0;
function logClear() {
log.innerHTML = "";
log_pos = 0;
}
function logStatus(str) {
log.innerHTML = log.innerHTML.substring(0, log_pos) + htmlEscape(str);
}
function logAppend(str) {
logStatus(str);
log_pos = log.innerHTML.length;
}
const out = document.getElementById("output");
function outClear() {
out.innerHTML = "";
}
function outAppend(str, color) {
var node = document.createTextNode(str);
if (color) {
var span = document.createElement("span");
span.style.color = color;
span.appendChild(node);
node = span;
}
out.appendChild(node);
}
const compile_button = document.getElementById("compile");
const kill_button = document.getElementById("kill");
const stdin_input = document.getElementById("stdin");
function fatalError(msg) {
logClear();
logStatus(msg);
compile_button.disabled = true;
kill_button.disabled = true;
stdin_input.disabled = true;
}
const socket = io("/compiler");
socket.on('connect', function() {
logStatus("Click \"Compile & Execute\" when ready.");
compile_button.disabled = false;
kill_button.disabled = true;
stdin_input.disabled = true;
});
socket.on('disconnect', function() {
fatalError("Connection with compiler lost. Please rerun the backend.");
});
socket.on('backend_error', function(e) {
fatalError(e.description);
});
socket.on('started', function(msg) {
logStatus("Compiling...");
kill_button.disabled = false;
});
socket.on('compiled', function(msg) {
if (msg.ecode == 0) {
if (msg.logs) {
logAppend("Compiled with logs:\n" + msg.logs);
} else {
logAppend("Compiled successfully.\n");
}
logStatus("Executing...");
} else if (msg.ecode == null) {
logAppend("Compilation failed. Please try again...\n");
} else if (msg.logs) {
logAppend("Compiler reported errors:\n" + msg.logs);
} else {
logAppend("Compiler stopped!\n");
}
stdin_input.disabled = false;
stdin_input.focus();
});
socket.on('stdout', function(msg) {
outAppend(msg.data);
out.scrollTop = out.scrollHeight;
});
socket.on('stderr', function(msg) {
outAppend(msg.data, 'red');
out.scrollTop = out.scrollHeight;
});
socket.on('stdin_ack', function(msg) {
outAppend(msg.data, 'blue');
out.scrollTop = out.scrollHeight;
});
socket.on('done', function(msg) {
if (msg.ecode == 0) {
logAppend("Execution completed.\n");
} else if (msg.ecode !== null) {
logAppend("Execution stopped. [" + msg.ecode + "]\n");
}
compile_button.disabled = false;
kill_button.disabled = true;
stdin_input.disabled = true;
editor.focus();
});
compile_button.onclick = function(e) {
var source = editor.getValue();
logClear();
outClear();
logStatus("Compilation requested...");
socket.emit("compile", source);
compile_button.disabled = true;
setSource(source);
}
kill_button.onclick = function(e) {
logStatus("Trying to stop...");
socket.emit('kill', null);
kill_button.disabled = true;
}
stdin_input.onkeypress = function(e) {
if (e.keyCode == 13) {
socket.emit('stdin', stdin_input.value + "\n");
stdin_input.value = "";
}
}
window.onbeforeunload = function(e) {
setSource(editor.getValue());
socket.close();
}
window.onhashchange = function(e) {
window.location.reload();
}