1#![cfg(not(Py_LIMITED_API))]
2
3use crate::ffi_ptr_ext::FfiPtrExt;
6use crate::py_result_ext::PyResultExt;
7use crate::types::{PyAny, PyBytes};
8use crate::{ffi, Bound};
9use crate::{PyResult, Python};
10use std::os::raw::c_int;
11
12pub const VERSION: i32 = 4;
14
15pub fn dumps<'py>(object: &Bound<'py, PyAny>, version: i32) -> PyResult<Bound<'py, PyBytes>> {
36 unsafe {
37 ffi::PyMarshal_WriteObjectToString(object.as_ptr(), version as c_int)
38 .assume_owned_or_err(object.py())
39 .downcast_into_unchecked()
40 }
41}
42
43pub fn loads<'py, B>(py: Python<'py>, data: &B) -> PyResult<Bound<'py, PyAny>>
45where
46 B: AsRef<[u8]> + ?Sized,
47{
48 let data = data.as_ref();
49 unsafe {
50 ffi::PyMarshal_ReadObjectFromString(data.as_ptr().cast(), data.len() as isize)
51 .assume_owned_or_err(py)
52 }
53}
54
55#[cfg(test)]
56mod tests {
57 use super::*;
58 use crate::types::{bytes::PyBytesMethods, dict::PyDictMethods, PyAnyMethods, PyDict};
59
60 #[test]
61 fn marshal_roundtrip() {
62 Python::with_gil(|py| {
63 let dict = PyDict::new(py);
64 dict.set_item("aap", "noot").unwrap();
65 dict.set_item("mies", "wim").unwrap();
66 dict.set_item("zus", "jet").unwrap();
67
68 let pybytes = dumps(&dict, VERSION).expect("marshalling failed");
69 let deserialized = loads(py, pybytes.as_bytes()).expect("unmarshalling failed");
70
71 assert!(dict.eq(&deserialized).unwrap());
72 });
73 }
74}