rust-analyzer/crates/ra_ide_db/src/source_change.rs

108 lines
3.3 KiB
Rust
Raw Normal View History

2019-10-25 08:26:53 +00: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`.
use ra_db::{FileId, RelativePathBuf, SourceRootId};
2020-05-20 22:46:08 +00:00
use ra_text_edit::TextEdit;
2019-10-25 08:26:53 +00:00
2020-05-06 13:26:40 +00:00
#[derive(Debug, Clone)]
2019-10-25 08:26:53 +00:00
pub struct SourceChange {
2020-05-06 09:31:26 +00:00
/// For display in the undo log in the editor
2019-10-25 08:26:53 +00:00
pub label: String,
pub source_file_edits: Vec<SourceFileEdit>,
pub file_system_edits: Vec<FileSystemEdit>,
2020-05-17 10:09:53 +00:00
pub is_snippet: bool,
2019-10-25 08:26:53 +00:00
}
impl SourceChange {
/// Creates a new SourceChange with the given label
/// from the edits.
2020-05-06 09:31:26 +00:00
pub fn from_edits<L: Into<String>>(
2019-10-25 08:26:53 +00:00
label: L,
source_file_edits: Vec<SourceFileEdit>,
file_system_edits: Vec<FileSystemEdit>,
) -> Self {
SourceChange {
label: label.into(),
source_file_edits,
file_system_edits,
2020-05-17 10:09:53 +00:00
is_snippet: false,
2019-10-25 08:26:53 +00:00
}
}
/// Creates a new SourceChange with the given label,
/// containing only the given `SourceFileEdits`.
2020-05-06 09:31:26 +00:00
pub fn source_file_edits<L: Into<String>>(label: L, edits: Vec<SourceFileEdit>) -> Self {
2020-05-05 18:55:12 +00:00
let label = label.into();
assert!(label.starts_with(char::is_uppercase));
2019-10-25 08:26:53 +00:00
SourceChange {
2020-05-05 18:55:12 +00:00
label: label,
2019-10-25 08:26:53 +00:00
source_file_edits: edits,
file_system_edits: vec![],
2020-05-17 10:09:53 +00:00
is_snippet: false,
2019-10-25 08:26:53 +00:00
}
}
/// Creates a new SourceChange with the given label,
/// containing only the given `FileSystemEdits`.
pub(crate) fn file_system_edits<L: Into<String>>(label: L, edits: Vec<FileSystemEdit>) -> Self {
SourceChange {
label: label.into(),
source_file_edits: vec![],
file_system_edits: edits,
2020-05-17 10:09:53 +00:00
is_snippet: false,
2019-10-25 08:26:53 +00:00
}
}
/// Creates a new SourceChange with the given label,
/// containing only a single `SourceFileEdit`.
2020-05-06 09:31:26 +00:00
pub fn source_file_edit<L: Into<String>>(label: L, edit: SourceFileEdit) -> Self {
2019-10-25 08:26:53 +00:00
SourceChange::source_file_edits(label, vec![edit])
}
/// Creates a new SourceChange with the given label
/// from the given `FileId` and `TextEdit`
2020-05-06 09:31:26 +00:00
pub fn source_file_edit_from<L: Into<String>>(
2019-10-25 08:26:53 +00:00
label: L,
file_id: FileId,
edit: TextEdit,
) -> Self {
SourceChange::source_file_edit(label, SourceFileEdit { file_id, edit })
}
/// Creates a new SourceChange with the given label
/// from the given `FileId` and `TextEdit`
2020-05-06 09:31:26 +00:00
pub fn file_system_edit<L: Into<String>>(label: L, edit: FileSystemEdit) -> Self {
2019-10-25 08:26:53 +00:00
SourceChange::file_system_edits(label, vec![edit])
}
}
2020-05-06 13:26:40 +00:00
#[derive(Debug, Clone)]
2019-10-25 08:26:53 +00:00
pub struct SourceFileEdit {
pub file_id: FileId,
pub edit: TextEdit,
}
2020-05-06 13:26:40 +00:00
#[derive(Debug, Clone)]
2019-10-25 08:26:53 +00:00
pub enum FileSystemEdit {
CreateFile { source_root: SourceRootId, path: RelativePathBuf },
MoveFile { src: FileId, dst_source_root: SourceRootId, dst_path: RelativePathBuf },
}
2019-10-25 08:49:38 +00:00
2020-05-06 09:31:26 +00:00
pub struct SingleFileChange {
2019-10-25 08:49:38 +00:00
pub label: String,
pub edit: TextEdit,
}
impl SingleFileChange {
2020-05-06 09:31:26 +00:00
pub fn into_source_change(self, file_id: FileId) -> SourceChange {
2019-10-25 08:49:38 +00:00
SourceChange {
label: self.label,
source_file_edits: vec![SourceFileEdit { file_id, edit: self.edit }],
file_system_edits: Vec::new(),
2020-05-17 10:09:53 +00:00
is_snippet: false,
2019-10-25 08:49:38 +00:00
}
}
}