#wasm-interface #run-time #python #browser #layer #compatibility #pyodide

pyodide-webassembly-runtime-layer

WASM runtime compatibility interface implementation for the webbrowser WebAssembly runtime, exposed through Pyodide

5 releases

0.2.2 Apr 8, 2024
0.2.1 Mar 14, 2024
0.2.0 Mar 10, 2024
0.1.1 Mar 14, 2024
0.1.0 Mar 2, 2024

#852 in WebAssembly

Download history 97/week @ 2024-02-25 192/week @ 2024-03-03 378/week @ 2024-03-10 132/week @ 2024-03-17 6/week @ 2024-03-24 23/week @ 2024-03-31 109/week @ 2024-04-07 15/week @ 2024-04-14

161 downloads per month

MIT/Apache

88KB
2K SLoC

CI Status MSRV Latest Version Rust Doc Crate Rust Doc Main

pyodide-webassembly-runtime-layer

pyodide-webassembly-runtime-layer implements the wasm_runtime_layer backend API to provide access to the web browser's WebAssembly runtime using Pyodide.

The implementation of this crate is heavily inspired by the web_backend of the wasm_runtime_layer. Instead of relying on the js-sys and wasm-bindgen crates to generate JavaScript-based bindings to the WebAssembly JavaScript API, this crate uses Pyodide's js FFI layer to interact with WebAssembly through Python running inside WebAssembly. pyodide-webassembly-runtime-layer is therefore useful when developing a Python module in Rust, e.g. using PyO3, which requires access to some WebAssembly runtime using the wasm_runtime_layer API and may be deployed to the web itself using Pyodide.

Memory Management

pyodide-webassembly-runtime-layer generally tries to keep memory management intuitive by relying primarily on Python's reference counting to drop objects once they are no longer needed by both the user-written Rust code and the WebAssembly runtime. As this crate coordinates interop across Rust, Python, and JavaScript, it takes extra care to avoid reference cycles across the different memory management strategies of the languages which would otherwise lead to memory leakage. If using this crate produces a memory leak that is avoided with a different wasm_runtime_layer backend, please report it as a bug.

There is one exception to the intuitive memory management strategy:

  • Func::new creates a host function, which may capture arbitrary data. To avoid cross-language reference cycles, it is stored using wobbly references inside the Func and its associated Store. Even though the host function and its data are dropped once either the Store is dropped or references to the Func are dropped, additional bookkeeping data is required until both have been dropped.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Funding

pyodide-webassembly-runtime-layer has been developed as part of ESiWACE3, the third phase of the Centre of Excellence in Simulation of Weather and Climate in Europe.

Funded by the European Union. This work has received funding from the European High Performance Computing Joint Undertaking (JU) under grant agreement No 101093054.

Dependencies

~6–13MB
~144K SLoC