pyo3/types/weakref/anyref.rs
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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
use crate::err::PyResult;
use crate::ffi_ptr_ext::FfiPtrExt;
use crate::type_object::{PyTypeCheck, PyTypeInfo};
use crate::types::{
any::{PyAny, PyAnyMethods},
PyNone,
};
use crate::{ffi, Bound, Python};
/// Represents any Python `weakref` reference.
///
/// In Python this is created by calling `weakref.ref` or `weakref.proxy`.
#[repr(transparent)]
pub struct PyWeakref(PyAny);
pyobject_native_type_named!(PyWeakref);
// TODO: We known the layout but this cannot be implemented, due to the lack of public typeobject pointers
// #[cfg(not(Py_LIMITED_API))]
// pyobject_native_type_sized!(PyWeakref, ffi::PyWeakReference);
impl PyTypeCheck for PyWeakref {
const NAME: &'static str = "weakref";
fn type_check(object: &Bound<'_, PyAny>) -> bool {
unsafe { ffi::PyWeakref_Check(object.as_ptr()) > 0 }
}
}
/// Implementation of functionality for [`PyWeakref`].
///
/// These methods are defined for the `Bound<'py, PyWeakref>` smart pointer, so to use method call
/// syntax these methods are separated into a trait, because stable Rust does not yet support
/// `arbitrary_self_types`.
#[doc(alias = "PyWeakref")]
pub trait PyWeakrefMethods<'py>: crate::sealed::Sealed {
/// Upgrade the weakref to a direct Bound object reference.
///
/// It is named `upgrade` to be inline with [rust's `Weak::upgrade`](std::rc::Weak::upgrade).
/// In Python it would be equivalent to [`PyWeakref_GetRef`].
///
/// # Example
#[cfg_attr(
not(all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9))))),
doc = "```rust,ignore"
)]
#[cfg_attr(
all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9)))),
doc = "```rust"
)]
/// use pyo3::prelude::*;
/// use pyo3::types::PyWeakrefReference;
///
/// #[pyclass(weakref)]
/// struct Foo { /* fields omitted */ }
///
/// #[pymethods]
/// impl Foo {
/// fn get_data(&self) -> (&str, u32) {
/// ("Dave", 10)
/// }
/// }
///
/// fn parse_data(reference: Borrowed<'_, '_, PyWeakrefReference>) -> PyResult<String> {
/// if let Some(data_src) = reference.upgrade_as::<Foo>()? {
/// let data = data_src.borrow();
/// let (name, score) = data.get_data();
/// Ok(format!("Processing '{}': score = {}", name, score))
/// } else {
/// Ok("The supplied data reference is nolonger relavent.".to_owned())
/// }
/// }
///
/// # fn main() -> PyResult<()> {
/// Python::with_gil(|py| {
/// let data = Bound::new(py, Foo{})?;
/// let reference = PyWeakrefReference::new(&data)?;
///
/// assert_eq!(
/// parse_data(reference.as_borrowed())?,
/// "Processing 'Dave': score = 10"
/// );
///
/// drop(data);
///
/// assert_eq!(
/// parse_data(reference.as_borrowed())?,
/// "The supplied data reference is nolonger relavent."
/// );
///
/// Ok(())
/// })
/// # }
/// ```
///
/// # Panics
/// This function panics is the current object is invalid.
/// If used propperly this is never the case. (NonNull and actually a weakref type)
///
/// [`PyWeakref_GetRef`]: https://docs.python.org/3/c-api/weakref.html#c.PyWeakref_GetRef
/// [`weakref.ReferenceType`]: https://docs.python.org/3/library/weakref.html#weakref.ReferenceType
/// [`weakref.ref`]: https://docs.python.org/3/library/weakref.html#weakref.ref
fn upgrade_as<T>(&self) -> PyResult<Option<Bound<'py, T>>>
where
T: PyTypeCheck,
{
self.upgrade()
.map(Bound::downcast_into::<T>)
.transpose()
.map_err(Into::into)
}
/// Upgrade the weakref to a direct Bound object reference unchecked. The type of the recovered object is not checked before downcasting, this could lead to unexpected behavior. Use only when absolutely certain the type can be guaranteed. The `weakref` may still return `None`.
///
/// It is named `upgrade` to be inline with [rust's `Weak::upgrade`](std::rc::Weak::upgrade).
/// In Python it would be equivalent to [`PyWeakref_GetRef`].
///
/// # Safety
/// Callers must ensure that the type is valid or risk type confusion.
/// The `weakref` is still allowed to be `None`, if the referenced object has been cleaned up.
///
/// # Example
#[cfg_attr(
not(all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9))))),
doc = "```rust,ignore"
)]
#[cfg_attr(
all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9)))),
doc = "```rust"
)]
/// use pyo3::prelude::*;
/// use pyo3::types::PyWeakrefReference;
///
/// #[pyclass(weakref)]
/// struct Foo { /* fields omitted */ }
///
/// #[pymethods]
/// impl Foo {
/// fn get_data(&self) -> (&str, u32) {
/// ("Dave", 10)
/// }
/// }
///
/// fn parse_data(reference: Borrowed<'_, '_, PyWeakrefReference>) -> String {
/// if let Some(data_src) = unsafe { reference.upgrade_as_unchecked::<Foo>() } {
/// let data = data_src.borrow();
/// let (name, score) = data.get_data();
/// format!("Processing '{}': score = {}", name, score)
/// } else {
/// "The supplied data reference is nolonger relavent.".to_owned()
/// }
/// }
///
/// # fn main() -> PyResult<()> {
/// Python::with_gil(|py| {
/// let data = Bound::new(py, Foo{})?;
/// let reference = PyWeakrefReference::new(&data)?;
///
/// assert_eq!(
/// parse_data(reference.as_borrowed()),
/// "Processing 'Dave': score = 10"
/// );
///
/// drop(data);
///
/// assert_eq!(
/// parse_data(reference.as_borrowed()),
/// "The supplied data reference is nolonger relavent."
/// );
///
/// Ok(())
/// })
/// # }
/// ```
///
/// # Panics
/// This function panics is the current object is invalid.
/// If used propperly this is never the case. (NonNull and actually a weakref type)
///
/// [`PyWeakref_GetRef`]: https://docs.python.org/3/c-api/weakref.html#c.PyWeakref_GetRef
/// [`weakref.ReferenceType`]: https://docs.python.org/3/library/weakref.html#weakref.ReferenceType
/// [`weakref.ref`]: https://docs.python.org/3/library/weakref.html#weakref.ref
unsafe fn upgrade_as_unchecked<T>(&self) -> Option<Bound<'py, T>> {
Some(self.upgrade()?.downcast_into_unchecked())
}
/// Upgrade the weakref to a exact direct Bound object reference.
///
/// It is named `upgrade` to be inline with [rust's `Weak::upgrade`](std::rc::Weak::upgrade).
/// In Python it would be equivalent to [`PyWeakref_GetRef`].
///
/// # Example
#[cfg_attr(
not(all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9))))),
doc = "```rust,ignore"
)]
#[cfg_attr(
all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9)))),
doc = "```rust"
)]
/// use pyo3::prelude::*;
/// use pyo3::types::PyWeakrefReference;
///
/// #[pyclass(weakref)]
/// struct Foo { /* fields omitted */ }
///
/// #[pymethods]
/// impl Foo {
/// fn get_data(&self) -> (&str, u32) {
/// ("Dave", 10)
/// }
/// }
///
/// fn parse_data(reference: Borrowed<'_, '_, PyWeakrefReference>) -> PyResult<String> {
/// if let Some(data_src) = reference.upgrade_as_exact::<Foo>()? {
/// let data = data_src.borrow();
/// let (name, score) = data.get_data();
/// Ok(format!("Processing '{}': score = {}", name, score))
/// } else {
/// Ok("The supplied data reference is nolonger relavent.".to_owned())
/// }
/// }
///
/// # fn main() -> PyResult<()> {
/// Python::with_gil(|py| {
/// let data = Bound::new(py, Foo{})?;
/// let reference = PyWeakrefReference::new(&data)?;
///
/// assert_eq!(
/// parse_data(reference.as_borrowed())?,
/// "Processing 'Dave': score = 10"
/// );
///
/// drop(data);
///
/// assert_eq!(
/// parse_data(reference.as_borrowed())?,
/// "The supplied data reference is nolonger relavent."
/// );
///
/// Ok(())
/// })
/// # }
/// ```
///
/// # Panics
/// This function panics is the current object is invalid.
/// If used propperly this is never the case. (NonNull and actually a weakref type)
///
/// [`PyWeakref_GetRef`]: https://docs.python.org/3/c-api/weakref.html#c.PyWeakref_GetRef
/// [`weakref.ReferenceType`]: https://docs.python.org/3/library/weakref.html#weakref.ReferenceType
/// [`weakref.ref`]: https://docs.python.org/3/library/weakref.html#weakref.ref
fn upgrade_as_exact<T>(&self) -> PyResult<Option<Bound<'py, T>>>
where
T: PyTypeInfo,
{
self.upgrade()
.map(Bound::downcast_into_exact)
.transpose()
.map_err(Into::into)
}
/// Upgrade the weakref to a Bound [`PyAny`] reference to the target object if possible.
///
/// It is named `upgrade` to be inline with [rust's `Weak::upgrade`](std::rc::Weak::upgrade).
/// This function returns `Some(Bound<'py, PyAny>)` if the reference still exists, otherwise `None` will be returned.
///
/// This function gets the optional target of this [`weakref.ReferenceType`] (result of calling [`weakref.ref`]).
/// It produces similar results to using [`PyWeakref_GetRef`] in the C api.
///
/// # Example
#[cfg_attr(
not(all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9))))),
doc = "```rust,ignore"
)]
#[cfg_attr(
all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9)))),
doc = "```rust"
)]
/// use pyo3::prelude::*;
/// use pyo3::types::PyWeakrefReference;
///
/// #[pyclass(weakref)]
/// struct Foo { /* fields omitted */ }
///
/// fn parse_data(reference: Borrowed<'_, '_, PyWeakrefReference>) -> PyResult<String> {
/// if let Some(object) = reference.upgrade() {
/// Ok(format!("The object '{}' refered by this reference still exists.", object.getattr("__class__")?.getattr("__qualname__")?))
/// } else {
/// Ok("The object, which this reference refered to, no longer exists".to_owned())
/// }
/// }
///
/// # fn main() -> PyResult<()> {
/// Python::with_gil(|py| {
/// let data = Bound::new(py, Foo{})?;
/// let reference = PyWeakrefReference::new(&data)?;
///
/// assert_eq!(
/// parse_data(reference.as_borrowed())?,
/// "The object 'Foo' refered by this reference still exists."
/// );
///
/// drop(data);
///
/// assert_eq!(
/// parse_data(reference.as_borrowed())?,
/// "The object, which this reference refered to, no longer exists"
/// );
///
/// Ok(())
/// })
/// # }
/// ```
///
/// # Panics
/// This function panics is the current object is invalid.
/// If used properly this is never the case. (NonNull and actually a weakref type)
///
/// [`PyWeakref_GetRef`]: https://docs.python.org/3/c-api/weakref.html#c.PyWeakref_GetRef
/// [`weakref.ReferenceType`]: https://docs.python.org/3/library/weakref.html#weakref.ReferenceType
/// [`weakref.ref`]: https://docs.python.org/3/library/weakref.html#weakref.ref
fn upgrade(&self) -> Option<Bound<'py, PyAny>>;
/// Retrieve to a Bound object pointed to by the weakref.
///
/// This function returns `Bound<'py, PyAny>`, which is either the object if it still exists, otherwise it will refer to [`PyNone`](crate::types::PyNone).
///
/// This function gets the optional target of this [`weakref.ReferenceType`] (result of calling [`weakref.ref`]).
/// It produces similar results to using [`PyWeakref_GetRef`] in the C api.
///
/// # Example
#[cfg_attr(
not(all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9))))),
doc = "```rust,ignore"
)]
#[cfg_attr(
all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9)))),
doc = "```rust"
)]
/// #![allow(deprecated)]
/// use pyo3::prelude::*;
/// use pyo3::types::PyWeakrefReference;
///
/// #[pyclass(weakref)]
/// struct Foo { /* fields omitted */ }
///
/// fn get_class(reference: Borrowed<'_, '_, PyWeakrefReference>) -> PyResult<String> {
/// reference
/// .get_object()
/// .getattr("__class__")?
/// .repr()
/// .map(|repr| repr.to_string())
/// }
///
/// # fn main() -> PyResult<()> {
/// Python::with_gil(|py| {
/// let object = Bound::new(py, Foo{})?;
/// let reference = PyWeakrefReference::new(&object)?;
///
/// assert_eq!(
/// get_class(reference.as_borrowed())?,
/// "<class 'builtins.Foo'>"
/// );
///
/// drop(object);
///
/// assert_eq!(get_class(reference.as_borrowed())?, "<class 'NoneType'>");
///
/// Ok(())
/// })
/// # }
/// ```
///
/// # Panics
/// This function panics is the current object is invalid.
/// If used propperly this is never the case. (NonNull and actually a weakref type)
///
/// [`PyWeakref_GetRef`]: https://docs.python.org/3/c-api/weakref.html#c.PyWeakref_GetRef
/// [`weakref.ReferenceType`]: https://docs.python.org/3/library/weakref.html#weakref.ReferenceType
/// [`weakref.ref`]: https://docs.python.org/3/library/weakref.html#weakref.ref
#[deprecated(since = "0.23.0", note = "Use `upgrade` instead")]
fn get_object(&self) -> Bound<'py, PyAny> {
self.upgrade().unwrap_or_else(|| {
// Safety: upgrade() returns `Bound<'py, PyAny>` with a lifetime `'py` if it exists, we
// can safely assume the same lifetime here.
PyNone::get(unsafe { Python::assume_gil_acquired() })
.to_owned()
.into_any()
})
}
}
impl<'py> PyWeakrefMethods<'py> for Bound<'py, PyWeakref> {
fn upgrade(&self) -> Option<Bound<'py, PyAny>> {
let mut obj: *mut ffi::PyObject = std::ptr::null_mut();
match unsafe { ffi::compat::PyWeakref_GetRef(self.as_ptr(), &mut obj) } {
std::os::raw::c_int::MIN..=-1 => panic!("The 'weakref' weak reference instance should be valid (non-null and actually a weakref reference)"),
0 => None,
1..=std::os::raw::c_int::MAX => Some(unsafe { obj.assume_owned_unchecked(self.py()) }),
}
}
}
#[cfg(test)]
mod tests {
use crate::types::any::{PyAny, PyAnyMethods};
use crate::types::weakref::{PyWeakref, PyWeakrefMethods, PyWeakrefProxy, PyWeakrefReference};
use crate::{Bound, PyResult, Python};
fn new_reference<'py>(object: &Bound<'py, PyAny>) -> PyResult<Bound<'py, PyWeakref>> {
let reference = PyWeakrefReference::new(object)?;
reference.into_any().downcast_into().map_err(Into::into)
}
fn new_proxy<'py>(object: &Bound<'py, PyAny>) -> PyResult<Bound<'py, PyWeakref>> {
let reference = PyWeakrefProxy::new(object)?;
reference.into_any().downcast_into().map_err(Into::into)
}
mod python_class {
use super::*;
use crate::ffi;
use crate::{py_result_ext::PyResultExt, types::PyType};
fn get_type(py: Python<'_>) -> PyResult<Bound<'_, PyType>> {
py.run(ffi::c_str!("class A:\n pass\n"), None, None)?;
py.eval(ffi::c_str!("A"), None, None)
.downcast_into::<PyType>()
}
#[test]
fn test_weakref_upgrade_as() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
) -> PyResult<()> {
Python::with_gil(|py| {
let class = get_type(py)?;
let object = class.call0()?;
let reference = create_reference(&object)?;
{
// This test is a bit weird but ok.
let obj = reference.upgrade_as::<PyAny>();
assert!(obj.is_ok());
let obj = obj.unwrap();
assert!(obj.is_some());
assert!(obj.map_or(false, |obj| obj.as_ptr() == object.as_ptr()
&& obj.is_exact_instance(&class)));
}
drop(object);
{
// This test is a bit weird but ok.
let obj = reference.upgrade_as::<PyAny>();
assert!(obj.is_ok());
let obj = obj.unwrap();
assert!(obj.is_none());
}
Ok(())
})
}
inner(new_reference)?;
inner(new_proxy)
}
#[test]
fn test_weakref_upgrade_as_unchecked() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
) -> PyResult<()> {
Python::with_gil(|py| {
let class = get_type(py)?;
let object = class.call0()?;
let reference = create_reference(&object)?;
{
// This test is a bit weird but ok.
let obj = unsafe { reference.upgrade_as_unchecked::<PyAny>() };
assert!(obj.is_some());
assert!(obj.map_or(false, |obj| obj.as_ptr() == object.as_ptr()
&& obj.is_exact_instance(&class)));
}
drop(object);
{
// This test is a bit weird but ok.
let obj = unsafe { reference.upgrade_as_unchecked::<PyAny>() };
assert!(obj.is_none());
}
Ok(())
})
}
inner(new_reference)?;
inner(new_proxy)
}
#[test]
fn test_weakref_upgrade() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
call_retrievable: bool,
) -> PyResult<()> {
let not_call_retrievable = !call_retrievable;
Python::with_gil(|py| {
let class = get_type(py)?;
let object = class.call0()?;
let reference = create_reference(&object)?;
assert!(not_call_retrievable || reference.call0()?.is(&object));
assert!(reference.upgrade().is_some());
assert!(reference.upgrade().map_or(false, |obj| obj.is(&object)));
drop(object);
assert!(not_call_retrievable || reference.call0()?.is_none());
assert!(reference.upgrade().is_none());
Ok(())
})
}
inner(new_reference, true)?;
inner(new_proxy, false)
}
#[test]
#[allow(deprecated)]
fn test_weakref_get_object() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
call_retrievable: bool,
) -> PyResult<()> {
let not_call_retrievable = !call_retrievable;
Python::with_gil(|py| {
let class = get_type(py)?;
let object = class.call0()?;
let reference = create_reference(&object)?;
assert!(not_call_retrievable || reference.call0()?.is(&object));
assert!(reference.get_object().is(&object));
drop(object);
assert!(not_call_retrievable || reference.call0()?.is(&reference.get_object()));
assert!(not_call_retrievable || reference.call0()?.is_none());
assert!(reference.get_object().is_none());
Ok(())
})
}
inner(new_reference, true)?;
inner(new_proxy, false)
}
}
// under 'abi3-py37' and 'abi3-py38' PyClass cannot be weakreferencable.
#[cfg(all(feature = "macros", not(all(Py_LIMITED_API, not(Py_3_9)))))]
mod pyo3_pyclass {
use super::*;
use crate::{pyclass, Py};
#[pyclass(weakref, crate = "crate")]
struct WeakrefablePyClass {}
#[test]
fn test_weakref_upgrade_as() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
) -> PyResult<()> {
Python::with_gil(|py| {
let object = Py::new(py, WeakrefablePyClass {})?;
let reference = create_reference(object.bind(py))?;
{
let obj = reference.upgrade_as::<WeakrefablePyClass>();
assert!(obj.is_ok());
let obj = obj.unwrap();
assert!(obj.is_some());
assert!(obj.map_or(false, |obj| obj.as_ptr() == object.as_ptr()));
}
drop(object);
{
let obj = reference.upgrade_as::<WeakrefablePyClass>();
assert!(obj.is_ok());
let obj = obj.unwrap();
assert!(obj.is_none());
}
Ok(())
})
}
inner(new_reference)?;
inner(new_proxy)
}
#[test]
fn test_weakref_upgrade_as_unchecked() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
) -> PyResult<()> {
Python::with_gil(|py| {
let object = Py::new(py, WeakrefablePyClass {})?;
let reference = create_reference(object.bind(py))?;
{
let obj = unsafe { reference.upgrade_as_unchecked::<WeakrefablePyClass>() };
assert!(obj.is_some());
assert!(obj.map_or(false, |obj| obj.as_ptr() == object.as_ptr()));
}
drop(object);
{
let obj = unsafe { reference.upgrade_as_unchecked::<WeakrefablePyClass>() };
assert!(obj.is_none());
}
Ok(())
})
}
inner(new_reference)?;
inner(new_proxy)
}
#[test]
fn test_weakref_upgrade() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
call_retrievable: bool,
) -> PyResult<()> {
let not_call_retrievable = !call_retrievable;
Python::with_gil(|py| {
let object = Py::new(py, WeakrefablePyClass {})?;
let reference = create_reference(object.bind(py))?;
assert!(not_call_retrievable || reference.call0()?.is(&object));
assert!(reference.upgrade().is_some());
assert!(reference.upgrade().map_or(false, |obj| obj.is(&object)));
drop(object);
assert!(not_call_retrievable || reference.call0()?.is_none());
assert!(reference.upgrade().is_none());
Ok(())
})
}
inner(new_reference, true)?;
inner(new_proxy, false)
}
#[test]
#[allow(deprecated)]
fn test_weakref_get_object() -> PyResult<()> {
fn inner(
create_reference: impl for<'py> FnOnce(
&Bound<'py, PyAny>,
)
-> PyResult<Bound<'py, PyWeakref>>,
call_retrievable: bool,
) -> PyResult<()> {
let not_call_retrievable = !call_retrievable;
Python::with_gil(|py| {
let object = Py::new(py, WeakrefablePyClass {})?;
let reference = create_reference(object.bind(py))?;
assert!(not_call_retrievable || reference.call0()?.is(&object));
assert!(reference.get_object().is(&object));
drop(object);
assert!(not_call_retrievable || reference.call0()?.is(&reference.get_object()));
assert!(not_call_retrievable || reference.call0()?.is_none());
assert!(reference.get_object().is_none());
Ok(())
})
}
inner(new_reference, true)?;
inner(new_proxy, false)
}
}
}