2021-12-03 00:03:32 +00:00
|
|
|
#![cfg(feature = "macros")]
|
|
|
|
|
2019-04-03 09:01:28 +00:00
|
|
|
//! Test slf: PyRef/PyMutRef<Self>(especially, slf.into::<Py>) works
|
2019-03-28 13:55:41 +00:00
|
|
|
use pyo3::prelude::*;
|
|
|
|
use pyo3::types::{PyBytes, PyString};
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2023-09-24 12:34:53 +00:00
|
|
|
#[path = "../src/tests/common.rs"]
|
2019-03-28 13:55:41 +00:00
|
|
|
mod common;
|
|
|
|
|
|
|
|
/// Assumes it's a file reader or so.
|
2019-04-03 09:01:28 +00:00
|
|
|
/// Inspired by https://github.com/jothan/cordoba, thanks.
|
2019-03-28 13:55:41 +00:00
|
|
|
#[pyclass]
|
2019-12-14 14:16:39 +00:00
|
|
|
#[derive(Clone, Debug)]
|
2019-03-28 13:55:41 +00:00
|
|
|
struct Reader {
|
|
|
|
inner: HashMap<u8, String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl Reader {
|
2024-03-03 14:47:25 +00:00
|
|
|
fn clone_ref<'a, 'py>(slf: &'a Bound<'py, Self>) -> &'a Bound<'py, Self> {
|
2019-08-11 06:27:03 +00:00
|
|
|
slf
|
|
|
|
}
|
2024-03-03 14:47:25 +00:00
|
|
|
fn clone_ref_with_py<'a, 'py>(
|
|
|
|
slf: &'a Bound<'py, Self>,
|
|
|
|
_py: Python<'py>,
|
|
|
|
) -> &'a Bound<'py, Self> {
|
2019-09-01 15:31:22 +00:00
|
|
|
slf
|
|
|
|
}
|
2024-03-03 14:47:25 +00:00
|
|
|
fn get_iter(slf: &Bound<'_, Self>, keys: Py<PyBytes>) -> Iter {
|
2021-02-11 21:37:38 +00:00
|
|
|
Iter {
|
2024-03-03 14:47:25 +00:00
|
|
|
reader: slf.clone().unbind(),
|
2019-04-03 09:01:28 +00:00
|
|
|
keys,
|
|
|
|
idx: 0,
|
2021-02-11 21:37:38 +00:00
|
|
|
}
|
2019-04-03 09:01:28 +00:00
|
|
|
}
|
2020-02-15 15:24:38 +00:00
|
|
|
fn get_iter_and_reset(
|
2022-03-23 07:07:28 +00:00
|
|
|
mut slf: PyRefMut<'_, Self>,
|
2020-02-15 15:24:38 +00:00
|
|
|
keys: Py<PyBytes>,
|
2022-03-23 07:07:28 +00:00
|
|
|
py: Python<'_>,
|
2020-02-15 15:24:38 +00:00
|
|
|
) -> PyResult<Iter> {
|
2019-04-03 09:01:28 +00:00
|
|
|
let reader = Py::new(py, slf.clone())?;
|
|
|
|
slf.inner.clear();
|
|
|
|
Ok(Iter {
|
|
|
|
reader,
|
|
|
|
keys,
|
2019-03-28 13:55:41 +00:00
|
|
|
idx: 0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pyclass]
|
2020-02-15 15:24:38 +00:00
|
|
|
#[derive(Debug)]
|
2019-03-28 13:55:41 +00:00
|
|
|
struct Iter {
|
|
|
|
reader: Py<Reader>,
|
|
|
|
keys: Py<PyBytes>,
|
|
|
|
idx: usize,
|
|
|
|
}
|
|
|
|
|
2022-01-11 07:50:02 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl Iter {
|
2022-01-11 22:06:18 +00:00
|
|
|
#[allow(clippy::self_named_constructors)]
|
2022-03-23 07:07:28 +00:00
|
|
|
fn __iter__(slf: PyRef<'_, Self>) -> PyRef<'_, Self> {
|
2020-06-23 10:40:17 +00:00
|
|
|
slf
|
2019-03-28 13:55:41 +00:00
|
|
|
}
|
2019-12-14 14:16:39 +00:00
|
|
|
|
2022-03-23 07:07:28 +00:00
|
|
|
fn __next__(mut slf: PyRefMut<'_, Self>) -> PyResult<Option<PyObject>> {
|
2024-02-18 00:09:56 +00:00
|
|
|
let bytes = slf.keys.bind(slf.py()).as_bytes();
|
2019-12-14 14:16:39 +00:00
|
|
|
match bytes.get(slf.idx) {
|
2019-03-28 13:55:41 +00:00
|
|
|
Some(&b) => {
|
2020-02-15 15:24:38 +00:00
|
|
|
slf.idx += 1;
|
2020-06-23 10:40:17 +00:00
|
|
|
let py = slf.py();
|
2024-02-18 00:09:56 +00:00
|
|
|
let reader = slf.reader.bind(py);
|
2020-02-15 15:24:38 +00:00
|
|
|
let reader_ref = reader.try_borrow()?;
|
|
|
|
let res = reader_ref
|
2019-03-28 13:55:41 +00:00
|
|
|
.inner
|
|
|
|
.get(&b)
|
2023-11-21 11:41:43 +00:00
|
|
|
.map(|s| PyString::new_bound(py, s).into());
|
2019-03-28 13:55:41 +00:00
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-11 06:27:03 +00:00
|
|
|
fn reader() -> Reader {
|
|
|
|
let reader = [(1, "a"), (2, "b"), (3, "c"), (4, "d"), (5, "e")];
|
|
|
|
Reader {
|
2020-02-10 02:20:18 +00:00
|
|
|
inner: reader.iter().map(|(k, v)| (*k, (*v).to_string())).collect(),
|
2019-08-11 06:27:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-28 13:55:41 +00:00
|
|
|
#[test]
|
2020-02-15 15:24:38 +00:00
|
|
|
fn test_nested_iter() {
|
2022-07-19 17:34:23 +00:00
|
|
|
Python::with_gil(|py| {
|
|
|
|
let reader: PyObject = reader().into_py(py);
|
|
|
|
py_assert!(
|
|
|
|
py,
|
|
|
|
reader,
|
|
|
|
"list(reader.get_iter(bytes([3, 5, 2]))) == ['c', 'e', 'b']"
|
|
|
|
);
|
|
|
|
});
|
2019-03-28 13:55:41 +00:00
|
|
|
}
|
2019-04-03 09:01:28 +00:00
|
|
|
|
2019-08-11 06:27:03 +00:00
|
|
|
#[test]
|
|
|
|
fn test_clone_ref() {
|
2022-07-19 17:34:23 +00:00
|
|
|
Python::with_gil(|py| {
|
|
|
|
let reader: PyObject = reader().into_py(py);
|
|
|
|
py_assert!(py, reader, "reader == reader.clone_ref()");
|
|
|
|
py_assert!(py, reader, "reader == reader.clone_ref_with_py()");
|
|
|
|
});
|
2019-08-11 06:27:03 +00:00
|
|
|
}
|
|
|
|
|
2019-04-03 09:01:28 +00:00
|
|
|
#[test]
|
|
|
|
fn test_nested_iter_reset() {
|
2022-07-19 17:34:23 +00:00
|
|
|
Python::with_gil(|py| {
|
2024-02-20 07:45:47 +00:00
|
|
|
let reader = Bound::new(py, reader()).unwrap();
|
2022-07-19 17:34:23 +00:00
|
|
|
py_assert!(
|
|
|
|
py,
|
|
|
|
reader,
|
|
|
|
"list(reader.get_iter_and_reset(bytes([3, 5, 2]))) == ['c', 'e', 'b']"
|
|
|
|
);
|
|
|
|
let reader_ref = reader.borrow();
|
|
|
|
assert!(reader_ref.inner.is_empty());
|
|
|
|
});
|
2019-04-03 09:01:28 +00:00
|
|
|
}
|