2022-02-18 15:04:55 +00:00
|
|
|
use crate::{editor::ClientDocumentEditor, errors::FlowyError, DocumentCloudService};
|
2022-01-14 12:52:03 +00:00
|
|
|
use async_trait::async_trait;
|
2021-11-09 08:00:09 +00:00
|
|
|
use bytes::Bytes;
|
2021-12-10 03:05:23 +00:00
|
|
|
use dashmap::DashMap;
|
2022-01-01 06:23:58 +00:00
|
|
|
use flowy_collaboration::entities::{
|
2022-01-21 13:41:24 +00:00
|
|
|
document_info::{DocumentDelta, DocumentId},
|
2022-01-14 07:23:21 +00:00
|
|
|
revision::{md5, RepeatedRevision, Revision},
|
2022-01-15 03:20:28 +00:00
|
|
|
ws_data::ServerRevisionWSData,
|
2022-01-01 06:23:58 +00:00
|
|
|
};
|
2021-10-06 07:23:38 +00:00
|
|
|
use flowy_database::ConnectionPool;
|
2021-12-14 10:04:51 +00:00
|
|
|
use flowy_error::FlowyResult;
|
2022-01-24 08:27:40 +00:00
|
|
|
use flowy_sync::{RevisionCache, RevisionCloudService, RevisionManager, RevisionWebSocket};
|
2021-12-13 05:55:44 +00:00
|
|
|
use lib_infra::future::FutureResult;
|
2022-01-14 12:52:03 +00:00
|
|
|
use lib_ws::WSConnectState;
|
|
|
|
use std::{convert::TryInto, sync::Arc};
|
2021-07-23 06:37:18 +00:00
|
|
|
|
2022-01-22 10:48:43 +00:00
|
|
|
pub trait DocumentUser: 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>;
|
|
|
|
}
|
|
|
|
|
2022-01-14 12:52:03 +00:00
|
|
|
#[async_trait]
|
|
|
|
pub(crate) trait DocumentWSReceiver: Send + Sync {
|
|
|
|
async fn receive_ws_data(&self, data: ServerRevisionWSData) -> Result<(), FlowyError>;
|
|
|
|
fn connect_state_changed(&self, state: WSConnectState);
|
|
|
|
}
|
|
|
|
type WebSocketDataReceivers = Arc<DashMap<String, Arc<dyn DocumentWSReceiver>>>;
|
2022-01-22 10:48:43 +00:00
|
|
|
pub struct FlowyDocumentManager {
|
2022-01-10 15:45:59 +00:00
|
|
|
cloud_service: Arc<dyn DocumentCloudService>,
|
2022-02-18 15:04:55 +00:00
|
|
|
ws_data_receivers: WebSocketDataReceivers,
|
|
|
|
rev_web_socket: Arc<dyn RevisionWebSocket>,
|
|
|
|
document_handlers: Arc<DocumentEditorHandlers>,
|
|
|
|
document_user: Arc<dyn DocumentUser>,
|
2021-07-23 06:37:18 +00:00
|
|
|
}
|
|
|
|
|
2022-01-22 10:48:43 +00:00
|
|
|
impl FlowyDocumentManager {
|
2022-01-14 12:52:03 +00:00
|
|
|
pub fn new(
|
2022-01-10 15:45:59 +00:00
|
|
|
cloud_service: Arc<dyn DocumentCloudService>,
|
2022-02-18 15:04:55 +00:00
|
|
|
document_user: Arc<dyn DocumentUser>,
|
|
|
|
rev_web_socket: Arc<dyn RevisionWebSocket>,
|
2021-12-25 13:44:45 +00:00
|
|
|
) -> Self {
|
2022-02-18 15:04:55 +00:00
|
|
|
let ws_data_receivers = Arc::new(DashMap::new());
|
|
|
|
let document_handlers = Arc::new(DocumentEditorHandlers::new());
|
2021-12-17 16:23:26 +00:00
|
|
|
Self {
|
2022-01-10 15:45:59 +00:00
|
|
|
cloud_service,
|
2022-02-18 15:04:55 +00:00
|
|
|
ws_data_receivers,
|
|
|
|
rev_web_socket,
|
|
|
|
document_handlers,
|
|
|
|
document_user,
|
2021-12-17 16:23:26 +00:00
|
|
|
}
|
2021-07-23 06:37:18 +00:00
|
|
|
}
|
|
|
|
|
2022-01-22 10:48:43 +00:00
|
|
|
pub fn init(&self) -> FlowyResult<()> {
|
2022-02-18 15:04:55 +00:00
|
|
|
listen_ws_state_changed(self.rev_web_socket.clone(), self.ws_data_receivers.clone());
|
2021-12-25 13:44:45 +00:00
|
|
|
|
2021-10-05 06:37:45 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-01-01 06:23:58 +00:00
|
|
|
#[tracing::instrument(level = "debug", skip(self, doc_id), fields(doc_id), err)]
|
2022-01-07 09:37:11 +00:00
|
|
|
pub async fn open_document<T: AsRef<str>>(&self, doc_id: T) -> Result<Arc<ClientDocumentEditor>, FlowyError> {
|
2021-12-31 02:32:25 +00:00
|
|
|
let doc_id = doc_id.as_ref();
|
|
|
|
tracing::Span::current().record("doc_id", &doc_id);
|
2022-01-01 06:23:58 +00:00
|
|
|
self.get_editor(doc_id).await
|
2021-09-09 07:43:05 +00:00
|
|
|
}
|
|
|
|
|
2022-01-23 14:33:47 +00:00
|
|
|
#[tracing::instrument(level = "trace", skip(self, doc_id), fields(doc_id), err)]
|
2022-01-07 09:37:11 +00:00
|
|
|
pub fn close_document<T: AsRef<str>>(&self, doc_id: T) -> Result<(), FlowyError> {
|
2021-12-31 02:32:25 +00:00
|
|
|
let doc_id = doc_id.as_ref();
|
|
|
|
tracing::Span::current().record("doc_id", &doc_id);
|
2022-02-18 15:04:55 +00:00
|
|
|
self.document_handlers.remove(doc_id);
|
|
|
|
self.ws_data_receivers.remove(doc_id);
|
2021-09-22 15:21:44 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-12-31 02:32:25 +00:00
|
|
|
#[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);
|
2022-02-18 15:04:55 +00:00
|
|
|
self.document_handlers.remove(doc_id);
|
|
|
|
self.ws_data_receivers.remove(doc_id);
|
2021-07-23 06:37:18 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-09-23 05:15:35 +00:00
|
|
|
|
2022-01-01 06:23:58 +00:00
|
|
|
#[tracing::instrument(level = "debug", skip(self, delta), fields(doc_id = %delta.doc_id), err)]
|
2022-01-05 15:15:55 +00:00
|
|
|
pub async fn receive_local_delta(&self, delta: DocumentDelta) -> Result<DocumentDelta, FlowyError> {
|
2022-01-01 06:23:58 +00:00
|
|
|
let editor = self.get_editor(&delta.doc_id).await?;
|
2021-12-31 02:32:25 +00:00
|
|
|
let _ = editor.compose_local_delta(Bytes::from(delta.delta_json)).await?;
|
|
|
|
let document_json = editor.document_json().await?;
|
|
|
|
Ok(DocumentDelta {
|
|
|
|
doc_id: delta.doc_id.clone(),
|
|
|
|
delta_json: document_json,
|
|
|
|
})
|
2021-09-23 05:15:35 +00:00
|
|
|
}
|
2021-12-31 02:32:25 +00:00
|
|
|
|
2022-02-19 03:34:31 +00:00
|
|
|
pub async fn reset_with_revisions<T: AsRef<str>>(&self, doc_id: T, revisions: RepeatedRevision) -> FlowyResult<()> {
|
2022-01-01 06:23:58 +00:00
|
|
|
let doc_id = doc_id.as_ref().to_owned();
|
2022-02-18 15:04:55 +00:00
|
|
|
let db_pool = self.document_user.db_pool()?;
|
2022-01-01 06:23:58 +00:00
|
|
|
let rev_manager = self.make_rev_manager(&doc_id, db_pool)?;
|
2022-01-14 07:23:21 +00:00
|
|
|
let _ = rev_manager.reset_object(revisions).await?;
|
2022-01-01 06:23:58 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-02-18 15:04:55 +00:00
|
|
|
pub async fn receive_ws_data(&self, data: Bytes) {
|
2022-01-20 15:51:11 +00:00
|
|
|
let result: Result<ServerRevisionWSData, protobuf::ProtobufError> = data.try_into();
|
|
|
|
match result {
|
2022-02-18 15:04:55 +00:00
|
|
|
Ok(data) => match self.ws_data_receivers.get(&data.object_id) {
|
2022-01-21 13:41:24 +00:00
|
|
|
None => tracing::error!("Can't find any source handler for {:?}-{:?}", data.object_id, data.ty),
|
2022-01-20 15:51:11 +00:00
|
|
|
Some(handler) => match handler.receive_ws_data(data).await {
|
2022-01-24 09:35:58 +00:00
|
|
|
Ok(_) => {}
|
2022-01-20 15:51:11 +00:00
|
|
|
Err(e) => tracing::error!("{}", e),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Err(e) => {
|
|
|
|
tracing::error!("Document ws data parser failed: {:?}", e);
|
2022-01-24 09:35:58 +00:00
|
|
|
}
|
2022-01-14 12:52:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-22 10:48:43 +00:00
|
|
|
impl FlowyDocumentManager {
|
2022-01-01 06:23:58 +00:00
|
|
|
async fn get_editor(&self, doc_id: &str) -> FlowyResult<Arc<ClientDocumentEditor>> {
|
2022-02-18 15:04:55 +00:00
|
|
|
match self.document_handlers.get(doc_id) {
|
2022-01-01 06:23:58 +00:00
|
|
|
None => {
|
2022-02-18 15:04:55 +00:00
|
|
|
let db_pool = self.document_user.db_pool()?;
|
2022-01-24 09:35:58 +00:00
|
|
|
self.make_editor(doc_id, db_pool).await
|
|
|
|
}
|
2022-01-01 06:23:58 +00:00
|
|
|
Some(editor) => Ok(editor),
|
|
|
|
}
|
|
|
|
}
|
2021-07-23 06:37:18 +00:00
|
|
|
|
2021-12-31 02:32:25 +00:00
|
|
|
async fn make_editor(
|
|
|
|
&self,
|
|
|
|
doc_id: &str,
|
|
|
|
pool: Arc<ConnectionPool>,
|
|
|
|
) -> Result<Arc<ClientDocumentEditor>, FlowyError> {
|
2022-02-18 15:04:55 +00:00
|
|
|
let user = self.document_user.clone();
|
|
|
|
let token = self.document_user.token()?;
|
2021-12-08 13:51:06 +00:00
|
|
|
let rev_manager = self.make_rev_manager(doc_id, pool.clone())?;
|
2022-02-18 15:04:55 +00:00
|
|
|
let cloud_service = Arc::new(DocumentRevisionCloudServiceImpl {
|
2021-12-17 16:23:26 +00:00
|
|
|
token,
|
2022-01-10 15:45:59 +00:00
|
|
|
server: self.cloud_service.clone(),
|
2021-12-17 16:23:26 +00:00
|
|
|
});
|
2022-02-18 15:04:55 +00:00
|
|
|
let doc_editor =
|
|
|
|
ClientDocumentEditor::new(doc_id, user, rev_manager, self.rev_web_socket.clone(), cloud_service).await?;
|
|
|
|
self.ws_data_receivers
|
|
|
|
.insert(doc_id.to_string(), doc_editor.ws_handler());
|
|
|
|
self.document_handlers.insert(doc_id, &doc_editor);
|
2021-12-16 13:31:36 +00:00
|
|
|
Ok(doc_editor)
|
2021-12-08 13:51:06 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 07:23:21 +00:00
|
|
|
fn make_rev_manager(&self, doc_id: &str, pool: Arc<ConnectionPool>) -> Result<RevisionManager, FlowyError> {
|
2022-02-18 15:04:55 +00:00
|
|
|
let user_id = self.document_user.user_id()?;
|
2022-01-14 07:23:21 +00:00
|
|
|
let cache = Arc::new(RevisionCache::new(&user_id, doc_id, pool));
|
|
|
|
Ok(RevisionManager::new(&user_id, doc_id, cache))
|
2021-07-23 06:37:18 +00:00
|
|
|
}
|
2021-09-21 07:07:07 +00:00
|
|
|
}
|
2021-09-26 08:39:57 +00:00
|
|
|
|
2022-01-17 03:55:36 +00:00
|
|
|
struct DocumentRevisionCloudServiceImpl {
|
2021-10-02 09:19:54 +00:00
|
|
|
token: String,
|
2022-01-10 15:45:59 +00:00
|
|
|
server: Arc<dyn DocumentCloudService>,
|
2021-10-02 09:19:54 +00:00
|
|
|
}
|
|
|
|
|
2022-01-17 03:55:36 +00:00
|
|
|
impl RevisionCloudService for DocumentRevisionCloudServiceImpl {
|
2022-01-23 14:33:47 +00:00
|
|
|
#[tracing::instrument(level = "trace", skip(self))]
|
2022-01-14 07:23:21 +00:00
|
|
|
fn fetch_object(&self, user_id: &str, doc_id: &str) -> FutureResult<Vec<Revision>, FlowyError> {
|
2021-12-31 02:32:25 +00:00
|
|
|
let params = DocumentId {
|
2021-10-02 09:19:54 +00:00
|
|
|
doc_id: doc_id.to_string(),
|
|
|
|
};
|
|
|
|
let server = self.server.clone();
|
|
|
|
let token = self.token.clone();
|
2022-01-14 07:23:21 +00:00
|
|
|
let user_id = user_id.to_string();
|
2021-10-02 09:19:54 +00:00
|
|
|
|
2021-12-13 05:55:44 +00:00
|
|
|
FutureResult::new(async move {
|
2022-01-10 15:45:59 +00:00
|
|
|
match server.read_document(&token, params).await? {
|
2021-12-14 10:04:51 +00:00
|
|
|
None => Err(FlowyError::record_not_found().context("Remote doesn't have this document")),
|
2022-01-14 07:23:21 +00:00
|
|
|
Some(doc) => {
|
|
|
|
let delta_data = Bytes::from(doc.text.clone());
|
|
|
|
let doc_md5 = md5(&delta_data);
|
|
|
|
let revision =
|
|
|
|
Revision::new(&doc.doc_id, doc.base_rev_id, doc.rev_id, delta_data, &user_id, doc_md5);
|
|
|
|
Ok(vec![revision])
|
2022-01-24 09:35:58 +00:00
|
|
|
}
|
2021-10-02 09:19:54 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-18 15:04:55 +00:00
|
|
|
pub struct DocumentEditorHandlers {
|
2021-12-31 02:32:25 +00:00
|
|
|
inner: DashMap<String, Arc<ClientDocumentEditor>>,
|
2021-12-10 03:05:23 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 15:04:55 +00:00
|
|
|
impl DocumentEditorHandlers {
|
2022-01-24 09:35:58 +00:00
|
|
|
fn new() -> Self {
|
|
|
|
Self { inner: DashMap::new() }
|
|
|
|
}
|
2021-12-10 03:05:23 +00:00
|
|
|
|
2021-12-31 02:32:25 +00:00
|
|
|
pub(crate) fn insert(&self, doc_id: &str, doc: &Arc<ClientDocumentEditor>) {
|
2021-12-16 13:31:36 +00:00
|
|
|
if self.inner.contains_key(doc_id) {
|
|
|
|
log::warn!("Doc:{} already exists in cache", doc_id);
|
2021-12-10 03:05:23 +00:00
|
|
|
}
|
2021-12-16 13:31:36 +00:00
|
|
|
self.inner.insert(doc_id.to_string(), doc.clone());
|
2021-12-10 03:05:23 +00:00
|
|
|
}
|
|
|
|
|
2022-01-24 09:35:58 +00:00
|
|
|
pub(crate) fn contains(&self, doc_id: &str) -> bool {
|
|
|
|
self.inner.get(doc_id).is_some()
|
|
|
|
}
|
2021-12-10 03:05:23 +00:00
|
|
|
|
2022-01-01 06:23:58 +00:00
|
|
|
pub(crate) fn get(&self, doc_id: &str) -> Option<Arc<ClientDocumentEditor>> {
|
2022-01-24 09:35:58 +00:00
|
|
|
if !self.contains(doc_id) {
|
2022-01-01 06:23:58 +00:00
|
|
|
return None;
|
2021-12-10 03:05:23 +00:00
|
|
|
}
|
|
|
|
let opened_doc = self.inner.get(doc_id).unwrap();
|
2022-01-01 06:23:58 +00:00
|
|
|
Some(opened_doc.clone())
|
2021-12-10 03:05:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn remove(&self, id: &str) {
|
|
|
|
let doc_id = id.to_string();
|
2022-01-01 06:23:58 +00:00
|
|
|
if let Some(editor) = self.get(id) {
|
|
|
|
editor.stop()
|
2021-09-26 08:39:57 +00:00
|
|
|
}
|
2021-12-10 03:05:23 +00:00
|
|
|
self.inner.remove(&doc_id);
|
|
|
|
}
|
2021-09-26 08:39:57 +00:00
|
|
|
}
|
2021-12-10 03:05:23 +00:00
|
|
|
|
2022-01-24 08:27:40 +00:00
|
|
|
#[tracing::instrument(level = "trace", skip(web_socket, receivers))]
|
|
|
|
fn listen_ws_state_changed(web_socket: Arc<dyn RevisionWebSocket>, receivers: WebSocketDataReceivers) {
|
2021-12-25 13:44:45 +00:00
|
|
|
tokio::spawn(async move {
|
2022-01-24 08:27:40 +00:00
|
|
|
let mut notify = web_socket.subscribe_state_changed().await;
|
|
|
|
while let Ok(state) = notify.recv().await {
|
2022-01-14 12:52:03 +00:00
|
|
|
for receiver in receivers.iter() {
|
|
|
|
receiver.value().connect_state_changed(state.clone());
|
|
|
|
}
|
2021-12-25 13:44:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|