mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-26 18:26:36 +02:00
https://rust-lang.github.io/rust-clippy/master/index.html#op_ref https://rust-lang.github.io/rust-clippy/master/index.html#str_to_string https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
161 lines
5.3 KiB
Rust
161 lines
5.3 KiB
Rust
mod data;
|
|
use std::{
|
|
collections::{BTreeSet, HashSet},
|
|
sync::Arc,
|
|
};
|
|
|
|
pub use data::Data;
|
|
use ruma::{api::client::error::ErrorKind, EventId, RoomId};
|
|
use tracing::{debug, error, warn};
|
|
|
|
use crate::{services, Error, Result};
|
|
|
|
pub struct Service {
|
|
pub db: &'static dyn Data,
|
|
}
|
|
|
|
impl Service {
|
|
pub fn get_cached_eventid_authchain(&self, key: &[u64]) -> Result<Option<Arc<HashSet<u64>>>> {
|
|
self.db.get_cached_eventid_authchain(key)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub fn cache_auth_chain(&self, key: Vec<u64>, auth_chain: Arc<HashSet<u64>>) -> Result<()> {
|
|
self.db.cache_auth_chain(key, auth_chain)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self, starting_events))]
|
|
pub async fn get_auth_chain<'a>(
|
|
&self,
|
|
room_id: &RoomId,
|
|
starting_events: Vec<Arc<EventId>>,
|
|
) -> Result<impl Iterator<Item = Arc<EventId>> + 'a> {
|
|
const NUM_BUCKETS: usize = 50;
|
|
|
|
let mut buckets = vec![BTreeSet::new(); NUM_BUCKETS];
|
|
|
|
let mut i = 0;
|
|
for id in starting_events {
|
|
let short = services().rooms.short.get_or_create_shorteventid(&id)?;
|
|
let bucket_id = (short % NUM_BUCKETS as u64) as usize;
|
|
buckets[bucket_id].insert((short, id.clone()));
|
|
i += 1;
|
|
if i % 100 == 0 {
|
|
tokio::task::yield_now().await;
|
|
}
|
|
}
|
|
|
|
let mut full_auth_chain = HashSet::new();
|
|
|
|
let mut hits = 0;
|
|
let mut misses = 0;
|
|
for chunk in buckets {
|
|
if chunk.is_empty() {
|
|
continue;
|
|
}
|
|
|
|
let chunk_key: Vec<u64> = chunk.iter().map(|(short, _)| short).copied().collect();
|
|
if let Some(cached) = services()
|
|
.rooms
|
|
.auth_chain
|
|
.get_cached_eventid_authchain(&chunk_key)?
|
|
{
|
|
hits += 1;
|
|
full_auth_chain.extend(cached.iter().copied());
|
|
continue;
|
|
}
|
|
misses += 1;
|
|
|
|
let mut chunk_cache = HashSet::new();
|
|
let mut hits2 = 0;
|
|
let mut misses2 = 0;
|
|
let mut i = 0;
|
|
for (sevent_id, event_id) in chunk {
|
|
if let Some(cached) = services()
|
|
.rooms
|
|
.auth_chain
|
|
.get_cached_eventid_authchain(&[sevent_id])?
|
|
{
|
|
hits2 += 1;
|
|
chunk_cache.extend(cached.iter().copied());
|
|
} else {
|
|
misses2 += 1;
|
|
let auth_chain = Arc::new(self.get_auth_chain_inner(room_id, &event_id)?);
|
|
services()
|
|
.rooms
|
|
.auth_chain
|
|
.cache_auth_chain(vec![sevent_id], Arc::clone(&auth_chain))?;
|
|
debug!(
|
|
event_id = ?event_id,
|
|
chain_length = ?auth_chain.len(),
|
|
"Cache missed event"
|
|
);
|
|
chunk_cache.extend(auth_chain.iter());
|
|
|
|
i += 1;
|
|
if i % 100 == 0 {
|
|
tokio::task::yield_now().await;
|
|
}
|
|
};
|
|
}
|
|
debug!(
|
|
chunk_cache_length = ?chunk_cache.len(),
|
|
hits = ?hits2,
|
|
misses = ?misses2,
|
|
"Chunk missed",
|
|
);
|
|
let chunk_cache = Arc::new(chunk_cache);
|
|
services()
|
|
.rooms
|
|
.auth_chain
|
|
.cache_auth_chain(chunk_key, Arc::clone(&chunk_cache))?;
|
|
full_auth_chain.extend(chunk_cache.iter());
|
|
}
|
|
|
|
debug!(
|
|
chain_length = ?full_auth_chain.len(),
|
|
hits = ?hits,
|
|
misses = ?misses,
|
|
"Auth chain stats",
|
|
);
|
|
|
|
Ok(full_auth_chain
|
|
.into_iter()
|
|
.filter_map(move |sid| services().rooms.short.get_eventid_from_short(sid).ok()))
|
|
}
|
|
|
|
#[tracing::instrument(skip(self, event_id))]
|
|
fn get_auth_chain_inner(&self, room_id: &RoomId, event_id: &EventId) -> Result<HashSet<u64>> {
|
|
let mut todo = vec![Arc::from(event_id)];
|
|
let mut found = HashSet::new();
|
|
|
|
while let Some(event_id) = todo.pop() {
|
|
match services().rooms.timeline.get_pdu(&event_id) {
|
|
Ok(Some(pdu)) => {
|
|
if pdu.room_id != room_id {
|
|
return Err(Error::BadRequest(ErrorKind::Forbidden, "Evil event in db"));
|
|
}
|
|
for auth_event in &pdu.auth_events {
|
|
let sauthevent = services()
|
|
.rooms
|
|
.short
|
|
.get_or_create_shorteventid(auth_event)?;
|
|
|
|
if !found.contains(&sauthevent) {
|
|
found.insert(sauthevent);
|
|
todo.push(auth_event.clone());
|
|
}
|
|
}
|
|
}
|
|
Ok(None) => {
|
|
warn!(?event_id, "Could not find pdu mentioned in auth events");
|
|
}
|
|
Err(error) => {
|
|
error!(?event_id, ?error, "Could not load event in auth chain");
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(found)
|
|
}
|
|
}
|