2021-12-03 00:03:32 +00:00
|
|
|
#![cfg(feature = "macros")]
|
|
|
|
|
2018-05-02 18:49:40 +00:00
|
|
|
use pyo3::prelude::*;
|
2019-03-19 20:45:54 +00:00
|
|
|
use pyo3::types::{PyDict, PyTuple};
|
2021-06-24 14:18:48 +00:00
|
|
|
use pyo3::{py_run, PyCell};
|
2018-05-02 18:49:40 +00:00
|
|
|
|
2020-08-29 07:25:20 +00:00
|
|
|
use std::fmt;
|
|
|
|
|
2018-05-02 18:49:40 +00:00
|
|
|
mod common;
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pyclass]
|
2018-05-02 18:49:40 +00:00
|
|
|
struct MutRefArg {
|
|
|
|
n: i32,
|
|
|
|
}
|
|
|
|
|
2018-07-08 21:33:48 +00:00
|
|
|
#[pymethods]
|
2018-05-02 18:49:40 +00:00
|
|
|
impl MutRefArg {
|
2021-02-11 21:37:38 +00:00
|
|
|
fn get(&self) -> i32 {
|
|
|
|
self.n
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
2022-03-23 07:07:28 +00:00
|
|
|
fn set_other(&self, mut other: PyRefMut<'_, MutRefArg>) {
|
2018-05-02 18:49:40 +00:00
|
|
|
other.n = 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mut_ref_arg() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2019-02-13 20:35:26 +00:00
|
|
|
let inst1 = Py::new(py, MutRefArg { n: 0 }).unwrap();
|
|
|
|
let inst2 = Py::new(py, MutRefArg { n: 0 }).unwrap();
|
2018-05-02 18:49:40 +00:00
|
|
|
|
2021-03-14 07:34:05 +00:00
|
|
|
py_run!(py, inst1 inst2, "inst1.set_other(inst2)");
|
2020-02-15 15:24:38 +00:00
|
|
|
let inst2 = inst2.as_ref(py).borrow();
|
|
|
|
assert_eq!(inst2.n, 100);
|
2018-05-02 18:49:40 +00:00
|
|
|
}
|
2018-09-08 22:19:55 +00:00
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
struct PyUsize {
|
2019-02-18 19:07:41 +00:00
|
|
|
#[pyo3(get)]
|
2018-09-08 22:19:55 +00:00
|
|
|
pub value: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pyfunction]
|
2021-02-11 21:37:38 +00:00
|
|
|
fn get_zero() -> PyUsize {
|
|
|
|
PyUsize { value: 0 }
|
2018-09-08 22:19:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
/// Checks that we can use return a custom class in arbitrary function and use those functions
|
|
|
|
/// both in rust and python
|
|
|
|
fn return_custom_class() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
// Using from rust
|
2021-02-11 21:37:38 +00:00
|
|
|
assert_eq!(get_zero().value, 0);
|
2018-09-08 22:19:55 +00:00
|
|
|
|
|
|
|
// Using from python
|
2020-09-03 13:48:32 +00:00
|
|
|
let get_zero = wrap_pyfunction!(get_zero)(py).unwrap();
|
2018-09-08 22:19:55 +00:00
|
|
|
py_assert!(py, get_zero, "get_zero().value == 0");
|
|
|
|
}
|
2019-02-13 21:02:26 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn intopytuple_primitive() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let tup = (1, 2, "foo");
|
|
|
|
py_assert!(py, tup, "tup == (1, 2, 'foo')");
|
|
|
|
py_assert!(py, tup, "tup[0] == 1");
|
|
|
|
py_assert!(py, tup, "tup[1] == 2");
|
|
|
|
py_assert!(py, tup, "tup[2] == 'foo'");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
struct SimplePyClass {}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn intopytuple_pyclass() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let tup = (
|
2020-02-15 15:24:38 +00:00
|
|
|
PyCell::new(py, SimplePyClass {}).unwrap(),
|
|
|
|
PyCell::new(py, SimplePyClass {}).unwrap(),
|
2019-02-13 21:02:26 +00:00
|
|
|
);
|
|
|
|
py_assert!(py, tup, "type(tup[0]).__name__ == 'SimplePyClass'");
|
|
|
|
py_assert!(py, tup, "type(tup[0]).__name__ == type(tup[1]).__name__");
|
|
|
|
py_assert!(py, tup, "tup[0] != tup[1]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pytuple_primitive_iter() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
2019-02-23 17:38:00 +00:00
|
|
|
let tup = PyTuple::new(py, [1u32, 2, 3].iter());
|
2019-02-13 21:02:26 +00:00
|
|
|
py_assert!(py, tup, "tup == (1, 2, 3)");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pytuple_pyclass_iter() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
let tup = PyTuple::new(
|
|
|
|
py,
|
|
|
|
[
|
2020-02-15 15:24:38 +00:00
|
|
|
PyCell::new(py, SimplePyClass {}).unwrap(),
|
|
|
|
PyCell::new(py, SimplePyClass {}).unwrap(),
|
2019-02-13 21:02:26 +00:00
|
|
|
]
|
2019-08-17 12:10:36 +00:00
|
|
|
.iter(),
|
2019-02-13 21:02:26 +00:00
|
|
|
);
|
|
|
|
py_assert!(py, tup, "type(tup[0]).__name__ == 'SimplePyClass'");
|
|
|
|
py_assert!(py, tup, "type(tup[0]).__name__ == type(tup[0]).__name__");
|
|
|
|
py_assert!(py, tup, "tup[0] != tup[1]");
|
|
|
|
}
|
2019-03-19 20:45:54 +00:00
|
|
|
|
2020-01-30 13:13:42 +00:00
|
|
|
#[pyclass(dict, module = "test_module")]
|
2019-03-19 20:45:54 +00:00
|
|
|
struct PickleSupport {}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl PickleSupport {
|
|
|
|
#[new]
|
2019-12-14 14:16:39 +00:00
|
|
|
fn new() -> PickleSupport {
|
|
|
|
PickleSupport {}
|
2019-03-19 20:45:54 +00:00
|
|
|
}
|
|
|
|
|
2019-05-25 13:12:33 +00:00
|
|
|
pub fn __reduce__<'py>(
|
2020-02-03 13:25:16 +00:00
|
|
|
slf: &'py PyCell<Self>,
|
2019-05-25 13:12:33 +00:00
|
|
|
py: Python<'py>,
|
|
|
|
) -> PyResult<(PyObject, &'py PyTuple, PyObject)> {
|
2019-03-19 20:45:54 +00:00
|
|
|
let cls = slf.to_object(py).getattr(py, "__class__")?;
|
|
|
|
let dict = slf.to_object(py).getattr(py, "__dict__")?;
|
|
|
|
Ok((cls, PyTuple::empty(py), dict))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-23 07:07:28 +00:00
|
|
|
fn add_module(py: Python<'_>, module: &PyModule) -> PyResult<()> {
|
2019-03-19 20:45:54 +00:00
|
|
|
py.import("sys")?
|
|
|
|
.dict()
|
|
|
|
.get_item("modules")
|
|
|
|
.unwrap()
|
2020-02-15 15:24:38 +00:00
|
|
|
.downcast::<PyDict>()?
|
2019-03-19 20:45:54 +00:00
|
|
|
.set_item(module.name()?, module)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-12-27 17:56:52 +00:00
|
|
|
#[cfg_attr(all(Py_LIMITED_API, not(Py_3_10)), ignore)]
|
2019-03-19 20:45:54 +00:00
|
|
|
fn test_pickle() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
|
|
|
let module = PyModule::new(py, "test_module").unwrap();
|
|
|
|
module.add_class::<PickleSupport>().unwrap();
|
|
|
|
add_module(py, module).unwrap();
|
2020-02-15 15:24:38 +00:00
|
|
|
let inst = PyCell::new(py, PickleSupport {}).unwrap();
|
2019-03-19 20:45:54 +00:00
|
|
|
py_run!(
|
|
|
|
py,
|
|
|
|
inst,
|
|
|
|
r#"
|
|
|
|
inst.a = 1
|
|
|
|
assert inst.__dict__ == {'a': 1}
|
|
|
|
|
|
|
|
import pickle
|
|
|
|
inst2 = pickle.loads(pickle.dumps(inst))
|
|
|
|
|
|
|
|
assert inst2.__dict__ == {'a': 1}
|
|
|
|
"#
|
|
|
|
);
|
|
|
|
}
|
2020-08-29 07:25:20 +00:00
|
|
|
|
|
|
|
/// Testing https://github.com/PyO3/pyo3/issues/1106. A result type that
|
|
|
|
/// implements `From<MyError> for PyErr` should be automatically converted
|
|
|
|
/// when using `#[pyfunction]`.
|
|
|
|
///
|
|
|
|
/// This only makes sure that valid `Result` types do work. For an invalid
|
|
|
|
/// enum type, see `ui/invalid_result_conversion.py`.
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct MyError {
|
|
|
|
pub descr: &'static str,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for MyError {
|
2022-03-23 07:07:28 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2020-08-29 07:25:20 +00:00
|
|
|
write!(f, "My error message: {}", self.descr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Important for the automatic conversion to `PyErr`.
|
|
|
|
impl From<MyError> for PyErr {
|
|
|
|
fn from(err: MyError) -> pyo3::PyErr {
|
2020-08-25 19:33:36 +00:00
|
|
|
pyo3::exceptions::PyOSError::new_err(err.to_string())
|
2020-08-29 07:25:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pyfunction]
|
|
|
|
fn result_conversion_function() -> Result<(), MyError> {
|
|
|
|
Err(MyError {
|
|
|
|
descr: "something went wrong",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_result_conversion() {
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
let py = gil.python();
|
2020-09-03 13:48:32 +00:00
|
|
|
wrap_pyfunction!(result_conversion_function)(py).unwrap();
|
2020-08-29 07:25:20 +00:00
|
|
|
}
|