AppFlowy/frontend/rust-lib/flowy-text-block/src/manager.rs

235 lines
8.6 KiB
Rust
Raw Normal View History

use crate::queue::TextBlockRevisionCompactor;
2022-05-26 09:28:44 +00:00
use crate::{editor::TextBlockEditor, errors::FlowyError, BlockCloudService};
2021-11-09 08:00:09 +00:00
use bytes::Bytes;
2021-12-10 03:05:23 +00:00
use dashmap::DashMap;
2022-03-19 08:52:28 +00:00
use flowy_database::ConnectionPool;
use flowy_error::FlowyResult;
use flowy_revision::disk::SQLiteTextBlockRevisionPersistence;
use flowy_revision::{
2022-07-20 06:07:54 +00:00
RevisionCloudService, RevisionManager, RevisionPersistence, RevisionWebSocket, SQLiteRevisionSnapshotPersistence,
};
2022-03-19 08:52:28 +00:00
use flowy_sync::entities::{
2022-01-14 07:23:21 +00:00
revision::{md5, RepeatedRevision, Revision},
text_block::{TextBlockDeltaPB, TextBlockIdPB},
2022-01-15 03:20:28 +00:00
ws_data::ServerRevisionWSData,
2022-01-01 06:23:58 +00:00
};
2021-12-13 05:55:44 +00:00
use lib_infra::future::FutureResult;
2022-01-14 12:52:03 +00:00
use std::{convert::TryInto, sync::Arc};
2022-03-10 09:14:10 +00:00
pub trait TextBlockUser: Send + Sync {
2022-01-22 10:48:43 +00:00
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-03-10 09:14:10 +00:00
pub struct TextBlockManager {
2022-02-25 14:27:44 +00:00
cloud_service: Arc<dyn BlockCloudService>,
2022-02-18 15:04:55 +00:00
rev_web_socket: Arc<dyn RevisionWebSocket>,
2022-03-10 09:14:10 +00:00
editor_map: Arc<TextBlockEditorMap>,
user: Arc<dyn TextBlockUser>,
}
2022-03-10 09:14:10 +00:00
impl TextBlockManager {
2022-01-14 12:52:03 +00:00
pub fn new(
2022-02-25 14:27:44 +00:00
cloud_service: Arc<dyn BlockCloudService>,
2022-03-10 09:14:10 +00:00
text_block_user: Arc<dyn TextBlockUser>,
2022-02-18 15:04:55 +00:00
rev_web_socket: Arc<dyn RevisionWebSocket>,
2021-12-25 13:44:45 +00:00
) -> Self {
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
rev_web_socket,
2022-03-10 09:14:10 +00:00
editor_map: Arc::new(TextBlockEditorMap::new()),
user: text_block_user,
2021-12-17 16:23:26 +00:00
}
}
2022-01-22 10:48:43 +00:00
pub fn init(&self) -> FlowyResult<()> {
2022-03-10 09:14:10 +00:00
listen_ws_state_changed(self.rev_web_socket.clone(), self.editor_map.clone());
2021-12-25 13:44:45 +00:00
2021-10-05 06:37:45 +00:00
Ok(())
}
2022-05-26 09:28:44 +00:00
#[tracing::instrument(level = "trace", skip(self, block_id), fields(block_id), err)]
pub async fn open_block<T: AsRef<str>>(&self, block_id: T) -> Result<Arc<TextBlockEditor>, FlowyError> {
2022-02-25 14:27:44 +00:00
let block_id = block_id.as_ref();
tracing::Span::current().record("block_id", &block_id);
self.get_block_editor(block_id).await
}
2022-02-25 14:27:44 +00:00
#[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);
2022-03-10 09:14:10 +00:00
self.editor_map.remove(block_id);
Ok(())
}
2021-12-31 02:32:25 +00:00
#[tracing::instrument(level = "debug", skip(self, doc_id), fields(doc_id), err)]
2022-03-05 14:30:42 +00:00
pub fn delete_block<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-03-10 09:14:10 +00:00
self.editor_map.remove(doc_id);
Ok(())
}
2021-09-23 05:15:35 +00:00
2022-02-25 14:27:44 +00:00
#[tracing::instrument(level = "debug", skip(self, delta), fields(doc_id = %delta.block_id), err)]
pub async fn receive_local_delta(&self, delta: TextBlockDeltaPB) -> Result<TextBlockDeltaPB, FlowyError> {
2022-02-25 14:27:44 +00:00
let editor = self.get_block_editor(&delta.block_id).await?;
2022-03-05 14:30:42 +00:00
let _ = editor.compose_local_delta(Bytes::from(delta.delta_str)).await?;
let document_json = editor.delta_str().await?;
Ok(TextBlockDeltaPB {
2022-02-25 14:27:44 +00:00
block_id: delta.block_id.clone(),
2022-03-05 14:30:42 +00:00
delta_str: document_json,
2021-12-31 02:32:25 +00:00
})
2021-09-23 05:15:35 +00:00
}
2021-12-31 02:32:25 +00:00
2022-02-28 08:00:43 +00:00
pub async fn create_block<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-03-10 09:14:10 +00:00
let db_pool = self.user.db_pool()?;
2022-02-28 08:00:43 +00:00
// Maybe we could save the block to disk without creating the RevisionManager
2022-03-11 13:36:00 +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-03-10 09:14:10 +00:00
Ok(data) => match self.editor_map.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-03-10 09:14:10 +00:00
Some(editor) => match editor.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-03-10 09:14:10 +00:00
impl TextBlockManager {
2022-05-26 09:28:44 +00:00
async fn get_block_editor(&self, block_id: &str) -> FlowyResult<Arc<TextBlockEditor>> {
2022-03-10 09:14:10 +00:00
match self.editor_map.get(block_id) {
2022-01-01 06:23:58 +00:00
None => {
2022-03-10 09:14:10 +00:00
let db_pool = self.user.db_pool()?;
2022-03-11 13:36:00 +00:00
self.make_text_block_editor(block_id, db_pool).await
2022-01-24 09:35:58 +00:00
}
2022-01-01 06:23:58 +00:00
Some(editor) => Ok(editor),
}
}
2022-04-10 08:29:45 +00:00
#[tracing::instrument(level = "trace", skip(self, pool), err)]
2022-03-11 13:36:00 +00:00
async fn make_text_block_editor(
2021-12-31 02:32:25 +00:00
&self,
2022-02-25 14:27:44 +00:00
block_id: &str,
2021-12-31 02:32:25 +00:00
pool: Arc<ConnectionPool>,
2022-05-26 09:28:44 +00:00
) -> Result<Arc<TextBlockEditor>, FlowyError> {
2022-03-10 09:14:10 +00:00
let user = self.user.clone();
let token = self.user.token()?;
2022-03-11 13:36:00 +00:00
let rev_manager = self.make_rev_manager(block_id, pool.clone())?;
2022-03-10 09:14:10 +00:00
let cloud_service = Arc::new(TextBlockRevisionCloudService {
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 =
2022-05-26 09:28:44 +00:00
TextBlockEditor::new(block_id, user, rev_manager, self.rev_web_socket.clone(), cloud_service).await?;
2022-03-10 09:14:10 +00:00
self.editor_map.insert(block_id, &doc_editor);
2021-12-16 13:31:36 +00:00
Ok(doc_editor)
2021-12-08 13:51:06 +00:00
}
2022-03-11 13:36:00 +00:00
fn make_rev_manager(&self, doc_id: &str, pool: Arc<ConnectionPool>) -> Result<RevisionManager, FlowyError> {
2022-03-10 09:14:10 +00:00
let user_id = self.user.user_id()?;
let disk_cache = SQLiteTextBlockRevisionPersistence::new(&user_id, pool.clone());
let rev_persistence = RevisionPersistence::new(&user_id, doc_id, disk_cache);
2022-07-20 06:07:54 +00:00
// let history_persistence = SQLiteRevisionHistoryPersistence::new(doc_id, pool.clone());
2022-06-10 14:27:19 +00:00
let snapshot_persistence = SQLiteRevisionSnapshotPersistence::new(doc_id, pool);
let rev_compactor = TextBlockRevisionCompactor();
Ok(RevisionManager::new(
&user_id,
doc_id,
rev_persistence,
rev_compactor,
2022-07-20 06:07:54 +00:00
// history_persistence,
2022-06-10 14:27:19 +00:00
snapshot_persistence,
))
}
2021-09-21 07:07:07 +00:00
}
2021-09-26 08:39:57 +00:00
2022-03-10 09:14:10 +00:00
struct TextBlockRevisionCloudService {
token: String,
2022-02-25 14:27:44 +00:00
server: Arc<dyn BlockCloudService>,
}
2022-03-10 09:14:10 +00:00
impl RevisionCloudService for TextBlockRevisionCloudService {
2022-01-23 14:33:47 +00:00
#[tracing::instrument(level = "trace", skip(self))]
2022-02-24 12:36:24 +00:00
fn fetch_object(&self, user_id: &str, object_id: &str) -> FutureResult<Vec<Revision>, FlowyError> {
let params: TextBlockIdPB = object_id.to_string().into();
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-12-13 05:55:44 +00:00
FutureResult::new(async move {
2022-02-25 14:27:44 +00:00
match server.read_block(&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);
2022-03-02 13:12:21 +00:00
let revision = Revision::new(
&doc.block_id,
doc.base_rev_id,
doc.rev_id,
delta_data,
&user_id,
doc_md5,
);
2022-01-14 07:23:21 +00:00
Ok(vec![revision])
2022-01-24 09:35:58 +00:00
}
}
})
}
}
2022-03-10 09:14:10 +00:00
pub struct TextBlockEditorMap {
2022-05-26 09:28:44 +00:00
inner: DashMap<String, Arc<TextBlockEditor>>,
2021-12-10 03:05:23 +00:00
}
2022-03-10 09:14:10 +00:00
impl TextBlockEditorMap {
2022-01-24 09:35:58 +00:00
fn new() -> Self {
Self { inner: DashMap::new() }
}
2021-12-10 03:05:23 +00:00
2022-05-26 09:28:44 +00:00
pub(crate) fn insert(&self, block_id: &str, doc: &Arc<TextBlockEditor>) {
2022-02-25 14:27:44 +00:00
if self.inner.contains_key(block_id) {
log::warn!("Doc:{} already exists in cache", block_id);
2021-12-10 03:05:23 +00:00
}
2022-02-25 14:27:44 +00:00
self.inner.insert(block_id.to_string(), doc.clone());
2021-12-10 03:05:23 +00:00
}
2022-05-26 09:28:44 +00:00
pub(crate) fn get(&self, block_id: &str) -> Option<Arc<TextBlockEditor>> {
2022-03-10 09:14:10 +00:00
Some(self.inner.get(block_id)?.clone())
2021-12-10 03:05:23 +00:00
}
2022-02-25 14:27:44 +00:00
pub(crate) fn remove(&self, block_id: &str) {
if let Some(editor) = self.get(block_id) {
2022-01-01 06:23:58 +00:00
editor.stop()
2021-09-26 08:39:57 +00:00
}
2022-02-25 14:27:44 +00:00
self.inner.remove(block_id);
2021-12-10 03:05:23 +00:00
}
2021-09-26 08:39:57 +00:00
}
2021-12-10 03:05:23 +00:00
2022-02-25 14:27:44 +00:00
#[tracing::instrument(level = "trace", skip(web_socket, handlers))]
2022-03-10 09:14:10 +00:00
fn listen_ws_state_changed(web_socket: Arc<dyn RevisionWebSocket>, handlers: Arc<TextBlockEditorMap>) {
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-02-25 14:27:44 +00:00
handlers.inner.iter().for_each(|handler| {
handler.receive_ws_state(&state);
})
2021-12-25 13:44:45 +00:00
}
});
}