-
Notifications
You must be signed in to change notification settings - Fork 67
/
schema_helpers.rs
30 lines (28 loc) · 1.09 KB
/
schema_helpers.rs
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
27
28
29
30
use crate::__private::maybestd::{
io::{Error, ErrorKind, Result},
vec::Vec,
};
use crate::from_slice;
use crate::schema::BorshSchemaContainer;
use crate::{BorshDeserialize, BorshSchema, BorshSerialize};
/// 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]) -> Result<T> {
let (schema, object) = from_slice::<(BorshSchemaContainer, T)>(v)?;
if T::schema_container() != schema {
return Err(Error::new(
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) -> Result<Vec<u8>> {
let schema = T::schema_container();
let mut res = schema.try_to_vec()?;
res.extend(value.try_to_vec()?);
Ok(res)
}