2018-09-21 21:32:48 +00:00
|
|
|
use pyo3::class::PyGCProtocol;
|
|
|
|
use pyo3::class::PyTraverseError;
|
|
|
|
use pyo3::class::PyVisit;
|
2018-05-02 18:49:40 +00:00
|
|
|
use pyo3::prelude::*;
|
2020-04-08 22:49:51 +00:00
|
|
|
use pyo3::type_object::PyTypeObject;
|
2020-03-26 05:50:00 +00:00
|
|
|
use pyo3::{py_run, AsPyPointer, PyCell, PyTryInto};
|
2019-02-01 13:01:18 +00:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
|
|
|
use std::sync::Arc;
|
2018-05-02 18:49:40 +00:00
|
|
|
|
|
|
|
mod common;
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pyclass(freelist = 2)]
|
2018-11-12 12:59:19 +00:00
|
|
|
struct ClassWithFreelist {}
|
2018-05-02 18:49:40 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn class_with_freelist() {
|
|
|
|
let ptr;
|
|
|
|
{
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
2019-02-07 18:07:09 +00:00
|
|
|
let inst = Py::new(py, ClassWithFreelist {}).unwrap();
|
|
|
|
let _inst2 = Py::new(py, ClassWithFreelist {}).unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
ptr = inst.as_ptr();
|
|
|
|
drop(inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
2019-02-07 18:07:09 +00:00
|
|
|
let inst3 = Py::new(py, ClassWithFreelist {}).unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
assert_eq!(ptr, inst3.as_ptr());
|
|
|
|
|
2019-02-07 18:07:09 +00:00
|
|
|
let inst4 = Py::new(py, ClassWithFreelist {}).unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
assert_ne!(ptr, inst4.as_ptr())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TestDropCall {
|
2018-06-15 19:21:12 +00:00
|
|
|
drop_called: Arc<AtomicBool>,
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
2018-10-03 19:04:24 +00:00
|
|
|
|
2018-05-02 18:49:40 +00:00
|
|
|
impl Drop for TestDropCall {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
self.drop_called.store(true, Ordering::Relaxed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pyclass]
|
2018-05-02 18:49:40 +00:00
|
|
|
struct DataIsDropped {
|
|
|
|
member1: TestDropCall,
|
|
|
|
member2: TestDropCall,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn data_is_dropped() {
|
|
|
|
let drop_called1 = Arc::new(AtomicBool::new(false));
|
|
|
|
let drop_called2 = Arc::new(AtomicBool::new(false));
|
|
|
|
|
|
|
|
{
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2019-02-13 20:35:26 +00:00
|
|
|
let data_is_dropped = DataIsDropped {
|
|
|
|
member1: TestDropCall {
|
|
|
|
drop_called: Arc::clone(&drop_called1),
|
|
|
|
},
|
|
|
|
member2: TestDropCall {
|
|
|
|
drop_called: Arc::clone(&drop_called2),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
let inst = Py::new(py, data_is_dropped).unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
assert!(!drop_called1.load(Ordering::Relaxed));
|
|
|
|
assert!(!drop_called2.load(Ordering::Relaxed));
|
|
|
|
drop(inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(drop_called1.load(Ordering::Relaxed));
|
|
|
|
assert!(drop_called2.load(Ordering::Relaxed));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pyclass]
|
2021-03-26 05:21:38 +00:00
|
|
|
struct GcIntegration {
|
2020-05-31 15:15:33 +00:00
|
|
|
self_ref: PyObject,
|
2018-05-02 18:49:40 +00:00
|
|
|
dropped: TestDropCall,
|
|
|
|
}
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pyproto]
|
2021-03-26 05:21:38 +00:00
|
|
|
impl PyGCProtocol for GcIntegration {
|
2018-05-02 18:49:40 +00:00
|
|
|
fn __traverse__(&self, visit: PyVisit) -> Result<(), PyTraverseError> {
|
2020-05-31 15:15:33 +00:00
|
|
|
visit.call(&self.self_ref)
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn __clear__(&mut self) {
|
2020-07-13 21:38:02 +00:00
|
|
|
let gil = Python::acquire_gil();
|
2020-05-31 15:15:33 +00:00
|
|
|
self.self_ref = gil.python().None();
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gc_integration() {
|
|
|
|
let drop_called = Arc::new(AtomicBool::new(false));
|
|
|
|
|
|
|
|
{
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2020-02-15 04:42:25 +00:00
|
|
|
let inst = PyCell::new(
|
2019-02-07 18:07:09 +00:00
|
|
|
py,
|
2021-03-26 05:21:38 +00:00
|
|
|
GcIntegration {
|
2020-05-31 15:15:33 +00:00
|
|
|
self_ref: py.None(),
|
2019-02-07 18:07:09 +00:00
|
|
|
dropped: TestDropCall {
|
|
|
|
drop_called: Arc::clone(&drop_called),
|
|
|
|
},
|
2018-06-15 19:21:12 +00:00
|
|
|
},
|
2019-02-07 18:07:09 +00:00
|
|
|
)
|
2018-09-28 21:34:57 +00:00
|
|
|
.unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
|
2020-02-15 15:24:38 +00:00
|
|
|
let mut borrow = inst.borrow_mut();
|
2020-05-31 15:15:33 +00:00
|
|
|
borrow.self_ref = inst.to_object(py);
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
py.run("import gc; gc.collect()", None, None).unwrap();
|
|
|
|
assert!(drop_called.load(Ordering::Relaxed));
|
|
|
|
}
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pyclass(gc)]
|
2021-03-26 05:21:38 +00:00
|
|
|
struct GcIntegration2 {}
|
2018-10-03 19:04:24 +00:00
|
|
|
|
2019-07-14 13:44:37 +00:00
|
|
|
#[pyproto]
|
2021-03-26 05:21:38 +00:00
|
|
|
impl PyGCProtocol for GcIntegration2 {
|
2019-07-14 13:44:37 +00:00
|
|
|
fn __traverse__(&self, _visit: PyVisit) -> Result<(), PyTraverseError> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-07-14 18:45:05 +00:00
|
|
|
fn __clear__(&mut self) {}
|
2019-07-14 13:44:37 +00:00
|
|
|
}
|
|
|
|
|
2018-05-02 18:49:40 +00:00
|
|
|
#[test]
|
|
|
|
fn gc_integration2() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2021-03-26 05:21:38 +00:00
|
|
|
let inst = PyCell::new(py, GcIntegration2 {}).unwrap();
|
2019-07-14 13:44:37 +00:00
|
|
|
py_run!(py, inst, "import gc; assert inst in gc.get_objects()");
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
|
2020-09-01 00:36:26 +00:00
|
|
|
#[pyclass(weakref, subclass)]
|
2018-11-12 12:59:19 +00:00
|
|
|
struct WeakRefSupport {}
|
2018-10-03 19:04:24 +00:00
|
|
|
|
2018-05-02 18:49:40 +00:00
|
|
|
#[test]
|
2020-12-27 17:56:52 +00:00
|
|
|
#[cfg_attr(all(Py_LIMITED_API, not(Py_3_9)), ignore)]
|
2018-05-02 18:49:40 +00:00
|
|
|
fn weakref_support() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2020-02-15 04:42:25 +00:00
|
|
|
let inst = PyCell::new(py, WeakRefSupport {}).unwrap();
|
2018-06-15 19:21:12 +00:00
|
|
|
py_run!(
|
|
|
|
py,
|
|
|
|
inst,
|
|
|
|
"import weakref; assert weakref.ref(inst)() is inst"
|
|
|
|
);
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
|
2020-02-25 11:02:03 +00:00
|
|
|
// If the base class has weakref support, child class also has weakref.
|
|
|
|
#[pyclass(extends=WeakRefSupport)]
|
|
|
|
struct InheritWeakRef {
|
|
|
|
_value: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-12-27 17:56:52 +00:00
|
|
|
#[cfg_attr(all(Py_LIMITED_API, not(Py_3_9)), ignore)]
|
2020-02-25 11:02:03 +00:00
|
|
|
fn inherited_weakref() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
let inst = PyCell::new(py, (InheritWeakRef { _value: 0 }, WeakRefSupport {})).unwrap();
|
|
|
|
py_run!(
|
|
|
|
py,
|
|
|
|
inst,
|
|
|
|
"import weakref; assert weakref.ref(inst)() is inst"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-01 00:36:26 +00:00
|
|
|
#[pyclass(subclass)]
|
2018-05-02 18:49:40 +00:00
|
|
|
struct BaseClassWithDrop {
|
|
|
|
data: Option<Arc<AtomicBool>>,
|
|
|
|
}
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pymethods]
|
2018-05-02 18:49:40 +00:00
|
|
|
impl BaseClassWithDrop {
|
|
|
|
#[new]
|
2019-12-14 14:16:39 +00:00
|
|
|
fn new() -> BaseClassWithDrop {
|
|
|
|
BaseClassWithDrop { data: None }
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for BaseClassWithDrop {
|
|
|
|
fn drop(&mut self) {
|
2020-11-12 11:09:24 +00:00
|
|
|
if let Some(data) = &self.data {
|
2018-05-02 18:49:40 +00:00
|
|
|
data.store(true, Ordering::Relaxed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 19:04:24 +00:00
|
|
|
#[pyclass(extends = BaseClassWithDrop)]
|
2018-05-02 18:49:40 +00:00
|
|
|
struct SubClassWithDrop {
|
|
|
|
data: Option<Arc<AtomicBool>>,
|
|
|
|
}
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pymethods]
|
2018-05-02 18:49:40 +00:00
|
|
|
impl SubClassWithDrop {
|
|
|
|
#[new]
|
2020-01-05 07:01:05 +00:00
|
|
|
fn new() -> (Self, BaseClassWithDrop) {
|
|
|
|
(
|
|
|
|
SubClassWithDrop { data: None },
|
|
|
|
BaseClassWithDrop { data: None },
|
|
|
|
)
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for SubClassWithDrop {
|
|
|
|
fn drop(&mut self) {
|
2020-11-12 11:09:24 +00:00
|
|
|
if let Some(data) = &self.data {
|
2018-05-02 18:49:40 +00:00
|
|
|
data.store(true, Ordering::Relaxed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn inheritance_with_new_methods_with_drop() {
|
|
|
|
let drop_called1 = Arc::new(AtomicBool::new(false));
|
|
|
|
let drop_called2 = Arc::new(AtomicBool::new(false));
|
|
|
|
|
|
|
|
{
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
let _typebase = py.get_type::<BaseClassWithDrop>();
|
|
|
|
let typeobj = py.get_type::<SubClassWithDrop>();
|
2019-02-23 17:01:22 +00:00
|
|
|
let inst = typeobj.call((), None).unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
|
2020-02-15 04:42:25 +00:00
|
|
|
let obj: &PyCell<SubClassWithDrop> = inst.try_into().unwrap();
|
|
|
|
let mut obj_ref_mut = obj.borrow_mut();
|
|
|
|
obj_ref_mut.data = Some(Arc::clone(&drop_called1));
|
2020-05-03 12:12:51 +00:00
|
|
|
let base: &mut BaseClassWithDrop = obj_ref_mut.as_mut();
|
|
|
|
base.data = Some(Arc::clone(&drop_called2));
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert!(drop_called1.load(Ordering::Relaxed));
|
|
|
|
assert!(drop_called2.load(Ordering::Relaxed));
|
|
|
|
}
|
2020-04-08 22:49:51 +00:00
|
|
|
|
|
|
|
#[pyclass(gc)]
|
|
|
|
struct TraversableClass {
|
|
|
|
traversed: AtomicBool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TraversableClass {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
traversed: AtomicBool::new(false),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pyproto]
|
|
|
|
impl PyGCProtocol for TraversableClass {
|
|
|
|
fn __clear__(&mut self) {}
|
|
|
|
fn __traverse__(&self, _visit: PyVisit) -> Result<(), PyTraverseError> {
|
|
|
|
self.traversed.store(true, Ordering::Relaxed);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-15 12:21:49 +00:00
|
|
|
unsafe fn get_type_traverse(tp: *mut pyo3::ffi::PyTypeObject) -> Option<pyo3::ffi::traverseproc> {
|
|
|
|
std::mem::transmute(pyo3::ffi::PyType_GetSlot(tp, pyo3::ffi::Py_tp_traverse))
|
|
|
|
}
|
|
|
|
|
2020-04-08 22:49:51 +00:00
|
|
|
#[test]
|
|
|
|
fn gc_during_borrow() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
// declare a dummy visitor function
|
|
|
|
extern "C" fn novisit(
|
2020-04-09 00:06:16 +00:00
|
|
|
_object: *mut pyo3::ffi::PyObject,
|
|
|
|
_arg: *mut core::ffi::c_void,
|
2020-04-08 22:49:51 +00:00
|
|
|
) -> std::os::raw::c_int {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the traverse function
|
2020-06-10 07:46:39 +00:00
|
|
|
let ty = TraversableClass::type_object(py).as_type_ptr();
|
2020-09-15 12:21:49 +00:00
|
|
|
let traverse = get_type_traverse(ty).unwrap();
|
2020-04-08 22:49:51 +00:00
|
|
|
|
|
|
|
// create an object and check that traversing it works normally
|
|
|
|
// when it's not borrowed
|
|
|
|
let cell = PyCell::new(py, TraversableClass::new()).unwrap();
|
|
|
|
let obj = cell.to_object(py);
|
|
|
|
assert!(!cell.borrow().traversed.load(Ordering::Relaxed));
|
|
|
|
traverse(obj.as_ptr(), novisit, std::ptr::null_mut());
|
|
|
|
assert!(cell.borrow().traversed.load(Ordering::Relaxed));
|
|
|
|
|
|
|
|
// create an object and check that it is not traversed if the GC
|
|
|
|
// is invoked while it is already borrowed mutably
|
|
|
|
let cell2 = PyCell::new(py, TraversableClass::new()).unwrap();
|
|
|
|
let obj2 = cell2.to_object(py);
|
|
|
|
let guard = cell2.borrow_mut();
|
|
|
|
assert!(!guard.traversed.load(Ordering::Relaxed));
|
|
|
|
traverse(obj2.as_ptr(), novisit, std::ptr::null_mut());
|
|
|
|
assert!(!guard.traversed.load(Ordering::Relaxed));
|
|
|
|
drop(guard);
|
|
|
|
}
|
|
|
|
}
|