Move edited_ranges_for_transaction from BufferSnapshot to Buffer
Co-authored-by: Antonio Scandurra <antonio@zed.dev>
This commit is contained in:
parent
7b009c8bbe
commit
65fd943509
2 changed files with 51 additions and 48 deletions
|
@ -1322,6 +1322,42 @@ impl Buffer {
|
|||
self.history.finalize_last_transaction();
|
||||
}
|
||||
|
||||
pub fn edited_ranges_for_transaction<'a, D>(
|
||||
&'a self,
|
||||
transaction: &'a Transaction,
|
||||
) -> impl 'a + Iterator<Item = Range<D>>
|
||||
where
|
||||
D: TextDimension,
|
||||
{
|
||||
let mut cursor = self.fragments.cursor::<(VersionedFullOffset, usize)>();
|
||||
let mut rope_cursor = self.visible_text.cursor(0);
|
||||
let cx = Some(transaction.end.clone());
|
||||
let mut position = D::default();
|
||||
transaction.ranges.iter().map(move |range| {
|
||||
cursor.seek_forward(&VersionedFullOffset::Offset(range.start), Bias::Right, &cx);
|
||||
let mut start_offset = cursor.start().1;
|
||||
if cursor
|
||||
.item()
|
||||
.map_or(false, |fragment| fragment.is_visible(&self.undo_map))
|
||||
{
|
||||
start_offset += range.start - cursor.start().0.full_offset()
|
||||
}
|
||||
position.add_assign(&rope_cursor.summary(start_offset));
|
||||
let start = position.clone();
|
||||
|
||||
cursor.seek_forward(&VersionedFullOffset::Offset(range.end), Bias::Left, &cx);
|
||||
let mut end_offset = cursor.start().1;
|
||||
if cursor
|
||||
.item()
|
||||
.map_or(false, |fragment| fragment.is_visible(&self.undo_map))
|
||||
{
|
||||
end_offset += range.end - cursor.start().0.full_offset();
|
||||
}
|
||||
position.add_assign(&rope_cursor.summary(end_offset));
|
||||
start..position.clone()
|
||||
})
|
||||
}
|
||||
|
||||
pub fn subscribe(&mut self) -> Subscription {
|
||||
self.subscriptions.subscribe()
|
||||
}
|
||||
|
@ -1878,42 +1914,6 @@ impl BufferSnapshot {
|
|||
self.edits_since_in_range(since, Anchor::MIN..Anchor::MAX)
|
||||
}
|
||||
|
||||
pub fn edited_ranges_for_transaction<'a, D>(
|
||||
&'a self,
|
||||
transaction: &'a Transaction,
|
||||
) -> impl 'a + Iterator<Item = Range<D>>
|
||||
where
|
||||
D: TextDimension,
|
||||
{
|
||||
let mut cursor = self.fragments.cursor::<(VersionedFullOffset, usize)>();
|
||||
let mut rope_cursor = self.visible_text.cursor(0);
|
||||
let cx = Some(transaction.end.clone());
|
||||
let mut position = D::default();
|
||||
transaction.ranges.iter().map(move |range| {
|
||||
cursor.seek_forward(&VersionedFullOffset::Offset(range.start), Bias::Right, &cx);
|
||||
let mut start_offset = cursor.start().1;
|
||||
if cursor
|
||||
.item()
|
||||
.map_or(false, |fragment| fragment.is_visible(&self.undo_map))
|
||||
{
|
||||
start_offset += range.start - cursor.start().0.full_offset()
|
||||
}
|
||||
position.add_assign(&rope_cursor.summary(start_offset));
|
||||
let start = position.clone();
|
||||
|
||||
cursor.seek_forward(&VersionedFullOffset::Offset(range.end), Bias::Left, &cx);
|
||||
let mut end_offset = cursor.start().1;
|
||||
if cursor
|
||||
.item()
|
||||
.map_or(false, |fragment| fragment.is_visible(&self.undo_map))
|
||||
{
|
||||
end_offset += range.end - cursor.start().0.full_offset();
|
||||
}
|
||||
position.add_assign(&rope_cursor.summary(end_offset));
|
||||
start..position.clone()
|
||||
})
|
||||
}
|
||||
|
||||
pub fn edits_since_in_range<'a, D>(
|
||||
&'a self,
|
||||
since: &'a clock::Global,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue