2022-04-07 15:34:00 +08:00
|
|
|
use crate::dart_notification::{send_dart_notification, GridNotification};
|
|
|
|
use crate::manager::GridUser;
|
|
|
|
use crate::services::block_meta_editor::ClientGridBlockMetaEditor;
|
|
|
|
use crate::services::persistence::block_index::BlockIndexPersistence;
|
2022-04-10 08:25:01 +08:00
|
|
|
use crate::services::row::{group_row_orders, make_rows_from_row_metas, GridBlockSnapshot};
|
|
|
|
use std::borrow::Cow;
|
2022-04-07 15:34:00 +08:00
|
|
|
|
|
|
|
use dashmap::DashMap;
|
|
|
|
use flowy_error::FlowyResult;
|
|
|
|
use flowy_grid_data_model::entities::{
|
2022-04-13 14:24:54 +08:00
|
|
|
CellChangeset, CellMeta, CellNotificationData, FieldMeta, GridBlockMeta, GridBlockMetaChangeset, GridRowsChangeset,
|
|
|
|
IndexRowOrder, RowMeta, RowMetaChangeset, RowOrder,
|
2022-04-07 15:34:00 +08:00
|
|
|
};
|
|
|
|
use flowy_revision::disk::SQLiteGridBlockMetaRevisionPersistence;
|
|
|
|
use flowy_revision::{RevisionManager, RevisionPersistence};
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
pub(crate) struct GridBlockMetaEditorManager {
|
|
|
|
grid_id: String,
|
|
|
|
user: Arc<dyn GridUser>,
|
2022-04-10 08:25:01 +08:00
|
|
|
// Key: block_id
|
2022-04-07 15:34:00 +08:00
|
|
|
editor_map: DashMap<String, Arc<ClientGridBlockMetaEditor>>,
|
|
|
|
persistence: Arc<BlockIndexPersistence>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GridBlockMetaEditorManager {
|
|
|
|
pub(crate) async fn new(
|
|
|
|
grid_id: &str,
|
|
|
|
user: &Arc<dyn GridUser>,
|
|
|
|
blocks: Vec<GridBlockMeta>,
|
|
|
|
persistence: Arc<BlockIndexPersistence>,
|
|
|
|
) -> FlowyResult<Self> {
|
|
|
|
let editor_map = make_block_meta_editor_map(user, blocks).await?;
|
|
|
|
let user = user.clone();
|
|
|
|
let grid_id = grid_id.to_owned();
|
|
|
|
let manager = Self {
|
|
|
|
grid_id,
|
|
|
|
user,
|
|
|
|
editor_map,
|
|
|
|
persistence,
|
|
|
|
};
|
|
|
|
Ok(manager)
|
|
|
|
}
|
|
|
|
|
|
|
|
// #[tracing::instrument(level = "trace", skip(self))]
|
|
|
|
pub(crate) async fn get_editor(&self, block_id: &str) -> FlowyResult<Arc<ClientGridBlockMetaEditor>> {
|
|
|
|
debug_assert!(!block_id.is_empty());
|
|
|
|
match self.editor_map.get(block_id) {
|
|
|
|
None => {
|
|
|
|
tracing::error!("The is a fatal error, block is not exist");
|
|
|
|
let editor = Arc::new(make_block_meta_editor(&self.user, block_id).await?);
|
|
|
|
self.editor_map.insert(block_id.to_owned(), editor.clone());
|
|
|
|
Ok(editor)
|
|
|
|
}
|
|
|
|
Some(editor) => Ok(editor.clone()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn get_editor_from_row_id(&self, row_id: &str) -> FlowyResult<Arc<ClientGridBlockMetaEditor>> {
|
|
|
|
let block_id = self.persistence.get_block_id(row_id)?;
|
|
|
|
Ok(self.get_editor(&block_id).await?)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn create_row(
|
|
|
|
&self,
|
|
|
|
block_id: &str,
|
|
|
|
row_meta: RowMeta,
|
|
|
|
start_row_id: Option<String>,
|
|
|
|
) -> FlowyResult<i32> {
|
|
|
|
let _ = self.persistence.insert_or_update(&row_meta.block_id, &row_meta.id)?;
|
|
|
|
let editor = self.get_editor(&row_meta.block_id).await?;
|
2022-04-10 14:24:12 +08:00
|
|
|
|
|
|
|
let mut index_row_order = IndexRowOrder::from(&row_meta);
|
|
|
|
let (row_count, row_index) = editor.create_row(row_meta, start_row_id).await?;
|
|
|
|
index_row_order.index = row_index;
|
2022-04-10 10:31:55 +08:00
|
|
|
|
|
|
|
let _ = self
|
2022-04-13 21:26:27 +08:00
|
|
|
.notify_did_update_rows(GridRowsChangeset::insert(block_id, vec![index_row_order]))
|
2022-04-10 10:31:55 +08:00
|
|
|
.await?;
|
2022-04-07 15:34:00 +08:00
|
|
|
Ok(row_count)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) async fn insert_row(
|
|
|
|
&self,
|
|
|
|
rows_by_block_id: HashMap<String, Vec<RowMeta>>,
|
|
|
|
) -> FlowyResult<Vec<GridBlockMetaChangeset>> {
|
|
|
|
let mut changesets = vec![];
|
|
|
|
for (block_id, row_metas) in rows_by_block_id {
|
2022-04-10 10:31:55 +08:00
|
|
|
let mut inserted_row_orders = vec![];
|
2022-04-07 15:34:00 +08:00
|
|
|
let editor = self.get_editor(&block_id).await?;
|
|
|
|
let mut row_count = 0;
|
2022-04-10 10:31:55 +08:00
|
|
|
for row in row_metas {
|
2022-04-07 15:34:00 +08:00
|
|
|
let _ = self.persistence.insert_or_update(&row.block_id, &row.id)?;
|
2022-04-10 14:24:12 +08:00
|
|
|
inserted_row_orders.push(IndexRowOrder::from(&row));
|
|
|
|
row_count = editor.create_row(row, None).await?.0;
|
2022-04-07 15:34:00 +08:00
|
|
|
}
|
|
|
|
changesets.push(GridBlockMetaChangeset::from_row_count(&block_id, row_count));
|
2022-04-10 14:24:12 +08:00
|
|
|
|
2022-04-10 10:31:55 +08:00
|
|
|
let _ = self
|
2022-04-13 21:26:27 +08:00
|
|
|
.notify_did_update_rows(GridRowsChangeset::insert(&block_id, inserted_row_orders))
|
2022-04-10 10:31:55 +08:00
|
|
|
.await?;
|
2022-04-07 15:34:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(changesets)
|
|
|
|
}
|
|
|
|
|
2022-04-10 08:25:01 +08:00
|
|
|
pub async fn update_row(&self, changeset: RowMetaChangeset) -> FlowyResult<()> {
|
|
|
|
let editor = self.get_editor_from_row_id(&changeset.row_id).await?;
|
|
|
|
let _ = editor.update_row(changeset.clone()).await?;
|
2022-04-10 10:31:55 +08:00
|
|
|
|
|
|
|
match editor
|
|
|
|
.get_row_orders(Some(vec![Cow::Borrowed(&changeset.row_id)]))
|
|
|
|
.await?
|
|
|
|
.pop()
|
|
|
|
{
|
|
|
|
None => {}
|
|
|
|
Some(row_order) => {
|
2022-04-13 14:24:54 +08:00
|
|
|
let block_order_changeset = GridRowsChangeset::update(&editor.block_id, vec![row_order]);
|
2022-04-13 21:26:27 +08:00
|
|
|
let _ = self.notify_did_update_rows(block_order_changeset).await?;
|
2022-04-10 10:31:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-10 08:25:01 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-04-10 14:24:12 +08:00
|
|
|
pub async fn delete_row(&self, row_id: &str) -> FlowyResult<()> {
|
|
|
|
let row_id = row_id.to_owned();
|
|
|
|
let block_id = self.persistence.get_block_id(&row_id)?;
|
|
|
|
let editor = self.get_editor(&block_id).await?;
|
|
|
|
let row_orders = editor.get_row_orders(Some(vec![Cow::Borrowed(&row_id)])).await?;
|
|
|
|
let _ = editor.delete_rows(vec![Cow::Borrowed(&row_id)]).await?;
|
|
|
|
let _ = self
|
2022-04-13 21:26:27 +08:00
|
|
|
.notify_did_update_rows(GridRowsChangeset::delete(&block_id, row_orders))
|
2022-04-10 14:24:12 +08:00
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-04-07 15:34:00 +08:00
|
|
|
pub(crate) async fn delete_rows(&self, row_orders: Vec<RowOrder>) -> FlowyResult<Vec<GridBlockMetaChangeset>> {
|
|
|
|
let mut changesets = vec![];
|
2022-04-10 08:25:01 +08:00
|
|
|
for block_order in group_row_orders(row_orders) {
|
|
|
|
let editor = self.get_editor(&block_order.block_id).await?;
|
|
|
|
let row_ids = block_order
|
|
|
|
.row_orders
|
|
|
|
.into_iter()
|
|
|
|
.map(|row_order| Cow::Owned(row_order.row_id))
|
|
|
|
.collect::<Vec<Cow<String>>>();
|
|
|
|
let row_count = editor.delete_rows(row_ids).await?;
|
|
|
|
let changeset = GridBlockMetaChangeset::from_row_count(&block_order.block_id, row_count);
|
2022-04-07 15:34:00 +08:00
|
|
|
changesets.push(changeset);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(changesets)
|
|
|
|
}
|
|
|
|
|
2022-04-11 14:09:50 +08:00
|
|
|
pub async fn update_cell(&self, changeset: CellChangeset) -> FlowyResult<()> {
|
2022-04-07 15:34:00 +08:00
|
|
|
let row_id = changeset.row_id.clone();
|
|
|
|
let editor = self.get_editor_from_row_id(&row_id).await?;
|
|
|
|
let row_changeset: RowMetaChangeset = changeset.clone().into();
|
|
|
|
let _ = editor.update_row(row_changeset).await?;
|
|
|
|
|
|
|
|
let cell_notification_data = CellNotificationData {
|
|
|
|
grid_id: changeset.grid_id,
|
|
|
|
field_id: changeset.field_id,
|
|
|
|
row_id: changeset.row_id,
|
|
|
|
content: changeset.data,
|
|
|
|
};
|
|
|
|
self.notify_did_update_cell(cell_notification_data).await?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_row_meta(&self, row_id: &str) -> FlowyResult<Option<Arc<RowMeta>>> {
|
|
|
|
let editor = self.get_editor_from_row_id(row_id).await?;
|
2022-04-10 08:25:01 +08:00
|
|
|
let row_ids = vec![Cow::Borrowed(row_id)];
|
2022-04-07 15:34:00 +08:00
|
|
|
let mut row_metas = editor.get_row_metas(Some(row_ids)).await?;
|
|
|
|
if row_metas.is_empty() {
|
|
|
|
Ok(None)
|
|
|
|
} else {
|
|
|
|
Ok(row_metas.pop())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-10 08:25:01 +08:00
|
|
|
pub async fn get_row_orders(&self, block_id: &str) -> FlowyResult<Vec<RowOrder>> {
|
|
|
|
let editor = self.get_editor(block_id).await?;
|
2022-04-10 14:24:12 +08:00
|
|
|
editor.get_row_orders::<&str>(None).await
|
2022-04-10 08:25:01 +08:00
|
|
|
}
|
|
|
|
|
2022-04-07 15:34:00 +08:00
|
|
|
pub(crate) async fn make_block_snapshots(&self, block_ids: Vec<String>) -> FlowyResult<Vec<GridBlockSnapshot>> {
|
|
|
|
let mut snapshots = vec![];
|
|
|
|
for block_id in block_ids {
|
|
|
|
let editor = self.get_editor(&block_id).await?;
|
2022-04-10 08:25:01 +08:00
|
|
|
let row_metas = editor.get_row_metas::<&str>(None).await?;
|
2022-04-07 15:34:00 +08:00
|
|
|
snapshots.push(GridBlockSnapshot { block_id, row_metas });
|
|
|
|
}
|
|
|
|
Ok(snapshots)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optimization: Using the shared memory(Arc, Cow,etc.) to reduce memory usage.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub async fn get_cell_metas(
|
|
|
|
&self,
|
|
|
|
block_ids: Vec<String>,
|
|
|
|
field_id: &str,
|
2022-04-10 08:25:01 +08:00
|
|
|
row_ids: Option<Vec<Cow<'_, String>>>,
|
2022-04-07 15:34:00 +08:00
|
|
|
) -> FlowyResult<Vec<CellMeta>> {
|
|
|
|
let mut block_cell_metas = vec![];
|
|
|
|
for block_id in block_ids {
|
|
|
|
let editor = self.get_editor(&block_id).await?;
|
2022-04-10 08:25:01 +08:00
|
|
|
let cell_metas = editor.get_cell_metas(field_id, row_ids.clone()).await?;
|
2022-04-07 15:34:00 +08:00
|
|
|
block_cell_metas.extend(cell_metas);
|
|
|
|
}
|
|
|
|
Ok(block_cell_metas)
|
|
|
|
}
|
|
|
|
|
2022-04-13 21:26:27 +08:00
|
|
|
async fn notify_did_update_rows(&self, changeset: GridRowsChangeset) -> FlowyResult<()> {
|
2022-04-10 10:31:55 +08:00
|
|
|
send_dart_notification(&self.grid_id, GridNotification::DidUpdateGridBlock)
|
|
|
|
.payload(changeset)
|
|
|
|
.send();
|
2022-04-07 15:34:00 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn notify_did_update_cell(&self, data: CellNotificationData) -> FlowyResult<()> {
|
|
|
|
let id = format!("{}:{}", data.row_id, data.field_id);
|
|
|
|
send_dart_notification(&id, GridNotification::DidUpdateCell)
|
|
|
|
.payload(data)
|
|
|
|
.send();
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
async fn notify_did_update_row(&self, row_id: &str, field_metas: &[FieldMeta]) -> FlowyResult<()> {
|
|
|
|
match self.get_row_meta(row_id).await? {
|
|
|
|
None => {}
|
|
|
|
Some(row_meta) => {
|
|
|
|
let row_metas = vec![row_meta];
|
|
|
|
if let Some(row) = make_rows_from_row_metas(field_metas, &row_metas).pop() {
|
|
|
|
send_dart_notification(row_id, GridNotification::DidUpdateRow)
|
|
|
|
.payload(row)
|
|
|
|
.send();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn make_block_meta_editor_map(
|
|
|
|
user: &Arc<dyn GridUser>,
|
|
|
|
blocks: Vec<GridBlockMeta>,
|
|
|
|
) -> FlowyResult<DashMap<String, Arc<ClientGridBlockMetaEditor>>> {
|
|
|
|
let editor_map = DashMap::new();
|
|
|
|
for block in blocks {
|
|
|
|
let editor = make_block_meta_editor(user, &block.block_id).await?;
|
|
|
|
editor_map.insert(block.block_id, Arc::new(editor));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(editor_map)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn make_block_meta_editor(user: &Arc<dyn GridUser>, block_id: &str) -> FlowyResult<ClientGridBlockMetaEditor> {
|
|
|
|
let token = user.token()?;
|
|
|
|
let user_id = user.user_id()?;
|
|
|
|
let pool = user.db_pool()?;
|
|
|
|
|
|
|
|
let disk_cache = Arc::new(SQLiteGridBlockMetaRevisionPersistence::new(&user_id, pool));
|
|
|
|
let rev_persistence = Arc::new(RevisionPersistence::new(&user_id, block_id, disk_cache));
|
|
|
|
let rev_manager = RevisionManager::new(&user_id, block_id, rev_persistence);
|
|
|
|
ClientGridBlockMetaEditor::new(&user_id, &token, block_id, rev_manager).await
|
|
|
|
}
|