Interrupt handling for pyodide.
Project description
pyodide_interrupts
This is a package to allow handling of interrupts inside of Pyodide. Pyodide does not have preemptive multitasking. This package enables handling keyboard interrupts in Pyodide.
This defines one context handler check_interrupts(callback, interval)
which causes callback
to be called every interval
instructions.
Simple Example:
>>> def callback(): print("check")
... with check_interrupts(callback, 10):
... for i in range(50):
... print(i, end=",")
0,1,check
2,3,4,5,6,check
7,8,9,10,11,check
12,13,14,15,16,check
17,18,19,20,21,check
22,23,24,25,26,check
27,28,29,30,31,check
32,33,34,35,36,check
37,38,39,40,41,check
42,43,44,45,46,check
47,48,49,check
Sketch of usage
In real usage, I use the following callback:
def check_for_interrupt(interrupt_buffer):
def helper():
if interrupt_buffer() == 0:
return
raise KeyboardInterrupt()
return helper
interrupt_buffer
is a javascript wrapper around a SharedArrayBuffer
. On the main thread:
let uuid = uuid();
let interrupt_buffer = new Int32Array(new SharedArrayBuffer(4));
pyodide_worker.postMessage({"cmd" : "execute_python", code, interrupt_buffer, uuid});
let result = await responsePromise(uuid);
// If user cancels, write a nonzero value into our SAB, this will signal pyodide to quit execution of code.
onUserCancel(() => { interrupt_buffer[0] = 2; });
On the pyodide worker thread:
self.messages = {};
function handleExecutePython(msg){
// Wrap interrupt buffer in a function that gets its value
// Pyodide Python <==> Javascript bindings don't understand how to get values out of the SAB directly.
msg.interrupt_buffer = function(){
return msg.interrupt_buffer[0];
};
messages[msg.uuid] = msg;
self.pyodide.globals["handle_message"](uuid);
}
and then the pyodide code:
from js import messages, postMessage
def handle_message(uuid):
msg = dict(messages[uuid])
del messages[uuid]
# Here would use msg["cmd"] to look up handling in a dispatch.
interrupt_buffer = msg["interrupt_buffer"]
# check_for_interrupt will raise a KeyboardInterrupt if "onUserCancel" handler is executed on main thread.
with check_interrupts(check_for_interrupt(interrupt_buffer), 10_000):
result = run_code(code)
postMessage({"cmd" : "execute_pyodide_result", "result" : result, "uuid" : uuid })
def run_code(code):
# Parse code into ast, handle errors, get result out, etc here
Security requirements for SharedArrayBuffer
to work
I quote from the MDN docs for SharedArrayBuffer:
As a baseline requirement, your document needs to be in a secure context.
For top-level documents, two headers will need to be set to cross-origin isolate your site:
Cross-Origin-Opener-Policy with same-origin as value (protects your origin from attackers) Cross-Origin-Embedder-Policy with require-corp as value (protects victims from your origin)
Cross-Origin-Opener-Policy: same-origin Cross-Origin-Embedder-Policy: require-corp
To check if cross origin isolation has been successful, you can test against the crossOriginIsolated property available to window and worker contexts
Building
To build a copy for local use, I recommend creating a virtual environment and then using pip install .
in that virtual environment.
To upload to pypi, we must build the package for a manylinux
ABI to insure that the binaries will be compatible with most systems.
The manylinux repository provides docker images with the appropriate old versions of CentOS for us to use to build these. To build, run sudo ./docker_build_wheels.sh
. Warning: This will download a ~300mb docker image the first time you do it. Note that you will need to have docker installed for this to work.
The resulting wheels will end up in the dist
directory and will be suitable for upload to pypi.
[0.1.0] (2020-07-25)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for pyodide_interrupts-0.1.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1f10d3be19a743ec8ffa4c74eb61aedea94387b05173fe978ffbac7cc61c122 |
|
MD5 | 729e655e462fae7c6caba63569f9bd6e |
|
BLAKE2b-256 | 84a3ca568ca3c09d84841f0f7bcc527f3568eb63f1596d1ae829dc677ec9f60c |
Hashes for pyodide_interrupts-0.1.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33638ea97f3538885ab553a842f37bf38b2e814126da83014e03b638d4414ca4 |
|
MD5 | ef446e33730f1db38e6ec3d444858651 |
|
BLAKE2b-256 | 3167715cc8a3e251553d9eee5880749d4a29cce49a5368d7b7e6971e8aefb39c |
Hashes for pyodide_interrupts-0.1.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d77d130373cf5aed9633ed21ccdcbc9ba8f86663b89f9152554d9a313ad7c3b1 |
|
MD5 | 8221527136837e2edf822883f5d6df84 |
|
BLAKE2b-256 | 479e097b6c60fc7e319577bb82431bf14720ba36d968839755d207804894e105 |
Hashes for pyodide_interrupts-0.1.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3705a4f75e044254823f65585032470fd11f15f74ac2a02fe912f897bf8b233a |
|
MD5 | 1c9f46998c4de758dc9591b6f8d1de3b |
|
BLAKE2b-256 | 24fd8166238e98e32bd839e801350ae3613205eefd39e423d02e729bec35c823 |
Hashes for pyodide_interrupts-0.1.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 455e143635204f5842d6eeefb19088bac4c582ec5bf40925794a5126448e2ed6 |
|
MD5 | 86e10dd3011676fd21eab0dc1e40df92 |
|
BLAKE2b-256 | 6739edee146c3602805261ceaac112bc6bef36e86d5b1aadd02a517137b7129f |