rust/crates/ide_db/src/source_change.rs

90 lines
2.5 KiB
Rust
Raw Normal View History

2019-10-25 03:26:53 -05:00
//! This modules defines type to represent changes to the source code, that flow
//! from the server to the client.
//!
//! It can be viewed as a dual for `AnalysisChange`.
2021-01-14 11:35:22 -06:00
use std::{
collections::hash_map::Entry,
iter::{self, FromIterator},
};
use base_db::{AnchoredPathBuf, FileId};
2021-01-14 11:35:22 -06:00
use rustc_hash::FxHashMap;
2020-08-12 10:03:06 -05:00
use text_edit::TextEdit;
2019-10-25 03:26:53 -05:00
#[derive(Default, Debug, Clone)]
2019-10-25 03:26:53 -05:00
pub struct SourceChange {
2021-01-14 11:35:22 -06:00
pub source_file_edits: SourceFileEdits,
2019-10-25 03:26:53 -05:00
pub file_system_edits: Vec<FileSystemEdit>,
2020-05-17 05:09:53 -05:00
pub is_snippet: bool,
2019-10-25 03:26:53 -05:00
}
impl SourceChange {
/// Creates a new SourceChange with the given label
/// from the edits.
pub fn from_edits(
2021-01-14 11:35:22 -06:00
source_file_edits: SourceFileEdits,
2019-10-25 03:26:53 -05:00
file_system_edits: Vec<FileSystemEdit>,
) -> Self {
SourceChange { source_file_edits, file_system_edits, is_snippet: false }
2019-10-25 03:26:53 -05:00
}
}
2021-01-14 11:35:22 -06:00
#[derive(Default, Debug, Clone)]
pub struct SourceFileEdits {
pub edits: FxHashMap<FileId, TextEdit>,
}
impl SourceFileEdits {
pub fn from_text_edit(file_id: FileId, edit: TextEdit) -> Self {
SourceFileEdits { edits: FxHashMap::from_iter(iter::once((file_id, edit))) }
}
pub fn len(&self) -> usize {
self.edits.len()
}
pub fn is_empty(&self) -> bool {
self.edits.is_empty()
}
pub fn insert(&mut self, file_id: FileId, edit: TextEdit) {
match self.edits.entry(file_id) {
Entry::Occupied(mut entry) => {
entry.get_mut().union(edit).expect("overlapping edits for same file");
}
Entry::Vacant(entry) => {
entry.insert(edit);
}
}
}
2019-10-25 03:26:53 -05:00
}
2021-01-14 11:35:22 -06:00
impl Extend<(FileId, TextEdit)> for SourceFileEdits {
fn extend<T: IntoIterator<Item = (FileId, TextEdit)>>(&mut self, iter: T) {
iter.into_iter().for_each(|(file_id, edit)| self.insert(file_id, edit));
2020-06-08 14:44:42 -05:00
}
}
2021-01-14 11:35:22 -06:00
impl From<SourceFileEdits> for SourceChange {
fn from(source_file_edits: SourceFileEdits) -> SourceChange {
2020-06-08 14:44:42 -05:00
SourceChange { source_file_edits, file_system_edits: Vec::new(), is_snippet: false }
}
}
2020-05-06 08:26:40 -05:00
#[derive(Debug, Clone)]
2019-10-25 03:26:53 -05:00
pub enum FileSystemEdit {
CreateFile { dst: AnchoredPathBuf, initial_contents: String },
MoveFile { src: FileId, dst: AnchoredPathBuf },
2019-10-25 03:26:53 -05:00
}
2019-10-25 03:49:38 -05:00
impl From<FileSystemEdit> for SourceChange {
fn from(edit: FileSystemEdit) -> SourceChange {
2019-10-25 03:49:38 -05:00
SourceChange {
2021-01-14 11:35:22 -06:00
source_file_edits: Default::default(),
file_system_edits: vec![edit],
2020-05-17 05:09:53 -05:00
is_snippet: false,
2019-10-25 03:49:38 -05:00
}
}
}