233 lines
7.5 KiB
Rust
233 lines
7.5 KiB
Rust
mod data;
|
|
use std::sync::Arc;
|
|
|
|
pub use data::Data;
|
|
use ruma::{EventId, events::StateEventType, RoomId};
|
|
|
|
use crate::{Result, Error, utils, services};
|
|
|
|
pub struct Service {
|
|
db: Box<dyn Data>,
|
|
}
|
|
|
|
impl Service {
|
|
pub fn get_or_create_shorteventid(
|
|
&self,
|
|
event_id: &EventId,
|
|
) -> Result<u64> {
|
|
if let Some(short) = self.eventidshort_cache.lock().unwrap().get_mut(event_id) {
|
|
return Ok(*short);
|
|
}
|
|
|
|
let short = match self.eventid_shorteventid.get(event_id.as_bytes())? {
|
|
Some(shorteventid) => utils::u64_from_bytes(&shorteventid)
|
|
.map_err(|_| Error::bad_database("Invalid shorteventid in db."))?,
|
|
None => {
|
|
let shorteventid = services().globals.next_count()?;
|
|
self.eventid_shorteventid
|
|
.insert(event_id.as_bytes(), &shorteventid.to_be_bytes())?;
|
|
self.shorteventid_eventid
|
|
.insert(&shorteventid.to_be_bytes(), event_id.as_bytes())?;
|
|
shorteventid
|
|
}
|
|
};
|
|
|
|
self.eventidshort_cache
|
|
.lock()
|
|
.unwrap()
|
|
.insert(event_id.to_owned(), short);
|
|
|
|
Ok(short)
|
|
}
|
|
|
|
pub fn get_shortstatekey(
|
|
&self,
|
|
event_type: &StateEventType,
|
|
state_key: &str,
|
|
) -> Result<Option<u64>> {
|
|
if let Some(short) = self
|
|
.statekeyshort_cache
|
|
.lock()
|
|
.unwrap()
|
|
.get_mut(&(event_type.clone(), state_key.to_owned()))
|
|
{
|
|
return Ok(Some(*short));
|
|
}
|
|
|
|
let mut statekey = event_type.to_string().as_bytes().to_vec();
|
|
statekey.push(0xff);
|
|
statekey.extend_from_slice(state_key.as_bytes());
|
|
|
|
let short = self
|
|
.statekey_shortstatekey
|
|
.get(&statekey)?
|
|
.map(|shortstatekey| {
|
|
utils::u64_from_bytes(&shortstatekey)
|
|
.map_err(|_| Error::bad_database("Invalid shortstatekey in db."))
|
|
})
|
|
.transpose()?;
|
|
|
|
if let Some(s) = short {
|
|
self.statekeyshort_cache
|
|
.lock()
|
|
.unwrap()
|
|
.insert((event_type.clone(), state_key.to_owned()), s);
|
|
}
|
|
|
|
Ok(short)
|
|
}
|
|
|
|
pub fn get_or_create_shortstatekey(
|
|
&self,
|
|
event_type: &StateEventType,
|
|
state_key: &str,
|
|
) -> Result<u64> {
|
|
if let Some(short) = self
|
|
.statekeyshort_cache
|
|
.lock()
|
|
.unwrap()
|
|
.get_mut(&(event_type.clone(), state_key.to_owned()))
|
|
{
|
|
return Ok(*short);
|
|
}
|
|
|
|
let mut statekey = event_type.to_string().as_bytes().to_vec();
|
|
statekey.push(0xff);
|
|
statekey.extend_from_slice(state_key.as_bytes());
|
|
|
|
let short = match self.statekey_shortstatekey.get(&statekey)? {
|
|
Some(shortstatekey) => utils::u64_from_bytes(&shortstatekey)
|
|
.map_err(|_| Error::bad_database("Invalid shortstatekey in db."))?,
|
|
None => {
|
|
let shortstatekey = services().globals.next_count()?;
|
|
self.statekey_shortstatekey
|
|
.insert(&statekey, &shortstatekey.to_be_bytes())?;
|
|
self.shortstatekey_statekey
|
|
.insert(&shortstatekey.to_be_bytes(), &statekey)?;
|
|
shortstatekey
|
|
}
|
|
};
|
|
|
|
self.statekeyshort_cache
|
|
.lock()
|
|
.unwrap()
|
|
.insert((event_type.clone(), state_key.to_owned()), short);
|
|
|
|
Ok(short)
|
|
}
|
|
|
|
pub fn get_eventid_from_short(&self, shorteventid: u64) -> Result<Arc<EventId>> {
|
|
if let Some(id) = self
|
|
.shorteventid_cache
|
|
.lock()
|
|
.unwrap()
|
|
.get_mut(&shorteventid)
|
|
{
|
|
return Ok(Arc::clone(id));
|
|
}
|
|
|
|
let bytes = self
|
|
.shorteventid_eventid
|
|
.get(&shorteventid.to_be_bytes())?
|
|
.ok_or_else(|| Error::bad_database("Shorteventid does not exist"))?;
|
|
|
|
let event_id = EventId::parse_arc(utils::string_from_bytes(&bytes).map_err(|_| {
|
|
Error::bad_database("EventID in shorteventid_eventid is invalid unicode.")
|
|
})?)
|
|
.map_err(|_| Error::bad_database("EventId in shorteventid_eventid is invalid."))?;
|
|
|
|
self.shorteventid_cache
|
|
.lock()
|
|
.unwrap()
|
|
.insert(shorteventid, Arc::clone(&event_id));
|
|
|
|
Ok(event_id)
|
|
}
|
|
|
|
pub fn get_statekey_from_short(&self, shortstatekey: u64) -> Result<(StateEventType, String)> {
|
|
if let Some(id) = self
|
|
.shortstatekey_cache
|
|
.lock()
|
|
.unwrap()
|
|
.get_mut(&shortstatekey)
|
|
{
|
|
return Ok(id.clone());
|
|
}
|
|
|
|
let bytes = self
|
|
.shortstatekey_statekey
|
|
.get(&shortstatekey.to_be_bytes())?
|
|
.ok_or_else(|| Error::bad_database("Shortstatekey does not exist"))?;
|
|
|
|
let mut parts = bytes.splitn(2, |&b| b == 0xff);
|
|
let eventtype_bytes = parts.next().expect("split always returns one entry");
|
|
let statekey_bytes = parts
|
|
.next()
|
|
.ok_or_else(|| Error::bad_database("Invalid statekey in shortstatekey_statekey."))?;
|
|
|
|
let event_type =
|
|
StateEventType::try_from(utils::string_from_bytes(eventtype_bytes).map_err(|_| {
|
|
Error::bad_database("Event type in shortstatekey_statekey is invalid unicode.")
|
|
})?)
|
|
.map_err(|_| Error::bad_database("Event type in shortstatekey_statekey is invalid."))?;
|
|
|
|
let state_key = utils::string_from_bytes(statekey_bytes).map_err(|_| {
|
|
Error::bad_database("Statekey in shortstatekey_statekey is invalid unicode.")
|
|
})?;
|
|
|
|
let result = (event_type, state_key);
|
|
|
|
self.shortstatekey_cache
|
|
.lock()
|
|
.unwrap()
|
|
.insert(shortstatekey, result.clone());
|
|
|
|
Ok(result)
|
|
}
|
|
|
|
/// Returns (shortstatehash, already_existed)
|
|
fn get_or_create_shortstatehash(
|
|
&self,
|
|
state_hash: &[u8],
|
|
) -> Result<(u64, bool)> {
|
|
Ok(match self.statehash_shortstatehash.get(state_hash)? {
|
|
Some(shortstatehash) => (
|
|
utils::u64_from_bytes(&shortstatehash)
|
|
.map_err(|_| Error::bad_database("Invalid shortstatehash in db."))?,
|
|
true,
|
|
),
|
|
None => {
|
|
let shortstatehash = services().globals.next_count()?;
|
|
self.statehash_shortstatehash
|
|
.insert(state_hash, &shortstatehash.to_be_bytes())?;
|
|
(shortstatehash, false)
|
|
}
|
|
})
|
|
}
|
|
|
|
pub fn get_shortroomid(&self, room_id: &RoomId) -> Result<Option<u64>> {
|
|
self.roomid_shortroomid
|
|
.get(room_id.as_bytes())?
|
|
.map(|bytes| {
|
|
utils::u64_from_bytes(&bytes)
|
|
.map_err(|_| Error::bad_database("Invalid shortroomid in db."))
|
|
})
|
|
.transpose()
|
|
}
|
|
|
|
pub fn get_or_create_shortroomid(
|
|
&self,
|
|
room_id: &RoomId,
|
|
) -> Result<u64> {
|
|
Ok(match self.roomid_shortroomid.get(room_id.as_bytes())? {
|
|
Some(short) => utils::u64_from_bytes(&short)
|
|
.map_err(|_| Error::bad_database("Invalid shortroomid in db."))?,
|
|
None => {
|
|
let short = services().globals.next_count()?;
|
|
self.roomid_shortroomid
|
|
.insert(room_id.as_bytes(), &short.to_be_bytes())?;
|
|
short
|
|
}
|
|
})
|
|
}
|
|
}
|