mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
66 lines
1.9 KiB
Rust
66 lines
1.9 KiB
Rust
use super::objweakref::PyWeak;
|
|
use crate::function::OptionalArg;
|
|
use crate::obj::objtype::PyClassRef;
|
|
use crate::pyobject::{PyClassImpl, PyContext, PyObjectRef, PyRef, PyResult, PyValue};
|
|
use crate::vm::VirtualMachine;
|
|
|
|
#[pyclass]
|
|
#[derive(Debug)]
|
|
pub struct PyWeakProxy {
|
|
weak: PyWeak,
|
|
}
|
|
|
|
impl PyValue for PyWeakProxy {
|
|
fn class(vm: &VirtualMachine) -> PyClassRef {
|
|
vm.ctx.weakproxy_type()
|
|
}
|
|
}
|
|
|
|
pub type PyWeakProxyRef = PyRef<PyWeakProxy>;
|
|
|
|
#[pyimpl]
|
|
impl PyWeakProxy {
|
|
// TODO: callbacks
|
|
#[pymethod(name = "__new__")]
|
|
fn create(
|
|
cls: PyClassRef,
|
|
referent: PyObjectRef,
|
|
callback: OptionalArg<PyObjectRef>,
|
|
vm: &VirtualMachine,
|
|
) -> PyResult<PyWeakProxyRef> {
|
|
if callback.is_present() {
|
|
panic!("Passed a callback to weakproxy, but weakproxy does not yet support proxies.");
|
|
}
|
|
PyWeakProxy {
|
|
weak: PyWeak::downgrade(&referent),
|
|
}
|
|
.into_ref_with_type(vm, cls)
|
|
}
|
|
|
|
#[pymethod(name = "__getattr__")]
|
|
fn getattr(&self, attr_name: PyObjectRef, vm: &VirtualMachine) -> PyResult {
|
|
match self.weak.upgrade() {
|
|
Some(obj) => vm.get_attribute(obj, attr_name),
|
|
None => Err(vm.new_exception(
|
|
vm.ctx.exceptions.reference_error.clone(),
|
|
"weakly-referenced object no longer exists".to_string(),
|
|
)),
|
|
}
|
|
}
|
|
|
|
#[pymethod(name = "__setattr__")]
|
|
fn setattr(&self, attr_name: PyObjectRef, value: PyObjectRef, vm: &VirtualMachine) -> PyResult {
|
|
match self.weak.upgrade() {
|
|
Some(obj) => vm.set_attr(&obj, attr_name, value),
|
|
None => Err(vm.new_exception(
|
|
vm.ctx.exceptions.reference_error.clone(),
|
|
"weakly-referenced object no longer exists".to_string(),
|
|
)),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn init(context: &PyContext) {
|
|
PyWeakProxy::extend_class(&context, &context.types.weakproxy_type);
|
|
}
|