forked from google/blockly-samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackwards.html
352 lines (318 loc) · 12.2 KB
/
backwards.html
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blockly Demo: Backwards Stepping with JS-Interpreter</title>
<script src="toolbox.js"></script>
<!-- acorn.js, interpreter.js and serialize.js are copied from the
JS-Interpreter project without modification. The compressed
acorn_interpreter.js file cannot be used with serialization. -->
<script src="acorn.js"></script>
<script src="interpreter.js"></script>
<script src="serialize.js"></script>
<!-- diff_match_patch.js is copied from the Diff Match Patch project
without modification. -->
<script src="diff_match_patch.js"></script>
<script src="./node_modules/blockly/blockly_compressed.js"></script>
<script src="./node_modules/blockly/blocks_compressed.js"></script>
<script src="./node_modules/blockly/javascript_compressed.js"></script>
<script src="./node_modules/blockly/msg/en.js"></script>
<style>
body {
background-color: #fff;
font-family: sans-serif;
}
h1 {
font-weight: normal;
font-size: 140%;
}
</style>
</head>
<body>
<h1><a href="https://developers.google.com/blockly/">Blockly</a> >
<a href="../index.html">Demos</a> > Backwards Stepping with JS-Interpreter</h1>
<p>This is a demo of executing code step-by-step with a sandboxed JavaScript
interpreter -- both forwards and backwards.</p>
<p>Each step forwards saves the current state to a stack. Each state
backwards restores to the previous state on the stack. Compression is used
to keep only the deltas between stack frames. Note that because serialization
reaches deep beyond the public API for the JS-Interpreter, the uncompiled
acorn.js and interpreter.js must be used in place of acorn_interpreter.js.</p>
<p>→ <a href="https://developers.google.com/blockly/guides/app-integration/running-javascript#js-interpreter">More info on running code with JS-Interpreter</a></p>
<p>
<button onclick="stepBackwards()" id="stepBackwardsButton" disabled="disabled">Step ←</button>
<button onclick="stepForwards()" id="stepForwardsButton">Step →</button>
</p>
<div style="width: 100%">
<div id="blocklyDiv"
style="display: inline-block; height: 480px; width: 58%"></div>
<textarea id="output" disabled="disabled"
style="display: inline-block; height: 480px; width: 38%;">
</textarea>
</div>
<script>
const startBlocks = {
"blocks": {
"blocks": [
{
"type": "variables_set",
"x": 20,
"y": 20,
"inline": true,
"fields": {
"VAR": {
"id": "n"
}
},
"inputs": {
"VALUE": {
"block": {
"type": "math_number",
"fields": {"NUM": 1}
}
}
},
"next": {
"block": {
"type": "controls_repeat_ext",
"inline": true,
"inputs": {
"TIMES": {
"block": {
"type": "math_number",
"fields": {"NUM": 4}
}
},
"DO": {
"block": {
"type": "variables_set",
"inline": true,
"fields": {
"VAR": {"id": "n"}
},
"inputs": {
"VALUE": {
"block": {
"type": "math_arithmetic",
"fields": {"OP": "MULTIPLY"},
"inputs": {
"A": {
"block": {
"type": "variables_get",
"fields": {
"VAR": {"id": "n"}
}
}
},
"B": {
"block": {
"type": "math_number",
"fields": {"NUM": 2}
}
}
}
}
}
},
"next": {
"block": {
"type": "text_print",
"inputs": {
"TEXT": {
"block": {
"type": "variables_get",
"fields": {
"VAR": {"id": "n"}
}
}
}
}
}
}
}
}
}
}
}
}
]
},
"variables": [
{
"name": "n",
"id": "n"
}
]
};
const demoWorkspace = Blockly.inject('blocklyDiv',
{media: './node_modules/blockly/media/',
toolbox: toolboxJson});
Blockly.JavaScript.STATEMENT_PREFIX = 'highlightBlock(%1);\n';
Blockly.JavaScript.addReservedWords('highlightBlock');
Blockly.serialization.workspaces.load(startBlocks, demoWorkspace)
const outputArea = document.getElementById('output');
let myInterpreter = null;
// Stack of serializations. Each object contains these properties:
// .json: A full serialization of the interpreter's state, or...
// .delta: Instead of a full serialization, a delta from the next state.
// .highlight: The ID of the block highlighted in this state.
// .output: State of the output textarea.
const serializationStack = [];
// Global variable to keep track of the currently highlighted block.
let highlightedBlockId = '';
// The forward step button disables for 2s after program completion, then
// re-enables. If the backwards step button is pressed during this time
// then cancel the scheduled re-enabling.
let resetButtonsPid = 0;
// Optionally, use the Diff Match Patch library to compress the stack.
let dmp;
if (typeof diff_match_patch === 'function') {
dmp = new diff_match_patch();
console.log('Using DMP for compression.');
} else {
console.warn('DMP not available, each step will cost ~300 KB.');
}
function initApi(interpreter, globalObject) {
// Add an API function for the alert() block, generated for "text_print" blocks.
const wrapperAlert = function alert(text) {
text = arguments.length ? text : '';
outputArea.value += '\n' + text;
};
interpreter.setProperty(globalObject, 'alert',
interpreter.createNativeFunction(wrapperAlert));
// Add an API function for the prompt() block.
const wrapperPrompt = function prompt(text) {
return window.prompt(text);
};
interpreter.setProperty(globalObject, 'prompt',
interpreter.createNativeFunction(wrapperPrompt));
// Add an API function for highlighting blocks.
const wrapperHighlight = function(id) {
id = String(id || '');
highlightedBlockId = id;
return highlightBlock(id);
};
interpreter.setProperty(globalObject, 'highlightBlock',
interpreter.createNativeFunction(wrapperHighlight));
}
// Each step will run the interpreter until the highlightPause is true.
let highlightPause = false;
function highlightBlock(id) {
demoWorkspace.highlightBlock(id);
highlightPause = true;
}
function resetStepUi(clearOutput) {
demoWorkspace.highlightBlock(null);
highlightPause = false;
if (clearOutput) {
outputArea.value = 'Program output:\n=================';
}
myInterpreter = null;
}
function stepBackwards() {
const serialization = serializationStack.pop();
if (!serializationStack.length) {
document.getElementById('stepBackwardsButton').disabled = 'disabled';
}
if (!serialization) {
return; // Should never happen.
}
highlightedBlockId = serialization.highlight;
highlightBlock(highlightedBlockId);
let json = serialization.json;
if (dmp && serializationStack.length) {
uncompressLastSerialization(json);
}
json = JSON.parse(json);
// Create a clean interpreter with the same initialization functions.
myInterpreter = new Interpreter('', initApi);
deserialize(json, myInterpreter);
// Restore the output text. In other applications this would restore
// the player to a previous location, or restore a graphic, or whatever.
outputArea.value = serialization.output;
if (resetButtonsPid) {
clearTimeout(resetButtonsPid);
resetButtonsPid = 0;
document.getElementById('stepForwardsButton').disabled = '';
}
}
function stepForwards() {
if (!myInterpreter) {
// First statement of this code.
// Clear the program output.
resetStepUi(true);
const latestCode = Blockly.JavaScript.workspaceToCode(demoWorkspace);
serializationStack.length = 0;
document.getElementById('stepBackwardsButton').disabled = 'disabled';
myInterpreter = new Interpreter(latestCode, initApi);
// And then show generated code in an alert.
// In a timeout to allow the outputArea.value to reset first.
setTimeout(function() {
alert('Ready to execute the following code\n' +
'===================================\n' + latestCode);
highlightPause = true;
stepForwards();
}, 1);
return;
}
highlightPause = false;
const json = JSON.stringify(serialize(myInterpreter));
if (dmp && serializationStack.length) {
compressLastSerialization(json);
}
serializationStack.push({
json: json,
delta: null,
highlight: highlightedBlockId,
output: outputArea.value
});
document.getElementById('stepBackwardsButton').disabled = '';
let hasMoreCode
do {
try {
hasMoreCode = myInterpreter.step();
} finally {
if (!hasMoreCode) {
// Program complete, no more code to execute.
outputArea.value += '\n\n<< Program complete >>';
resetStepUi(false);
// Cool down, to discourage accidentally restarting the program.
document.getElementById('stepForwardsButton').disabled = 'disabled';
resetButtonsPid = setTimeout(resetButtons, 2000);
return;
}
}
// Keep executing until a highlight statement is reached,
// or the code completes or errors.
} while (hasMoreCode && !highlightPause);
}
// Enable the forwards button, disable the backwards button.
function resetButtons() {
document.getElementById('stepForwardsButton').disabled = '';
document.getElementById('stepBackwardsButton').disabled = 'disabled';
resetButtonsPid = 0;
}
// Compress the previous serialization as a delta of the current one.
function compressLastSerialization(currentJson) {
const previousStack = serializationStack[serializationStack.length - 1];
const previousDiff = dmp.diff_main(currentJson, previousStack.json);
dmp.diff_cleanupEfficiency(previousDiff);
previousStack.json = null;
previousStack.delta = dmp.diff_toDelta(previousDiff);
}
// Uncompress the previous serialization's delta, based off the current one.
function uncompressLastSerialization(currentJson) {
const previousStack = serializationStack[serializationStack.length - 1];
const previousDiff = dmp.diff_fromDelta(currentJson, previousStack.delta);
previousStack.delta = null;
previousStack.json = dmp.diff_text2(previousDiff);
}
demoWorkspace.addChangeListener(function(event) {
if (!event.isUiEvent) {
// Something changed. Interpreter needs to be reloaded.
resetStepUi(true);
}
});
</script>
</body>
</html>