mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
227 lines
8.2 KiB
Rust
227 lines
8.2 KiB
Rust
use crate::{block_editor::ClientBlockEditor, errors::FlowyError, BlockCloudService};
|
|
use bytes::Bytes;
|
|
use dashmap::DashMap;
|
|
use flowy_collaboration::entities::{
|
|
document_info::{BlockDelta, BlockId},
|
|
revision::{md5, RepeatedRevision, Revision},
|
|
ws_data::ServerRevisionWSData,
|
|
};
|
|
use flowy_database::ConnectionPool;
|
|
use flowy_error::FlowyResult;
|
|
use flowy_sync::{RevisionCloudService, RevisionManager, RevisionPersistence, RevisionWebSocket};
|
|
use lib_infra::future::FutureResult;
|
|
use std::{convert::TryInto, sync::Arc};
|
|
|
|
pub trait BlockUser: Send + Sync {
|
|
fn user_dir(&self) -> Result<String, FlowyError>;
|
|
fn user_id(&self) -> Result<String, FlowyError>;
|
|
fn token(&self) -> Result<String, FlowyError>;
|
|
fn db_pool(&self) -> Result<Arc<ConnectionPool>, FlowyError>;
|
|
}
|
|
|
|
pub struct BlockManager {
|
|
cloud_service: Arc<dyn BlockCloudService>,
|
|
rev_web_socket: Arc<dyn RevisionWebSocket>,
|
|
block_editors: Arc<BlockEditors>,
|
|
block_user: Arc<dyn BlockUser>,
|
|
}
|
|
|
|
impl BlockManager {
|
|
pub fn new(
|
|
cloud_service: Arc<dyn BlockCloudService>,
|
|
block_user: Arc<dyn BlockUser>,
|
|
rev_web_socket: Arc<dyn RevisionWebSocket>,
|
|
) -> Self {
|
|
let block_editors = Arc::new(BlockEditors::new());
|
|
Self {
|
|
cloud_service,
|
|
rev_web_socket,
|
|
block_editors,
|
|
block_user,
|
|
}
|
|
}
|
|
|
|
pub fn init(&self) -> FlowyResult<()> {
|
|
listen_ws_state_changed(self.rev_web_socket.clone(), self.block_editors.clone());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[tracing::instrument(level = "debug", skip(self, block_id), fields(block_id), err)]
|
|
pub async fn open_block<T: AsRef<str>>(&self, block_id: T) -> Result<Arc<ClientBlockEditor>, FlowyError> {
|
|
let block_id = block_id.as_ref();
|
|
tracing::Span::current().record("block_id", &block_id);
|
|
self.get_block_editor(block_id).await
|
|
}
|
|
|
|
#[tracing::instrument(level = "trace", skip(self, block_id), fields(block_id), err)]
|
|
pub fn close_block<T: AsRef<str>>(&self, block_id: T) -> Result<(), FlowyError> {
|
|
let block_id = block_id.as_ref();
|
|
tracing::Span::current().record("block_id", &block_id);
|
|
self.block_editors.remove(block_id);
|
|
Ok(())
|
|
}
|
|
|
|
#[tracing::instrument(level = "debug", skip(self, doc_id), fields(doc_id), err)]
|
|
pub fn delete<T: AsRef<str>>(&self, doc_id: T) -> Result<(), FlowyError> {
|
|
let doc_id = doc_id.as_ref();
|
|
tracing::Span::current().record("doc_id", &doc_id);
|
|
self.block_editors.remove(doc_id);
|
|
Ok(())
|
|
}
|
|
|
|
#[tracing::instrument(level = "debug", skip(self, delta), fields(doc_id = %delta.block_id), err)]
|
|
pub async fn receive_local_delta(&self, delta: BlockDelta) -> Result<BlockDelta, FlowyError> {
|
|
let editor = self.get_block_editor(&delta.block_id).await?;
|
|
let _ = editor.compose_local_delta(Bytes::from(delta.delta_json)).await?;
|
|
let document_json = editor.block_json().await?;
|
|
Ok(BlockDelta {
|
|
block_id: delta.block_id.clone(),
|
|
delta_json: document_json,
|
|
})
|
|
}
|
|
|
|
pub async fn create_block<T: AsRef<str>>(&self, doc_id: T, revisions: RepeatedRevision) -> FlowyResult<()> {
|
|
let doc_id = doc_id.as_ref().to_owned();
|
|
let db_pool = self.block_user.db_pool()?;
|
|
// Maybe we could save the block to disk without creating the RevisionManager
|
|
let rev_manager = self.make_block_rev_manager(&doc_id, db_pool)?;
|
|
let _ = rev_manager.reset_object(revisions).await?;
|
|
Ok(())
|
|
}
|
|
|
|
pub async fn receive_ws_data(&self, data: Bytes) {
|
|
let result: Result<ServerRevisionWSData, protobuf::ProtobufError> = data.try_into();
|
|
match result {
|
|
Ok(data) => match self.block_editors.get(&data.object_id) {
|
|
None => tracing::error!("Can't find any source handler for {:?}-{:?}", data.object_id, data.ty),
|
|
Some(block_editor) => match block_editor.receive_ws_data(data).await {
|
|
Ok(_) => {}
|
|
Err(e) => tracing::error!("{}", e),
|
|
},
|
|
},
|
|
Err(e) => {
|
|
tracing::error!("Document ws data parser failed: {:?}", e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl BlockManager {
|
|
async fn get_block_editor(&self, block_id: &str) -> FlowyResult<Arc<ClientBlockEditor>> {
|
|
match self.block_editors.get(block_id) {
|
|
None => {
|
|
let db_pool = self.block_user.db_pool()?;
|
|
self.make_block_editor(block_id, db_pool).await
|
|
}
|
|
Some(editor) => Ok(editor),
|
|
}
|
|
}
|
|
|
|
async fn make_block_editor(
|
|
&self,
|
|
block_id: &str,
|
|
pool: Arc<ConnectionPool>,
|
|
) -> Result<Arc<ClientBlockEditor>, FlowyError> {
|
|
let user = self.block_user.clone();
|
|
let token = self.block_user.token()?;
|
|
let rev_manager = self.make_block_rev_manager(block_id, pool.clone())?;
|
|
let cloud_service = Arc::new(BlockRevisionCloudService {
|
|
token,
|
|
server: self.cloud_service.clone(),
|
|
});
|
|
let doc_editor =
|
|
ClientBlockEditor::new(block_id, user, rev_manager, self.rev_web_socket.clone(), cloud_service).await?;
|
|
self.block_editors.insert(block_id, &doc_editor);
|
|
Ok(doc_editor)
|
|
}
|
|
|
|
fn make_block_rev_manager(&self, doc_id: &str, pool: Arc<ConnectionPool>) -> Result<RevisionManager, FlowyError> {
|
|
let user_id = self.block_user.user_id()?;
|
|
let rev_persistence = Arc::new(RevisionPersistence::new(&user_id, doc_id, pool));
|
|
Ok(RevisionManager::new(&user_id, doc_id, rev_persistence))
|
|
}
|
|
}
|
|
|
|
struct BlockRevisionCloudService {
|
|
token: String,
|
|
server: Arc<dyn BlockCloudService>,
|
|
}
|
|
|
|
impl RevisionCloudService for BlockRevisionCloudService {
|
|
#[tracing::instrument(level = "trace", skip(self))]
|
|
fn fetch_object(&self, user_id: &str, object_id: &str) -> FutureResult<Vec<Revision>, FlowyError> {
|
|
let params: BlockId = object_id.to_string().into();
|
|
let server = self.server.clone();
|
|
let token = self.token.clone();
|
|
let user_id = user_id.to_string();
|
|
|
|
FutureResult::new(async move {
|
|
match server.read_block(&token, params).await? {
|
|
None => Err(FlowyError::record_not_found().context("Remote doesn't have this document")),
|
|
Some(doc) => {
|
|
let delta_data = Bytes::from(doc.text.clone());
|
|
let doc_md5 = md5(&delta_data);
|
|
let revision = Revision::new(
|
|
&doc.block_id,
|
|
doc.base_rev_id,
|
|
doc.rev_id,
|
|
delta_data,
|
|
&user_id,
|
|
doc_md5,
|
|
);
|
|
Ok(vec![revision])
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
pub struct BlockEditors {
|
|
inner: DashMap<String, Arc<ClientBlockEditor>>,
|
|
}
|
|
|
|
impl BlockEditors {
|
|
fn new() -> Self {
|
|
Self { inner: DashMap::new() }
|
|
}
|
|
|
|
pub(crate) fn insert(&self, block_id: &str, doc: &Arc<ClientBlockEditor>) {
|
|
if self.inner.contains_key(block_id) {
|
|
log::warn!("Doc:{} already exists in cache", block_id);
|
|
}
|
|
self.inner.insert(block_id.to_string(), doc.clone());
|
|
}
|
|
|
|
pub(crate) fn contains(&self, block_id: &str) -> bool {
|
|
self.inner.get(block_id).is_some()
|
|
}
|
|
|
|
pub(crate) fn get(&self, block_id: &str) -> Option<Arc<ClientBlockEditor>> {
|
|
if !self.contains(block_id) {
|
|
return None;
|
|
}
|
|
let opened_doc = self.inner.get(block_id).unwrap();
|
|
Some(opened_doc.clone())
|
|
}
|
|
|
|
pub(crate) fn remove(&self, block_id: &str) {
|
|
if let Some(editor) = self.get(block_id) {
|
|
editor.stop()
|
|
}
|
|
self.inner.remove(block_id);
|
|
}
|
|
}
|
|
|
|
#[tracing::instrument(level = "trace", skip(web_socket, handlers))]
|
|
fn listen_ws_state_changed(web_socket: Arc<dyn RevisionWebSocket>, handlers: Arc<BlockEditors>) {
|
|
tokio::spawn(async move {
|
|
let mut notify = web_socket.subscribe_state_changed().await;
|
|
while let Ok(state) = notify.recv().await {
|
|
handlers.inner.iter().for_each(|handler| {
|
|
handler.receive_ws_state(&state);
|
|
})
|
|
}
|
|
});
|
|
}
|