refactor: prepare src/database/key_value.rs from src/service/rooms/state/data.rs

This commit is contained in:
Nyaaori 2022-08-15 18:46:50 +02:00
parent cc80152889
commit 28644f236e
No known key found for this signature in database
GPG key ID: E7819C3ED4D1F82E

16
src/database/key_value.rs Normal file
View file

@ -0,0 +1,16 @@
pub trait Data {
fn get_room_shortstatehash(room_id: &RoomId);
}
/// Returns the last state hash key added to the db for the given room.
#[tracing::instrument(skip(self))]
pub fn current_shortstatehash(&self, room_id: &RoomId) -> Result<Option<u64>> {
self.roomid_shortstatehash
.get(room_id.as_bytes())?
.map_or(Ok(None), |bytes| {
Ok(Some(utils::u64_from_bytes(&bytes).map_err(|_| {
Error::bad_database("Invalid shortstatehash in roomid_shortstatehash")
})?))
})
}