forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjweakref.rs
More file actions
107 lines (95 loc) · 2.84 KB
/
objweakref.rs
File metadata and controls
107 lines (95 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
use super::objtype::PyClassRef;
use crate::function::{OptionalArg, PyFuncArgs};
use crate::pyobject::{
IdProtocol, PyClassImpl, PyContext, PyObject, PyObjectPayload, PyObjectRef, PyRef, PyResult,
PyValue, TypeProtocol,
};
use crate::slots::SlotCall;
use crate::vm::VirtualMachine;
use crate::pyhash::PyHash;
use crossbeam_utils::atomic::AtomicCell;
use std::sync::{Arc, Weak};
#[pyclass]
#[derive(Debug)]
pub struct PyWeak {
referent: Weak<PyObject<dyn PyObjectPayload>>,
hash: AtomicCell<Option<PyHash>>,
}
impl PyWeak {
pub fn downgrade(obj: &PyObjectRef) -> PyWeak {
PyWeak {
referent: Arc::downgrade(obj),
hash: AtomicCell::new(None),
}
}
pub fn upgrade(&self) -> Option<PyObjectRef> {
self.referent.upgrade()
}
}
impl PyValue for PyWeak {
fn class(vm: &VirtualMachine) -> PyClassRef {
vm.ctx.weakref_type()
}
}
pub type PyWeakRef = PyRef<PyWeak>;
impl SlotCall for PyWeak {
fn call(&self, args: PyFuncArgs, vm: &VirtualMachine) -> PyResult {
args.bind::<()>(vm)?;
Ok(self.referent.upgrade().unwrap_or_else(|| vm.get_none()))
}
}
#[pyimpl(with(SlotCall), flags(BASETYPE))]
impl PyWeak {
// TODO callbacks
#[pyslot]
fn tp_new(
cls: PyClassRef,
referent: PyObjectRef,
_callback: OptionalArg<PyObjectRef>,
vm: &VirtualMachine,
) -> PyResult<PyRef<Self>> {
PyWeak::downgrade(&referent).into_ref_with_type(vm, cls)
}
#[pymethod(magic)]
fn hash(&self, vm: &VirtualMachine) -> PyResult<PyHash> {
match self.hash.load() {
Some(hash) => Ok(hash),
None => {
let obj = self
.upgrade()
.ok_or_else(|| vm.new_type_error("weak object has gone away".to_owned()))?;
let hash = vm._hash(&obj)?;
self.hash.store(Some(hash));
Ok(hash)
}
}
}
#[pymethod(magic)]
fn eq(&self, other: PyObjectRef, vm: &VirtualMachine) -> PyResult {
if let Some(other) = other.payload_if_subclass::<Self>(vm) {
self.upgrade()
.and_then(|s| other.upgrade().map(|o| (s, o)))
.map_or(Ok(false), |(a, b)| vm.bool_eq(a, b))
.map(|b| vm.new_bool(b))
} else {
Ok(vm.ctx.not_implemented())
}
}
#[pymethod(magic)]
fn repr(zelf: PyRef<Self>) -> String {
let id = zelf.get_id();
if let Some(o) = zelf.upgrade() {
format!(
"<weakref at {}; to '{}' at {}>",
id,
o.class().name,
o.get_id(),
)
} else {
format!("<weakref at {}; dead>", id)
}
}
}
pub fn init(context: &PyContext) {
PyWeak::extend_class(context, &context.types.weakref_type);
}