2019-10-25 11:26:53 +03: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`.
|
|
|
|
|
2020-12-09 19:01:15 +03:00
|
|
|
use base_db::{AnchoredPathBuf, FileId};
|
2020-08-12 17:03:06 +02:00
|
|
|
use text_edit::TextEdit;
|
2019-10-25 11:26:53 +03:00
|
|
|
|
2020-07-07 12:10:18 +02:00
|
|
|
#[derive(Default, Debug, Clone)]
|
2019-10-25 11:26:53 +03:00
|
|
|
pub struct SourceChange {
|
|
|
|
pub source_file_edits: Vec<SourceFileEdit>,
|
|
|
|
pub file_system_edits: Vec<FileSystemEdit>,
|
2020-05-17 12:09:53 +02:00
|
|
|
pub is_snippet: bool,
|
2019-10-25 11:26:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SourceChange {
|
|
|
|
/// Creates a new SourceChange with the given label
|
|
|
|
/// from the edits.
|
2020-05-22 18:03:08 +02:00
|
|
|
pub fn from_edits(
|
2019-10-25 11:26:53 +03:00
|
|
|
source_file_edits: Vec<SourceFileEdit>,
|
|
|
|
file_system_edits: Vec<FileSystemEdit>,
|
|
|
|
) -> Self {
|
2020-05-22 18:03:08 +02:00
|
|
|
SourceChange { source_file_edits, file_system_edits, is_snippet: false }
|
2019-10-25 11:26:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-06 15:26:40 +02:00
|
|
|
#[derive(Debug, Clone)]
|
2019-10-25 11:26:53 +03:00
|
|
|
pub struct SourceFileEdit {
|
|
|
|
pub file_id: FileId,
|
|
|
|
pub edit: TextEdit,
|
|
|
|
}
|
|
|
|
|
2020-05-22 18:03:08 +02:00
|
|
|
impl From<SourceFileEdit> for SourceChange {
|
|
|
|
fn from(edit: SourceFileEdit) -> SourceChange {
|
2020-06-08 21:44:42 +02:00
|
|
|
vec![edit].into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Vec<SourceFileEdit>> for SourceChange {
|
|
|
|
fn from(source_file_edits: Vec<SourceFileEdit>) -> SourceChange {
|
|
|
|
SourceChange { source_file_edits, file_system_edits: Vec::new(), is_snippet: false }
|
2020-05-22 18:03:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-06 15:26:40 +02:00
|
|
|
#[derive(Debug, Clone)]
|
2019-10-25 11:26:53 +03:00
|
|
|
pub enum FileSystemEdit {
|
2020-12-09 19:01:15 +03:00
|
|
|
CreateFile { dst: AnchoredPathBuf },
|
|
|
|
MoveFile { src: FileId, dst: AnchoredPathBuf },
|
2019-10-25 11:26:53 +03:00
|
|
|
}
|
2019-10-25 11:49:38 +03:00
|
|
|
|
2020-05-22 18:03:08 +02:00
|
|
|
impl From<FileSystemEdit> for SourceChange {
|
|
|
|
fn from(edit: FileSystemEdit) -> SourceChange {
|
2019-10-25 11:49:38 +03:00
|
|
|
SourceChange {
|
2020-05-22 18:03:08 +02:00
|
|
|
source_file_edits: Vec::new(),
|
|
|
|
file_system_edits: vec![edit],
|
2020-05-17 12:09:53 +02:00
|
|
|
is_snippet: false,
|
2019-10-25 11:49:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|