pyo3/src/instance.rs

344 lines
9.1 KiB
Rust
Raw Normal View History

2017-05-29 04:19:29 +00:00
// Copyright (c) 2017-present PyO3 Project and Contributors
use std;
2017-06-01 16:45:00 +00:00
use std::rc::Rc;
2017-05-29 04:19:29 +00:00
use std::marker::PhantomData;
2017-06-04 00:27:26 +00:00
use ffi;
2017-07-09 06:08:57 +00:00
use pythonrun;
2017-07-29 06:19:00 +00:00
use err::{PyResult, PyErr};
2017-07-13 20:05:50 +00:00
use object::PyObject;
2017-06-24 15:28:31 +00:00
use objects::PyObjectRef;
2017-06-23 03:56:09 +00:00
use objectprotocol::ObjectProtocol;
use conversion::{ToPyObject, IntoPyObject, FromPyObject};
2017-07-29 06:19:00 +00:00
use python::{Python, IntoPyPointer, ToPyPointer};
2017-08-12 03:17:09 +00:00
use typeob::{PyTypeInfo, PyTypeObject};
2017-05-29 04:19:29 +00:00
2017-06-01 22:06:48 +00:00
pub struct PyToken(PhantomData<Rc<()>>);
2017-05-29 04:19:29 +00:00
2017-06-01 22:06:48 +00:00
impl PyToken {
2017-08-08 07:27:33 +00:00
pub(crate) fn new() -> PyToken {
PyToken(PhantomData)
}
2017-07-14 23:21:18 +00:00
#[inline(always)]
2018-01-19 18:02:36 +00:00
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
2017-07-18 11:28:49 +00:00
pub fn py(&self) -> Python {
2017-05-29 04:19:29 +00:00
unsafe { Python::assume_gil_acquired() }
}
}
2017-07-18 17:13:50 +00:00
/// Any instance that is managed Python can have access to `gil`.
2017-06-20 21:10:12 +00:00
pub trait PyObjectWithToken: Sized {
2017-07-14 02:04:00 +00:00
fn py(&self) -> Python;
2017-05-29 04:19:29 +00:00
}
2017-06-04 00:27:26 +00:00
2017-07-18 17:13:50 +00:00
#[doc(hidden)]
2017-06-20 21:10:12 +00:00
pub trait PyNativeType: PyObjectWithToken {}
2017-07-18 17:13:50 +00:00
/// Trait implements objet reference extraction from python managed pointer.
2017-06-20 21:10:12 +00:00
pub trait AsPyRef<T>: Sized {
2017-06-04 00:27:26 +00:00
2017-07-18 17:13:50 +00:00
/// Return reference to object.
2017-06-04 00:27:26 +00:00
fn as_ref(&self, py: Python) -> &T;
2017-07-18 17:13:50 +00:00
/// Return mutable reference to object.
2018-01-19 18:02:36 +00:00
#[cfg_attr(feature = "cargo-clippy", allow(mut_from_ref))]
2017-06-04 00:27:26 +00:00
fn as_mut(&self, py: Python) -> &mut T;
2017-07-18 17:13:50 +00:00
/// Acquire python gil and call closure with object reference.
2017-06-06 03:25:00 +00:00
fn with<F, R>(&self, f: F) -> R where F: FnOnce(Python, &T) -> R
{
let gil = Python::acquire_gil();
let py = gil.python();
f(py, self.as_ref(py))
}
2017-07-18 17:13:50 +00:00
/// Acquire python gil and call closure with mutable object reference.
2017-06-06 03:25:00 +00:00
fn with_mut<F, R>(&self, f: F) -> R where F: FnOnce(Python, &mut T) -> R
{
let gil = Python::acquire_gil();
let py = gil.python();
f(py, self.as_mut(py))
}
2017-06-07 02:26:59 +00:00
fn into_py<F, R>(self, f: F) -> R
where Self: IntoPyPointer, F: FnOnce(Python, &T) -> R
{
let gil = Python::acquire_gil();
let py = gil.python();
let result = f(py, self.as_ref(py));
py.xdecref(self.into_ptr());
2017-06-07 02:26:59 +00:00
result
}
fn into_mut_py<F, R>(self, f: F) -> R
where Self: IntoPyPointer, F: FnOnce(Python, &mut T) -> R
{
let gil = Python::acquire_gil();
let py = gil.python();
let result = f(py, self.as_mut(py));
py.xdecref(self.into_ptr());
2017-06-07 02:26:59 +00:00
result
}
2017-06-04 00:27:26 +00:00
}
2017-07-18 17:13:50 +00:00
/// Safe wrapper around unsafe `*mut ffi::PyObject` pointer with specified type information.
2017-06-20 18:59:07 +00:00
#[derive(Debug)]
2017-06-22 08:04:37 +00:00
pub struct Py<T>(pub *mut ffi::PyObject, std::marker::PhantomData<T>);
2017-06-22 08:04:37 +00:00
// `Py<T>` is thread-safe, because any python related operations require a Python<'p> token.
2017-06-20 06:57:34 +00:00
unsafe impl<T> Send for Py<T> {}
unsafe impl<T> Sync for Py<T> {}
2017-06-20 06:57:34 +00:00
impl<T> Py<T> {
/// Creates a `Py<T>` instance for the given FFI pointer.
/// This moves ownership over the pointer into the `Py<T>`.
/// Undefined behavior if the pointer is NULL or invalid.
#[inline]
2017-06-20 06:57:34 +00:00
pub unsafe fn from_owned_ptr(ptr: *mut ffi::PyObject) -> Py<T> {
debug_assert!(!ptr.is_null() && ffi::Py_REFCNT(ptr) > 0,
format!("REFCNT: {:?} - {:?}", ptr, ffi::Py_REFCNT(ptr)));
2017-06-20 06:57:34 +00:00
Py(ptr, std::marker::PhantomData)
}
2017-07-18 17:13:50 +00:00
/// Creates a `Py<T>` instance for the given FFI pointer.
/// Panics if the pointer is `null`.
/// Undefined behavior if the pointer is invalid.
#[inline]
pub unsafe fn from_owned_ptr_or_panic(ptr: *mut ffi::PyObject) -> Py<T>
{
if ptr.is_null() {
::err::panic_after_error();
} else {
Py::from_owned_ptr(ptr)
}
}
2017-06-20 06:57:34 +00:00
/// Construct `Py<T>` from the result of a Python FFI call that
/// returns a new reference (owned pointer).
/// Returns `Err(PyErr)` if the pointer is `null`.
/// Unsafe because the pointer might be invalid.
pub unsafe fn from_owned_ptr_or_err(py: Python, ptr: *mut ffi::PyObject) -> PyResult<Py<T>>
{
if ptr.is_null() {
Err(PyErr::fetch(py))
} else {
Ok(Py::from_owned_ptr(ptr))
}
}
2017-06-20 06:57:34 +00:00
/// Creates a `Py<T>` instance for the given Python FFI pointer.
/// Calls Py_INCREF() on the ptr.
/// Undefined behavior if the pointer is NULL or invalid.
#[inline]
2017-06-20 06:57:34 +00:00
pub unsafe fn from_borrowed_ptr(ptr: *mut ffi::PyObject) -> Py<T> {
debug_assert!(!ptr.is_null() && ffi::Py_REFCNT(ptr) > 0,
format!("REFCNT: {:?} - {:?}", ptr, ffi::Py_REFCNT(ptr)));
ffi::Py_INCREF(ptr);
2017-06-20 06:57:34 +00:00
Py::from_owned_ptr(ptr)
}
/// Gets the reference count of the ffi::PyObject pointer.
#[inline]
pub fn get_refcnt(&self) -> isize {
unsafe { ffi::Py_REFCNT(self.0) }
}
/// Clone self, Calls Py_INCREF() on the ptr.
#[inline]
2017-06-20 06:57:34 +00:00
pub fn clone_ref(&self, _py: Python) -> Py<T> {
unsafe { Py::from_borrowed_ptr(self.0) }
}
}
2017-06-20 06:57:34 +00:00
impl<T> Py<T> where T: PyTypeInfo,
{
2017-07-18 17:13:50 +00:00
/// Create new instance of T and move it under python management
/// Returns `Py<T>`.
pub fn new<F>(py: Python, f: F) -> PyResult<Py<T>>
2017-07-18 17:13:50 +00:00
where F: FnOnce(::PyToken) -> T,
2017-08-12 03:17:09 +00:00
T: PyTypeObject + PyTypeInfo
{
2017-08-12 03:17:09 +00:00
let ob = <T as PyTypeObject>::create(py)?;
ob.init(f)?;
let ob = unsafe {
2017-08-12 03:17:09 +00:00
Py::from_owned_ptr(ob.into_ptr())
};
Ok(ob)
}
2017-07-18 17:13:50 +00:00
/// Create new instance of `T` and move it under python management.
2017-06-23 22:03:52 +00:00
/// Returns references to `T`
2017-07-18 11:28:49 +00:00
pub fn new_ref<F>(py: Python, f: F) -> PyResult<&T>
2017-06-23 22:03:52 +00:00
where F: FnOnce(::PyToken) -> T,
2017-08-12 03:17:09 +00:00
T: PyTypeObject + PyTypeInfo
2017-06-23 22:03:52 +00:00
{
2017-08-12 03:17:09 +00:00
let ob = <T as PyTypeObject>::create(py)?;
ob.init(f)?;
2017-06-23 22:03:52 +00:00
unsafe {
2017-08-12 03:17:09 +00:00
Ok(py.from_owned_ptr(ob.into_ptr()))
2017-06-23 22:03:52 +00:00
}
}
2017-07-18 17:13:50 +00:00
/// Create new instance of `T` and move it under python management.
2017-06-23 22:03:52 +00:00
/// Returns mutable references to `T`
2017-07-18 11:28:49 +00:00
pub fn new_mut<F>(py: Python, f: F) -> PyResult<&mut T>
2017-06-23 22:03:52 +00:00
where F: FnOnce(::PyToken) -> T,
2017-08-12 03:17:09 +00:00
T: PyTypeObject + PyTypeInfo
2017-06-23 22:03:52 +00:00
{
2017-08-12 03:17:09 +00:00
let ob = <T as PyTypeObject>::create(py)?;
ob.init(f)?;
2017-06-23 22:03:52 +00:00
unsafe {
2017-08-12 03:17:09 +00:00
Ok(py.mut_from_owned_ptr(ob.into_ptr()))
2017-06-23 22:03:52 +00:00
}
}
}
2017-06-20 21:22:49 +00:00
impl<T> AsPyRef<T> for Py<T> where T: PyTypeInfo {
#[inline]
2017-06-20 18:59:07 +00:00
default fn as_ref(&self, _py: Python) -> &T {
unsafe {
2017-07-28 02:47:01 +00:00
let ptr = (self.as_ptr() as *mut u8).offset(T::OFFSET) as *mut T;
ptr.as_ref().unwrap()
}
}
#[inline]
2017-06-20 18:59:07 +00:00
default fn as_mut(&self, _py: Python) -> &mut T {
unsafe {
2017-07-28 02:47:01 +00:00
let ptr = (self.as_ptr() as *mut u8).offset(T::OFFSET) as *mut T;
ptr.as_mut().unwrap()
}
}
}
2017-06-20 21:10:12 +00:00
impl<T> AsPyRef<T> for Py<T> where T: PyTypeInfo + PyNativeType {
2017-06-20 18:59:07 +00:00
#[inline]
fn as_ref(&self, _py: Python) -> &T {
unsafe {std::mem::transmute(self)}
}
#[inline]
fn as_mut(&self, _py: Python) -> &mut T {
2017-07-18 11:28:49 +00:00
unsafe { &mut *(self as *const _ as *mut T) }
2017-06-20 18:59:07 +00:00
}
}
2017-06-20 06:57:34 +00:00
impl<T> ToPyObject for Py<T> {
2017-07-18 17:13:50 +00:00
/// Converts `Py` instance -> PyObject.
2017-06-23 03:56:09 +00:00
fn to_object(&self, py: Python) -> PyObject {
2017-06-22 08:04:37 +00:00
unsafe {
2017-06-23 03:56:09 +00:00
PyObject::from_borrowed_ptr(py, self.as_ptr())
2017-06-22 08:04:37 +00:00
}
}
}
2017-06-20 06:57:34 +00:00
impl<T> IntoPyObject for Py<T> {
/// Converts `Py` instance -> PyObject.
/// Consumes `self` without calling `Py_DECREF()`
#[inline]
2017-06-23 03:56:09 +00:00
fn into_object(self, _py: Python) -> PyObject {
unsafe { std::mem::transmute(self) }
}
}
2017-06-20 06:57:34 +00:00
impl<T> ToPyPointer for Py<T> {
/// Gets the underlying FFI pointer, returns a borrowed pointer.
#[inline]
fn as_ptr(&self) -> *mut ffi::PyObject {
self.0
}
}
2017-06-20 06:57:34 +00:00
impl<T> IntoPyPointer for Py<T> {
/// Gets the underlying FFI pointer, returns a owned pointer.
#[inline]
#[must_use]
fn into_ptr(self) -> *mut ffi::PyObject {
let ptr = self.0;
std::mem::forget(self);
ptr
}
}
2017-06-20 06:57:34 +00:00
impl<T> PartialEq for Py<T> {
#[inline]
2017-06-20 06:57:34 +00:00
fn eq(&self, o: &Py<T>) -> bool {
self.0 == o.0
}
}
2017-06-20 06:57:34 +00:00
/// Dropping a `Py` instance decrements the reference count on the object by 1.
impl<T> Drop for Py<T> {
fn drop(&mut self) {
2017-07-09 06:08:57 +00:00
unsafe { pythonrun::register_pointer(self.0); }
}
}
2017-06-23 03:56:09 +00:00
impl<T> std::convert::From<Py<T>> for PyObject {
2017-06-20 18:59:07 +00:00
#[inline]
2017-06-20 06:57:34 +00:00
fn from(ob: Py<T>) -> Self {
2017-06-20 18:59:07 +00:00
unsafe {std::mem::transmute(ob)}
}
}
2017-06-20 06:57:34 +00:00
impl<'a, T> std::convert::From<&'a T> for Py<T>
where T: ToPyPointer
{
fn from(ob: &'a T) -> Self {
2017-06-20 06:57:34 +00:00
unsafe { Py::from_borrowed_ptr(ob.as_ptr()) }
}
}
2017-06-20 06:57:34 +00:00
impl<'a, T> std::convert::From<&'a mut T> for Py<T>
where T: ToPyPointer
{
fn from(ob: &'a mut T) -> Self {
2017-06-20 06:57:34 +00:00
unsafe { Py::from_borrowed_ptr(ob.as_ptr()) }
}
}
2017-06-23 03:56:09 +00:00
impl<'a, T> std::convert::From<&'a T> for PyObject
where T: ToPyPointer,
{
fn from(ob: &'a T) -> Self {
2017-06-20 06:57:34 +00:00
unsafe { Py::<T>::from_borrowed_ptr(ob.as_ptr()) }.into()
}
}
2017-06-23 03:56:09 +00:00
impl<'a, T> std::convert::From<&'a mut T> for PyObject
where T: ToPyPointer,
{
fn from(ob: &'a mut T) -> Self {
2017-06-20 06:57:34 +00:00
unsafe { Py::<T>::from_borrowed_ptr(ob.as_ptr()) }.into()
}
}
2017-06-20 22:09:12 +00:00
2018-01-17 16:09:44 +00:00
impl<'a, T> FromPyObject<'a> for Py<T>
where T: ToPyPointer, &'a T: 'a + FromPyObject<'a>
2017-06-23 03:56:09 +00:00
{
/// Extracts `Self` from the source `PyObject`.
2017-06-24 15:28:31 +00:00
fn extract(ob: &'a PyObjectRef) -> PyResult<Self>
2017-06-23 03:56:09 +00:00
{
unsafe {
2018-01-17 16:09:44 +00:00
ob.extract::<&T>().map(|val| Py::from_borrowed_ptr(val.as_ptr()))
2017-06-23 03:56:09 +00:00
}
}
}