use std::{
collections::BTreeMap,
fmt::Debug,
sync::{Arc, RwLock as StdRwLock},
time::Duration,
};
use cfg_if::cfg_if;
use matrix_sdk_common::timer;
use ruma::{OwnedRoomId, api::client::sync::sync_events::v5 as http};
use tokio::sync::{Mutex as AsyncMutex, RwLock as AsyncRwLock, broadcast::channel};
use super::{
Error, SlidingSync, SlidingSyncInner, SlidingSyncListBuilder, SlidingSyncPositionMarkers,
Version, cache::format_storage_key_prefix, sticky_parameters::SlidingSyncStickyManager,
};
use crate::{Client, Result, sliding_sync::SlidingSyncStickyParameters};
#[derive(Debug, Clone)]
pub struct SlidingSyncBuilder {
id: String,
storage_key: String,
version: Option<Version>,
client: Client,
lists: Vec<SlidingSyncListBuilder>,
extensions: Option<http::request::Extensions>,
subscriptions: BTreeMap<OwnedRoomId, http::request::RoomSubscription>,
poll_timeout: Duration,
network_timeout: Duration,
#[cfg(feature = "e2e-encryption")]
share_pos: bool,
}
impl SlidingSyncBuilder {
pub(super) fn new(id: String, client: Client) -> Result<Self, Error> {
if id.len() > 16 {
Err(Error::InvalidSlidingSyncIdentifier)
} else {
let storage_key =
format_storage_key_prefix(&id, client.user_id().ok_or(Error::UnauthenticatedUser)?);
Ok(Self {
id,
storage_key,
version: None,
client,
lists: Vec::new(),
extensions: None,
subscriptions: BTreeMap::new(),
poll_timeout: Duration::from_secs(30),
network_timeout: Duration::from_secs(30),
#[cfg(feature = "e2e-encryption")]
share_pos: false,
})
}
}
pub fn version(mut self, version: Version) -> Self {
self.version = Some(version);
self
}
pub fn add_list(mut self, list_builder: SlidingSyncListBuilder) -> Self {
self.lists.push(list_builder);
self
}
pub async fn add_cached_list(self, mut list: SlidingSyncListBuilder) -> Result<Self> {
let _timer = timer!(format!("restoring (loading+processing) list {}", list.name));
list.set_cached_and_reload(&self.client, &self.storage_key).await?;
Ok(self.add_list(list))
}
pub fn with_all_extensions(mut self) -> Self {
{
let cfg = self.extensions.get_or_insert_with(Default::default);
if cfg.to_device.enabled.is_none() {
cfg.to_device.enabled = Some(true);
}
if cfg.e2ee.enabled.is_none() {
cfg.e2ee.enabled = Some(true);
}
if cfg.account_data.enabled.is_none() {
cfg.account_data.enabled = Some(true);
}
if cfg.receipts.enabled.is_none() {
cfg.receipts.enabled = Some(true);
}
if cfg.typing.enabled.is_none() {
cfg.typing.enabled = Some(true);
}
}
self
}
pub fn with_e2ee_extension(mut self, e2ee: http::request::E2EE) -> Self {
self.extensions.get_or_insert_with(Default::default).e2ee = e2ee;
self
}
pub fn without_e2ee_extension(mut self) -> Self {
self.extensions.get_or_insert_with(Default::default).e2ee = http::request::E2EE::default();
self
}
pub fn with_to_device_extension(mut self, to_device: http::request::ToDevice) -> Self {
self.extensions.get_or_insert_with(Default::default).to_device = to_device;
self
}
pub fn without_to_device_extension(mut self) -> Self {
self.extensions.get_or_insert_with(Default::default).to_device =
http::request::ToDevice::default();
self
}
pub fn with_account_data_extension(mut self, account_data: http::request::AccountData) -> Self {
self.extensions.get_or_insert_with(Default::default).account_data = account_data;
self
}
pub fn without_account_data_extension(mut self) -> Self {
self.extensions.get_or_insert_with(Default::default).account_data =
http::request::AccountData::default();
self
}
pub fn with_typing_extension(mut self, typing: http::request::Typing) -> Self {
self.extensions.get_or_insert_with(Default::default).typing = typing;
self
}
pub fn without_typing_extension(mut self) -> Self {
self.extensions.get_or_insert_with(Default::default).typing =
http::request::Typing::default();
self
}
pub fn with_receipt_extension(mut self, receipt: http::request::Receipts) -> Self {
self.extensions.get_or_insert_with(Default::default).receipts = receipt;
self
}
pub fn without_receipt_extension(mut self) -> Self {
self.extensions.get_or_insert_with(Default::default).receipts =
http::request::Receipts::default();
self
}
pub fn with_thread_subscriptions_extension(
mut self,
thread_subscriptions: http::request::ThreadSubscriptions,
) -> Self {
self.extensions.get_or_insert_with(Default::default).thread_subscriptions =
thread_subscriptions;
self
}
pub fn without_thread_subscriptions_extension(mut self) -> Self {
self.extensions.get_or_insert_with(Default::default).thread_subscriptions =
Default::default();
self
}
pub fn poll_timeout(mut self, timeout: Duration) -> Self {
self.poll_timeout = timeout;
self
}
pub fn network_timeout(mut self, timeout: Duration) -> Self {
self.network_timeout = timeout;
self
}
#[cfg(feature = "e2e-encryption")]
pub fn share_pos(mut self) -> Self {
self.share_pos = true;
self
}
#[allow(clippy::unused_async)] pub async fn build(self) -> Result<SlidingSync> {
let client = self.client;
let version = self.version.unwrap_or_else(|| client.sliding_sync_version());
if matches!(version, Version::None) {
return Err(crate::error::Error::SlidingSync(Box::new(Error::VersionIsMissing)));
}
let (internal_channel_sender, _internal_channel_receiver) = channel(8);
let mut lists = BTreeMap::new();
for list_builder in self.lists {
let list = list_builder.build(internal_channel_sender.clone());
lists.insert(list.name().to_owned(), list);
}
let (share_pos, pos) = {
cfg_if! {
if #[cfg(feature = "e2e-encryption")] {
if self.share_pos {
(true, super::cache::restore_sliding_sync_state(&client, &self.storage_key).await?.and_then(|fields| fields.pos))
} else {
(false, None)
}
} else {
(false, None)
}
}
};
let lists = AsyncRwLock::new(lists);
Ok(SlidingSync::new(SlidingSyncInner {
id: self.id,
client,
storage_key: self.storage_key,
share_pos,
lists,
position: Arc::new(AsyncMutex::new(SlidingSyncPositionMarkers { pos })),
sticky: StdRwLock::new(SlidingSyncStickyManager::new(
SlidingSyncStickyParameters::new(
self.subscriptions,
self.extensions.unwrap_or_default(),
),
)),
internal_channel: internal_channel_sender,
poll_timeout: self.poll_timeout,
network_timeout: self.network_timeout,
}))
}
}