mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
59 lines
1.7 KiB
Rust
59 lines
1.7 KiB
Rust
/// Implementation of the _thread module, currently noop implementation as RustPython doesn't yet
|
|
/// support threading
|
|
use super::super::pyobject::PyObjectRef;
|
|
use crate::function::PyFuncArgs;
|
|
use crate::pyobject::PyResult;
|
|
use crate::vm::VirtualMachine;
|
|
|
|
fn rlock_acquire(vm: &VirtualMachine, _args: PyFuncArgs) -> PyResult {
|
|
Ok(vm.get_none())
|
|
}
|
|
|
|
fn rlock_release(_zelf: PyObjectRef, _vm: &VirtualMachine) {}
|
|
|
|
fn rlock_enter(vm: &VirtualMachine, args: PyFuncArgs) -> PyResult {
|
|
arg_check!(vm, args, required = [(instance, None)]);
|
|
Ok(instance.clone())
|
|
}
|
|
|
|
fn rlock_exit(vm: &VirtualMachine, args: PyFuncArgs) -> PyResult {
|
|
arg_check!(
|
|
vm,
|
|
args,
|
|
// The context manager protocol requires these, but we don't use them
|
|
required = [
|
|
(_instance, None),
|
|
(_exception_type, None),
|
|
(_exception_value, None),
|
|
(_traceback, None)
|
|
]
|
|
);
|
|
Ok(vm.get_none())
|
|
}
|
|
|
|
fn get_ident(_vm: &VirtualMachine) -> u32 {
|
|
1
|
|
}
|
|
|
|
fn allocate_lock(vm: &VirtualMachine) -> PyResult {
|
|
let lock_class = vm.class("_thread", "RLock");
|
|
vm.invoke(&lock_class.into_object(), vec![])
|
|
}
|
|
|
|
pub fn make_module(vm: &VirtualMachine) -> PyObjectRef {
|
|
let ctx = &vm.ctx;
|
|
|
|
let rlock_type = py_class!(ctx, "_thread.RLock", ctx.object(), {
|
|
"acquire" => ctx.new_rustfunc(rlock_acquire),
|
|
"release" => ctx.new_rustfunc(rlock_release),
|
|
"__enter__" => ctx.new_rustfunc(rlock_enter),
|
|
"__exit__" => ctx.new_rustfunc(rlock_exit),
|
|
});
|
|
|
|
py_module!(vm, "_thread", {
|
|
"RLock" => rlock_type,
|
|
"get_ident" => ctx.new_rustfunc(get_ident),
|
|
"allocate_lock" => ctx.new_rustfunc(allocate_lock),
|
|
})
|
|
}
|