pyo3/src/instance.rs

385 lines
10 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;
use err::{PyResult, PyErr, PyDowncastError};
2017-06-23 03:56:09 +00:00
use pointer::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-06-23 22:03:52 +00:00
use python::{Python, IntoPyPointer, ToPyPointer, PyDowncastInto, PyDowncastFrom};
2017-05-29 04:19:29 +00:00
use typeob::{PyTypeInfo, PyObjectAlloc};
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-06-22 20:35:21 +00:00
pub fn py<'p>(&'p self) -> Python<'p> {
2017-05-29 04:19:29 +00:00
unsafe { Python::assume_gil_acquired() }
}
}
2017-06-20 21:10:12 +00:00
pub trait PyObjectWithToken: Sized {
2017-06-11 15:46:23 +00:00
fn token(&self) -> Python;
2017-05-29 04:19:29 +00:00
}
2017-06-04 00:27:26 +00:00
2017-06-20 21:10:12 +00:00
pub trait PyNativeType: PyObjectWithToken {}
pub trait AsPyRef<T>: Sized {
2017-06-04 00:27:26 +00:00
fn as_ref(&self, py: Python) -> &T;
fn as_mut(&self, py: Python) -> &mut T;
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))
}
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.release(self);
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.release(self);
result
}
2017-06-04 00:27:26 +00:00
}
/// Wrapper around unsafe `*mut ffi::PyObject` pointer. Decrement ref counter on `Drop`
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)
}
/// Cast from ffi::PyObject ptr to a concrete object.
#[inline]
2017-06-20 06:57:34 +00:00
pub fn from_owned_ptr_or_panic(ptr: *mut ffi::PyObject) -> Py<T>
{
if ptr.is_null() {
::err::panic_after_error();
} else {
2017-06-20 06:57:34 +00:00
unsafe{ 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.
2017-06-20 06:57:34 +00:00
pub fn from_owned_ptr_or_err(py: Python, ptr: *mut ffi::PyObject) -> PyResult<Py<T>>
{
if ptr.is_null() {
Err(PyErr::fetch(py))
} else {
2017-06-20 06:57:34 +00:00
Ok(unsafe{ 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
/// Casts the `Py<T>` imstance to a concrete Python object type.
/// Fails with `PyDowncastError` if the object is not of the expected type.
#[inline]
pub fn cast_into<D>(self, py: Python) -> Result<D, PyDowncastError>
where D: PyDowncastInto
{
<D as PyDowncastInto>::downcast_into(py, self)
}
/// Calls `ffi::Py_DECREF` and sets ptr to null value.
#[inline]
pub unsafe fn drop_ref(&mut self) {
ffi::Py_DECREF(self.0);
self.0 = std::ptr::null_mut();
}
}
2017-06-20 06:57:34 +00:00
impl<T> Py<T> where T: PyTypeInfo,
{
/// Create new instance of T and move under python management
/// Returns `Py<T>`.
pub fn new<F>(py: Python, f: F) -> PyResult<Py<T>>
where F: FnOnce(::PyToken) -> T,
T: PyObjectAlloc<T>
{
let ob = f(PyToken(PhantomData));
let ob = unsafe {
let ob = try!(<T as PyObjectAlloc<T>>::alloc(py, ob));
Py::from_owned_ptr(ob)
};
Ok(ob)
}
2017-06-23 22:03:52 +00:00
/// Create new instance of `T` and move under python management.
/// Returns references to `T`
pub fn new_ref<'p, F>(py: Python<'p>, f: F) -> PyResult<&'p T>
2017-06-23 22:03:52 +00:00
where F: FnOnce(::PyToken) -> T,
T: PyObjectAlloc<T> + PyDowncastFrom
{
let ob = f(PyToken(PhantomData));
unsafe {
let ob = try!(<T as PyObjectAlloc<T>>::alloc(py, ob));
Ok(py.cast_from_ptr(ob))
}
}
/// Create new instance of `T` and move under python management.
/// Returns mutable references to `T`
pub fn new_mut<'p, F>(py: Python<'p>, f: F) -> PyResult<&'p mut T>
where F: FnOnce(::PyToken) -> T,
T: PyObjectAlloc<T> + PyDowncastFrom
{
let ob = f(PyToken(PhantomData));
unsafe {
let ob = try!(<T as PyObjectAlloc<T>>::alloc(py, ob));
Ok(py.mut_cast_from_ptr(ob))
}
}
}
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 {
let offset = <T as PyTypeInfo>::offset();
unsafe {
let ptr = (self.as_ptr() as *mut u8).offset(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 {
let offset = <T as PyTypeInfo>::offset();
unsafe {
let ptr = (self.as_ptr() as *mut u8).offset(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 {
unsafe {std::mem::transmute(self as *const _ as *mut T)}
}
}
2017-06-20 06:57:34 +00:00
impl<T> ToPyObject for Py<T> {
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) {
if !self.0.is_null() {
let _gil_guard = Python::acquire_gil();
unsafe { ffi::Py_DECREF(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
impl<T> PyDowncastInto for Py<T> where T: PyTypeInfo
{
fn downcast_into<'p, I>(py: Python<'p>, ob: I)
-> Result<Self, PyDowncastError<'p>>
where I: IntoPyPointer
{
unsafe{
2017-06-20 21:10:12 +00:00
let ptr = ob.into_ptr();
2017-06-20 18:59:07 +00:00
if T::is_instance(ptr) {
2017-06-20 22:09:12 +00:00
Ok(Py::from_owned_ptr(ptr))
} else {
ffi::Py_DECREF(ptr);
Err(PyDowncastError(py, None))
}
}
}
2017-06-21 06:26:28 +00:00
fn downcast_into_from_ptr<'p>(py: Python<'p>, ptr: *mut ffi::PyObject)
-> Result<Self, PyDowncastError<'p>>
2017-06-20 22:09:12 +00:00
{
unsafe{
2017-06-20 18:59:07 +00:00
if T::is_instance(ptr) {
2017-06-20 22:09:12 +00:00
Ok(Py::from_owned_ptr(ptr))
} else {
ffi::Py_DECREF(ptr);
Err(PyDowncastError(py, None))
}
}
}
fn unchecked_downcast_into<'p, I>(ob: I) -> Self
where I: IntoPyPointer
{
unsafe{
Py::from_owned_ptr(ob.into_ptr())
}
}
}
2017-06-23 03:56:09 +00:00
impl<'a, T> FromPyObject<'a> for Py<T> where T: ToPyPointer + FromPyObject<'a>
{
/// 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 {
ob.extract::<T>().map(|val| Py::from_borrowed_ptr(val.as_ptr()))
}
}
}