-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstance.rs
More file actions
2682 lines (2470 loc) · 85.2 KB
/
Copy pathinstance.rs
File metadata and controls
2682 lines (2470 loc) · 85.2 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
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
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use crate::call::PyCallArgs;
use crate::conversion::IntoPyObject;
use crate::err::{self, PyErr, PyResult};
use crate::impl_::pycell::PyClassObject;
use crate::internal_tricks::ptr_from_ref;
use crate::pycell::{PyBorrowError, PyBorrowMutError};
use crate::pyclass::boolean_struct::{False, True};
use crate::types::{any::PyAnyMethods, string::PyStringMethods, typeobject::PyTypeMethods};
use crate::types::{DerefToPyAny, PyDict, PyString};
use crate::{
ffi, DowncastError, DowncastIntoError, FromPyObject, PyAny, PyClass, PyClassInitializer, PyRef,
PyRefMut, PyTypeInfo, Python,
};
use crate::{internal::state, PyTypeCheck};
use std::marker::PhantomData;
use std::mem::ManuallyDrop;
use std::ops::Deref;
use std::ptr;
use std::ptr::NonNull;
/// Owned or borrowed gil-bound Python smart pointer
///
/// This is implemented for [`Bound`] and [`Borrowed`].
pub trait BoundObject<'py, T>: bound_object_sealed::Sealed {
/// Type erased version of `Self`
type Any: BoundObject<'py, PyAny>;
/// Borrow this smart pointer.
fn as_borrowed(&self) -> Borrowed<'_, 'py, T>;
/// Turns this smart pointer into an owned [`Bound<'py, T>`]
fn into_bound(self) -> Bound<'py, T>;
/// Upcast the target type of this smart pointer
fn into_any(self) -> Self::Any;
/// Turn this smart pointer into a strong reference pointer
fn into_ptr(self) -> *mut ffi::PyObject;
/// Turn this smart pointer into a borrowed reference pointer
fn as_ptr(&self) -> *mut ffi::PyObject;
/// Turn this smart pointer into an owned [`Py<T>`]
fn unbind(self) -> Py<T>;
}
mod bound_object_sealed {
/// # Safety
///
/// Type must be layout-compatible with `*mut ffi::PyObject`.
pub unsafe trait Sealed {}
// SAFETY: `Bound` is layout-compatible with `*mut ffi::PyObject`.
unsafe impl<T> Sealed for super::Bound<'_, T> {}
// SAFETY: `Borrowed` is layout-compatible with `*mut ffi::PyObject`.
unsafe impl<T> Sealed for super::Borrowed<'_, '_, T> {}
}
/// A GIL-attached equivalent to [`Py<T>`].
///
/// This type can be thought of as equivalent to the tuple `(Py<T>, Python<'py>)`. By having the `'py`
/// lifetime of the [`Python<'py>`] token, this ties the lifetime of the [`Bound<'py, T>`] smart pointer
/// to the lifetime of the GIL and allows PyO3 to call Python APIs at maximum efficiency.
///
/// To access the object in situations where the GIL is not held, convert it to [`Py<T>`]
/// using [`.unbind()`][Bound::unbind]. This includes situations where the GIL is temporarily
/// released, such as [`Python::detach`](crate::Python::detach)'s closure.
///
/// See
#[doc = concat!("[the guide](https://pyo3.rs/v", env!("CARGO_PKG_VERSION"), "/types.html#boundpy-t)")]
/// for more detail.
#[repr(transparent)]
pub struct Bound<'py, T>(Python<'py>, ManuallyDrop<Py<T>>);
impl<'py, T> Bound<'py, T>
where
T: PyClass,
{
/// Creates a new instance `Bound<T>` of a `#[pyclass]` on the Python heap.
///
/// # Examples
///
/// ```rust
/// use pyo3::prelude::*;
///
/// #[pyclass]
/// struct Foo {/* fields omitted */}
///
/// # fn main() -> PyResult<()> {
/// let foo: Py<Foo> = Python::attach(|py| -> PyResult<_> {
/// let foo: Bound<'_, Foo> = Bound::new(py, Foo {})?;
/// Ok(foo.into())
/// })?;
/// # Python::attach(move |_py| drop(foo));
/// # Ok(())
/// # }
/// ```
pub fn new(
py: Python<'py>,
value: impl Into<PyClassInitializer<T>>,
) -> PyResult<Bound<'py, T>> {
value.into().create_class_object(py)
}
}
impl<'py, T> Bound<'py, T> {
/// Cast this to a concrete Python type or pyclass.
///
/// Note that you can often avoid casting yourself by just specifying the desired type in
/// function or method signatures. However, manual casting is sometimes necessary.
///
/// For extracting a Rust-only type, see [`extract`](PyAnyMethods::extract).
///
/// This performs a runtime type check using the equivalent of Python's
/// `isinstance(self, U)`.
///
/// # Example: Casting to a specific Python object
///
/// ```rust
/// use pyo3::prelude::*;
/// use pyo3::types::{PyDict, PyList};
///
/// Python::attach(|py| {
/// let dict = PyDict::new(py);
/// assert!(dict.is_instance_of::<PyAny>());
/// let any = dict.as_any();
///
/// assert!(any.cast::<PyDict>().is_ok());
/// assert!(any.cast::<PyList>().is_err());
/// });
/// ```
///
/// # Example: Getting a reference to a pyclass
///
/// This is useful if you want to mutate a `Py<PyAny>` that might actually be a pyclass.
///
/// ```rust
/// # fn main() -> Result<(), pyo3::PyErr> {
/// use pyo3::prelude::*;
///
/// #[pyclass]
/// struct Class {
/// i: i32,
/// }
///
/// Python::attach(|py| {
/// let class = Bound::new(py, Class { i: 0 })?.into_any();
///
/// let class_bound: &Bound<'_, Class> = class.cast()?;
///
/// class_bound.borrow_mut().i += 1;
///
/// // Alternatively you can get a `PyRefMut` directly
/// let class_ref: PyRefMut<'_, Class> = class.extract()?;
/// assert_eq!(class_ref.i, 1);
/// Ok(())
/// })
/// # }
/// ```
#[inline]
pub fn cast<U>(&self) -> Result<&Bound<'py, U>, DowncastError<'_, 'py>>
where
U: PyTypeCheck,
{
#[inline]
fn inner<'a, 'py, U>(
any: &'a Bound<'py, PyAny>,
) -> Result<&'a Bound<'py, U>, DowncastError<'a, 'py>>
where
U: PyTypeCheck,
{
if U::type_check(any) {
// Safety: type_check is responsible for ensuring that the type is correct
Ok(unsafe { any.cast_unchecked() })
} else {
Err(DowncastError::new(any, U::NAME))
}
}
inner(self.as_any())
}
/// Like [`cast`](Self::cast) but takes ownership of `self`.
///
/// In case of an error, it is possible to retrieve `self` again via
/// [`DowncastIntoError::into_inner`].
///
/// # Example
///
/// ```rust
/// use pyo3::prelude::*;
/// use pyo3::types::{PyDict, PyList};
///
/// Python::attach(|py| {
/// let obj: Bound<'_, PyAny> = PyDict::new(py).into_any();
///
/// let obj: Bound<'_, PyAny> = match obj.cast_into::<PyList>() {
/// Ok(_) => panic!("obj should not be a list"),
/// Err(err) => err.into_inner(),
/// };
///
/// // obj is a dictionary
/// assert!(obj.cast_into::<PyDict>().is_ok());
/// })
/// ```
#[inline]
pub fn cast_into<U>(self) -> Result<Bound<'py, U>, DowncastIntoError<'py>>
where
U: PyTypeCheck,
{
#[inline]
fn inner<U>(any: Bound<'_, PyAny>) -> Result<Bound<'_, U>, DowncastIntoError<'_>>
where
U: PyTypeCheck,
{
if U::type_check(&any) {
// Safety: type_check is responsible for ensuring that the type is correct
Ok(unsafe { any.cast_into_unchecked() })
} else {
Err(DowncastIntoError::new(any, U::NAME))
}
}
inner(self.into_any())
}
/// Cast this to a concrete Python type or pyclass (but not a subclass of it).
///
/// It is almost always better to use [`cast`](Self::cast) because it accounts for Python
/// subtyping. Use this method only when you do not want to allow subtypes.
///
/// The advantage of this method over [`cast`](Self::cast) is that it is faster. The
/// implementation of `cast_exact` uses the equivalent of the Python expression `type(self) is
/// U`, whereas `cast` uses `isinstance(self, U)`.
///
/// For extracting a Rust-only type, see [`extract`](PyAnyMethods::extract).
///
/// # Example: Casting to a specific Python object but not a subtype
///
/// ```rust
/// use pyo3::prelude::*;
/// use pyo3::types::{PyBool, PyInt};
///
/// Python::attach(|py| {
/// let b = PyBool::new(py, true);
/// assert!(b.is_instance_of::<PyBool>());
/// let any: &Bound<'_, PyAny> = b.as_any();
///
/// // `bool` is a subtype of `int`, so `cast` will accept a `bool` as an `int`
/// // but `cast_exact` will not.
/// assert!(any.cast::<PyInt>().is_ok());
/// assert!(any.cast_exact::<PyInt>().is_err());
///
/// assert!(any.cast_exact::<PyBool>().is_ok());
/// });
/// ```
#[inline]
pub fn cast_exact<U>(&self) -> Result<&Bound<'py, U>, DowncastError<'_, 'py>>
where
U: PyTypeInfo,
{
#[inline]
fn inner<'a, 'py, U>(
any: &'a Bound<'py, PyAny>,
) -> Result<&'a Bound<'py, U>, DowncastError<'a, 'py>>
where
U: PyTypeInfo,
{
if any.is_exact_instance_of::<U>() {
// Safety: is_exact_instance_of is responsible for ensuring that the type is correct
Ok(unsafe { any.cast_unchecked() })
} else {
Err(DowncastError::new(any, U::NAME))
}
}
inner(self.as_any())
}
/// Like [`cast_exact`](Self::cast_exact) but takes ownership of `self`.
#[inline]
pub fn cast_into_exact<U>(self) -> Result<Bound<'py, U>, DowncastIntoError<'py>>
where
U: PyTypeInfo,
{
#[inline]
fn inner<U>(any: Bound<'_, PyAny>) -> Result<Bound<'_, U>, DowncastIntoError<'_>>
where
U: PyTypeInfo,
{
if any.is_exact_instance_of::<U>() {
// Safety: is_exact_instance_of is responsible for ensuring that the type is correct
Ok(unsafe { any.cast_into_unchecked() })
} else {
Err(DowncastIntoError::new(any, U::NAME))
}
}
inner(self.into_any())
}
/// Converts this to a concrete Python type without checking validity.
///
/// # Safety
///
/// Callers must ensure that the type is valid or risk type confusion.
#[inline]
pub unsafe fn cast_unchecked<U>(&self) -> &Bound<'py, U> {
unsafe { NonNull::from(self).cast().as_ref() }
}
/// Like [`cast_unchecked`](Self::cast_unchecked) but takes ownership of `self`.
///
/// # Safety
///
/// Callers must ensure that the type is valid or risk type confusion.
#[inline]
pub unsafe fn cast_into_unchecked<U>(self) -> Bound<'py, U> {
unsafe { std::mem::transmute(self) }
}
}
impl<'py> Bound<'py, PyAny> {
/// Constructs a new `Bound<'py, PyAny>` from a pointer. Panics if `ptr` is null.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object
/// - `ptr` must be an owned Python reference, as the `Bound<'py, PyAny>` will assume ownership
#[inline]
#[track_caller]
pub unsafe fn from_owned_ptr(py: Python<'py>, ptr: *mut ffi::PyObject) -> Self {
Self(
py,
ManuallyDrop::new(unsafe { Py::from_owned_ptr(py, ptr) }),
)
}
/// Constructs a new `Bound<'py, PyAny>` from a pointer. Returns `None` if `ptr` is null.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object, or null
/// - `ptr` must be an owned Python reference, as the `Bound<'py, PyAny>` will assume ownership
#[inline]
pub unsafe fn from_owned_ptr_or_opt(py: Python<'py>, ptr: *mut ffi::PyObject) -> Option<Self> {
unsafe { Py::from_owned_ptr_or_opt(py, ptr) }.map(|obj| Self(py, ManuallyDrop::new(obj)))
}
/// Constructs a new `Bound<'py, PyAny>` from a pointer. Returns an `Err` by calling `PyErr::fetch`
/// if `ptr` is null.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object, or null
/// - `ptr` must be an owned Python reference, as the `Bound<'py, PyAny>` will assume ownership
#[inline]
pub unsafe fn from_owned_ptr_or_err(
py: Python<'py>,
ptr: *mut ffi::PyObject,
) -> PyResult<Self> {
unsafe { Py::from_owned_ptr_or_err(py, ptr) }.map(|obj| Self(py, ManuallyDrop::new(obj)))
}
/// Constructs a new `Bound<'py, PyAny>` from a pointer without checking for null.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object
/// - `ptr` must be a strong/owned reference
pub(crate) unsafe fn from_owned_ptr_unchecked(
py: Python<'py>,
ptr: *mut ffi::PyObject,
) -> Self {
Self(
py,
ManuallyDrop::new(unsafe { Py::from_owned_ptr_unchecked(ptr) }),
)
}
/// Constructs a new `Bound<'py, PyAny>` from a pointer by creating a new Python reference.
/// Panics if `ptr` is null.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object
#[inline]
#[track_caller]
pub unsafe fn from_borrowed_ptr(py: Python<'py>, ptr: *mut ffi::PyObject) -> Self {
unsafe { Self(py, ManuallyDrop::new(Py::from_borrowed_ptr(py, ptr))) }
}
/// Constructs a new `Bound<'py, PyAny>` from a pointer by creating a new Python reference.
/// Returns `None` if `ptr` is null.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object, or null
#[inline]
pub unsafe fn from_borrowed_ptr_or_opt(
py: Python<'py>,
ptr: *mut ffi::PyObject,
) -> Option<Self> {
unsafe { Py::from_borrowed_ptr_or_opt(py, ptr).map(|obj| Self(py, ManuallyDrop::new(obj))) }
}
/// Constructs a new `Bound<'py, PyAny>` from a pointer by creating a new Python reference.
/// Returns an `Err` by calling `PyErr::fetch` if `ptr` is null.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object, or null
#[inline]
pub unsafe fn from_borrowed_ptr_or_err(
py: Python<'py>,
ptr: *mut ffi::PyObject,
) -> PyResult<Self> {
unsafe { Py::from_borrowed_ptr_or_err(py, ptr).map(|obj| Self(py, ManuallyDrop::new(obj))) }
}
/// This slightly strange method is used to obtain `&Bound<PyAny>` from a pointer in macro code
/// where we need to constrain the lifetime `'a` safely.
///
/// Note that `'py` is required to outlive `'a` implicitly by the nature of the fact that
/// `&'a Bound<'py>` means that `Bound<'py>` exists for at least the lifetime `'a`.
///
/// # Safety
/// - `ptr` must be a valid pointer to a Python object for the lifetime `'a`. The `ptr` can
/// be either a borrowed reference or an owned reference, it does not matter, as this is
/// just `&Bound` there will never be any ownership transfer.
#[inline]
pub(crate) unsafe fn ref_from_ptr<'a>(
_py: Python<'py>,
ptr: &'a *mut ffi::PyObject,
) -> &'a Self {
unsafe { &*ptr_from_ref(ptr).cast::<Bound<'py, PyAny>>() }
}
/// Variant of the above which returns `None` for null pointers.
///
/// # Safety
/// - `ptr` must be a valid pointer to a Python object for the lifetime `'a, or null.
#[inline]
pub(crate) unsafe fn ref_from_ptr_or_opt<'a>(
_py: Python<'py>,
ptr: &'a *mut ffi::PyObject,
) -> &'a Option<Self> {
unsafe { &*ptr_from_ref(ptr).cast::<Option<Bound<'py, PyAny>>>() }
}
/// This slightly strange method is used to obtain `&Bound<PyAny>` from a [`NonNull`] in macro
/// code where we need to constrain the lifetime `'a` safely.
///
/// Note that `'py` is required to outlive `'a` implicitly by the nature of the fact that `&'a
/// Bound<'py>` means that `Bound<'py>` exists for at least the lifetime `'a`.
///
/// # Safety
/// - `ptr` must be a valid pointer to a Python object for the lifetime `'a`. The `ptr` can be
/// either a borrowed reference or an owned reference, it does not matter, as this is just
/// `&Bound` there will never be any ownership transfer.
pub(crate) unsafe fn ref_from_non_null<'a>(
_py: Python<'py>,
ptr: &'a NonNull<ffi::PyObject>,
) -> &'a Self {
unsafe { NonNull::from(ptr).cast().as_ref() }
}
}
impl<'py, T> Bound<'py, T>
where
T: PyClass,
{
/// Immutably borrows the value `T`.
///
/// This borrow lasts while the returned [`PyRef`] exists.
/// Multiple immutable borrows can be taken out at the same time.
///
/// For frozen classes, the simpler [`get`][Self::get] is available.
///
/// # Examples
///
/// ```rust
/// # use pyo3::prelude::*;
/// #
/// #[pyclass]
/// struct Foo {
/// inner: u8,
/// }
///
/// # fn main() -> PyResult<()> {
/// Python::attach(|py| -> PyResult<()> {
/// let foo: Bound<'_, Foo> = Bound::new(py, Foo { inner: 73 })?;
/// let inner: &u8 = &foo.borrow().inner;
///
/// assert_eq!(*inner, 73);
/// Ok(())
/// })?;
/// # Ok(())
/// # }
/// ```
///
/// # Panics
///
/// Panics if the value is currently mutably borrowed. For a non-panicking variant, use
/// [`try_borrow`](#method.try_borrow).
#[inline]
#[track_caller]
pub fn borrow(&self) -> PyRef<'py, T> {
PyRef::borrow(self)
}
/// Mutably borrows the value `T`.
///
/// This borrow lasts while the returned [`PyRefMut`] exists.
///
/// # Examples
///
/// ```
/// # use pyo3::prelude::*;
/// #
/// #[pyclass]
/// struct Foo {
/// inner: u8,
/// }
///
/// # fn main() -> PyResult<()> {
/// Python::attach(|py| -> PyResult<()> {
/// let foo: Bound<'_, Foo> = Bound::new(py, Foo { inner: 73 })?;
/// foo.borrow_mut().inner = 35;
///
/// assert_eq!(foo.borrow().inner, 35);
/// Ok(())
/// })?;
/// # Ok(())
/// # }
/// ```
///
/// # Panics
/// Panics if the value is currently borrowed. For a non-panicking variant, use
/// [`try_borrow_mut`](#method.try_borrow_mut).
#[inline]
#[track_caller]
pub fn borrow_mut(&self) -> PyRefMut<'py, T>
where
T: PyClass<Frozen = False>,
{
PyRefMut::borrow(self)
}
/// Attempts to immutably borrow the value `T`, returning an error if the value is currently mutably borrowed.
///
/// The borrow lasts while the returned [`PyRef`] exists.
///
/// This is the non-panicking variant of [`borrow`](#method.borrow).
///
/// For frozen classes, the simpler [`get`][Self::get] is available.
#[inline]
pub fn try_borrow(&self) -> Result<PyRef<'py, T>, PyBorrowError> {
PyRef::try_borrow(self)
}
/// Attempts to mutably borrow the value `T`, returning an error if the value is currently borrowed.
///
/// The borrow lasts while the returned [`PyRefMut`] exists.
///
/// This is the non-panicking variant of [`borrow_mut`](#method.borrow_mut).
#[inline]
pub fn try_borrow_mut(&self) -> Result<PyRefMut<'py, T>, PyBorrowMutError>
where
T: PyClass<Frozen = False>,
{
PyRefMut::try_borrow(self)
}
/// Provide an immutable borrow of the value `T` without acquiring the GIL.
///
/// This is available if the class is [`frozen`][macro@crate::pyclass] and [`Sync`].
///
/// # Examples
///
/// ```
/// use std::sync::atomic::{AtomicUsize, Ordering};
/// # use pyo3::prelude::*;
///
/// #[pyclass(frozen)]
/// struct FrozenCounter {
/// value: AtomicUsize,
/// }
///
/// Python::attach(|py| {
/// let counter = FrozenCounter { value: AtomicUsize::new(0) };
///
/// let py_counter = Bound::new(py, counter).unwrap();
///
/// py_counter.get().value.fetch_add(1, Ordering::Relaxed);
/// });
/// ```
#[inline]
pub fn get(&self) -> &T
where
T: PyClass<Frozen = True> + Sync,
{
self.1.get()
}
/// Upcast this `Bound<PyClass>` to its base type by reference.
///
/// If this type defined an explicit base class in its `pyclass` declaration
/// (e.g. `#[pyclass(extends = BaseType)]`), the returned type will be
/// `&Bound<BaseType>`. If an explicit base class was _not_ declared, the
/// return value will be `&Bound<PyAny>` (making this method equivalent
/// to [`as_any`]).
///
/// This method is particularly useful for calling methods defined in an
/// extension trait that has been implemented for `Bound<BaseType>`.
///
/// See also the [`into_super`] method to upcast by value, and the
/// [`PyRef::as_super`]/[`PyRefMut::as_super`] methods for upcasting a pyclass
/// that has already been [`borrow`]ed.
///
/// # Example: Calling a method defined on the `Bound` base type
///
/// ```rust
/// # fn main() {
/// use pyo3::prelude::*;
///
/// #[pyclass(subclass)]
/// struct BaseClass;
///
/// trait MyClassMethods<'py> {
/// fn pyrepr(&self) -> PyResult<String>;
/// }
/// impl<'py> MyClassMethods<'py> for Bound<'py, BaseClass> {
/// fn pyrepr(&self) -> PyResult<String> {
/// self.call_method0("__repr__")?.extract()
/// }
/// }
///
/// #[pyclass(extends = BaseClass)]
/// struct SubClass;
///
/// Python::attach(|py| {
/// let obj = Bound::new(py, (SubClass, BaseClass)).unwrap();
/// assert!(obj.as_super().pyrepr().is_ok());
/// })
/// # }
/// ```
///
/// [`as_any`]: Bound::as_any
/// [`into_super`]: Bound::into_super
/// [`borrow`]: Bound::borrow
#[inline]
pub fn as_super(&self) -> &Bound<'py, T::BaseType> {
// a pyclass can always be safely "cast" to its base type
unsafe { self.as_any().cast_unchecked() }
}
/// Upcast this `Bound<PyClass>` to its base type by value.
///
/// If this type defined an explicit base class in its `pyclass` declaration
/// (e.g. `#[pyclass(extends = BaseType)]`), the returned type will be
/// `Bound<BaseType>`. If an explicit base class was _not_ declared, the
/// return value will be `Bound<PyAny>` (making this method equivalent
/// to [`into_any`]).
///
/// This method is particularly useful for calling methods defined in an
/// extension trait that has been implemented for `Bound<BaseType>`.
///
/// See also the [`as_super`] method to upcast by reference, and the
/// [`PyRef::into_super`]/[`PyRefMut::into_super`] methods for upcasting a pyclass
/// that has already been [`borrow`]ed.
///
/// # Example: Calling a method defined on the `Bound` base type
///
/// ```rust
/// # fn main() {
/// use pyo3::prelude::*;
///
/// #[pyclass(subclass)]
/// struct BaseClass;
///
/// trait MyClassMethods<'py> {
/// fn pyrepr(self) -> PyResult<String>;
/// }
/// impl<'py> MyClassMethods<'py> for Bound<'py, BaseClass> {
/// fn pyrepr(self) -> PyResult<String> {
/// self.call_method0("__repr__")?.extract()
/// }
/// }
///
/// #[pyclass(extends = BaseClass)]
/// struct SubClass;
///
/// Python::attach(|py| {
/// let obj = Bound::new(py, (SubClass, BaseClass)).unwrap();
/// assert!(obj.into_super().pyrepr().is_ok());
/// })
/// # }
/// ```
///
/// [`into_any`]: Bound::into_any
/// [`as_super`]: Bound::as_super
/// [`borrow`]: Bound::borrow
#[inline]
pub fn into_super(self) -> Bound<'py, T::BaseType> {
// a pyclass can always be safely "cast" to its base type
unsafe { self.cast_into_unchecked() }
}
#[inline]
pub(crate) fn get_class_object(&self) -> &PyClassObject<T> {
self.1.get_class_object()
}
}
impl<T> std::fmt::Debug for Bound<'_, T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
let any = self.as_any();
python_format(any, any.repr(), f)
}
}
impl<T> std::fmt::Display for Bound<'_, T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
let any = self.as_any();
python_format(any, any.str(), f)
}
}
fn python_format(
any: &Bound<'_, PyAny>,
format_result: PyResult<Bound<'_, PyString>>,
f: &mut std::fmt::Formatter<'_>,
) -> Result<(), std::fmt::Error> {
match format_result {
Result::Ok(s) => return f.write_str(&s.to_string_lossy()),
Result::Err(err) => err.write_unraisable(any.py(), Some(any)),
}
match any.get_type().name() {
Result::Ok(name) => std::write!(f, "<unprintable {name} object>"),
Result::Err(_err) => f.write_str("<unprintable object>"),
}
}
// The trait bound is needed to avoid running into the auto-deref recursion
// limit (error[E0055]), because `Bound<PyAny>` would deref into itself. See:
// https://github.com/rust-lang/rust/issues/19509
impl<'py, T> Deref for Bound<'py, T>
where
T: DerefToPyAny,
{
type Target = Bound<'py, PyAny>;
#[inline]
fn deref(&self) -> &Bound<'py, PyAny> {
self.as_any()
}
}
impl<'py, T> AsRef<Bound<'py, PyAny>> for Bound<'py, T> {
#[inline]
fn as_ref(&self) -> &Bound<'py, PyAny> {
self.as_any()
}
}
impl<T> AsRef<Py<PyAny>> for Bound<'_, T> {
#[inline]
fn as_ref(&self) -> &Py<PyAny> {
self.as_any().as_unbound()
}
}
impl<T> Clone for Bound<'_, T> {
#[inline]
fn clone(&self) -> Self {
Self(self.0, ManuallyDrop::new(self.1.clone_ref(self.0)))
}
}
impl<T> Drop for Bound<'_, T> {
#[inline]
fn drop(&mut self) {
unsafe { ffi::Py_DECREF(self.as_ptr()) }
}
}
impl<'py, T> Bound<'py, T> {
/// Returns the GIL token associated with this object.
#[inline]
pub fn py(&self) -> Python<'py> {
self.0
}
/// Returns the raw FFI pointer represented by self.
///
/// # Safety
///
/// Callers are responsible for ensuring that the pointer does not outlive self.
///
/// The reference is borrowed; callers should not decrease the reference count
/// when they are finished with the pointer.
#[inline]
pub fn as_ptr(&self) -> *mut ffi::PyObject {
self.1.as_ptr()
}
/// Returns an owned raw FFI pointer represented by self.
///
/// # Safety
///
/// The reference is owned; when finished the caller should either transfer ownership
/// of the pointer or decrease the reference count (e.g. with [`pyo3::ffi::Py_DecRef`](crate::ffi::Py_DecRef)).
#[inline]
pub fn into_ptr(self) -> *mut ffi::PyObject {
ManuallyDrop::new(self).as_ptr()
}
/// Helper to cast to `Bound<'py, PyAny>`.
#[inline]
pub fn as_any(&self) -> &Bound<'py, PyAny> {
// Safety: all Bound<T> have the same memory layout, and all Bound<T> are valid
// Bound<PyAny>, so pointer casting is valid.
unsafe { &*ptr_from_ref(self).cast::<Bound<'py, PyAny>>() }
}
/// Helper to cast to `Bound<'py, PyAny>`, transferring ownership.
#[inline]
pub fn into_any(self) -> Bound<'py, PyAny> {
// Safety: all Bound<T> are valid Bound<PyAny>
Bound(self.0, ManuallyDrop::new(self.unbind().into_any()))
}
/// Casts this `Bound<T>` to a `Borrowed<T>` smart pointer.
#[inline]
pub fn as_borrowed<'a>(&'a self) -> Borrowed<'a, 'py, T> {
Borrowed(
unsafe { NonNull::new_unchecked(self.as_ptr()) },
PhantomData,
self.py(),
)
}
/// Removes the connection for this `Bound<T>` from the GIL, allowing
/// it to cross thread boundaries.
#[inline]
pub fn unbind(self) -> Py<T> {
// Safety: the type T is known to be correct and the ownership of the
// pointer is transferred to the new Py<T> instance.
let non_null = (ManuallyDrop::new(self).1).0;
unsafe { Py::from_non_null(non_null) }
}
/// Removes the connection for this `Bound<T>` from the GIL, allowing
/// it to cross thread boundaries, without transferring ownership.
#[inline]
pub fn as_unbound(&self) -> &Py<T> {
&self.1
}
}
impl<'py, T> BoundObject<'py, T> for Bound<'py, T> {
type Any = Bound<'py, PyAny>;
fn as_borrowed(&self) -> Borrowed<'_, 'py, T> {
Bound::as_borrowed(self)
}
fn into_bound(self) -> Bound<'py, T> {
self
}
fn into_any(self) -> Self::Any {
self.into_any()
}
fn into_ptr(self) -> *mut ffi::PyObject {
self.into_ptr()
}
fn as_ptr(&self) -> *mut ffi::PyObject {
self.as_ptr()
}
fn unbind(self) -> Py<T> {
self.unbind()
}
}
/// A borrowed equivalent to `Bound`.
///
/// The advantage of this over `&Bound` is that it avoids the need to have a pointer-to-pointer, as Bound
/// is already a pointer to an `ffi::PyObject``.
///
/// Similarly, this type is `Copy` and `Clone`, like a shared reference (`&T`).
#[repr(transparent)]
pub struct Borrowed<'a, 'py, T>(NonNull<ffi::PyObject>, PhantomData<&'a Py<T>>, Python<'py>);
impl<'a, 'py, T> Borrowed<'a, 'py, T> {
/// Creates a new owned [`Bound<T>`] from this borrowed reference by
/// increasing the reference count.
///
/// # Example
/// ```
/// use pyo3::{prelude::*, types::PyTuple};
///
/// # fn main() -> PyResult<()> {
/// Python::attach(|py| -> PyResult<()> {
/// let tuple = PyTuple::new(py, [1, 2, 3])?;
///
/// // borrows from `tuple`, so can only be
/// // used while `tuple` stays alive
/// let borrowed = tuple.get_borrowed_item(0)?;
///
/// // creates a new owned reference, which
/// // can be used indendently of `tuple`
/// let bound = borrowed.to_owned();
/// drop(tuple);
///
/// assert_eq!(bound.extract::<i32>().unwrap(), 1);
/// Ok(())
/// })
/// # }
pub fn to_owned(self) -> Bound<'py, T> {
(*self).clone()
}
/// Returns the raw FFI pointer represented by self.
///
/// # Safety
///
/// Callers are responsible for ensuring that the pointer does not outlive self.
///
/// The reference is borrowed; callers should not decrease the reference count
/// when they are finished with the pointer.
#[inline]
pub fn as_ptr(self) -> *mut ffi::PyObject {
self.0.as_ptr()
}
pub(crate) fn to_any(self) -> Borrowed<'a, 'py, PyAny> {
Borrowed(self.0, PhantomData, self.2)
}
/// Extracts some type from the Python object.
///
/// This is a wrapper function around [`FromPyObject::extract()`](crate::FromPyObject::extract).
pub fn extract<O>(self) -> Result<O, O::Error>
where
O: FromPyObject<'a, 'py>,
{
FromPyObject::extract(self.to_any())
}
}
impl<'a, T: PyClass> Borrowed<'a, '_, T> {
/// Get a view on the underlying `PyClass` contents.
#[inline]
pub(crate) fn get_class_object(self) -> &'a PyClassObject<T> {
// Safety: Borrowed<'a, '_, T: PyClass> is known to contain an object
// which is laid out in memory as a PyClassObject<T> and lives for at
// least 'a.
unsafe { &*self.as_ptr().cast::<PyClassObject<T>>() }
}
}
impl<'a, 'py> Borrowed<'a, 'py, PyAny> {
/// Constructs a new `Borrowed<'a, 'py, PyAny>` from a pointer. Panics if `ptr` is null.
///
/// Prefer to use [`Bound::from_borrowed_ptr`], as that avoids the major safety risk
/// of needing to precisely define the lifetime `'a` for which the borrow is valid.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object
/// - similar to `std::slice::from_raw_parts`, the lifetime `'a` is completely defined by
/// the caller and it is the caller's responsibility to ensure that the reference this is
/// derived from is valid for the lifetime `'a`.
#[inline]
#[track_caller]
pub unsafe fn from_ptr(py: Python<'py>, ptr: *mut ffi::PyObject) -> Self {
Self(
NonNull::new(ptr).unwrap_or_else(|| crate::err::panic_after_error(py)),
PhantomData,
py,
)
}
/// Constructs a new `Borrowed<'a, 'py, PyAny>` from a pointer. Returns `None` if `ptr` is null.
///
/// Prefer to use [`Bound::from_borrowed_ptr_or_opt`], as that avoids the major safety risk
/// of needing to precisely define the lifetime `'a` for which the borrow is valid.
///
/// # Safety
///
/// - `ptr` must be a valid pointer to a Python object, or null
/// - similar to `std::slice::from_raw_parts`, the lifetime `'a` is completely defined by
/// the caller and it is the caller's responsibility to ensure that the reference this is
/// derived from is valid for the lifetime `'a`.
#[inline]
pub unsafe fn from_ptr_or_opt(py: Python<'py>, ptr: *mut ffi::PyObject) -> Option<Self> {
NonNull::new(ptr).map(|ptr| Self(ptr, PhantomData, py))
}
/// Constructs a new `Borrowed<'a, 'py, PyAny>` from a pointer. Returns an `Err` by calling `PyErr::fetch`