use std::collections::HashSet; use std::ops::Deref; use std::sync::{Arc, Weak}; use appflowy_integrate::collab_builder::AppFlowyCollabBuilder; use appflowy_integrate::{CollabPersistenceConfig, RocksCollabDB}; use collab::core::collab::{CollabRawData, MutexCollab}; use collab::core::collab_state::SyncState; use collab_folder::core::{ Folder, FolderData, FolderNotify, TrashChange, TrashChangeReceiver, TrashInfo, View, ViewChange, ViewChangeReceiver, ViewLayout, Workspace, }; use parking_lot::Mutex; use tokio_stream::wrappers::WatchStream; use tokio_stream::StreamExt; use tracing::{event, Level}; use flowy_error::{ErrorCode, FlowyError, FlowyResult}; use crate::deps::{FolderCloudService, FolderUser}; use crate::entities::{ view_pb_with_child_views, view_pb_without_child_views, ChildViewUpdatePB, CreateViewParams, CreateWorkspaceParams, DeletedViewPB, FolderSnapshotPB, FolderSnapshotStatePB, FolderSyncStatePB, RepeatedTrashPB, RepeatedViewPB, RepeatedWorkspacePB, UpdateViewParams, ViewPB, WorkspacePB, }; use crate::notification::{ send_notification, send_workspace_notification, send_workspace_setting_notification, FolderNotification, }; use crate::share::ImportParams; use crate::user_default::DefaultFolderBuilder; use crate::view_operation::{ create_view, gen_view_id, FolderOperationHandler, FolderOperationHandlers, }; pub struct FolderManager { mutex_folder: Arc, collab_builder: Arc, user: Arc, operation_handlers: FolderOperationHandlers, cloud_service: Arc, } unsafe impl Send for FolderManager {} unsafe impl Sync for FolderManager {} impl FolderManager { pub async fn new( user: Arc, collab_builder: Arc, operation_handlers: FolderOperationHandlers, cloud_service: Arc, ) -> FlowyResult { let mutex_folder = Arc::new(MutexFolder::default()); let manager = Self { user, mutex_folder, collab_builder, operation_handlers, cloud_service, }; Ok(manager) } pub async fn get_current_workspace(&self) -> FlowyResult { self.with_folder( Err(FlowyError::internal().context("Folder is not initialized".to_string())), |folder| { let workspace_pb_from_workspace = |workspace: Workspace, folder: &Folder| { let views = get_workspace_view_pbs(&workspace.id, folder); let workspace: WorkspacePB = (workspace, views).into(); Ok::(workspace) }; match folder.get_current_workspace() { None => { // The current workspace should always exist. If not, try to find the first workspace. // from the folder. Otherwise, return an error. let mut workspaces = folder.workspaces.get_all_workspaces(); if workspaces.is_empty() { Err(FlowyError::record_not_found().context("Can not find the workspace")) } else { tracing::error!("Can't find the current workspace, use the first workspace"); let workspace = workspaces.remove(0); folder.set_current_workspace(&workspace.id); workspace_pb_from_workspace(workspace, folder) } }, Some(workspace) => workspace_pb_from_workspace(workspace, folder), } }, ) } /// Return a list of views of the current workspace. /// Only the first level of child views are included. pub async fn get_current_workspace_views(&self) -> FlowyResult> { let workspace_id = self .mutex_folder .lock() .as_ref() .map(|folder| folder.get_current_workspace_id()); if let Some(Some(workspace_id)) = workspace_id { self.get_workspace_views(&workspace_id).await } else { tracing::warn!("Can't get current workspace views"); Ok(vec![]) } } pub async fn get_workspace_views(&self, workspace_id: &str) -> FlowyResult> { let views = self.with_folder(vec![], |folder| { get_workspace_view_pbs(workspace_id, folder) }); Ok(views) } /// Called immediately after the application launched fi the user already sign in/sign up. #[tracing::instrument(level = "info", skip(self, initial_data), err)] pub async fn initialize( &self, uid: i64, workspace_id: &str, initial_data: FolderInitializeData, ) -> FlowyResult<()> { let workspace_id = workspace_id.to_string(); if let Ok(collab_db) = self.user.collab_db(uid) { let (view_tx, view_rx) = tokio::sync::broadcast::channel(100); let (trash_tx, trash_rx) = tokio::sync::broadcast::channel(100); let folder_notifier = FolderNotify { view_change_tx: view_tx, trash_change_tx: trash_tx, }; let folder = match initial_data { FolderInitializeData::Empty => { let collab = self.collab_for_folder(uid, &workspace_id, collab_db, vec![])?; Folder::open(collab, Some(folder_notifier)) }, FolderInitializeData::Raw(raw_data) => { let collab = self.collab_for_folder(uid, &workspace_id, collab_db, raw_data)?; Folder::open(collab, Some(folder_notifier)) }, FolderInitializeData::Data(folder_data) => { let collab = self.collab_for_folder(uid, &workspace_id, collab_db, vec![])?; Folder::create(collab, Some(folder_notifier), Some(folder_data)) }, }; tracing::debug!("Current workspace_id: {}", workspace_id); let folder_state_rx = folder.subscribe_sync_state(); *self.mutex_folder.lock() = Some(folder); let weak_mutex_folder = Arc::downgrade(&self.mutex_folder); subscribe_folder_sync_state_changed( workspace_id.clone(), folder_state_rx, &weak_mutex_folder, ); subscribe_folder_snapshot_state_changed(workspace_id, &weak_mutex_folder); subscribe_folder_trash_changed(trash_rx, &weak_mutex_folder); subscribe_folder_view_changed(view_rx, &weak_mutex_folder); } Ok(()) } fn collab_for_folder( &self, uid: i64, workspace_id: &str, collab_db: Arc, raw_data: CollabRawData, ) -> Result, FlowyError> { let collab = self.collab_builder.build_with_config( uid, workspace_id, "workspace", collab_db, raw_data, &CollabPersistenceConfig::new().enable_snapshot(true), )?; Ok(collab) } #[tracing::instrument(level = "debug", skip(self, user_id), err)] pub async fn initialize_when_sign_in(&self, user_id: i64, workspace_id: &str) -> FlowyResult<()> { let folder_updates = self .cloud_service .get_folder_updates(workspace_id, user_id) .await?; tracing::trace!( "Get folder updates via {}, number of updates: {}", self.cloud_service.service_name(), folder_updates.len() ); self .initialize( user_id, workspace_id, FolderInitializeData::Raw(folder_updates), ) .await?; Ok(()) } pub async fn initialize_when_sign_up( &self, user_id: i64, _token: &str, is_new: bool, folder_data: Option, workspace_id: &str, ) -> FlowyResult<()> { // Create the default workspace if the user is new tracing::info!("initialize_when_sign_up: is_new: {}", is_new); if is_new { let folder_data = match folder_data { None => { DefaultFolderBuilder::build( self.user.user_id()?, workspace_id.to_string(), &self.operation_handlers, ) .await }, Some(folder_data) => folder_data, }; self .initialize( user_id, workspace_id, FolderInitializeData::Data(folder_data), ) .await?; // send_notification(token, FolderNotification::DidCreateWorkspace) // .payload(RepeatedWorkspacePB { // items: vec![workspace_pb], // }) // .send(); } else { // The folder data is loaded through the [FolderCloudService]. If the cloud service in use is // [LocalServerFolderCloudServiceImpl], the folder data will be None because the Folder will load // the data directly from the disk. If any other cloud service is in use, the folder data will be loaded remotely. let folder_updates = self .cloud_service .get_folder_updates(workspace_id, user_id) .await?; if !folder_updates.is_empty() { tracing::trace!( "Get folder updates via {}", self.cloud_service.service_name() ); } self .initialize( user_id, workspace_id, FolderInitializeData::Raw(folder_updates), ) .await?; } Ok(()) } /// Called when the current user logout /// pub async fn clear(&self, _user_id: i64) {} #[tracing::instrument(level = "info", skip_all, err)] pub async fn create_workspace(&self, params: CreateWorkspaceParams) -> FlowyResult { let workspace = self .cloud_service .create_workspace(self.user.user_id()?, ¶ms.name) .await?; self.with_folder((), |folder| { folder.workspaces.create_workspace(workspace.clone()); folder.set_current_workspace(&workspace.id); }); let repeated_workspace = RepeatedWorkspacePB { items: vec![workspace.clone().into()], }; send_workspace_notification(FolderNotification::DidCreateWorkspace, repeated_workspace); Ok(workspace) } #[tracing::instrument(level = "info", skip_all, err)] pub async fn open_workspace(&self, workspace_id: &str) -> FlowyResult { self.with_folder(Err(FlowyError::internal()), |folder| { let workspace = folder .workspaces .get_workspace(workspace_id) .ok_or_else(|| { FlowyError::record_not_found().context("Can't open not existing workspace") })?; folder.set_current_workspace(&workspace.id); Ok::(workspace) }) } pub async fn get_workspace(&self, workspace_id: &str) -> Option { self.with_folder(None, |folder| folder.workspaces.get_workspace(workspace_id)) } fn with_folder(&self, default_value: Output, f: F) -> Output where F: FnOnce(&Folder) -> Output, { let folder = self.mutex_folder.lock(); match &*folder { None => default_value, Some(folder) => f(folder), } } pub async fn get_all_workspaces(&self) -> Vec { self.with_folder(vec![], |folder| folder.workspaces.get_all_workspaces()) } pub async fn create_view_with_params(&self, params: CreateViewParams) -> FlowyResult { let view_layout: ViewLayout = params.layout.clone().into(); let handler = self.get_handler(&view_layout)?; let user_id = self.user.user_id()?; let meta = params.meta.clone(); if meta.is_empty() && params.initial_data.is_empty() { tracing::trace!("Create view with build-in data"); handler .create_built_in_view(user_id, ¶ms.view_id, ¶ms.name, view_layout.clone()) .await?; } else { tracing::trace!("Create view with view data"); handler .create_view_with_view_data( user_id, ¶ms.view_id, ¶ms.name, params.initial_data.clone(), view_layout.clone(), meta, ) .await?; } let view = create_view(params, view_layout); self.with_folder((), |folder| { folder.insert_view(view.clone()); }); Ok(view) } /// The orphan view is meant to be a view that is not attached to any parent view. By default, this /// view will not be shown in the view list unless it is attached to a parent view that is shown in /// the view list. pub async fn create_orphan_view_with_params( &self, params: CreateViewParams, ) -> FlowyResult { let view_layout: ViewLayout = params.layout.clone().into(); let handler = self.get_handler(&view_layout)?; let user_id = self.user.user_id()?; handler .create_built_in_view(user_id, ¶ms.view_id, ¶ms.name, view_layout.clone()) .await?; let view = create_view(params, view_layout); self.with_folder((), |folder| { folder.insert_view(view.clone()); }); Ok(view) } #[tracing::instrument(level = "debug", skip(self), err)] pub(crate) async fn close_view(&self, view_id: &str) -> Result<(), FlowyError> { let view = self .with_folder(None, |folder| folder.views.get_view(view_id)) .ok_or_else(|| { FlowyError::record_not_found().context("Can't find the view when closing the view") })?; let handler = self.get_handler(&view.layout)?; handler.close_view(view_id).await?; Ok(()) } /// Returns the view with the given view id. /// The child views of the view will only access the first. So if you want to get the child view's /// child view, you need to call this method again. #[tracing::instrument(level = "debug", skip(self, view_id), err)] pub async fn get_view(&self, view_id: &str) -> FlowyResult { let view_id = view_id.to_string(); let folder = self.mutex_folder.lock(); let folder = folder.as_ref().ok_or_else(folder_not_init_error)?; let trash_ids = folder .get_all_trash() .into_iter() .map(|trash| trash.id) .collect::>(); if trash_ids.contains(&view_id) { return Err(FlowyError::record_not_found()); } match folder.views.get_view(&view_id) { None => Err(FlowyError::record_not_found()), Some(view) => { let child_views = folder .views .get_views_belong_to(&view.id) .into_iter() .filter(|view| !trash_ids.contains(&view.id)) .collect::>(); let view_pb = view_pb_with_child_views(view, child_views); Ok(view_pb) }, } } /// Move the view to trash. If the view is the current view, then set the current view to empty. /// When the view is moved to trash, all the child views will be moved to trash as well. #[tracing::instrument(level = "debug", skip(self), err)] pub async fn move_view_to_trash(&self, view_id: &str) -> FlowyResult<()> { self.with_folder((), |folder| { let view = folder.views.get_view(view_id); folder.add_trash(vec![view_id.to_string()]); // notify the parent view that the view is moved to trash send_notification(view_id, FolderNotification::DidMoveViewToTrash) .payload(DeletedViewPB { view_id: view_id.to_string(), index: None, }) .send(); if let Some(view) = view { notify_child_views_changed( view_pb_without_child_views(view), ChildViewChangeReason::DidDeleteView, ); } }); Ok(()) } /// Moves a nested view to a new location in the hierarchy. /// /// This function takes the `view_id` of the view to be moved, /// `new_parent_id` of the view under which the `view_id` should be moved, /// and an optional `prev_view_id` to position the `view_id` right after /// this specific view. /// /// If `prev_view_id` is provided, the moved view will be placed right after /// the view corresponding to `prev_view_id` under the `new_parent_id`. /// If `prev_view_id` is `None`, the moved view will become the first child of the new parent. /// /// # Arguments /// /// * `view_id` - A string slice that holds the id of the view to be moved. /// * `new_parent_id` - A string slice that holds the id of the new parent view. /// * `prev_view_id` - An `Option` that holds the id of the view after which the `view_id` should be positioned. /// #[tracing::instrument(level = "trace", skip(self), err)] pub async fn move_nested_view( &self, view_id: String, new_parent_id: String, prev_view_id: Option, ) -> FlowyResult<()> { let view = self.get_view(&view_id).await?; let old_parent_id = view.parent_view_id; self.with_folder((), |folder| { folder.move_nested_view(&view_id, &new_parent_id, prev_view_id); }); notify_parent_view_did_change( self.mutex_folder.clone(), vec![new_parent_id, old_parent_id], ); Ok(()) } /// Move the view with given id from one position to another position. /// The view will be moved to the new position in the same parent view. /// The passed in index is the index of the view that displayed in the UI. /// We need to convert the index to the real index of the view in the parent view. #[tracing::instrument(level = "trace", skip(self), err)] pub async fn move_view(&self, view_id: &str, from: usize, to: usize) -> FlowyResult<()> { if let Some((is_workspace, parent_view_id, child_views)) = self.get_view_relation(view_id).await { // The display parent view is the view that is displayed in the UI let display_views = if is_workspace { self .get_current_workspace() .await? .views .into_iter() .map(|view| view.id) .collect::>() } else { self .get_view(&parent_view_id) .await? .child_views .into_iter() .map(|view| view.id) .collect::>() }; if display_views.len() > to { let to_view_id = display_views[to].clone(); // Find the actual index of the view in the parent view let actual_from_index = child_views.iter().position(|id| id == view_id); let actual_to_index = child_views.iter().position(|id| id == &to_view_id); if let (Some(actual_from_index), Some(actual_to_index)) = (actual_from_index, actual_to_index) { self.with_folder((), |folder| { folder.move_view(view_id, actual_from_index as u32, actual_to_index as u32); }); notify_parent_view_did_change(self.mutex_folder.clone(), vec![parent_view_id]); } } } Ok(()) } /// Return a list of views that belong to the given parent view id. #[tracing::instrument(level = "debug", skip(self, parent_view_id), err)] pub async fn get_views_belong_to(&self, parent_view_id: &str) -> FlowyResult>> { let views = self.with_folder(vec![], |folder| { folder.views.get_views_belong_to(parent_view_id) }); Ok(views) } /// Update the view with the given params. #[tracing::instrument(level = "trace", skip(self), err)] pub async fn update_view_with_params(&self, params: UpdateViewParams) -> FlowyResult<()> { let value = self.with_folder(None, |folder| { let old_view = folder.views.get_view(¶ms.view_id); let new_view = folder.views.update_view(¶ms.view_id, |update| { update .set_name_if_not_none(params.name) .set_desc_if_not_none(params.desc) .set_layout_if_not_none(params.layout) .set_icon_url_if_not_none(params.icon_url) .set_cover_url_if_not_none(params.cover_url) .done() }); Some((old_view, new_view)) }); if let Some((Some(old_view), Some(new_view))) = value { if let Ok(handler) = self.get_handler(&old_view.layout) { handler.did_update_view(&old_view, &new_view).await?; } } if let Ok(view_pb) = self.get_view(¶ms.view_id).await { send_notification(&view_pb.id, FolderNotification::DidUpdateView) .payload(view_pb) .send(); } Ok(()) } /// Duplicate the view with the given view id. #[tracing::instrument(level = "debug", skip(self), err)] pub(crate) async fn duplicate_view(&self, view_id: &str) -> Result<(), FlowyError> { let view = self .with_folder(None, |folder| folder.views.get_view(view_id)) .ok_or_else(|| FlowyError::record_not_found().context("Can't duplicate the view"))?; let handler = self.get_handler(&view.layout)?; let view_data = handler.duplicate_view(&view.id).await?; let duplicate_params = CreateViewParams { parent_view_id: view.parent_view_id.clone(), name: format!("{} (copy)", &view.name), desc: view.desc.clone(), layout: view.layout.clone().into(), initial_data: view_data.to_vec(), view_id: gen_view_id(), meta: Default::default(), set_as_current: true, }; let _ = self.create_view_with_params(duplicate_params).await?; Ok(()) } #[tracing::instrument(level = "trace", skip(self), err)] pub(crate) async fn set_current_view(&self, view_id: &str) -> Result<(), FlowyError> { let folder = self.mutex_folder.lock(); let folder = folder.as_ref().ok_or_else(folder_not_init_error)?; folder.set_current_view(view_id); let workspace = folder.get_current_workspace(); let view = folder .get_current_view() .and_then(|view_id| folder.views.get_view(&view_id)); send_workspace_setting_notification(workspace, view); Ok(()) } #[tracing::instrument(level = "trace", skip(self))] pub(crate) async fn get_current_view(&self) -> Option { let view_id = self.with_folder(None, |folder| folder.get_current_view())?; self.get_view(&view_id).await.ok() } #[tracing::instrument(level = "trace", skip(self))] pub(crate) async fn get_all_trash(&self) -> Vec { self.with_folder(vec![], |folder| folder.get_all_trash()) } #[tracing::instrument(level = "trace", skip(self))] pub(crate) async fn restore_all_trash(&self) { self.with_folder((), |folder| { folder.remote_all_trash(); }); send_notification("trash", FolderNotification::DidUpdateTrash) .payload(RepeatedTrashPB { items: vec![] }) .send(); } #[tracing::instrument(level = "trace", skip(self))] pub(crate) async fn restore_trash(&self, trash_id: &str) { self.with_folder((), |folder| { folder.delete_trash(vec![trash_id.to_string()]); }); } /// Delete all the trash permanently. #[tracing::instrument(level = "trace", skip(self))] pub(crate) async fn delete_all_trash(&self) { let deleted_trash = self.with_folder(vec![], |folder| folder.get_all_trash()); for trash in deleted_trash { let _ = self.delete_trash(&trash.id).await; } send_notification("trash", FolderNotification::DidUpdateTrash) .payload(RepeatedTrashPB { items: vec![] }) .send(); } /// Delete the trash permanently. /// Delete the view will delete all the resources that the view holds. For example, if the view /// is a database view. Then the database will be deleted as well. #[tracing::instrument(level = "debug", skip(self, view_id), err)] pub async fn delete_trash(&self, view_id: &str) -> FlowyResult<()> { let view = self.with_folder(None, |folder| folder.views.get_view(view_id)); self.with_folder((), |folder| { folder.delete_trash(vec![view_id.to_string()]); folder.views.delete_views(vec![view_id]); }); if let Some(view) = view { if let Ok(handler) = self.get_handler(&view.layout) { handler.delete_view(view_id).await?; } } Ok(()) } pub(crate) async fn import(&self, import_data: ImportParams) -> FlowyResult { if import_data.data.is_none() && import_data.file_path.is_none() { return Err(FlowyError::new( ErrorCode::InvalidParams, "data or file_path is required", )); } let handler = self.get_handler(&import_data.view_layout)?; let view_id = gen_view_id(); if let Some(data) = import_data.data { handler .import_from_bytes(&view_id, &import_data.name, import_data.import_type, data) .await?; } if let Some(file_path) = import_data.file_path { handler .import_from_file_path(&view_id, &import_data.name, file_path) .await?; } let params = CreateViewParams { parent_view_id: import_data.parent_view_id, name: import_data.name, desc: "".to_string(), layout: import_data.view_layout.clone().into(), initial_data: vec![], view_id, meta: Default::default(), set_as_current: false, }; let view = create_view(params, import_data.view_layout); self.with_folder((), |folder| { folder.insert_view(view.clone()); }); notify_parent_view_did_change(self.mutex_folder.clone(), vec![view.parent_view_id.clone()]); Ok(view) } /// Returns a handler that implements the [FolderOperationHandler] trait fn get_handler( &self, view_layout: &ViewLayout, ) -> FlowyResult> { match self.operation_handlers.get(view_layout) { None => Err(FlowyError::internal().context(format!( "Get data processor failed. Unknown layout type: {:?}", view_layout ))), Some(processor) => Ok(processor.clone()), } } /// Returns the relation of the view. The relation is a tuple of (is_workspace, parent_view_id, /// child_view_ids). If the view is a workspace, then the parent_view_id is the workspace id. /// Otherwise, the parent_view_id is the parent view id of the view. The child_view_ids is the /// child view ids of the view. async fn get_view_relation(&self, view_id: &str) -> Option<(bool, String, Vec)> { self.with_folder(None, |folder| { let view = folder.views.get_view(view_id)?; match folder.views.get_view(&view.parent_view_id) { None => folder.get_current_workspace().map(|workspace| { ( true, workspace.id, workspace .child_views .items .into_iter() .map(|view| view.id) .collect::>(), ) }), Some(parent_view) => Some(( false, parent_view.id.clone(), parent_view .children .items .clone() .into_iter() .map(|view| view.id) .collect::>(), )), } }) } pub async fn get_folder_snapshots( &self, workspace_id: &str, ) -> FlowyResult> { let mut snapshots = vec![]; if let Some(snapshot) = self .cloud_service .get_folder_latest_snapshot(workspace_id) .await? .map(|snapshot| FolderSnapshotPB { snapshot_id: snapshot.snapshot_id, snapshot_desc: "".to_string(), created_at: snapshot.created_at, data: snapshot.data, }) { snapshots.push(snapshot); } Ok(snapshots) } /// Only expose this method for testing #[cfg(debug_assertions)] pub fn get_mutex_folder(&self) -> &Arc { &self.mutex_folder } /// Only expose this method for testing #[cfg(debug_assertions)] pub fn get_cloud_service(&self) -> &Arc { &self.cloud_service } } /// Listen on the [ViewChange] after create/delete/update events happened fn subscribe_folder_view_changed( mut rx: ViewChangeReceiver, weak_mutex_folder: &Weak, ) { let weak_mutex_folder = weak_mutex_folder.clone(); tokio::spawn(async move { while let Ok(value) = rx.recv().await { if let Some(folder) = weak_mutex_folder.upgrade() { tracing::trace!("Did receive view change: {:?}", value); match value { ViewChange::DidCreateView { view } => { notify_child_views_changed( view_pb_without_child_views(Arc::new(view.clone())), ChildViewChangeReason::DidCreateView, ); notify_parent_view_did_change(folder.clone(), vec![view.parent_view_id]); }, ViewChange::DidDeleteView { views } => { for view in views { notify_child_views_changed( view_pb_without_child_views(view), ChildViewChangeReason::DidDeleteView, ); } }, ViewChange::DidUpdate { view } => { notify_child_views_changed( view_pb_without_child_views(Arc::new(view.clone())), ChildViewChangeReason::DidUpdateView, ); notify_parent_view_did_change(folder.clone(), vec![view.parent_view_id]); }, }; } } }); } fn subscribe_folder_snapshot_state_changed( workspace_id: String, weak_mutex_folder: &Weak, ) { let weak_mutex_folder = weak_mutex_folder.clone(); tokio::spawn(async move { if let Some(mutex_folder) = weak_mutex_folder.upgrade() { let stream = mutex_folder .lock() .as_ref() .map(|folder| folder.subscribe_snapshot_state()); if let Some(mut state_stream) = stream { while let Some(snapshot_state) = state_stream.next().await { if let Some(new_snapshot_id) = snapshot_state.snapshot_id() { tracing::debug!("Did create folder remote snapshot: {}", new_snapshot_id); send_notification( &workspace_id, FolderNotification::DidUpdateFolderSnapshotState, ) .payload(FolderSnapshotStatePB { new_snapshot_id }) .send(); } } } } }); } fn subscribe_folder_sync_state_changed( workspace_id: String, mut folder_sync_state_rx: WatchStream, _weak_mutex_folder: &Weak, ) { tokio::spawn(async move { while let Some(state) = folder_sync_state_rx.next().await { send_notification(&workspace_id, FolderNotification::DidUpdateFolderSyncUpdate) .payload(FolderSyncStatePB::from(state)) .send(); } }); } /// Listen on the [TrashChange]s and notify the frontend some views were changed. fn subscribe_folder_trash_changed( mut rx: TrashChangeReceiver, weak_mutex_folder: &Weak, ) { let weak_mutex_folder = weak_mutex_folder.clone(); tokio::spawn(async move { while let Ok(value) = rx.recv().await { if let Some(folder) = weak_mutex_folder.upgrade() { let mut unique_ids = HashSet::new(); tracing::trace!("Did receive trash change: {:?}", value); let ids = match value { TrashChange::DidCreateTrash { ids } => ids, TrashChange::DidDeleteTrash { ids } => ids, }; if let Some(folder) = folder.lock().as_ref() { let views = folder.views.get_views(&ids); for view in views { unique_ids.insert(view.parent_view_id.clone()); } let repeated_trash: RepeatedTrashPB = folder.get_all_trash().into(); send_notification("trash", FolderNotification::DidUpdateTrash) .payload(repeated_trash) .send(); } let parent_view_ids = unique_ids.into_iter().collect(); notify_parent_view_did_change(folder.clone(), parent_view_ids); } } }); } /// Return the views that belong to the workspace. The views are filtered by the trash. fn get_workspace_view_pbs(workspace_id: &str, folder: &Folder) -> Vec { let trash_ids = folder .get_all_trash() .into_iter() .map(|trash| trash.id) .collect::>(); let mut views = folder.get_workspace_views(workspace_id); views.retain(|view| !trash_ids.contains(&view.id)); views .into_iter() .map(|view| { // Get child views let child_views = folder .views .get_views_belong_to(&view.id) .into_iter() .collect(); view_pb_with_child_views(view, child_views) }) .collect() } fn notify_did_update_workspace(workspace_id: &str, folder: &Folder) { let repeated_view: RepeatedViewPB = get_workspace_view_pbs(workspace_id, folder).into(); tracing::trace!("Did update workspace views: {:?}", repeated_view); send_notification(workspace_id, FolderNotification::DidUpdateWorkspaceViews) .payload(repeated_view) .send(); } /// Notify the the list of parent view ids that its child views were changed. #[tracing::instrument(level = "debug", skip(folder, parent_view_ids))] fn notify_parent_view_did_change>( folder: Arc, parent_view_ids: Vec, ) -> Option<()> { let folder = folder.lock(); let folder = folder.as_ref()?; let workspace_id = folder.get_current_workspace_id()?; let trash_ids = folder .get_all_trash() .into_iter() .map(|trash| trash.id) .collect::>(); for parent_view_id in parent_view_ids { let parent_view_id = parent_view_id.as_ref(); // if the view's parent id equal to workspace id. Then it will fetch the current // workspace views. Because the the workspace is not a view stored in the views map. if parent_view_id == workspace_id { notify_did_update_workspace(&workspace_id, folder) } else { // Parent view can contain a list of child views. Currently, only get the first level // child views. let parent_view = folder.views.get_view(parent_view_id)?; let mut child_views = folder.views.get_views_belong_to(parent_view_id); child_views.retain(|view| !trash_ids.contains(&view.id)); event!(Level::DEBUG, child_views_count = child_views.len()); // Post the notification let parent_view_pb = view_pb_with_child_views(parent_view, child_views); send_notification(parent_view_id, FolderNotification::DidUpdateView) .payload(parent_view_pb) .send(); } } None } pub enum ChildViewChangeReason { DidCreateView, DidDeleteView, DidUpdateView, } /// Notify the the list of parent view ids that its child views were changed. #[tracing::instrument(level = "debug", skip_all)] fn notify_child_views_changed(view_pb: ViewPB, reason: ChildViewChangeReason) { let parent_view_id = view_pb.parent_view_id.clone(); let mut payload = ChildViewUpdatePB { parent_view_id: view_pb.parent_view_id.clone(), ..Default::default() }; match reason { ChildViewChangeReason::DidCreateView => { payload.create_child_views.push(view_pb); }, ChildViewChangeReason::DidDeleteView => { payload.delete_child_views.push(view_pb.id); }, ChildViewChangeReason::DidUpdateView => { payload.update_child_views.push(view_pb); }, } send_notification(&parent_view_id, FolderNotification::DidUpdateChildViews) .payload(payload) .send(); } fn folder_not_init_error() -> FlowyError { FlowyError::internal().context("Folder not initialized") } #[derive(Clone, Default)] pub struct MutexFolder(Arc>>); impl Deref for MutexFolder { type Target = Arc>>; fn deref(&self) -> &Self::Target { &self.0 } } unsafe impl Sync for MutexFolder {} unsafe impl Send for MutexFolder {} pub enum FolderInitializeData { Empty, Raw(CollabRawData), Data(FolderData), }