MeiliSearch/src/store/updates.rs

73 lines
2.0 KiB
Rust
Raw Normal View History

2019-10-03 16:39:30 +02:00
use std::convert::TryInto;
use rkv::Value;
2019-10-03 15:04:11 +02:00
use crate::update::Update;
#[derive(Copy, Clone)]
pub struct Updates {
pub(crate) updates: rkv::SingleStore,
}
impl Updates {
2019-10-03 16:39:30 +02:00
// TODO we should use the MDB_LAST op but
// it is not exposed by the rkv library
fn last_update_id<'a, T: rkv::Readable>(
&self,
reader: &'a T,
) -> Result<Option<(u64, Option<Value<'a>>)>, rkv::StoreError>
{
let mut last = None;
let iter = self.updates.iter_start(reader)?;
for result in iter {
let (key, data) = result?;
last = Some((key, data));
}
let (last_key, last_data) = match last {
Some(entry) => entry,
None => return Ok(None),
};
let array = last_key.try_into().unwrap();
let number = u64::from_be_bytes(array);
Ok(Some((number, last_data)))
}
2019-10-03 15:04:11 +02:00
pub fn push_back(
&self,
writer: &mut rkv::Writer,
update: &Update,
) -> Result<u64, rkv::StoreError>
{
2019-10-03 16:39:30 +02:00
let last_update_id = self.last_update_id(writer)?;
let last_update_id = last_update_id.map_or(0, |(n, _)| n + 1);
let last_update_id_bytes = last_update_id.to_be_bytes();
2019-10-03 16:13:09 +02:00
2019-10-03 16:39:30 +02:00
let update = rmp_serde::to_vec_named(&update).unwrap();
let blob = Value::Blob(&update);
self.updates.put(writer, last_update_id_bytes, &blob)?;
2019-10-03 16:13:09 +02:00
2019-10-03 16:39:30 +02:00
Ok(last_update_id)
2019-10-03 15:04:11 +02:00
}
2019-10-03 16:13:09 +02:00
pub fn pop_back(
2019-10-03 15:04:11 +02:00
&self,
2019-10-03 16:13:09 +02:00
writer: &mut rkv::Writer,
) -> Result<Option<(u64, Update)>, rkv::StoreError>
2019-10-03 15:04:11 +02:00
{
2019-10-03 16:39:30 +02:00
let (last_id, last_data) = match self.last_update_id(writer)? {
Some(entry) => entry,
None => return Ok(None),
};
match last_data {
Some(Value::Blob(bytes)) => {
let update = rmp_serde::from_read_ref(&bytes).unwrap();
Ok(Some((last_id, update)))
},
Some(value) => panic!("invalid type {:?}", value),
None => Ok(None),
}
2019-10-03 15:04:11 +02:00
}
}