-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrunner.js
283 lines (223 loc) · 8.63 KB
/
runner.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
import { HEADER, FOOTER, DEFAULT_INTERVAL } from "./constants.js";
import { LANG, getLocale, addLocale } from "./locale.js";
import { LOCALE } from "./locale.js";
export { Runner };
/*************************************************************************************************/
/* Runner */
/*************************************************************************************************/
class Runner {
constructor(state, model, dispatcher) {
this.state = state;
this.model = model;
this.dispatcher = dispatcher;
this.pyodide = null;
this.globals = null;
this.hasGlobals = false;
this.outputElement = document.getElementById("terminal-output");
this.interval = DEFAULT_INTERVAL;
this.setupDispatcher();
}
async init() {
// Start the spinning cursor.
this.dispatcher.spinning(this, true);
this.pyodide = await loadPyodide();
this.pyodide.setStdout({
batched: (text) => {
this.stdout(text);
}
});
// Stop the spinning cursor.
this.dispatcher.spinning(this, false);
}
/* Setup functions */
/*********************************************************************************************/
setupDispatcher() {
this.dispatcher.on("run", (e) => { this.run(e.code); });
this.dispatcher.on("select", async (e) => {
// Clear global variables when selecting a new listing.
this.clearGlobals();
this.clearOutput();
});
this.model.grid.onClick((i, j) => { this.click(i, j); });
this.model.grid.onKeyboard(key => { this.keyboard(key); });
}
/* Clearing */
/*********************************************************************************************/
clearOutput() {
this.outputElement.textContent = "";
this.outputElement.classList.remove("error");
}
clearGlobals() {
if (!this.pyodide) return;
// Clear the global variables.
this.globals = this.pyodide.toPy({});
this.hasGlobals = false;
}
clearGrid() {
this.model.grid.clear();
}
/* Output functions */
/*********************************************************************************************/
scrollOutput() {
this.outputElement.scrollTop = this.outputElement.scrollHeight;
}
stdout(text) {
if (text)
this.outputElement.textContent += text + "\n";
this.outputElement.classList.remove("error");
this.scrollOutput();
}
stderr(text) {
this.outputElement.textContent = text;
this.outputElement.classList.add("error");
this.scrollOutput();
}
/* Internal functions */
/*********************************************************************************************/
async _run(code, addHeader = true, addFooter = true) {
// Start the spinning cursor.
this.dispatcher.spinning(this, true);
// HACK
if (code.includes("numpy"))
await this.pyodide.loadPackage("numpy");
// Construct the code.
let fullCode = this.makeCode(code, addHeader, addFooter);
let out = false;
// Try running the code and update the output.
try {
let options = { "globals": this.globals };
out = await this.pyodide.runPython(fullCode, options);
this.stdout(""); // NOTE: the console output is appended via the pyodide batch callback
}
catch (error) {
this.stderr(error);
}
// Parse the interval: use the localized variable name.
// NOTE: use the code metadata instead.
let interval = this.get('interval', LANG) || this.get('interval');
if (interval)
this.interval = interval;
// Stop the spinning cursor.
this.dispatcher.spinning(this, false);
return out;
}
/* Code construction */
/*********************************************************************************************/
getHeader() {
// Replace all keys by themselves in the header constant.
let header = HEADER(LOCALE);
// Add locale aliases.
let locale = getLocale(LANG); // TODO: take from code metadata instead
header += "\n" + addLocale(locale);
return header;
}
getFooter() {
return FOOTER;
}
makeCode(code, addHeader = true, addFooter = true) {
let b = "\n\n";
return (
addHeader ? this.getHeader() : '') +
b + code + b +
(addFooter ? this.getFooter() : '');
}
/* Context */
/*********************************************************************************************/
get(varName, lang = null) {
if (lang) {
// Use the localized name if a lang is provided.
let locale = getLocale(lang);
varName = locale[varName];
}
if (!varName) return null;
return this.globals ? this.globals.toJs().get(varName) : null;
}
has(varName) {
return this.globals && (this.get(varName) != null);
}
/* Runner */
/*********************************************************************************************/
async run(code) {
if (!code) return;
let out = null;
// If is playing, stop.
if (this.state.isPlaying) {
out = this.stop();
}
// If not playing, run the code.
else {
out = await this.start(code);
}
// Save the code in the storage.
this.model.save(this.state.name);
return out;
}
async start(code) {
// Lazily initialize the pyodide engine.
if (!this.pyodide) await this.init();
// Clear everything.
this.clearOutput();
this.clearGlobals();
this.clearGrid();
// Run the code.
let out = await this._run(code);
this.hasGlobals = true;
// If there is a frame function, start the animation.
this.tryPlay();
// Return the output.
return out;
}
stop() {
// Stop the animation.
this.state.isPlaying = false;
return null;
}
/* Animation */
/*********************************************************************************************/
tryPlay() {
// If there is a "frame" function, call it for animation.
if (this.has("frame")) {
if (!this.state.isPlaying) {
this.state.isPlaying = true;
this.frame(0);
}
}
else {
// HACK: reset the play icon in the panel.
this.state.isPlaying = true;
this.dispatcher.run(this, "");
this.state.isPlaying = false;
}
}
async frame(i) {
if (!this.state.isPlaying) return;
if (this.has("frame")) {
let out = await this._run(`frame(${i})`, false, false, false, false);
if (out != false)
setTimeout(() => { this.frame(i + 1); }, this.interval * 1000);
}
}
/* Input events */
/*********************************************************************************************/
async _firstRun() {
// Run the code if it hasn't run yet.
if (!this.hasGlobals) {
this.clearGlobals();
this.clearOutput();
this.clearGrid();
const code = this.model.editor.getCode();
await this._run(code);
this.hasGlobals = true;
}
}
async click(row, col) {
await this._firstRun();
if (this.has("click"))
this._run(`click(${row}, ${col})`, false, false, false, false);
}
async keyboard(key) {
await this._firstRun();
if (this.has("keyboard"))
this._run(`keyboard("${key}")`, false, false, false, false);
}
};