1mod change_store;
2pub(crate) mod loro_dag;
3mod pending_changes;
4
5use crate::sync::{AtomicUsize, Mutex};
6use bytes::Bytes;
7use std::borrow::Cow;
8use std::cell::RefCell;
9use std::cmp::Ordering;
10use std::rc::Rc;
11use std::sync::Arc;
12use tracing::trace_span;
13
14use self::change_store::iter::MergedChangeIter;
15use self::pending_changes::{PendingChanges, PendingChangesRollback};
16use super::arena::{SharedArena, SharedArenaRollback};
17use crate::change::{get_sys_timestamp, Change, Lamport, Timestamp};
18use crate::configure::Configure;
19use crate::container::list::list_op;
20use crate::dag::{Dag, DagUtils};
21use crate::diff_calc::DiffMode;
22use crate::encoding::decode_oplog;
23use crate::encoding::{ImportStatus, ParsedHeaderAndBody};
24use crate::history_cache::ContainerHistoryCache;
25use crate::id::{Counter, PeerID, ID};
26use crate::op::{FutureInnerContent, ListSlice, RawOpContent, RemoteOp, RichOp};
27use crate::span::{HasCounterSpan, HasLamportSpan};
28use crate::version::{Frontiers, ImVersionVector, VersionVector};
29use crate::LoroError;
30use change_store::{BlockOpRef, ChangeStoreRollback};
31use loro_common::{ContainerType, HasIdSpan, IdLp, IdSpan};
32use rle::{HasLength, RleVec, Sliceable};
33use smallvec::SmallVec;
34
35pub use self::loro_dag::{AppDag, AppDagNode, FrontiersNotIncluded};
36pub use change_store::{BlockChangeRef, ChangeStore};
37
38pub struct OpLog {
46 pub(crate) dag: AppDag,
47 pub(crate) arena: SharedArena,
48 visible_op_count: Arc<AtomicUsize>,
49 change_store: ChangeStore,
50 history_cache: Mutex<ContainerHistoryCache>,
51 pub(crate) pending_changes: PendingChanges,
55 pub(crate) batch_importing: bool,
58 pub(crate) configure: Configure,
59 pub(crate) uncommitted_change: Option<Change>,
62 pub(crate) import_rollback: Option<ImportRollback>,
63}
64
65pub(crate) struct ImportRollback {
66 old_vv: VersionVector,
67 arena: SharedArenaRollback,
68 change_store: ChangeStoreRollback,
69 pending: PendingChangesRollback,
70}
71
72#[derive(Debug, Default, Clone, Copy)]
73pub(crate) struct ImportChangesPreflight {
74 pub applies_to_dag: bool,
75 pub has_deps_before_shallow_root: bool,
76 pub needs_state_apply_rollback: bool,
77}
78
79impl std::fmt::Debug for OpLog {
80 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
81 f.debug_struct("OpLog")
82 .field("dag", &self.dag)
83 .field("pending_changes", &self.pending_changes)
84 .finish()
85 }
86}
87
88impl OpLog {
89 #[inline]
90 pub(crate) fn new(visible_op_count: Arc<AtomicUsize>) -> Self {
91 let arena = SharedArena::new();
92 let cfg = Configure::default();
93 let change_store = ChangeStore::new_mem(&arena, cfg.merge_interval_in_s.clone());
94 Self {
95 visible_op_count,
96 history_cache: Mutex::new(ContainerHistoryCache::new(change_store.clone(), None)),
97 dag: AppDag::new(change_store.clone()),
98 change_store,
99 arena,
100 pending_changes: Default::default(),
101 batch_importing: false,
102 configure: cfg,
103 uncommitted_change: None,
104 import_rollback: None,
105 }
106 }
107
108 #[inline]
109 fn calc_visible_op_count(&self) -> usize {
110 let total = self.dag.vv().values().sum::<i32>() as usize;
111 let shallow = self
112 .dag
113 .shallow_since_vv()
114 .iter()
115 .map(|(_, ops)| *ops)
116 .sum::<i32>() as usize;
117 total - shallow
118 }
119
120 #[inline]
121 pub(crate) fn visible_op_count_exact(&self) -> usize {
122 self.calc_visible_op_count()
123 }
124
125 #[inline]
126 pub(crate) fn refresh_visible_op_count(&self) -> usize {
127 let count = self.calc_visible_op_count();
128 self.visible_op_count
129 .store(count, std::sync::atomic::Ordering::Release);
130 count
131 }
132
133 #[inline]
139 pub(crate) fn inc_visible_op_count(&self, delta: usize) {
140 self.visible_op_count
141 .fetch_add(delta, std::sync::atomic::Ordering::Release);
142 }
143
144 #[cfg(test)]
145 pub(crate) fn cached_visible_op_count(&self) -> usize {
146 self.visible_op_count
147 .load(std::sync::atomic::Ordering::Acquire)
148 }
149
150 #[inline]
151 pub fn dag(&self) -> &AppDag {
152 &self.dag
153 }
154
155 pub fn change_store(&self) -> &ChangeStore {
156 &self.change_store
157 }
158
159 pub fn get_change_with_lamport_lte(
163 &self,
164 peer: PeerID,
165 lamport: Lamport,
166 ) -> Option<BlockChangeRef> {
167 let ans = self
168 .change_store
169 .get_change_by_lamport_lte(IdLp::new(peer, lamport))?;
170 debug_assert!(ans.lamport <= lamport);
171 Some(ans)
172 }
173
174 pub fn get_timestamp_of_version(&self, f: &Frontiers) -> Timestamp {
175 let mut timestamp = Timestamp::default();
176 for id in f.iter() {
177 if let Some(change) = self.lookup_change(id) {
178 timestamp = timestamp.max(change.timestamp);
179 }
180 }
181
182 timestamp
183 }
184
185 #[inline]
186 pub fn is_empty(&self) -> bool {
187 self.dag.is_empty() && self.arena.can_import_snapshot()
188 }
189
190 pub(crate) fn insert_new_change(&mut self, change: Change, from_local: bool) {
192 let s = trace_span!(
193 "insert_new_change",
194 id = ?change.id,
195 lamport = change.lamport,
196 deps = ?change.deps
197 );
198 let _enter = s.enter();
199 let rollback_old_vv = self
200 .import_rollback
201 .as_ref()
202 .and_then(|x| (!x.old_vv.is_empty()).then_some(&x.old_vv));
203 self.dag
204 .handle_new_change(&change, from_local, rollback_old_vv);
205 self.history_cache
206 .lock()
207 .insert_by_new_change(&change, true, true);
208 self.register_container_and_parent_link(&change);
209 if let Some(rollback) = self.import_rollback.as_mut() {
210 self.change_store.insert_change_with_rollback(
211 change,
212 true,
213 from_local,
214 &mut rollback.change_store,
215 );
216 } else {
217 self.change_store.insert_change(change, true, from_local);
218 }
219 self.refresh_visible_op_count();
220 }
221
222 pub(crate) fn begin_import_rollback(&mut self) {
223 let arena = self.arena.checkpoint_for_rollback();
224 self.begin_import_rollback_with_arena(arena);
225 }
226
227 pub(crate) fn begin_import_rollback_with_arena(&mut self, arena: SharedArenaRollback) {
228 debug_assert!(self.import_rollback.is_none());
229 let old_vv = self.vv().clone();
230 self.dag.begin_import_rollback();
231 self.import_rollback = Some(ImportRollback {
232 old_vv: old_vv.clone(),
233 arena,
234 change_store: ChangeStoreRollback::new(old_vv),
235 pending: Default::default(),
236 });
237 }
238
239 pub(crate) fn commit_import_rollback(&mut self) {
240 self.dag.commit_import_rollback();
241 self.import_rollback = None;
242 }
243
244 pub(crate) fn preflight_import_changes(&self, changes: &[Change]) -> ImportChangesPreflight {
245 let mut ans = ImportChangesPreflight::default();
246 let pending_needs_state_apply_rollback =
247 self.pending_changes.has_state_apply_rollback_ops();
248 for change in changes {
249 if change.ctr_end() <= self.vv().get(&change.id.peer).copied().unwrap_or(0) {
250 continue;
251 }
252
253 if self.dag.import_deps_before_shallow_root(&change.deps) {
254 ans.has_deps_before_shallow_root = true;
255 continue;
256 }
257
258 if self
259 .dag
260 .get_change_lamport_from_deps(&change.deps)
261 .is_none()
262 {
263 continue;
264 }
265
266 ans.applies_to_dag = true;
267 if change.ops.iter().any(|op| {
268 matches!(
269 op.container.get_type(),
270 ContainerType::List | ContainerType::Tree
271 )
272 }) {
273 ans.needs_state_apply_rollback = true;
274 }
275 }
276
277 if ans.applies_to_dag && pending_needs_state_apply_rollback {
283 ans.needs_state_apply_rollback = true;
284 }
285
286 #[cfg(test)]
287 if ans.applies_to_dag {
288 ans.needs_state_apply_rollback = true;
289 }
290
291 ans
292 }
293
294 pub(crate) fn rollback_import(&mut self) {
295 let Some(rollback) = self.import_rollback.take() else {
296 return;
297 };
298
299 self.change_store.rollback_import(rollback.change_store);
300 self.dag.rollback_import();
301 rollback.pending.rollback(&mut self.pending_changes);
302 self.history_cache.lock().free_all();
303 self.arena.rollback(rollback.arena);
304 self.refresh_visible_op_count();
305 }
306
307 pub(crate) fn reset_to_empty_for_failed_snapshot_import(
308 &mut self,
309 arena_checkpoint: SharedArenaRollback,
310 ) {
311 let arena = self.arena.clone();
312 let configure = self.configure.clone();
313 arena.rollback(arena_checkpoint);
314 let change_store = ChangeStore::new_mem(&arena, configure.merge_interval_in_s.clone());
315 self.history_cache = Mutex::new(ContainerHistoryCache::new(change_store.clone(), None));
316 self.dag = AppDag::new(change_store.clone());
317 self.change_store = change_store;
318 self.pending_changes = Default::default();
319 self.batch_importing = false;
320 self.configure = configure;
321 self.uncommitted_change = None;
322 self.import_rollback = None;
323 self.visible_op_count
324 .store(0, std::sync::atomic::Ordering::Release);
325 }
326
327 #[inline(always)]
328 pub(crate) fn with_history_cache<F, R>(&self, f: F) -> R
329 where
330 F: FnOnce(&mut ContainerHistoryCache) -> R,
331 {
332 let mut history_cache = self.history_cache.lock();
333 f(&mut history_cache)
334 }
335
336 pub fn has_history_cache(&self) -> bool {
337 self.history_cache.lock().has_cache()
338 }
339
340 pub fn free_history_cache(&self) {
341 let mut history_cache = self.history_cache.lock();
342 history_cache.free();
343 }
344
345 #[cfg(test)]
346 #[allow(dead_code)]
347 pub(crate) fn pending_changes_len(&self) -> usize {
348 self.pending_changes.len()
349 }
350
351 pub(crate) fn import_local_change(&mut self, change: Change) -> Result<(), LoroError> {
362 self.insert_new_change(change, true);
363 Ok(())
364 }
365
366 pub(crate) fn trim_the_known_part_of_change(&self, change: Change) -> Option<Change> {
368 let Some(&end) = self.dag.vv().get(&change.id.peer) else {
369 return Some(change);
370 };
371
372 if change.id.counter >= end {
373 return Some(change);
374 }
375
376 if change.ctr_end() <= end {
377 return None;
378 }
379
380 let offset = (end - change.id.counter) as usize;
381 Some(change.slice(offset, change.atom_len()))
382 }
383
384 #[allow(unused)]
385 fn check_id_is_not_duplicated(&self, id: ID) -> Result<(), LoroError> {
386 let cur_end = self.dag.vv().get(&id.peer).cloned().unwrap_or(0);
387 if cur_end > id.counter {
388 return Err(LoroError::UsedOpID { id });
389 }
390
391 Ok(())
392 }
393
394 pub(crate) fn check_change_greater_than_last_peer_id(
399 &self,
400 peer: PeerID,
401 counter: Counter,
402 deps: &Frontiers,
403 ) -> Result<(), LoroError> {
404 if counter == 0 {
405 return Ok(());
406 }
407
408 if !self.configure.detached_editing() {
409 return Ok(());
410 }
411
412 let mut max_last_counter = -1;
413 for dep in deps.iter() {
414 let dep_vv = self
415 .dag
416 .get_vv(dep)
417 .ok_or(LoroError::FrontiersNotFound(dep))?;
418 max_last_counter = max_last_counter.max(dep_vv.get(&peer).cloned().unwrap_or(0) - 1);
419 }
420
421 if counter != max_last_counter + 1 {
422 return Err(LoroError::ConcurrentOpsWithSamePeerID {
423 peer,
424 last_counter: max_last_counter,
425 current: counter,
426 });
427 }
428
429 Ok(())
430 }
431
432 pub(crate) fn next_id(&self, peer: PeerID) -> ID {
433 let cnt = self.dag.vv().get(&peer).copied().unwrap_or(0);
434 ID::new(peer, cnt)
435 }
436
437 pub(crate) fn vv(&self) -> &VersionVector {
438 self.dag.vv()
439 }
440
441 pub(crate) fn frontiers(&self) -> &Frontiers {
442 self.dag.frontiers()
443 }
444
445 pub fn cmp_with_frontiers(&self, other: &Frontiers) -> Ordering {
449 self.dag.cmp_with_frontiers(other)
450 }
451
452 #[inline]
456 pub fn cmp_frontiers(
457 &self,
458 a: &Frontiers,
459 b: &Frontiers,
460 ) -> Result<Option<Ordering>, FrontiersNotIncluded> {
461 self.dag.cmp_frontiers(a, b)
462 }
463
464 pub(crate) fn get_min_lamport_at(&self, id: ID) -> Lamport {
465 self.get_change_at(id).map(|c| c.lamport).unwrap_or(0)
466 }
467
468 pub(crate) fn get_lamport_at(&self, id: ID) -> Option<Lamport> {
469 self.get_change_at(id)
470 .map(|c| c.lamport + (id.counter - c.id.counter) as Lamport)
471 }
472
473 pub(crate) fn iter_ops(&self, id_span: IdSpan) -> impl Iterator<Item = RichOp<'static>> + '_ {
474 let change_iter = self.change_store.iter_changes(id_span);
475 change_iter.flat_map(move |c| RichOp::new_iter_by_cnt_range(c, id_span.counter))
476 }
477
478 pub(crate) fn get_max_lamport_at(&self, id: ID) -> Lamport {
479 self.get_change_at(id)
480 .map(|c| {
481 let change_counter = c.id.counter as u32;
482 c.lamport + c.ops().last().map(|op| op.counter).unwrap_or(0) as u32 - change_counter
483 })
484 .unwrap_or(Lamport::MAX)
485 }
486
487 pub fn get_change_at(&self, id: ID) -> Option<BlockChangeRef> {
488 self.change_store.get_change(id)
489 }
490
491 pub(crate) fn set_uncommitted_change(&mut self, change: Change) {
492 self.uncommitted_change = Some(change);
493 }
494
495 pub(crate) fn get_uncommitted_change_in_span(
496 &self,
497 id_span: IdSpan,
498 ) -> Option<Cow<'_, Change>> {
499 self.uncommitted_change.as_ref().and_then(|c| {
500 if c.id_span() == id_span {
501 Some(Cow::Borrowed(c))
502 } else if let Some((start, end)) = id_span.get_slice_range_on(&c.id_span()) {
503 Some(Cow::Owned(c.slice(start, end)))
504 } else {
505 None
506 }
507 })
508 }
509
510 pub fn get_deps_of(&self, id: ID) -> Option<Frontiers> {
511 self.get_change_at(id).map(|c| {
512 if c.id.counter == id.counter {
513 c.deps.clone()
514 } else {
515 Frontiers::from_id(id.inc(-1))
516 }
517 })
518 }
519
520 pub fn get_remote_change_at(&self, id: ID) -> Option<Change<RemoteOp<'static>>> {
521 let change = self.get_change_at(id)?;
522 Some(convert_change_to_remote(&self.arena, &change))
523 }
524
525 pub(crate) fn import_unknown_lamport_pending_changes(
526 &mut self,
527 remote_changes: Vec<Change>,
528 ) -> Result<(), LoroError> {
529 self.extend_pending_changes_with_unknown_lamport(remote_changes)
530 }
531
532 pub(crate) fn lookup_change(&self, id: ID) -> Option<BlockChangeRef> {
536 self.change_store.get_change(id)
537 }
538
539 #[inline(always)]
540 pub(crate) fn export_change_store_from(&self, vv: &VersionVector, f: &Frontiers) -> Bytes {
541 self.change_store
542 .export_from(vv, f, self.vv(), self.frontiers())
543 }
544
545 #[inline(always)]
546 pub(crate) fn export_change_store_in_range(
547 &self,
548 vv: &VersionVector,
549 f: &Frontiers,
550 to_vv: &VersionVector,
551 to_frontiers: &Frontiers,
552 ) -> Bytes {
553 self.change_store.export_from(vv, f, to_vv, to_frontiers)
554 }
555
556 #[inline(always)]
557 pub(crate) fn export_blocks_from<W: std::io::Write>(&self, vv: &VersionVector, w: &mut W) {
558 self.change_store
559 .export_blocks_from(vv, self.shallow_since_vv(), self.vv(), w)
560 }
561
562 #[inline(always)]
563 pub(crate) fn export_blocks_in_range<W: std::io::Write>(&self, spans: &[IdSpan], w: &mut W) {
564 self.change_store.export_blocks_in_range(spans, w)
565 }
566
567 pub(crate) fn fork_changes_up_to(&self, frontiers: &Frontiers) -> Option<Bytes> {
568 let vv = self.dag.frontiers_to_vv(frontiers)?;
569 Some(
570 self.change_store
571 .fork_changes_up_to(self.dag.shallow_since_vv(), frontiers, &vv),
572 )
573 }
574
575 #[inline(always)]
576 pub(crate) fn decode(&mut self, data: ParsedHeaderAndBody) -> Result<ImportStatus, LoroError> {
577 decode_oplog(self, data)
578 }
579
580 #[allow(clippy::type_complexity)]
591 pub(crate) fn iter_from_lca_causally(
592 &self,
593 from: &VersionVector,
594 from_frontiers: &Frontiers,
595 to: &VersionVector,
596 to_frontiers: &Frontiers,
597 ) -> (
598 VersionVector,
599 DiffMode,
600 impl Iterator<
601 Item = (
602 BlockChangeRef,
603 (Counter, Counter),
604 Rc<RefCell<VersionVector>>,
605 ),
606 > + '_,
607 ) {
608 let mut merged_vv = from.clone();
609 merged_vv.merge(to);
610 loro_common::debug!("to_frontiers={:?} vv={:?}", &to_frontiers, to);
611 let (mut common_ancestors, mut diff_mode) =
612 self.dag.find_common_ancestor(from_frontiers, to_frontiers);
613 if diff_mode == DiffMode::Checkout && to > from {
614 diff_mode = DiffMode::Import;
615 }
616
617 let mut common_ancestors_vv = self.dag.frontiers_to_vv(&common_ancestors).unwrap();
618 let shallow_since_vv = self.dag.shallow_since_vv().to_vv();
619 if !common_ancestors_vv.includes_vv(&shallow_since_vv) {
620 common_ancestors = self.dag.shallow_since_frontiers().clone();
623 common_ancestors_vv = self
624 .dag
625 .frontiers_to_vv(&common_ancestors)
626 .unwrap_or(shallow_since_vv);
627 }
628 let diff = common_ancestors_vv.diff(&merged_vv).forward;
630 let mut iter = self.dag.iter_causal(common_ancestors, diff);
631 let mut node = iter.next();
632 let mut cur_cnt = 0;
633 let vv = Rc::new(RefCell::new(VersionVector::default()));
634 (
635 common_ancestors_vv.clone(),
636 diff_mode,
637 std::iter::from_fn(move || {
638 if let Some(inner) = &node {
639 let mut inner_vv = vv.borrow_mut();
640 inner_vv.clear();
642 self.dag.ensure_vv_for(&inner.data);
643 inner_vv.extend_to_include_vv(inner.data.vv.get().unwrap().iter());
644 let peer = inner.data.peer;
645 let cnt = inner
646 .data
647 .cnt
648 .max(cur_cnt)
649 .max(common_ancestors_vv.get(&peer).copied().unwrap_or(0));
650 let dag_node_end = (inner.data.cnt + inner.data.len as Counter)
651 .min(merged_vv.get(&peer).copied().unwrap_or(0));
652 let change = self.change_store.get_change(ID::new(peer, cnt)).unwrap();
653
654 if change.ctr_end() < dag_node_end {
655 cur_cnt = change.ctr_end();
656 } else {
657 node = iter.next();
658 cur_cnt = 0;
659 }
660
661 inner_vv.extend_to_include_end_id(change.id);
662
663 Some((change, (cnt, dag_node_end), vv.clone()))
664 } else {
665 None
666 }
667 }),
668 )
669 }
670
671 pub fn len_changes(&self) -> usize {
672 self.change_store.change_num()
673 }
674
675 pub fn diagnose_size(&self) -> SizeInfo {
676 let mut total_changes = 0;
677 let mut total_ops = 0;
678 let mut total_atom_ops = 0;
679 let total_dag_node = self.dag.total_parsed_dag_node();
680 self.change_store.visit_all_changes(&mut |change| {
681 total_changes += 1;
682 total_ops += change.ops.len();
683 total_atom_ops += change.atom_len();
684 });
685
686 println!("total changes: {}", total_changes);
687 println!("total ops: {}", total_ops);
688 println!("total atom ops: {}", total_atom_ops);
689 println!("total dag node: {}", total_dag_node);
690 SizeInfo {
691 total_changes,
692 total_ops,
693 total_atom_ops,
694 total_dag_node,
695 }
696 }
697
698 pub(crate) fn iter_changes_peer_by_peer<'a>(
699 &'a self,
700 from: &VersionVector,
701 to: &VersionVector,
702 ) -> impl Iterator<Item = BlockChangeRef> + 'a {
703 let spans: Vec<_> = from.diff_iter(to).1.collect();
704 spans
705 .into_iter()
706 .flat_map(move |span| self.change_store.iter_changes(span))
707 }
708
709 #[allow(dead_code)]
710 pub(crate) fn iter_changes_causally_rev<'a>(
711 &'a self,
712 from: &VersionVector,
713 to: &VersionVector,
714 ) -> impl Iterator<Item = BlockChangeRef> + 'a {
715 MergedChangeIter::new_change_iter_rev(self, from, to)
716 }
717
718 pub fn get_timestamp_for_next_txn(&self) -> Timestamp {
719 if self.configure.record_timestamp() {
720 get_timestamp_now_txn()
721 } else {
722 0
723 }
724 }
725
726 #[inline(never)]
727 pub(crate) fn idlp_to_id(&self, id: loro_common::IdLp) -> Option<ID> {
728 let change = self.change_store.get_change_by_lamport_lte(id)?;
729
730 if change.lamport > id.lamport || change.lamport_end() <= id.lamport {
731 return None;
732 }
733
734 Some(ID::new(
735 change.id.peer,
736 (id.lamport - change.lamport) as Counter + change.id.counter,
737 ))
738 }
739
740 #[allow(unused)]
741 pub(crate) fn id_to_idlp(&self, id_start: ID) -> IdLp {
742 let change = self.get_change_at(id_start).unwrap();
743 let lamport = change.lamport + (id_start.counter - change.id.counter) as Lamport;
744 let peer = id_start.peer;
745 loro_common::IdLp { peer, lamport }
746 }
747
748 pub(crate) fn get_op_that_includes(&self, id: ID) -> Option<BlockOpRef> {
750 let change = self.get_change_at(id)?;
751 change.get_op_with_counter(id.counter)
752 }
753
754 pub(crate) fn split_span_based_on_deps(&self, id_span: IdSpan) -> Vec<(IdSpan, Frontiers)> {
755 let peer = id_span.peer;
756 let mut counter = id_span.counter.min();
757 let span_end = id_span.counter.norm_end();
758 let mut ans = Vec::new();
759
760 while counter < span_end {
761 let id = ID::new(peer, counter);
762 let node = self.dag.get(id).unwrap();
763
764 let f = if node.cnt == counter {
765 node.deps.clone()
766 } else if counter > 0 {
767 id.inc(-1).into()
768 } else {
769 unreachable!()
770 };
771
772 let cur_end = node.cnt + node.len as Counter;
773 let len = cur_end.min(span_end) - counter;
774 ans.push((id.to_span(len as usize), f));
775 counter += len;
776 }
777
778 ans
779 }
780
781 #[inline]
782 pub fn compact_change_store(&mut self) {
783 self.change_store
784 .flush_and_compact(self.dag.vv(), self.dag.frontiers());
785 }
786
787 #[inline]
788 pub fn change_store_kv_size(&self) -> usize {
789 self.change_store.kv_size()
790 }
791
792 pub fn encode_change_store(&self) -> bytes::Bytes {
793 self.change_store
794 .encode_all(self.dag.vv(), self.dag.frontiers())
795 }
796
797 pub fn check_dag_correctness(&self) {
798 self.dag.check_dag_correctness();
799 }
800
801 pub fn shallow_since_vv(&self) -> &ImVersionVector {
802 self.dag.shallow_since_vv()
803 }
804
805 pub fn shallow_since_frontiers(&self) -> &Frontiers {
806 self.dag.shallow_since_frontiers()
807 }
808
809 pub fn is_shallow(&self) -> bool {
810 !self.dag.shallow_since_vv().is_empty()
811 }
812
813 pub fn get_greatest_timestamp(&self, frontiers: &Frontiers) -> Timestamp {
814 let mut max_timestamp = Timestamp::default();
815 for id in frontiers.iter() {
816 let change = self.get_change_at(id).unwrap();
817 if change.timestamp > max_timestamp {
818 max_timestamp = change.timestamp;
819 }
820 }
821
822 max_timestamp
823 }
824}
825
826#[derive(Debug)]
827pub struct SizeInfo {
828 pub total_changes: usize,
829 pub total_ops: usize,
830 pub total_atom_ops: usize,
831 pub total_dag_node: usize,
832}
833
834pub(crate) fn convert_change_to_remote(
835 arena: &SharedArena,
836 change: &Change,
837) -> Change<RemoteOp<'static>> {
838 let mut ops = RleVec::new();
839 for op in change.ops.iter() {
840 for op in local_op_to_remote(arena, op) {
841 ops.push(op);
842 }
843 }
844
845 Change {
846 ops,
847 id: change.id,
848 deps: change.deps.clone(),
849 lamport: change.lamport,
850 timestamp: change.timestamp,
851 commit_msg: change.commit_msg.clone(),
852 }
853}
854
855pub(crate) fn local_op_to_remote(
856 arena: &SharedArena,
857 op: &crate::op::Op,
858) -> SmallVec<[RemoteOp<'static>; 1]> {
859 let container = arena.get_container_id(op.container).unwrap();
860 let mut contents: SmallVec<[_; 1]> = SmallVec::new();
861 match &op.content {
862 crate::op::InnerContent::List(list) => match list {
863 list_op::InnerListOp::Insert { slice, pos } => match container.container_type() {
864 loro_common::ContainerType::Text => {
865 let str = arena
866 .slice_str_by_unicode_range(slice.0.start as usize..slice.0.end as usize);
867 contents.push(RawOpContent::List(list_op::ListOp::Insert {
868 slice: ListSlice::RawStr {
869 unicode_len: str.chars().count(),
870 str: Cow::Owned(str),
871 },
872 pos: *pos,
873 }));
874 }
875 loro_common::ContainerType::List | loro_common::ContainerType::MovableList => {
876 contents.push(RawOpContent::List(list_op::ListOp::Insert {
877 slice: ListSlice::RawData(Cow::Owned(
878 arena.get_values(slice.0.start as usize..slice.0.end as usize),
879 )),
880 pos: *pos,
881 }))
882 }
883 _ => unreachable!(),
884 },
885 list_op::InnerListOp::InsertText {
886 slice,
887 unicode_len: len,
888 unicode_start: _,
889 pos,
890 } => match container.container_type() {
891 loro_common::ContainerType::Text => {
892 contents.push(RawOpContent::List(list_op::ListOp::Insert {
893 slice: ListSlice::RawStr {
894 unicode_len: *len as usize,
895 str: Cow::Owned(std::str::from_utf8(slice).unwrap().to_owned()),
896 },
897 pos: *pos as usize,
898 }));
899 }
900 _ => unreachable!(),
901 },
902 list_op::InnerListOp::Delete(del) => {
903 contents.push(RawOpContent::List(list_op::ListOp::Delete(*del)))
904 }
905 list_op::InnerListOp::StyleStart {
906 start,
907 end,
908 key,
909 value,
910 info,
911 } => contents.push(RawOpContent::List(list_op::ListOp::StyleStart {
912 start: *start,
913 end: *end,
914 key: key.clone(),
915 value: value.clone(),
916 info: *info,
917 })),
918 list_op::InnerListOp::StyleEnd => {
919 contents.push(RawOpContent::List(list_op::ListOp::StyleEnd))
920 }
921 list_op::InnerListOp::Move {
922 from,
923 elem_id: from_id,
924 to,
925 } => contents.push(RawOpContent::List(list_op::ListOp::Move {
926 from: *from,
927 elem_id: *from_id,
928 to: *to,
929 })),
930 list_op::InnerListOp::Set { elem_id, value } => {
931 contents.push(RawOpContent::List(list_op::ListOp::Set {
932 elem_id: *elem_id,
933 value: value.clone(),
934 }))
935 }
936 },
937 crate::op::InnerContent::Map(map) => {
938 let value = map.value.clone();
939 contents.push(RawOpContent::Map(crate::container::map::MapSet {
940 key: map.key.clone(),
941 value,
942 }))
943 }
944 crate::op::InnerContent::Tree(tree) => contents.push(RawOpContent::Tree(tree.clone())),
945 crate::op::InnerContent::Future(f) => match f {
946 #[cfg(feature = "counter")]
947 crate::op::FutureInnerContent::Counter(c) => contents.push(RawOpContent::Counter(*c)),
948 FutureInnerContent::Unknown { prop, value } => {
949 contents.push(crate::op::RawOpContent::Unknown {
950 prop: *prop,
951 value: (**value).clone(),
952 })
953 }
954 },
955 };
956
957 let mut ans = SmallVec::with_capacity(contents.len());
958 for content in contents {
959 ans.push(RemoteOp {
960 container: container.clone(),
961 content,
962 counter: op.counter,
963 })
964 }
965 ans
966}
967
968pub(crate) fn get_timestamp_now_txn() -> Timestamp {
969 (get_sys_timestamp() as Timestamp + 500) / 1000
970}
971
972#[cfg(test)]
973mod visible_op_count_tests {
974 use crate::{cursor::PosType, loro::ExportMode, LoroDoc};
975
976 #[test]
980 fn cached_visible_op_count_matches_exact() {
981 let doc = LoroDoc::new();
982 let text = doc.get_text("text");
983 let mut txn = doc.txn().unwrap();
984 for i in 0..50 {
985 text.insert_with_txn(&mut txn, i, "a", PosType::Unicode)
986 .unwrap();
987 }
988 txn.commit().unwrap();
989 {
990 let oplog = doc.oplog().lock();
991 assert_eq!(
992 oplog.cached_visible_op_count(),
993 oplog.visible_op_count_exact(),
994 "after local edits"
995 );
996 }
997
998 let doc2 = LoroDoc::new();
1001 doc2.import(&doc.export(ExportMode::all_updates()).unwrap())
1002 .unwrap();
1003 let text2 = doc2.get_text("text");
1004 let mut txn2 = doc2.txn().unwrap();
1005 text2
1006 .insert_with_txn(&mut txn2, 0, "bbb", PosType::Unicode)
1007 .unwrap();
1008 txn2.commit().unwrap();
1009 {
1010 let oplog = doc2.oplog().lock();
1011 assert_eq!(
1012 oplog.cached_visible_op_count(),
1013 oplog.visible_op_count_exact(),
1014 "after import + local edits"
1015 );
1016 }
1017 }
1018}