Skip to main content

rumtk_core/serde/
mod.rs

1/*
2 *     rumtk attempts to implement HL7 and medical protocols for interoperability in medicine.
3 *     This toolkit aims to be reliable, simple, performant, and standards compliant.
4 *     Copyright (C) 2026  Luis M. Santos, M.D. <lsantos@medicalmasses.com>
5 *     Copyright (C) 2026  MedicalMasses L.L.C. <contact@medicalmasses.com>
6 *
7 *     This program is free software: you can redistribute it and/or modify
8 *     it under the terms of the GNU General Public License as published by
9 *     the Free Software Foundation, either version 3 of the License, or
10 *     (at your option) any later version.
11 *
12 *     This program is distributed in the hope that it will be useful,
13 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *     GNU General Public License for more details.
16 *
17 *     You should have received a copy of the GNU General Public License
18 *     along with this program.  If not, see <https://www.gnu.org/licenses/>.
19 */
20use crate::buffers::buffer_to_str;
21use crate::strings::string_to_buffer;
22pub use crate::types::RUMOrderedMap;
23use crate::types::RUMBuffer;
24use bytes::BufMut;
25pub use json::*;
26use std::hash::Hash;
27
28pub mod json;
29
30#[derive(Default, Debug, PartialEq, Clone)]
31pub struct RUMSerializableBuffer(pub RUMBuffer);
32
33impl RUMSerJson for RUMSerializableBuffer {
34    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
35    where
36        S: RUMJsonSerializer,
37    {
38        // Convert external type to a serializable format
39        let string = match buffer_to_str(&self.0.as_slice()) {
40            Ok(string) => string,
41            Err(err) => return Err(serde::ser::Error::custom(err)),
42        };
43        serializer.serialize_str(string)
44    }
45}
46
47impl<'a> RUMDeJson<'a> for RUMSerializableBuffer {
48    fn deserialize<D>(deserializer: D) -> Result<Self, <D>::Error>
49    where
50        D: RUMJsonDeserializer<'a>,
51    {
52        let escaped_val = String::deserialize(deserializer)?;
53        Ok(RUMSerializableBuffer(string_to_buffer(&escaped_val)))
54    }
55}