MeiliSearch/milli/src/heed_codec/beu32_str_codec.rs

28 lines
782 B
Rust
Raw Normal View History

2020-08-28 14:16:37 +02:00
use std::borrow::Cow;
use std::convert::TryInto;
use std::str;
pub struct BEU32StrCodec;
2020-08-28 14:16:37 +02:00
impl<'a> heed::BytesDecode<'a> for BEU32StrCodec {
type DItem = (u32, &'a str);
2020-08-28 14:16:37 +02:00
fn bytes_decode(bytes: &'a [u8]) -> Option<Self::DItem> {
let (n_bytes, str_bytes) = bytes.split_at(4);
2020-08-28 14:16:37 +02:00
let n = n_bytes.try_into().map(u32::from_be_bytes).ok()?;
let s = str::from_utf8(str_bytes).ok()?;
Some((n, s))
2020-08-28 14:16:37 +02:00
}
}
impl<'a> heed::BytesEncode<'a> for BEU32StrCodec {
type EItem = (u32, &'a str);
2020-08-28 14:16:37 +02:00
fn bytes_encode((n, s): &Self::EItem) -> Option<Cow<[u8]>> {
2020-08-28 14:16:37 +02:00
let mut bytes = Vec::with_capacity(s.len() + 4);
bytes.extend_from_slice(&n.to_be_bytes());
bytes.extend_from_slice(s.as_bytes());
2020-08-28 14:16:37 +02:00
Some(Cow::Owned(bytes))
}
}