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
//! Includes `PyCell` implementation. use crate::conversion::{AsPyPointer, FromPyPointer, ToPyObject}; use crate::pyclass::{PyClass, PyClassThreadChecker}; use crate::pyclass_init::PyClassInitializer; use crate::pyclass_slots::{PyClassDict, PyClassWeakRef}; use crate::type_object::{PyBorrowFlagLayout, PyLayout, PySizedLayout, PyTypeInfo}; use crate::types::PyAny; use crate::{ffi, FromPy, PyErr, PyNativeType, PyObject, PyResult, Python}; use std::cell::{Cell, UnsafeCell}; use std::fmt; use std::mem::ManuallyDrop; use std::ops::{Deref, DerefMut}; /// Base layout of PyCell. /// This is necessary for sharing BorrowFlag between parents and children. #[doc(hidden)] #[repr(C)] pub struct PyCellBase<T: PyTypeInfo> { ob_base: T::Layout, borrow_flag: Cell<BorrowFlag>, } unsafe impl<T> PyLayout<T> for PyCellBase<T> where T: PyTypeInfo + PyNativeType, T::Layout: PySizedLayout<T>, { const IS_NATIVE_TYPE: bool = true; } // Thes impls ensures `PyCellBase` can be a base type. impl<T> PySizedLayout<T> for PyCellBase<T> where T: PyTypeInfo + PyNativeType, T::Layout: PySizedLayout<T>, { } unsafe impl<T> PyBorrowFlagLayout<T> for PyCellBase<T> where T: PyTypeInfo + PyNativeType, T::Layout: PySizedLayout<T>, { } /// Inner type of `PyCell` without dict slots and reference counter. /// This struct has two usages: /// 1. As an inner type of `PyRef` and `PyRefMut`. /// 2. When `#[pyclass(extends=Base)]` is specified, `PyCellInner<Base>` is used as a base layout. #[doc(hidden)] #[repr(C)] pub struct PyCellInner<T: PyClass> { ob_base: T::BaseLayout, value: ManuallyDrop<UnsafeCell<T>>, } impl<T: PyClass> AsPyPointer for PyCellInner<T> { fn as_ptr(&self) -> *mut ffi::PyObject { (self as *const _) as *mut _ } } unsafe impl<T: PyClass> PyLayout<T> for PyCellInner<T> { const IS_NATIVE_TYPE: bool = false; fn get_super(&mut self) -> Option<&mut T::BaseLayout> { Some(&mut self.ob_base) } unsafe fn py_init(&mut self, value: T) { self.value = ManuallyDrop::new(UnsafeCell::new(value)); } unsafe fn py_drop(&mut self, py: Python) { ManuallyDrop::drop(&mut self.value); self.ob_base.py_drop(py); } } // These impls ensures `PyCellInner` can be a base type. impl<T: PyClass> PySizedLayout<T> for PyCellInner<T> {} unsafe impl<T: PyClass> PyBorrowFlagLayout<T> for PyCellInner<T> {} impl<T: PyClass> PyCellInner<T> { unsafe fn get_ptr(&self) -> *mut T { self.value.get() } fn get_borrow_flag(&self) -> BorrowFlag { let base = (&self.ob_base) as *const _ as *const PyCellBase<T::BaseNativeType>; unsafe { (*base).borrow_flag.get() } } fn set_borrow_flag(&self, flag: BorrowFlag) { let base = (&self.ob_base) as *const _ as *const PyCellBase<T::BaseNativeType>; unsafe { (*base).borrow_flag.set(flag) } } } /// `PyCell` is the container type for [`PyClass`](../pyclass/trait.PyClass.html). /// /// From Python side, `PyCell<T>` is the concrete layout of `T: PyClass` in the Python heap, /// which means we can convert `*const PyClass<T>` to `*mut ffi::PyObject`. /// /// From Rust side, `PyCell<T>` is the mutable container of `T`. /// Since `PyCell<T: PyClass>` is always on the Python heap, we don't have the ownership of it. /// Thus, to mutate the data behind `&PyCell<T>` safely, we employ the /// [Interior Mutability Pattern](https://doc.rust-lang.org/book/ch15-05-interior-mutability.html) /// like [std::cell::RefCell](https://doc.rust-lang.org/std/cell/struct.RefCell.html). /// /// `PyCell` implements `Deref<Target = PyAny>`, so you can also call methods from `PyAny` /// when you have a `PyCell<T>`. /// /// # Examples /// /// In most cases, `PyCell` is hidden behind `#[pymethods]`. /// However, you can construct `&PyCell` directly to test your pyclass in Rust code. /// /// ``` /// # use pyo3::prelude::*; /// #[pyclass] /// struct Book { /// #[pyo3(get)] /// name: &'static str, /// author: &'static str, /// } /// let gil = Python::acquire_gil(); /// let py = gil.python(); /// let book = Book { /// name: "The Man in the High Castle", /// author: "Philip Kindred Dick", /// }; /// let book_cell = PyCell::new(py, book).unwrap(); /// // you can expose PyCell to Python snippets /// pyo3::py_run!(py, book_cell, "assert book_cell.name[-6:] == 'Castle'"); /// ``` /// You can use `slf: &PyCell<Self>` as an alternative `self` receiver of `#[pymethod]`, /// though you rarely need it. /// ``` /// # use pyo3::prelude::*; /// use std::collections::HashMap; /// #[pyclass] /// #[derive(Default)] /// struct Counter { /// counter: HashMap<String, usize> /// } /// #[pymethods] /// impl Counter { /// // You can use &mut self here, but now we use &PyCell for demonstration /// fn increment(slf: &PyCell<Self>, name: String) -> PyResult<usize> { /// let mut slf_mut = slf.try_borrow_mut()?; /// // Now a mutable reference exists so we cannot get another one /// assert!(slf.try_borrow().is_err()); /// assert!(slf.try_borrow_mut().is_err()); /// let counter = slf_mut.counter.entry(name).or_insert(0); /// *counter += 1; /// Ok(*counter) /// } /// } /// # let gil = Python::acquire_gil(); /// # let py = gil.python(); /// # let counter = PyCell::new(py, Counter::default()).unwrap(); /// # pyo3::py_run!(py, counter, "assert counter.increment('cat') == 1"); /// ``` #[repr(C)] pub struct PyCell<T: PyClass> { inner: PyCellInner<T>, dict: T::Dict, weakref: T::WeakRef, thread_checker: T::ThreadChecker, } unsafe impl<T: PyClass> PyNativeType for PyCell<T> {} impl<T: PyClass> PyCell<T> { /// Make a new `PyCell` on the Python heap and return the reference to it. /// /// In cases where the value in the cell does not need to be accessed immediately after /// creation, consider [`Py::new`](../instance/struct.Py.html#method.new) as a more efficient /// alternative. pub fn new(py: Python, value: impl Into<PyClassInitializer<T>>) -> PyResult<&Self> where T::BaseLayout: PyBorrowFlagLayout<T::BaseType>, { unsafe { let initializer = value.into(); let self_ = initializer.create_cell(py)?; FromPyPointer::from_owned_ptr_or_err(py, self_ as _) } } /// Immutably borrows the value `T`. This borrow lasts untill the returned `PyRef` exists. /// /// # Panics /// /// Panics if the value is currently mutably borrowed. For a non-panicking variant, use /// [`try_borrow`](#method.try_borrow). pub fn borrow(&self) -> PyRef<'_, T> { self.try_borrow().expect("Already mutably borrowed") } /// Mutably borrows the value `T`. This borrow lasts untill the returned `PyRefMut` exists. /// /// # Panics /// /// Panics if the value is currently mutably borrowed. For a non-panicking variant, use /// [`try_borrow_mut`](#method.try_borrow_mut). pub fn borrow_mut(&self) -> PyRefMut<'_, T> { self.try_borrow_mut().expect("Already borrowed") } /// Immutably borrows the value `T`, returning an error if the value is currently /// mutably borrowed. This borrow lasts untill the returned `PyRef` exists. /// /// This is the non-panicking variant of [`borrow`](#method.borrow). /// /// # Examples /// /// ``` /// # use pyo3::prelude::*; /// #[pyclass] /// struct Class {} /// let gil = Python::acquire_gil(); /// let py = gil.python(); /// let c = PyCell::new(py, Class {}).unwrap(); /// { /// let m = c.borrow_mut(); /// assert!(c.try_borrow().is_err()); /// } /// /// { /// let m = c.borrow(); /// assert!(c.try_borrow().is_ok()); /// } /// ``` pub fn try_borrow(&self) -> Result<PyRef<'_, T>, PyBorrowError> { self.thread_checker.ensure(); let flag = self.inner.get_borrow_flag(); if flag == BorrowFlag::HAS_MUTABLE_BORROW { Err(PyBorrowError { _private: () }) } else { self.inner.set_borrow_flag(flag.increment()); Ok(PyRef { inner: &self.inner }) } } /// Mutably borrows the value `T`, returning an error if the value is currently borrowed. /// This borrow lasts untill the returned `PyRefMut` exists. /// /// This is the non-panicking variant of [`borrow_mut`](#method.borrow_mut). /// /// # Examples /// /// ``` /// # use pyo3::prelude::*; /// #[pyclass] /// struct Class {} /// let gil = Python::acquire_gil(); /// let py = gil.python(); /// let c = PyCell::new(py, Class {}).unwrap(); /// { /// let m = c.borrow(); /// assert!(c.try_borrow_mut().is_err()); /// } /// /// assert!(c.try_borrow_mut().is_ok()); /// ``` pub fn try_borrow_mut(&self) -> Result<PyRefMut<'_, T>, PyBorrowMutError> { self.thread_checker.ensure(); if self.inner.get_borrow_flag() != BorrowFlag::UNUSED { Err(PyBorrowMutError { _private: () }) } else { self.inner.set_borrow_flag(BorrowFlag::HAS_MUTABLE_BORROW); Ok(PyRefMut { inner: &self.inner }) } } /// Immutably borrows the value `T`, returning an error if the value is /// currently mutably borrowed. /// /// # Safety /// /// This method is unsafe because it does not return a `PyRef`, /// thus leaving the borrow flag untouched. Mutably borrowing the `PyCell` /// while the reference returned by this method is alive is undefined behaviour. /// /// # Examples /// /// ``` /// # use pyo3::prelude::*; /// #[pyclass] /// struct Class {} /// let gil = Python::acquire_gil(); /// let py = gil.python(); /// let c = PyCell::new(py, Class {}).unwrap(); /// /// { /// let m = c.borrow_mut(); /// assert!(unsafe { c.try_borrow_unguarded() }.is_err()); /// } /// /// { /// let m = c.borrow(); /// assert!(unsafe { c.try_borrow_unguarded() }.is_ok()); /// } /// ``` pub unsafe fn try_borrow_unguarded(&self) -> Result<&T, PyBorrowError> { self.thread_checker.ensure(); if self.inner.get_borrow_flag() == BorrowFlag::HAS_MUTABLE_BORROW { Err(PyBorrowError { _private: () }) } else { Ok(&*self.inner.value.get()) } } /// Replaces the wrapped value with a new one, returning the old value, /// /// # Panics /// /// Panics if the value is currently borrowed. #[inline] pub fn replace(&self, t: T) -> T { std::mem::replace(&mut *self.borrow_mut(), t) } /// Replaces the wrapped value with a new one computed from `f`, returning the old value. /// /// # Panics /// /// Panics if the value is currently borrowed. pub fn replace_with<F: FnOnce(&mut T) -> T>(&self, f: F) -> T { let mut_borrow = &mut *self.borrow_mut(); let replacement = f(mut_borrow); std::mem::replace(mut_borrow, replacement) } /// Swaps the wrapped value of `self` with the wrapped value of `other`. /// /// # Panics /// /// Panics if the value in either `PyCell` is currently borrowed. #[inline] pub fn swap(&self, other: &Self) { std::mem::swap(&mut *self.borrow_mut(), &mut *other.borrow_mut()) } /// Allocates a new PyCell given a type object `subtype`. Used by our `tp_new` implementation. /// Requires `T::BaseLayout: PyBorrowFlagLayout<T::BaseType>` to ensure `self` has a borrow flag. pub(crate) unsafe fn internal_new( py: Python, subtype: *mut ffi::PyTypeObject, ) -> PyResult<*mut Self> where T::BaseLayout: PyBorrowFlagLayout<T::BaseType>, { let base = T::new(py, subtype); if base.is_null() { return Err(PyErr::fetch(py)); } let base = base as *mut PyCellBase<T::BaseNativeType>; (*base).borrow_flag = Cell::new(BorrowFlag::UNUSED); let self_ = base as *mut Self; (*self_).dict = T::Dict::new(); (*self_).weakref = T::WeakRef::new(); (*self_).thread_checker = T::ThreadChecker::new(); Ok(self_) } } unsafe impl<T: PyClass> PyLayout<T> for PyCell<T> { const IS_NATIVE_TYPE: bool = false; fn get_super(&mut self) -> Option<&mut T::BaseLayout> { Some(&mut self.inner.ob_base) } unsafe fn py_init(&mut self, value: T) { self.inner.value = ManuallyDrop::new(UnsafeCell::new(value)); } unsafe fn py_drop(&mut self, py: Python) { ManuallyDrop::drop(&mut self.inner.value); self.dict.clear_dict(py); self.weakref.clear_weakrefs(self.as_ptr(), py); self.inner.ob_base.py_drop(py); } } impl<T: PyClass> AsPyPointer for PyCell<T> { fn as_ptr(&self) -> *mut ffi::PyObject { self.inner.as_ptr() } } impl<T: PyClass> ToPyObject for &PyCell<T> { fn to_object(&self, py: Python<'_>) -> PyObject { unsafe { PyObject::from_borrowed_ptr(py, self.as_ptr()) } } } impl<T: PyClass> AsRef<PyAny> for PyCell<T> { fn as_ref(&self) -> &PyAny { unsafe { self.py().from_borrowed_ptr(self.as_ptr()) } } } impl<T: PyClass> Deref for PyCell<T> { type Target = PyAny; fn deref(&self) -> &PyAny { unsafe { self.py().from_borrowed_ptr(self.as_ptr()) } } } impl<T: PyClass + fmt::Debug> fmt::Debug for PyCell<T> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self.try_borrow() { Ok(borrow) => f.debug_struct("RefCell").field("value", &borrow).finish(), Err(_) => { struct BorrowedPlaceholder; impl fmt::Debug for BorrowedPlaceholder { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.write_str("<borrowed>") } } f.debug_struct("RefCell") .field("value", &BorrowedPlaceholder) .finish() } } } } /// Wraps a borrowed reference to a value in a `PyCell<T>`. /// /// See the [`PyCell`](struct.PyCell.html) documentation for more. /// # Example /// You can use `PyRef` as an alternative of `&self` receiver when /// - You need to access the pointer of `PyCell`. /// - You want to get super class. /// ``` /// # use pyo3::prelude::*; /// #[pyclass] /// struct Parent { /// basename: &'static str, /// } /// #[pyclass(extends=Parent)] /// struct Child { /// name: &'static str, /// } /// #[pymethods] /// impl Child { /// #[new] /// fn new() -> (Self, Parent) { /// (Child { name: "Caterpillar" }, Parent { basename: "Butterfly" }) /// } /// fn format(slf: PyRef<Self>) -> String { /// // We can get *mut ffi::PyObject from PyRef /// use pyo3::AsPyPointer; /// let refcnt = unsafe { pyo3::ffi::Py_REFCNT(slf.as_ptr()) }; /// // We can get &Self::BaseType by as_ref /// let basename = slf.as_ref().basename; /// format!("{}(base: {}, cnt: {})", slf.name, basename, refcnt) /// } /// } /// # let gil = Python::acquire_gil(); /// # let py = gil.python(); /// # let sub = PyCell::new(py, Child::new()).unwrap(); /// # pyo3::py_run!(py, sub, "assert sub.format() == 'Caterpillar(base: Butterfly, cnt: 3)'"); /// ``` pub struct PyRef<'p, T: PyClass> { inner: &'p PyCellInner<T>, } impl<'p, T: PyClass> PyRef<'p, T> { /// Returns `Python` token. /// This function is safe since PyRef has the same lifetime as a `GILGuard`. pub fn py(&self) -> Python { unsafe { Python::assume_gil_acquired() } } } impl<'p, T, U> AsRef<U> for PyRef<'p, T> where T: PyClass + PyTypeInfo<BaseType = U, BaseLayout = PyCellInner<U>>, U: PyClass, { fn as_ref(&self) -> &T::BaseType { unsafe { &*self.inner.ob_base.get_ptr() } } } impl<'p, T, U> PyRef<'p, T> where T: PyClass + PyTypeInfo<BaseType = U, BaseLayout = PyCellInner<U>>, U: PyClass, { /// Get `PyRef<T::BaseType>`. /// You can use this method to get super class of super class. /// /// # Examples /// ``` /// # use pyo3::prelude::*; /// #[pyclass] /// struct Base1 { /// name1: &'static str, /// } /// #[pyclass(extends=Base1)] /// struct Base2 { /// name2: &'static str, /// } /// #[pyclass(extends=Base2)] /// struct Sub { /// name3: &'static str, /// } /// #[pymethods] /// impl Sub { /// #[new] /// fn new() -> PyClassInitializer<Self> { /// PyClassInitializer::from(Base1{ name1: "base1" }) /// .add_subclass(Base2 { name2: "base2" }) /// .add_subclass(Self { name3: "sub" }) /// } /// fn name(slf: PyRef<Self>) -> String { /// let subname = slf.name3; /// let super_ = slf.into_super(); /// format!("{} {} {}", super_.as_ref().name1, super_.name2, subname) /// } /// } /// # let gil = Python::acquire_gil(); /// # let py = gil.python(); /// # let sub = PyCell::new(py, Sub::new()).unwrap(); /// # pyo3::py_run!(py, sub, "assert sub.name() == 'base1 base2 sub'") /// ``` pub fn into_super(self) -> PyRef<'p, U> { let PyRef { inner } = self; std::mem::forget(self); PyRef { inner: &inner.ob_base, } } } impl<'p, T: PyClass> Deref for PyRef<'p, T> { type Target = T; #[inline] fn deref(&self) -> &T { unsafe { &*self.inner.get_ptr() } } } impl<'p, T: PyClass> Drop for PyRef<'p, T> { fn drop(&mut self) { let flag = self.inner.get_borrow_flag(); self.inner.set_borrow_flag(flag.decrement()) } } impl<'p, T: PyClass> FromPy<PyRef<'p, T>> for PyObject { fn from_py(pyref: PyRef<'p, T>, py: Python<'_>) -> PyObject { unsafe { PyObject::from_borrowed_ptr(py, pyref.inner.as_ptr()) } } } impl<'a, T: PyClass> std::convert::TryFrom<&'a PyCell<T>> for crate::PyRef<'a, T> { type Error = PyBorrowError; fn try_from(cell: &'a crate::PyCell<T>) -> Result<Self, Self::Error> { cell.try_borrow() } } impl<'a, T: PyClass> AsPyPointer for PyRef<'a, T> { fn as_ptr(&self) -> *mut ffi::PyObject { self.inner.as_ptr() } } impl<T: PyClass + fmt::Debug> fmt::Debug for PyRef<'_, T> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::Debug::fmt(&**self, f) } } /// Wraps a mutable borrowed reference to a value in a `PyCell<T>`. /// /// See the [`PyCell`](struct.PyCell.html) and [`PyRef`](struct.PyRef.html) documentations for more. pub struct PyRefMut<'p, T: PyClass> { inner: &'p PyCellInner<T>, } impl<'p, T: PyClass> PyRefMut<'p, T> { /// Returns `Python` token. /// This function is safe since PyRefMut has the same lifetime as a `GILGuard`. pub fn py(&self) -> Python { unsafe { Python::assume_gil_acquired() } } } impl<'p, T, U> AsRef<U> for PyRefMut<'p, T> where T: PyClass + PyTypeInfo<BaseType = U, BaseLayout = PyCellInner<U>>, U: PyClass, { fn as_ref(&self) -> &T::BaseType { unsafe { &*self.inner.ob_base.get_ptr() } } } impl<'p, T, U> AsMut<U> for PyRefMut<'p, T> where T: PyClass + PyTypeInfo<BaseType = U, BaseLayout = PyCellInner<U>>, U: PyClass, { fn as_mut(&mut self) -> &mut T::BaseType { unsafe { &mut *self.inner.ob_base.get_ptr() } } } impl<'p, T, U> PyRefMut<'p, T> where T: PyClass + PyTypeInfo<BaseType = U, BaseLayout = PyCellInner<U>>, U: PyClass, { /// Get `PyRef<T::BaseType>`. /// See [`PyRef::into_super`](struct.PyRef.html#method.into_super) for more. pub fn into_super(self) -> PyRefMut<'p, U> { let PyRefMut { inner } = self; std::mem::forget(self); PyRefMut { inner: &inner.ob_base, } } } impl<'p, T: PyClass> Deref for PyRefMut<'p, T> { type Target = T; #[inline] fn deref(&self) -> &T { unsafe { &*self.inner.get_ptr() } } } impl<'p, T: PyClass> DerefMut for PyRefMut<'p, T> { #[inline] fn deref_mut(&mut self) -> &mut T { unsafe { &mut *self.inner.get_ptr() } } } impl<'p, T: PyClass> Drop for PyRefMut<'p, T> { fn drop(&mut self) { self.inner.set_borrow_flag(BorrowFlag::UNUSED) } } impl<'p, T: PyClass> FromPy<PyRefMut<'p, T>> for PyObject { fn from_py(pyref: PyRefMut<'p, T>, py: Python<'_>) -> PyObject { unsafe { PyObject::from_borrowed_ptr(py, pyref.inner.as_ptr()) } } } impl<'a, T: PyClass> AsPyPointer for PyRefMut<'a, T> { fn as_ptr(&self) -> *mut ffi::PyObject { self.inner.as_ptr() } } impl<'a, T: PyClass> std::convert::TryFrom<&'a PyCell<T>> for crate::PyRefMut<'a, T> { type Error = PyBorrowMutError; fn try_from(cell: &'a crate::PyCell<T>) -> Result<Self, Self::Error> { cell.try_borrow_mut() } } impl<T: PyClass + fmt::Debug> fmt::Debug for PyRefMut<'_, T> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::Debug::fmt(&*(self.deref()), f) } } #[derive(Copy, Clone, Eq, PartialEq)] struct BorrowFlag(usize); impl BorrowFlag { const UNUSED: BorrowFlag = BorrowFlag(0); const HAS_MUTABLE_BORROW: BorrowFlag = BorrowFlag(usize::max_value()); const fn increment(self) -> Self { Self(self.0 + 1) } const fn decrement(self) -> Self { Self(self.0 - 1) } } /// An error returned by [`PyCell::try_borrow`](struct.PyCell.html#method.try_borrow). /// /// In Python, you can catch this error by `except RuntimeError`. pub struct PyBorrowError { _private: (), } impl fmt::Debug for PyBorrowError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("PyBorrowError").finish() } } impl fmt::Display for PyBorrowError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::Display::fmt("Already mutably borrowed", f) } } /// An error returned by [`PyCell::try_borrow_mut`](struct.PyCell.html#method.try_borrow_mut). /// /// In Python, you can catch this error by `except RuntimeError`. pub struct PyBorrowMutError { _private: (), } impl fmt::Debug for PyBorrowMutError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("PyBorrowMutError").finish() } } impl fmt::Display for PyBorrowMutError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::Display::fmt("Already borrowed", f) } } pyo3_exception!(PyBorrowError, crate::exceptions::RuntimeError); pyo3_exception!(PyBorrowMutError, crate::exceptions::RuntimeError);