forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweakref.rs
More file actions
38 lines (32 loc) · 1.24 KB
/
weakref.rs
File metadata and controls
38 lines (32 loc) · 1.24 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
//! Implementation in line with the python `weakref` module.
//!
//! See also:
//! - [python weakref module](https://docs.python.org/3/library/weakref.html)
//! - [rust weak struct](https://doc.rust-lang.org/std/rc/struct.Weak.html)
//!
use crate::pyobject::PyObjectRef;
use crate::vm::VirtualMachine;
use std::rc::Rc;
fn weakref_getweakrefcount(obj: PyObjectRef, _vm: &VirtualMachine) -> usize {
Rc::weak_count(&obj)
}
fn weakref_getweakrefs(_obj: PyObjectRef, vm: &VirtualMachine) -> PyObjectRef {
// TODO: implement this, may require a different gc
vm.ctx.new_list(vec![])
}
fn weakref_remove_dead_weakref(_obj: PyObjectRef, _key: PyObjectRef, _vm: &VirtualMachine) {
// TODO
}
pub fn make_module(vm: &VirtualMachine) -> PyObjectRef {
let ctx = &vm.ctx;
py_module!(vm, "_weakref", {
"ref" => ctx.weakref_type(),
"proxy" => ctx.weakproxy_type(),
"getweakrefcount" => ctx.new_rustfunc(weakref_getweakrefcount),
"getweakrefs" => ctx.new_rustfunc(weakref_getweakrefs),
"ReferenceType" => ctx.weakref_type(),
"ProxyType" => ctx.weakproxy_type(),
"CallableProxyType" => ctx.weakproxy_type(),
"_remove_dead_weakref" => ctx.new_rustfunc(weakref_remove_dead_weakref),
})
}