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
// Copyright (c) 2017-present PyO3 Project and Contributors

//! This module contains some conversion traits

use ffi;
use err::{PyResult, PyDowncastError};
use python::{Python, ToPyPointer, IntoPyPointer};
use object::PyObject;
use objects::{PyObjectRef, PyTuple};
use typeob::PyTypeInfo;
use instance::Py;


/// Conversion trait that allows various objects to be converted into `PyObject`
pub trait ToPyObject {

    /// Converts self into a Python object.
    fn to_object(&self, py: Python) -> PyObject;

}

pub trait ToBorrowedObject: ToPyObject {

    /// Converts self into a Python object and calls the specified closure
    /// on the native FFI pointer underlying the Python object.
    ///
    /// May be more efficient than `to_object` because it does not need
    /// to touch any reference counts when the input object already is a Python object.
    #[inline]
    fn with_borrowed_ptr<F, R>(&self, py: Python, f: F) -> R
        where F: FnOnce(*mut ffi::PyObject) -> R;
}

impl<T> ToBorrowedObject for T where T: ToPyObject {
    #[inline]
    default fn with_borrowed_ptr<F, R>(&self, py: Python, f: F) -> R
        where F: FnOnce(*mut ffi::PyObject) -> R
    {
        let ptr = self.to_object(py).into_ptr();
        let result = f(ptr);
        py.xdecref(ptr);
        result
    }
}

/// Conversion trait that allows various objects to be converted into `PyObject`
/// by consuming original object.
pub trait IntoPyObject {

    /// Converts self into a Python object. (Consumes self)
    fn into_object(self, py: Python) -> PyObject;
}


/// Conversion trait that allows various objects to be converted into `PyTuple` object.
pub trait IntoPyTuple {

    /// Converts self into a PyTuple object.
    fn into_tuple(self, py: Python) -> Py<PyTuple>;

}

/// `FromPyObject` is implemented by various types that can be extracted from
/// a Python object reference.
///
/// Normal usage is through the `PyObject::extract` helper method:
/// ```let obj: PyObject = ...;
/// let value: &TargetType = obj.extract(py)?;
/// ```
///
/// Note: depending on the implementation, the lifetime of the extracted result may
/// depend on the lifetime of the `obj` or the `prepared` variable.
///
/// For example, when extracting `&str` from a python byte string, the resulting string slice will
/// point to the existing string data (lifetime: `'source`).
/// On the other hand, when extracting `&str` from a python unicode string, the preparation step
/// will convert the string to UTF-8, and the resulting string slice will have lifetime `'prepared`.
/// Since only which of these cases applies depends on the runtime type of the python object,
/// both the `obj` and `prepared` variables must outlive the resulting string slice.
///
/// In cases where the result does not depend on the `'prepared` lifetime,
/// the inherent method `PyObject::extract()` can be used.
pub trait FromPyObject<'source> : Sized {
    /// Extracts `Self` from the source `PyObject`.
    fn extract(ob: &'source PyObjectRef) -> PyResult<Self>;
}

/// Identity conversion: allows using existing `PyObject` instances where
/// `T: ToPyObject` is expected.
impl <'a, T: ?Sized> ToPyObject for &'a T where T: ToPyObject {

    #[inline]
    fn to_object(&self, py: Python) -> PyObject {
        <T as ToPyObject>::to_object(*self, py)
    }
}

/// `Option::Some<T>` is converted like `T`.
/// `Option::None` is converted to Python `None`.
impl <T> ToPyObject for Option<T> where T: ToPyObject {

    fn to_object(&self, py: Python) -> PyObject {
        match *self {
            Some(ref val) => val.to_object(py),
            None => py.None(),
        }
    }
}

impl<T> IntoPyObject for Option<T> where T: IntoPyObject {

    fn into_object(self, py: Python) -> PyObject {
        match self {
            Some(val) => val.into_object(py),
            None => py.None(),
        }
    }
}

/// `()` is converted to Python `None`.
impl ToPyObject for () {
    fn to_object(&self, py: Python) -> PyObject {
        py.None()
    }
}

impl IntoPyObject for () {
    fn into_object(self, py: Python) -> PyObject {
        py.None()
    }
}

impl<'a, T> IntoPyObject for &'a T where T: ToPyPointer
{
    #[inline]
    fn into_object(self, py: Python) -> PyObject {
        unsafe { PyObject::from_borrowed_ptr(py, self.as_ptr()) }
    }
}

impl<'a, T> IntoPyObject for &'a mut T where T: ToPyPointer {
    #[inline]
    fn into_object(self, py: Python) -> PyObject {
        unsafe { PyObject::from_borrowed_ptr(py, self.as_ptr()) }
    }
}

/// Extract reference to instance from `PyObject`
impl<'a, T> FromPyObject<'a> for &'a T
    where T: PyTypeInfo
{
    #[inline]
    default fn extract(ob: &'a PyObjectRef) -> PyResult<&'a T> {
        Ok(T::try_from(ob)?)
    }
}

/// Extract mutable reference to instance from `PyObject`
impl<'a, T> FromPyObject<'a> for &'a mut T
    where T: PyTypeInfo
{
    #[inline]
    default fn extract(ob: &'a PyObjectRef) -> PyResult<&'a mut T> {
        Ok(T::try_from_mut(ob)?)
    }
}

impl<'a, T> FromPyObject<'a> for Option<T> where T: FromPyObject<'a>
{
    fn extract(obj: &'a PyObjectRef) -> PyResult<Self> {
        if obj.as_ptr() == unsafe { ffi::Py_None() } {
            Ok(None)
        } else {
            match T::extract(obj) {
                Ok(v) => Ok(Some(v)),
                Err(e) => Err(e)
            }
        }
    }
}

/// Trait implemented by Python object types that allow a checked downcast.
/// This trait is similar to `std::convert::TryInto`
pub trait PyTryInto<T>: Sized {
    /// The type returned in the event of a conversion error.
    type Error;

    /// Cast from PyObject to a concrete Python object type.
    fn try_into(&self) -> Result<&T, Self::Error>;

    /// Cast from PyObject to a concrete Python object type. With exact type check.
    fn try_into_exact(&self) -> Result<&T, Self::Error>;

    /// Cast from PyObject to a concrete Python object type.
    fn try_into_mut(&self) -> Result<&mut T, Self::Error>;

    /// Cast from PyObject to a concrete Python object type. With exact type check.
    fn try_into_mut_exact(&self) -> Result<&mut T, Self::Error>;
}

/// Trait implemented by Python object types that allow a checked downcast.
/// This trait is similar to `std::convert::TryFrom`
pub trait PyTryFrom: Sized {
    /// The type returned in the event of a conversion error.
    type Error;

    /// Cast from a concrete Python object type to PyObject.
    fn try_from(value: &PyObjectRef) -> Result<&Self, Self::Error>;

    /// Cast from a concrete Python object type to PyObject. With exact type check.
    fn try_from_exact(value: &PyObjectRef) -> Result<&Self, Self::Error>;

    /// Cast from a concrete Python object type to PyObject.
    fn try_from_mut(value: &PyObjectRef) -> Result<&mut Self, Self::Error>;

    /// Cast from a concrete Python object type to PyObject. With exact type check.
    fn try_from_mut_exact(value: &PyObjectRef) -> Result<&mut Self, Self::Error>;
}

// TryFrom implies TryInto
impl<U> PyTryInto<U> for PyObjectRef where U: PyTryFrom {

    type Error = U::Error;

    fn try_into(&self) -> Result<&U, U::Error> {
        U::try_from(self)
    }
    fn try_into_exact(&self) -> Result<&U, U::Error> {
        U::try_from_exact(self)
    }
    fn try_into_mut(&self) -> Result<&mut U, U::Error> {
        U::try_from_mut(self)
    }
    fn try_into_mut_exact(&self) -> Result<&mut U, U::Error> {
        U::try_from_mut_exact(self)
    }
}


impl<T> PyTryFrom for T where T: PyTypeInfo {

    type Error = PyDowncastError;

    fn try_from(value: &PyObjectRef) -> Result<&T, Self::Error> {
        unsafe {
            if T::is_instance(value.as_ptr()) {
                let ptr = if T::OFFSET == 0 {
                    value as *const _ as *mut u8 as *mut T
                } else {
                    (value.as_ptr() as *mut u8).offset(T::OFFSET) as *mut T
                };
                Ok(&*ptr)
            } else {
                Err(PyDowncastError)
            }
        }
    }

    fn try_from_exact(value: &PyObjectRef) -> Result<&T, Self::Error> {
        unsafe {
            if T::is_exact_instance(value.as_ptr()) {
                let ptr = if T::OFFSET == 0 {
                    value as *const _ as *mut u8 as *mut T
                } else {
                    (value.as_ptr() as *mut u8).offset(T::OFFSET) as *mut T
                };
                Ok(&*ptr)
            } else {
                Err(PyDowncastError)
            }
        }
    }

    fn try_from_mut(value: &PyObjectRef) -> Result<&mut T, Self::Error> {
        unsafe {
            if T::is_instance(value.as_ptr()) {
                let ptr = if T::OFFSET == 0 {
                    value as *const _ as *mut u8 as *mut T
                } else {
                    (value.as_ptr() as *mut u8).offset(T::OFFSET) as *mut T
                };
                Ok(&mut *ptr)
            } else {
                Err(PyDowncastError)
            }
        }
    }

    fn try_from_mut_exact(value: &PyObjectRef) -> Result<&mut T, Self::Error> {
        unsafe {
            if T::is_exact_instance(value.as_ptr()) {
                let ptr = if T::OFFSET == 0 {
                    value as *const _ as *mut u8 as *mut T
                } else {
                    (value.as_ptr() as *mut u8).offset(T::OFFSET) as *mut T
                };
                Ok(&mut *ptr)
            } else {
                Err(PyDowncastError)
            }
        }
    }
}