1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use crate::schema::BorshSchemaContainer;
use crate::{BorshDeserialize, BorshSchema, BorshSerialize};
use std::io;

/// Deserialize this instance from a slice of bytes, but assume that at the beginning we have
/// bytes describing the schema of the type. We deserialize this schema and verify that it is
/// correct.
pub fn try_from_slice_with_schema<T: BorshDeserialize + BorshSchema>(v: &[u8]) -> io::Result<T> {
    let (schema, object) = <(BorshSchemaContainer, T)>::try_from_slice(v)?;
    if T::schema_container() != schema {
        return Err(io::Error::new(
            io::ErrorKind::InvalidData,
            "Borsh schema does not match",
        ));
    }
    Ok(object)
}

/// Serialize object into a vector of bytes and prefix with the schema serialized as vector of
/// bytes in Borsh format.
pub fn try_to_vec_with_schema<T: BorshSerialize + BorshSchema>(value: &T) -> io::Result<Vec<u8>> {
    let schema = T::schema_container();
    let mut res = schema.try_to_vec()?;
    res.extend(value.try_to_vec()?);
    Ok(res)
}