mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-16 01:48:56 +01:00
39 lines
993 B
Rust
39 lines
993 B
Rust
|
use std::borrow::Cow;
|
||
|
use std::convert::TryInto;
|
||
|
use std::mem::size_of;
|
||
|
use std::str;
|
||
|
|
||
|
pub struct StrBEU32Codec;
|
||
|
|
||
|
impl<'a> heed::BytesDecode<'a> for StrBEU32Codec {
|
||
|
type DItem = (&'a str, u32);
|
||
|
|
||
|
fn bytes_decode(bytes: &'a [u8]) -> Option<Self::DItem> {
|
||
|
let footer_len = size_of::<u32>();
|
||
|
|
||
|
if bytes.len() < footer_len {
|
||
|
return None;
|
||
|
}
|
||
|
|
||
|
let (word, bytes) = bytes.split_at(bytes.len() - footer_len);
|
||
|
let word = str::from_utf8(word).ok()?;
|
||
|
let pos = bytes.try_into().map(u32::from_be_bytes).ok()?;
|
||
|
|
||
|
Some((word, pos))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<'a> heed::BytesEncode<'a> for StrBEU32Codec {
|
||
|
type EItem = (&'a str, u32);
|
||
|
|
||
|
fn bytes_encode((word, pos): &Self::EItem) -> Option<Cow<[u8]>> {
|
||
|
let pos = pos.to_be_bytes();
|
||
|
|
||
|
let mut bytes = Vec::with_capacity(word.len() + pos.len());
|
||
|
bytes.extend_from_slice(word.as_bytes());
|
||
|
bytes.extend_from_slice(&pos[..]);
|
||
|
|
||
|
Some(Cow::Owned(bytes))
|
||
|
}
|
||
|
}
|