Tests pass

This commit is contained in:
Andras Schmelczer 2024-11-24 10:38:50 +00:00
commit 88a66c45fb
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 281 additions and 290 deletions

View file

@ -7,6 +7,9 @@ edition = "2021"
ropey = { version = "1.6.1", default-features = false, features = ["simd"] } # ropey = { version = "1.6.1", default-features = false, features = ["simd"] } #
thiserror = {workspace = true} thiserror = {workspace = true}
log = {workspace = true} log = {workspace = true}
itertools = "0.13.0"
# optional dependencies
serde = { version = "1.0.215", optional = true } serde = { version = "1.0.215", optional = true }
[features] [features]
@ -14,5 +17,4 @@ serde = [ "dep:serde" ]
[dev-dependencies] [dev-dependencies]
insta = "1.41.1" insta = "1.41.1"
itertools = "0.13.0"
pretty_assertions = "1.4.1" pretty_assertions = "1.4.1"

View file

@ -122,6 +122,11 @@ impl Operation {
self.start_index() + self.len() - 1 self.start_index() + self.len() - 1
} }
/// Returns the range of indices of characters that the operation affects, inclusive.
pub fn range(&self) -> std::ops::RangeInclusive<usize> {
self.start_index()..=self.end_index()
}
/// Returns the number of affected characters. It is always greater than 0 because empty operations cannot be created. /// Returns the number of affected characters. It is always greater than 0 because empty operations cannot be created.
pub fn len(&self) -> usize { pub fn len(&self) -> usize {
match self { match self {
@ -139,11 +144,6 @@ impl Operation {
false false
} }
/// Returns the range of indices of characters that the operation affects, inclusive.
pub fn range(&self) -> std::ops::RangeInclusive<usize> {
self.start_index()..=self.end_index()
}
/// Clones the operation while updating the index. /// Clones the operation while updating the index.
pub fn with_index(&self, index: usize) -> Self { pub fn with_index(&self, index: usize) -> Self {
match self { match self {
@ -180,70 +180,6 @@ impl Operation {
Ok(self.with_index(non_negative_index)) Ok(self.with_index(non_negative_index))
} }
/// Merges the operation with another operation that is consequtive to this operation.
/// The other operation must start where this operation ends.
/// The two operations must be of the same type, otherwise panics.
pub fn merge(self, other: &Self) -> Self {
match (self, other) {
(
Operation::Insert { index, text },
Operation::Insert {
text: other_text, ..
},
) => {
let end_index = index + text.chars().count();
debug_assert!(
end_index == other.start_index(),
"Cannot merge non-consequtive inserts with index {} and {}",
end_index,
other.start_index()
);
Operation::Insert {
index,
text: text + other_text,
}
}
(
Operation::Delete {
index,
deleted_character_count,
#[cfg(debug_assertions)]
deleted_text,
},
Operation::Delete {
index: other_index,
deleted_character_count: other_deleted_character_count,
#[cfg(debug_assertions)]
deleted_text: other_deleted_text,
},
) => {
debug_assert!(
index == *other_index,
"Cannot merge non-consequtive deletes",
);
Operation::Delete {
index,
deleted_character_count: deleted_character_count
+ other_deleted_character_count,
#[cfg(debug_assertions)]
deleted_text: deleted_text
.into_iter()
.flat_map(|t1| other_deleted_text.as_ref().map(|t2| t1 + t2).into_iter())
.last(),
}
}
(this, other) => panic!(
"Cannot merge operations of different type: {:?} and {:?}",
&this, &other
),
}
}
} }
impl Display for Operation { impl Display for Operation {

View file

@ -1,10 +1,11 @@
use std::cmp::Ordering; use std::{cmp::Ordering, result, vec};
use super::Operation; use super::Operation;
use crate::diffs::myers::diff; use crate::diffs::myers::diff;
use crate::diffs::raw_operation::RawOperation; use crate::diffs::raw_operation::RawOperation;
use crate::errors::SyncLibError; use crate::errors::SyncLibError;
use crate::tokenizer::token::Token; use crate::tokenizer::token::Token;
use itertools::Itertools;
use ropey::Rope; use ropey::Rope;
#[cfg(feature = "serde")] #[cfg(feature = "serde")]
@ -26,27 +27,37 @@ struct MergeContext {
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)] #[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct OperationSequence { pub struct OperationSequence {
operations: Vec<Operation>, operations: Vec<(usize, Operation)>,
} }
impl OperationSequence { impl OperationSequence {
/// Creates a new OperationSequence with the given operations. /// Creates a new OperationSequence with the given operations.
/// The operations should be in the order they should be applied. /// The operations should be in the order they should be applied.
/// The operations must not overlap. /// The operations must not overlap.
pub fn new(operations: Vec<Operation>) -> Self { pub fn new(operations: Vec<(usize, Operation)>) -> Self {
operations operations.iter().zip(operations.iter().skip(1)).for_each(
.iter() |((i_prev, previous), (i_next, next))| {
.zip(operations.iter().skip(1))
.for_each(|(previous, next)| {
debug_assert!( debug_assert!(
previous.start_index() <= next.start_index(), i_prev == i_next
"{} doesn't come before {}", || i_prev + previous.len() <= *i_next
|| !(matches!(previous, Operation::Delete { .. })
&& matches!(next, Operation::Insert { .. })),
"{} and {} overlap with old index {i_prev} and {i_next}",
previous, previous,
next next
); );
}); debug_assert!(
previous.start_index() <= next.start_index(),
"{} must not come before {} yet it does",
previous,
next
);
},
);
Self { operations } Self {
operations, // operations: Self::merge_subsequent_operations(operations),
}
} }
/// Creates an OperationSequence from the given original (old) and updated (new) strings. /// Creates an OperationSequence from the given original (old) and updated (new) strings.
@ -58,37 +69,55 @@ impl OperationSequence {
let diff: Vec<RawOperation> = diff(&original_tokens, &updated_tokens); let diff: Vec<RawOperation> = diff(&original_tokens, &updated_tokens);
Self::new(Self::raw_operations_to_operations(diff)) Self::new(Self::cook_operations(diff))
} }
fn raw_operations_to_operations(raw_operations: Vec<RawOperation>) -> Vec<Operation> { fn cook_operations(raw_operations: Vec<RawOperation>) -> Vec<(usize, Operation)> {
let mut index = 0; let mut new_index = 0;
let mut old_index = 0;
raw_operations raw_operations
.into_iter() .into_iter()
.flat_map(|raw_operation| { .flat_map(|raw_operation| {
match raw_operation { let length = raw_operation.original_text_length();
let operation = match raw_operation {
RawOperation::Equal(..) => { RawOperation::Equal(..) => {
index += raw_operation.original_text_length(); new_index += length;
old_index += length;
None None
} }
RawOperation::Insert(..) => { RawOperation::Insert(..) => {
let length = raw_operation.original_text_length(); let op =
let result = Operation::create_insert(new_index, raw_operation.get_original_text())
Operation::create_insert(index, raw_operation.get_original_text()); .map(|op| (old_index, op));
index += length;
result new_index += length;
op
} }
RawOperation::Delete(..) => { RawOperation::Delete(..) => {
Operation::create_delete_with_text(index, raw_operation.get_original_text()) let op = Operation::create_delete_with_text(
new_index,
raw_operation.get_original_text(),
)
.map(|op| (old_index, op));
old_index += length;
op
} }
} };
.into_iter()
operation.into_iter()
}) })
.sorted_by_key(|(order, _)| *order)
.collect() .collect()
} }
pub fn merge(&self, other: &Self) -> Result<Self, SyncLibError> { pub fn merge(&self, other: &Self) -> Result<Self, SyncLibError> {
let mut merged_operations = let mut merged_operations: Vec<Operation> =
Vec::with_capacity(self.operations.len() + other.operations.len()); Vec::with_capacity(self.operations.len() + other.operations.len());
let mut left_merge_context = MergeContext::default(); let mut left_merge_context = MergeContext::default();
@ -98,81 +127,55 @@ impl OperationSequence {
let mut right_index: usize = 0; let mut right_index: usize = 0;
loop { loop {
let shifted_left_op = self let left_op = self.operations.get(left_index);
.operations let right_op = other.operations.get(right_index);
.get(left_index)
.map(|op| {
Self::pick_up_dangling_delete_from_affecting_context(
op,
&mut right_merge_context,
);
op.with_shifted_index(right_merge_context.shift)
})
.transpose()?;
let shifted_right_op = other let order = left_op
.operations .map(|(order, _)| order)
.get(right_index) .cmp(&right_op.map(|(order, _)| order));
.map(|op| {
Self::pick_up_dangling_delete_from_affecting_context(
op,
&mut left_merge_context,
);
op.with_shifted_index(left_merge_context.shift)
})
.transpose()?;
let left_op_index = shifted_left_op println!("left_op: {:#?} <> right_op: {:#?}", left_op, right_op);
.as_ref()
.map(|op| {
op.start_index().max(
left_merge_context
.last_delete
.as_ref()
.map(|op| op.end_index())
.unwrap_or_default(),
) as i64
})
.unwrap_or_default();
let right_op_index = shifted_right_op let left_op = left_op.map(|(_, op)| op);
.as_ref() let right_op = right_op.map(|(_, op)| op);
.map(|op| {
op.start_index().max(
right_merge_context
.last_delete
.as_ref()
.map(|op| op.end_index())
.unwrap_or_default(),
) as i64
})
.unwrap_or_default();
let result = left_op_index.cmp(&right_op_index); // let order = if order == Ordering::Equal {
let order = if result == Ordering::Equal // match (left_op.as_ref(), right_op.as_ref()) {
&& shifted_left_op.is_some() // (Some(Operation::Insert { .. }), Some(Operation::Delete { .. })) => {
&& shifted_right_op.is_some() // Ordering::Greater
{ // }
match ( // (Some(Operation::Delete { .. }), Some(Operation::Insert { .. })) => {
shifted_left_op.as_ref().unwrap(), // Ordering::Less
shifted_right_op.as_ref().unwrap(), // }
) { // _ => Ordering::Equal,
(Operation::Insert { .. }, Operation::Delete { .. }) => Ordering::Greater, // }
(Operation::Delete { .. }, Operation::Insert { .. }) => Ordering::Less, // } else {
_ => Ordering::Equal, // order
} // };
} else {
result
};
match (shifted_left_op, shifted_right_op, order) { // debug_assert!(
// right_merge_context.last_delete.is_none()
// || left_merge_context.last_delete.is_none(),
// "Both contexts have a last delete"
// );
match (left_op, right_op, order) {
(Some(left_op), None, _) (Some(left_op), None, _)
| (Some(left_op), Some(_), std::cmp::Ordering::Less | std::cmp::Ordering::Equal) => { | (Some(left_op), Some(_), std::cmp::Ordering::Less | std::cmp::Ordering::Equal) => {
Self::pick_up_dangling_delete_from_affecting_context(
left_op.start_index(),
&mut right_merge_context,
);
if let Some(op) = Self::merge_operations_with_context( if let Some(op) = Self::merge_operations_with_context(
left_op, left_op.with_shifted_index(right_merge_context.shift)?,
&mut right_merge_context, &mut right_merge_context,
&mut left_merge_context, &mut left_merge_context,
)? { )? {
// println!("merged {:#?}", &op);
if let Some(last) = merged_operations.last() {
debug_assert!(op.start_index() >= last.start_index());
}
merged_operations.push(op); merged_operations.push(op);
} }
@ -180,11 +183,20 @@ impl OperationSequence {
} }
(None, Some(right_op), _) (None, Some(right_op), _)
| (Some(_), Some(right_op), std::cmp::Ordering::Greater) => { | (Some(_), Some(right_op), std::cmp::Ordering::Greater) => {
Self::pick_up_dangling_delete_from_affecting_context(
right_op.start_index(),
&mut left_merge_context,
);
if let Some(op) = Self::merge_operations_with_context( if let Some(op) = Self::merge_operations_with_context(
right_op, right_op.with_shifted_index(left_merge_context.shift)?,
&mut left_merge_context, &mut left_merge_context,
&mut right_merge_context, &mut right_merge_context,
)? { )? {
// println!("merged {:#?}", &op);
if let Some(last) = merged_operations.last() {
debug_assert!(op.start_index() >= last.start_index());
}
merged_operations.push(op); merged_operations.push(op);
} }
@ -194,13 +206,22 @@ impl OperationSequence {
break; break;
} }
}; };
println!(
"{:#?} <> {:#?}\n\n\n",
left_merge_context, right_merge_context
);
} }
Ok(Self::new(merged_operations)) println!("merged_operations: {:#?}", merged_operations.to_vec());
Ok(Self::new(
merged_operations.into_iter().map(|op| (0, op)).collect(),
))
} }
pub fn apply<'a>(&self, rope_text: &'a mut Rope) -> Result<&'a mut Rope, SyncLibError> { pub fn apply<'a>(&self, rope_text: &'a mut Rope) -> Result<&'a mut Rope, SyncLibError> {
for operation in &self.operations { for (_, operation) in &self.operations {
operation.apply(rope_text)?; operation.apply(rope_text)?;
} }
@ -230,46 +251,52 @@ impl OperationSequence {
(operation @ Operation::Insert { .. }, Some(last_delete)) => { (operation @ Operation::Insert { .. }, Some(last_delete)) => {
produced_context.shift += operation.len() as i64; produced_context.shift += operation.len() as i64;
if last_delete.range().contains(&operation.start_index()) { debug_assert!(
let moved_operation = operation.with_index(last_delete.start_index()); last_delete.range().contains(&operation.start_index()),
"There is a last delete ({last_delete}) but the operation ({operation}) is not contained in it"
);
affecting_context.last_delete = Operation::create_delete( let difference =
moved_operation.end_index() + 1, operation.start_index() as i64 - last_delete.start_index() as i64;
last_delete.len(),
);
Some(moved_operation) let moved_operation = operation.with_index(last_delete.start_index());
} else {
Some(operation) affecting_context.last_delete = Operation::create_delete(
} moved_operation.end_index() + 1,
(last_delete.len() as i64 - difference) as usize,
);
affecting_context.shift -= difference;
Some(moved_operation)
} }
(operation @ Operation::Delete { .. }, Some(last_delete)) => { (operation @ Operation::Delete { .. }, Some(last_delete)) => {
let updated_delete = if last_delete.range().contains(&operation.start_index()) { debug_assert!(
let overlap = last_delete.range().contains(&operation.start_index()),
last_delete.end_index() as i64 - operation.start_index() as i64 + 1; "There is a last delete ({last_delete}) but the operation ({operation}) is not contained in it"
);
affecting_context.last_delete = Operation::create_delete( let difference =
last_delete.start_index(), operation.start_index() as i64 - last_delete.start_index() as i64;
0.max(last_delete.len() as i64 - operation.len() as i64) as usize,
);
if last_delete.end_index() < operation.end_index() { let updated_delete = Operation::create_delete(
affecting_context.shift -= last_delete.len() as i64 - overlap last_delete.start_index(),
} 0.max(operation.end_index() as i64 - last_delete.end_index() as i64)
as usize,
);
Operation::create_delete( affecting_context.shift -= difference;
last_delete.start_index(), affecting_context.last_delete = Operation::create_delete(
0.max(operation.len() as i64 - overlap) as usize, last_delete.start_index(),
) 0.max(last_delete.end_index() as i64 - operation.end_index() as i64)
} else { as usize,
Some(operation) );
};
Self::replace_delete_in_produced_context( Self::replace_delete_in_produced_context(
produced_context, produced_context,
updated_delete.clone(), updated_delete.clone(),
); );
updated_delete updated_delete
} }
}, },
@ -288,12 +315,12 @@ impl OperationSequence {
} }
fn pick_up_dangling_delete_from_affecting_context( fn pick_up_dangling_delete_from_affecting_context(
next_operation: &Operation, start_index: usize,
affecting_context: &mut MergeContext, affecting_context: &mut MergeContext,
) { ) {
match affecting_context.last_delete.as_ref() { match affecting_context.last_delete.as_ref() {
Some(last_delete) Some(last_delete)
if next_operation.start_index() as i64 + affecting_context.shift if start_index as i64 + affecting_context.shift
> last_delete.end_index() as i64 => > last_delete.end_index() as i64 =>
{ {
affecting_context.shift -= last_delete.len() as i64; affecting_context.shift -= last_delete.len() as i64;
@ -328,16 +355,6 @@ mod tests {
assert_eq!(new_right.to_string(), right); assert_eq!(new_right.to_string(), right);
} }
#[test]
fn test_calculate_operations_with_large_diff() {
let left = "hello world! How are you? Adam";
let right = "Hello, my friend! How are you doing? Albert";
let result = OperationSequence::from_strings(left, right);
insta::assert_debug_snapshot!(result);
}
#[test] #[test]
fn test_calculate_operations_with_no_diff() { fn test_calculate_operations_with_no_diff() {
let left = "hello world!"; let left = "hello world!";
@ -445,7 +462,7 @@ mod tests {
#[test] #[test]
fn test_merge_files_without_panicing() { fn test_merge_files_without_panic() {
let files = vec![ let files = vec![
"pride_and_prejudice.txt", "pride_and_prejudice.txt",
"romeo_and_juliet.txt", "romeo_and_juliet.txt",
@ -474,31 +491,31 @@ mod tests {
} }
fn test_merge(original: &str, edit_1: &str, edit_2: &str) -> String { fn test_merge(original: &str, edit_1: &str, edit_2: &str) -> String {
println!( // println!(
"original: '{:#}'", // "original: '{:#}'",
original[..100.min(original.len())].to_string() // original[..100.min(original.len())].to_string()
); // );
println!( // println!(
"edit_1: '{:#}'", // "edit_1: '{:#}'",
edit_1[..100.min(edit_1.len())].to_string() // edit_1[..100.min(edit_1.len())].to_string()
); // );
println!( // println!(
"edit_2: '{:#}'", // "edit_2: '{:#}'",
edit_2[..100.min(edit_2.len())].to_string() // edit_2[..100.min(edit_2.len())].to_string()
); // );
let mut original = Rope::from_str(original); let mut original = Rope::from_str(original);
let operations_1 = OperationSequence::from_strings(&original.to_string(), edit_1); let operations_1 = OperationSequence::from_strings(&original.to_string(), edit_1);
println!( // println!(
"operations_1: {:?}", // "operations_1: {:#?}",
operations_1.operations[..20.min(operations_1.operations.len())].to_vec() // operations_1.operations[..20.min(operations_1.operations.len())].to_vec()
); // );
let operations_2 = OperationSequence::from_strings(&original.to_string(), edit_2); let operations_2 = OperationSequence::from_strings(&original.to_string(), edit_2);
println!( // println!(
"operations_2: {:?}", // "operations_2: {:#?}",
operations_2.operations[..20.min(operations_2.operations.len())].to_vec() // operations_2.operations[..20.min(operations_2.operations.len())].to_vec()
); // );
assert_eq!( assert_eq!(
operations_1 operations_1

View file

@ -5,38 +5,56 @@ snapshot_kind: text
--- ---
OperationSequence { OperationSequence {
operations: [ operations: [
Insert { (
index: 0, 0,
text: "Hello, my friend! ", Insert {
}, index: 0,
Delete { text: "Hello, my friend! ",
index: 18, },
deleted_character_count: 13, ),
deleted_text: Some( (
"hello world! ", 0,
), Delete {
}, index: 18,
Delete { deleted_character_count: 13,
index: 26, deleted_text: Some(
deleted_character_count: 5, "hello world! ",
deleted_text: Some( ),
"you? ", },
), ),
}, (
Delete { 21,
index: 26, Delete {
deleted_character_count: 5, index: 26,
deleted_text: Some( deleted_character_count: 5,
" Adam", deleted_text: Some(
), "you? ",
}, ),
Insert { },
index: 26, ),
text: "you ", (
}, 26,
Insert { Delete {
index: 30, index: 26,
text: "doing? Albert", deleted_character_count: 5,
}, deleted_text: Some(
" Adam",
),
},
),
(
31,
Insert {
index: 26,
text: "you ",
},
),
(
31,
Insert {
index: 30,
text: "doing? Albert",
},
),
], ],
} }

View file

@ -5,38 +5,56 @@ snapshot_kind: text
--- ---
OperationSequence { OperationSequence {
operations: [ operations: [
Insert { (
index: 0, 0,
text: "Hello, my friend! ", Insert {
}, index: 0,
Delete { text: "Hello, my friend! ",
index: 18, },
deleted_character_count: 13, ),
deleted_text: Some( (
"hello world! ", 0,
), Delete {
}, index: 18,
Delete { deleted_character_count: 13,
index: 26, deleted_text: Some(
deleted_character_count: 5, "hello world! ",
deleted_text: Some( ),
"you? ", },
), ),
}, (
Delete { 21,
index: 26, Delete {
deleted_character_count: 5, index: 26,
deleted_text: Some( deleted_character_count: 5,
" Adam", deleted_text: Some(
), "you? ",
}, ),
Insert { },
index: 26, ),
text: "you ", (
}, 26,
Insert { Delete {
index: 30, index: 26,
text: "doing? Albert", deleted_character_count: 5,
}, deleted_text: Some(
" Adam",
),
},
),
(
31,
Insert {
index: 26,
text: "you ",
},
),
(
31,
Insert {
index: 30,
text: "doing? Albert",
},
),
], ],
} }