mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 10:47:35 -05:00
50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
import { clean, fetchPaths } from "./_utils.js";
|
|
|
|
const type = "ruby-wasm-wasi";
|
|
|
|
// MISSING:
|
|
// * there is no VFS apparently or I couldn't reach any
|
|
// * I've no idea how to override the stderr and stdout
|
|
// * I've no idea how to import packages
|
|
|
|
// REQUIRES INTEGRATION TEST
|
|
/* c8 ignore start */
|
|
const worker = (method) =>
|
|
function (interpreter, code, xworker) {
|
|
globalThis.xworker = xworker;
|
|
return this[method](
|
|
interpreter,
|
|
`require "js";xworker=JS::eval("return xworker");${code}`,
|
|
);
|
|
};
|
|
|
|
export default {
|
|
type,
|
|
experimental: true,
|
|
module: (version = "2.0.0") =>
|
|
`https://cdn.jsdelivr.net/npm/ruby-3_2-wasm-wasi@${version}/dist/browser.esm.js`,
|
|
async engine({ DefaultRubyVM }, config, url) {
|
|
const response = await fetch(
|
|
`${url.slice(0, url.lastIndexOf("/"))}/ruby.wasm`,
|
|
);
|
|
const module = await WebAssembly.compile(await response.arrayBuffer());
|
|
const { vm: interpreter } = await DefaultRubyVM(module);
|
|
if (config.fetch) await fetchPaths(this, interpreter, config.fetch);
|
|
return interpreter;
|
|
},
|
|
run: (interpreter, code) => interpreter.eval(clean(code)),
|
|
runAsync: (interpreter, code) => interpreter.evalAsync(clean(code)),
|
|
runEvent(interpreter, code, key) {
|
|
return this.run(
|
|
interpreter,
|
|
`require "js";event=JS::eval("return __events.get(${key})");${code}`,
|
|
);
|
|
},
|
|
runWorker: worker("run"),
|
|
runWorkerAsync: worker("runAsync"),
|
|
writeFile: () => {
|
|
throw new Error(`writeFile is not supported in ${type}`);
|
|
},
|
|
};
|
|
/* c8 ignore stop */
|