pyany-serde 0.6.0

Serialization and deserialization for Python objects
Documentation
use core::str;
use pyo3::types::PyString;
use pyo3::{exceptions::PyUnicodeDecodeError, prelude::*};

use crate::{
    communication::{append_bytes, append_bytes_vec, retrieve_bytes},
    PyAnySerde,
};

#[derive(Clone)]
pub struct StringSerde {}

impl PyAnySerde for StringSerde {
    fn append<'py>(
        &mut self,
        buf: &mut [u8],
        offset: usize,
        obj: &Bound<'py, PyAny>,
    ) -> PyResult<usize> {
        Ok(append_bytes(
            buf,
            offset,
            obj.cast::<PyString>()?.to_str()?.as_bytes(),
        ))
    }

    fn append_vec<'py>(
        &mut self,
        v: &mut Vec<u8>,
        _start_addr: Option<usize>,
        obj: &Bound<'py, PyAny>,
    ) -> PyResult<()> {
        append_bytes_vec(v, obj.cast::<PyString>()?.to_str()?.as_bytes());
        Ok(())
    }

    fn retrieve<'py>(
        &mut self,
        py: Python<'py>,
        buf: &[u8],
        offset: usize,
    ) -> PyResult<(Bound<'py, PyAny>, usize)> {
        let (obj_bytes, offset) = retrieve_bytes(buf, offset)?;
        Ok((
            PyString::new(
                py,
                str::from_utf8(obj_bytes)
                    .map_err(|e| PyUnicodeDecodeError::new_err_from_utf8(py, obj_bytes, e))?,
            )
            .into_any(),
            offset,
        ))
    }
}