mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-29 14:33:29 +00:00
107 lines
3.3 KiB
Rust
107 lines
3.3 KiB
Rust
//! 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};
|
|
use ra_text_edit::TextEdit;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct SourceChange {
|
|
/// For display in the undo log in the editor
|
|
pub label: String,
|
|
pub source_file_edits: Vec<SourceFileEdit>,
|
|
pub file_system_edits: Vec<FileSystemEdit>,
|
|
pub is_snippet: bool,
|
|
}
|
|
|
|
impl SourceChange {
|
|
/// Creates a new SourceChange with the given label
|
|
/// from the edits.
|
|
pub fn from_edits<L: Into<String>>(
|
|
label: L,
|
|
source_file_edits: Vec<SourceFileEdit>,
|
|
file_system_edits: Vec<FileSystemEdit>,
|
|
) -> Self {
|
|
SourceChange {
|
|
label: label.into(),
|
|
source_file_edits,
|
|
file_system_edits,
|
|
is_snippet: false,
|
|
}
|
|
}
|
|
|
|
/// Creates a new SourceChange with the given label,
|
|
/// containing only the given `SourceFileEdits`.
|
|
pub fn source_file_edits<L: Into<String>>(label: L, edits: Vec<SourceFileEdit>) -> Self {
|
|
let label = label.into();
|
|
assert!(label.starts_with(char::is_uppercase));
|
|
SourceChange {
|
|
label: label,
|
|
source_file_edits: edits,
|
|
file_system_edits: vec![],
|
|
is_snippet: false,
|
|
}
|
|
}
|
|
|
|
/// 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,
|
|
is_snippet: false,
|
|
}
|
|
}
|
|
|
|
/// Creates a new SourceChange with the given label,
|
|
/// containing only a single `SourceFileEdit`.
|
|
pub fn source_file_edit<L: Into<String>>(label: L, edit: SourceFileEdit) -> Self {
|
|
SourceChange::source_file_edits(label, vec![edit])
|
|
}
|
|
|
|
/// Creates a new SourceChange with the given label
|
|
/// from the given `FileId` and `TextEdit`
|
|
pub fn source_file_edit_from<L: Into<String>>(
|
|
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`
|
|
pub fn file_system_edit<L: Into<String>>(label: L, edit: FileSystemEdit) -> Self {
|
|
SourceChange::file_system_edits(label, vec![edit])
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct SourceFileEdit {
|
|
pub file_id: FileId,
|
|
pub edit: TextEdit,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub enum FileSystemEdit {
|
|
CreateFile { source_root: SourceRootId, path: RelativePathBuf },
|
|
MoveFile { src: FileId, dst_source_root: SourceRootId, dst_path: RelativePathBuf },
|
|
}
|
|
|
|
pub struct SingleFileChange {
|
|
pub label: String,
|
|
pub edit: TextEdit,
|
|
}
|
|
|
|
impl SingleFileChange {
|
|
pub fn into_source_change(self, file_id: FileId) -> SourceChange {
|
|
SourceChange {
|
|
label: self.label,
|
|
source_file_edits: vec![SourceFileEdit { file_id, edit: self.edit }],
|
|
file_system_edits: Vec::new(),
|
|
is_snippet: false,
|
|
}
|
|
}
|
|
}
|