-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyodide-worker.ts
More file actions
507 lines (449 loc) · 13.1 KB
/
pyodide-worker.ts
File metadata and controls
507 lines (449 loc) · 13.1 KB
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
// Enhanced Pyodide Web Worker
//
// This worker runs Pyodide with IPython display formatting loaded from
// a separate Python file, but executes user code directly through Pyodide
// to avoid IPython's code transformations. It handles serialization properly
// and provides rich output support with interrupt capabilities.
/// <reference lib="webworker" />
import { loadPyodide, type PyodideInterface } from "npm:pyodide";
import { getCacheConfig, getEssentialPackages } from "./cache-utils.ts";
declare const self: DedicatedWorkerGlobalScope;
let pyodide: PyodideInterface | null = null;
let interruptBuffer: SharedArrayBuffer | null = null;
// Handle messages from main thread
self.addEventListener("message", async (event) => {
const { id, type, data } = (event as MessageEvent).data;
try {
switch (type) {
case "init": {
await initializePyodide(
data.interruptBuffer,
data.packages,
);
self.postMessage({ id, type: "response", data: { success: true } });
break;
}
case "execute": {
const result = await executePython(data.code);
self.postMessage({ id, type: "response", data: result });
break;
}
default:
throw new Error(`Unknown message type: ${type}`);
}
} catch (error) {
self.postMessage({
id,
type: "response",
error: error instanceof Error ? error.message : String(error),
});
}
});
/**
* Initialize Pyodide with advanced IPython integration
*/
async function initializePyodide(
buffer: SharedArrayBuffer,
packagesToLoad?: string[],
): Promise<void> {
self.postMessage({
type: "log",
data: "Loading Pyodide with enhanced display support",
});
// Store interrupt buffer
interruptBuffer = buffer;
// Get cache configuration and packages to load
const { packageCacheDir } = getCacheConfig();
const basePackages = packagesToLoad || getEssentialPackages();
// Always ensure micropip and ipython are included for core functionality
const packagesForInit = Array.from(
new Set([
"micropip",
"ipython",
...basePackages,
]),
);
self.postMessage({
type: "log",
data: `Using cache directory: ${packageCacheDir}`,
});
// Load Pyodide with packages parameter (recommended by Pyodide docs)
pyodide = await loadPyodide({
packageCacheDir,
packages: packagesForInit, // Load packages in parallel with Pyodide initialization
stdout: (text: string) => {
// Log startup messages to our telemetry for debugging
self.postMessage({
type: "log",
data: `[Pyodide stdout on startup]: ${text}`,
});
self.postMessage({
type: "stream_output",
data: { type: "stdout", text },
});
},
stderr: (text: string) => {
// Log startup errors to our telemetry for debugging
self.postMessage({
type: "log",
data: `[Pyodide stderr on startup]: ${text}`,
});
self.postMessage({
type: "stream_output",
data: { type: "stderr", text },
});
},
});
// Set up interrupt buffer
if (interruptBuffer) {
const interruptView = new Int32Array(interruptBuffer);
pyodide.setInterruptBuffer(interruptView);
self.postMessage({ type: "log", data: "Interrupt buffer configured" });
}
// Packages are loaded in parallel during Pyodide initialization
self.postMessage({
type: "log",
data: `Packages loaded in parallel: ${packagesForInit.join(", ")}`,
});
// Load our Python bootstrap file
await setupIPythonEnvironment();
// Switch to clean stdout/stderr handlers after startup
pyodide.setStdout({
batched: (text: string) => {
self.postMessage({
type: "stream_output",
data: { type: "stdout", text },
});
},
});
pyodide.setStderr({
batched: (text: string) => {
self.postMessage({
type: "stream_output",
data: { type: "stderr", text },
});
},
});
self.postMessage({
type: "log",
data: "Enhanced Pyodide worker initialized successfully",
});
}
/**
* Set up IPython environment by loading the bootstrap Python file
*/
async function setupIPythonEnvironment(): Promise<void> {
self.postMessage({
type: "log",
data: "Loading IPython environment from bootstrap file",
});
// Get the Python bootstrap code
const pythonBootstrap = await fetch(
new URL("./ipython-setup.py", import.meta.url),
).then((response) => response.text());
// Execute the bootstrap code
await pyodide!.runPythonAsync(pythonBootstrap);
self.postMessage({
type: "log",
data: "IPython environment loaded successfully",
});
}
/**
* Execute Python code with rich output capture and proper serialization
*/
async function executePython(code: string): Promise<{
result: unknown;
outputs: Array<{
type: "display" | "result" | "error" | "stream";
data: unknown;
}>;
}> {
if (!pyodide) {
throw new Error("Pyodide not initialized");
}
const outputs: Array<{
type: "display" | "result" | "error" | "stream";
data: unknown;
}> = [];
let result = null;
let executionError = null;
try {
// Set up JavaScript callbacks with proper serialization
pyodide.globals.set(
"js_display_callback",
(
data: unknown,
metadata: unknown,
_transient: unknown,
update = false,
) => {
try {
// Ensure data is serializable
const serializedData = ensureSerializable(data);
const serializedMetadata = ensureSerializable(metadata);
const outputType = update ? "update_display_data" : "display_data";
self.postMessage({
type: "stream_output",
data: {
type: outputType,
data: serializedData,
metadata: serializedMetadata,
},
});
outputs.push({
type: "display",
data: {
data: serializedData,
metadata: serializedMetadata,
update,
},
});
} catch (error) {
self.postMessage({
type: "log",
data: `Error in display callback: ${error}`,
});
self.postMessage({
type: "stream_output",
data: {
type: "error",
data: {
ename: "SerializationError",
evalue: `Error serializing display data: ${error}`,
traceback: [String(error)],
},
},
});
}
},
);
pyodide.globals.set(
"js_execution_callback",
(execution_count: number, data: unknown, metadata: unknown) => {
try {
// Ensure data is serializable
const serializedData = ensureSerializable(data);
const serializedMetadata = ensureSerializable(metadata);
self.postMessage({
type: "stream_output",
data: {
type: "execute_result",
data: serializedData,
metadata: serializedMetadata,
execution_count,
},
});
outputs.push({
type: "result",
data: {
data: serializedData,
metadata: serializedMetadata,
execution_count,
},
});
} catch (error) {
self.postMessage({
type: "log",
data: `Error in execution callback: ${error}`,
});
self.postMessage({
type: "stream_output",
data: {
type: "error",
data: {
ename: "SerializationError",
evalue: `Error serializing execution result: ${error}`,
traceback: [String(error)],
},
},
});
}
},
);
// Wire up the callbacks to the shell
await pyodide.runPythonAsync(`
# Connect our JavaScript callbacks to the IPython shell
shell.display_pub.js_callback = js_display_callback
shell.displayhook.js_callback = js_execution_callback
`);
// Execute the code directly with Pyodide (no IPython transformations)
try {
// Execute the user code directly
const rawResult = await pyodide.runPythonAsync(code);
// If there's a result, format it through IPython's display system
if (rawResult !== null && rawResult !== undefined) {
// Store the result in Python globals and format it
pyodide.globals.set("_pyodide_result", rawResult);
await pyodide.runPythonAsync(`
# Format the result through IPython's displayhook for rich formatting
if '_pyodide_result' in globals():
shell.displayhook(_pyodide_result)
del _pyodide_result
`);
// Don't return the result since displayhook already handled it
result = null;
} else {
result = rawResult;
}
} catch (pythonError: unknown) {
executionError = formatPythonError(pythonError);
}
} catch (err: unknown) {
executionError = {
ename: "KernelError",
evalue: err instanceof Error ? err.message : "Kernel execution failed",
traceback: [
err instanceof Error ? (err.stack || err.message) : String(err),
],
};
}
// Send error if one occurred
if (executionError) {
self.postMessage({
type: "stream_output",
data: { type: "error", data: executionError },
});
outputs.push({ type: "error", data: executionError });
}
return {
result: ensureSerializable(result),
outputs,
};
}
/**
* Ensure data is serializable for postMessage
*/
function ensureSerializable(obj: unknown): unknown {
if (obj === null || obj === undefined) {
return obj;
}
// Handle primitive types
if (
typeof obj === "string" || typeof obj === "number" ||
typeof obj === "boolean"
) {
return obj;
}
// Handle arrays
if (Array.isArray(obj)) {
return obj.map(ensureSerializable);
}
// Handle objects
if (typeof obj === "object") {
// Handle PyProxy objects from Pyodide
if (obj && typeof obj === "object" && "toJs" in obj) {
try {
const jsObj = (obj as { toJs: () => unknown }).toJs();
return ensureSerializable(jsObj);
} catch {
return String(obj);
}
}
// Handle Map objects
if (obj instanceof Map) {
const result: Record<string, unknown> = {};
for (const [key, value] of obj) {
result[String(key)] = ensureSerializable(value);
}
return result;
}
// Handle Set objects
if (obj instanceof Set) {
return Array.from(obj).map(ensureSerializable);
}
// Handle regular objects
try {
const result: Record<string, unknown> = {};
for (const [key, value] of Object.entries(obj)) {
result[key] = ensureSerializable(value);
}
return result;
} catch {
return String(obj);
}
}
// Fallback to string representation
return String(obj);
}
/**
* Format Python errors with enhanced information
*/
function formatPythonError(error: unknown): {
ename: string;
evalue: string;
traceback: string[];
} {
if (!error) {
return {
ename: "UnknownError",
evalue: "Unknown Python error occurred",
traceback: ["Unknown Python error occurred"],
};
}
if (error && typeof error === "object") {
// Handle Pyodide PyProxy errors
if ("toString" in error && typeof error.toString === "function") {
try {
const errorStr = error.toString();
// Parse Python traceback format
if (errorStr.includes("Traceback")) {
const lines = errorStr.split("\n").filter((line) => line.trim());
const lastLine = lines[lines.length - 1] || "";
const match = lastLine.match(/^(\w+(?:Error)?): (.*)$/);
if (match && match[1] && match[2]) {
return {
ename: match[1],
evalue: match[2],
traceback: lines,
};
}
}
// Handle simple error format
if (errorStr.includes("Error:")) {
const match = errorStr.match(/^(\w+(?:Error)?): (.*)$/);
if (match && match[1] && match[2]) {
return {
ename: match[1],
evalue: match[2],
traceback: [errorStr],
};
}
}
return {
ename: "PythonError",
evalue: errorStr,
traceback: [errorStr],
};
} catch {
// Fallback if toString fails
}
}
// Handle structured error objects
if ("type" in error && "message" in error) {
return {
ename: String(error.type),
evalue: String(error.message),
traceback: [String(error.message)],
};
}
if ("message" in error) {
return {
ename: "PythonError",
evalue: String(error.message),
traceback: [String(error.message)],
};
}
}
// Ultimate fallback
const errorStr = String(error);
return {
ename: "PythonError",
evalue: errorStr,
traceback: [errorStr],
};
}
// Log that enhanced worker is ready
self.postMessage({
type: "log",
data: "Enhanced Pyodide worker ready with serialization-safe output",
});