optimize auth_chain short_id to event_id translation step

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-10-01 23:19:47 +00:00 committed by strawberry
parent ab06701ed0
commit 36677bb982
3 changed files with 46 additions and 17 deletions

View file

@ -6,7 +6,7 @@ use std::{
};
use conduit::{debug, debug_error, trace, utils::IterStream, validated, warn, Err, Result};
use futures::{FutureExt, Stream, StreamExt};
use futures::Stream;
use ruma::{EventId, RoomId};
use self::data::Data;
@ -40,15 +40,27 @@ impl Service {
pub async fn event_ids_iter(
&self, room_id: &RoomId, starting_events: &[&EventId],
) -> Result<impl Stream<Item = Arc<EventId>> + Send + '_> {
let chain = self.get_auth_chain(room_id, starting_events).await?;
let iter = chain.into_iter().stream().filter_map(|sid| {
self.services
.short
.get_eventid_from_short(sid)
.map(Result::ok)
});
let stream = self
.get_event_ids(room_id, starting_events)
.await?
.into_iter()
.stream();
Ok(iter)
Ok(stream)
}
pub async fn get_event_ids(&self, room_id: &RoomId, starting_events: &[&EventId]) -> Result<Vec<Arc<EventId>>> {
let chain = self.get_auth_chain(room_id, starting_events).await?;
let event_ids = self
.services
.short
.multi_get_eventid_from_short(&chain)
.await
.into_iter()
.filter_map(Result::ok)
.collect();
Ok(event_ids)
}
#[tracing::instrument(skip_all, name = "auth_chain")]

View file

@ -797,13 +797,13 @@ impl Service {
for state in &fork_states {
let starting_events: Vec<&EventId> = state.values().map(Borrow::borrow).collect();
let auth_chain = self
let auth_chain: HashSet<Arc<EventId>> = self
.services
.auth_chain
.event_ids_iter(room_id, &starting_events)
.get_event_ids(room_id, &starting_events)
.await?
.collect::<HashSet<Arc<EventId>>>()
.await;
.into_iter()
.collect();
auth_chain_sets.push(auth_chain);
}
@ -983,13 +983,13 @@ impl Service {
starting_events.push(id.borrow());
}
let auth_chain = self
let auth_chain: HashSet<Arc<EventId>> = self
.services
.auth_chain
.event_ids_iter(room_id, &starting_events)
.get_event_ids(room_id, &starting_events)
.await?
.collect()
.await;
.into_iter()
.collect();
auth_chain_sets.push(auth_chain);
fork_states.push(state);

View file

@ -141,6 +141,23 @@ pub async fn get_eventid_from_short(&self, shorteventid: u64) -> Result<Arc<Even
.map_err(|e| err!(Database("Failed to find EventId from short {shorteventid:?}: {e:?}")))
}
#[implement(Service)]
pub async fn multi_get_eventid_from_short(&self, shorteventid: &[u64]) -> Vec<Result<Arc<EventId>>> {
const BUFSIZE: usize = size_of::<u64>();
let keys: Vec<[u8; BUFSIZE]> = shorteventid
.iter()
.map(|short| short.to_be_bytes())
.collect();
self.db
.shorteventid_eventid
.get_batch_blocking(keys.iter())
.into_iter()
.map(Deserialized::deserialized)
.collect()
}
#[implement(Service)]
pub async fn get_statekey_from_short(&self, shortstatekey: u64) -> Result<(StateEventType, String)> {
const BUFSIZE: usize = size_of::<u64>();