pyo3/src/token.rs

367 lines
9.6 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};
use objects::PyObject;
use conversion::{ToPyObject, IntoPyObject};
use python::{Python, IntoPyPointer, ToPyPointer, PyDowncastInto};
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-20 18:59:07 +00:00
pub fn token<'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-20 21:10:12 +00:00
fn as_ob_ref(&self, py: Python) -> &PyObject;
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-20 06:57:34 +00:00
pub struct Py<T>(*mut ffi::PyObject, std::marker::PhantomData<T>);
// `PyPtr` 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) }
}
/// Get reference to &PyObject.
#[inline]
pub fn as_object<'p>(&self, _py: Python<'p>) -> &PyObject {
unsafe { std::mem::transmute(self) }
}
/// 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 python object and move T instance under python management
2017-06-20 06:57:34 +00:00
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));
2017-06-20 06:57:34 +00:00
Py::from_owned_ptr(ob)
};
Ok(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
#[inline]
default fn as_ob_ref(&self, _py: Python) -> &PyObject {
unsafe {std::mem::transmute(self)}
}
}
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> {
fn to_object(&self, py: Python) -> PyObject {
PyObject::from_borrowed_ptr(py, self.as_ptr())
}
}
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]
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-20 06:57:34 +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()) }
}
}
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()
}
}
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))
}
}
}
fn downcast_from_ptr<'p>(py: Python<'p>, ptr: *mut ffi::PyObject)
-> Result<Self, PyDowncastError<'p>>
{
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())
}
}
}
impl<'a, T> ::FromPyObject<'a> for Py<T> where T: PyTypeInfo
{
/// Extracts `Self` from the source `PyObject`.
fn extract(py: Python, ob: &'a PyObject) -> PyResult<Self>
{
unsafe {
2017-06-20 18:59:07 +00:00
if T::is_instance(ob.as_ptr()) {
2017-06-20 22:09:12 +00:00
Ok( Py::from_borrowed_ptr(ob.as_ptr()) )
} else {
Err(::PyDowncastError(py, None).into())
}
}
}
}