Skip to content

Commit

Permalink
Auto merge of #18134 - DropDemBits:source-change-sed, r=lnicola
Browse files Browse the repository at this point in the history
internal: Extend SourceChangeBuilder to make make working with `SyntaxEditor`s easier

Part of #15710

Adds additional `SourceChangeBuilder` methods to make it easier to migrate assists to `SyntaxEditor`.

As `SyntaxEditor`s are composable before they're completed, each created `SyntaxEditor` can represent logical groups of changes (e.g. independently performing renames of uses in a file from inserting the new item). Once a group of changes is considered "done", `SourceChangeBuilder::add_file_edits` is used to submit a set of changes to be part of the source change.

`SyntaxAnnotation`s are used to indicate where snippets are attached to, and using `SyntaxAnnotation`s also means that we can attach snippets at any time, rather than being required to be after all edits.
  • Loading branch information
bors committed Sep 18, 2024
2 parents b9be0f2 + d34cbe0 commit c47a656
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use either::Either;
use ide_db::syntax_helpers::node_ext::walk_ty;
use syntax::{
ast::{self, edit::IndentLevel, make, AstNode, HasGenericArgs, HasGenericParams, HasName},
ted,
syntax_editor,
};

use crate::{AssistContext, AssistId, AssistKind, Assists};
Expand Down Expand Up @@ -43,9 +43,8 @@ pub(crate) fn extract_type_alias(acc: &mut Assists, ctx: &AssistContext<'_>) ->
AssistId("extract_type_alias", AssistKind::RefactorExtract),
"Extract type as type alias",
target,
|edit| {
let node = edit.make_syntax_mut(node.clone());
let target_ty = edit.make_mut(ty.clone());
|builder| {
let mut edit = builder.make_editor(node);

let mut known_generics = match item.generic_param_list() {
Some(it) => it.generic_params().collect(),
Expand All @@ -67,25 +66,28 @@ pub(crate) fn extract_type_alias(acc: &mut Assists, ctx: &AssistContext<'_>) ->
.map_or(String::new(), |it| it.to_generic_args().to_string());
// FIXME: replace with a `ast::make` constructor
let new_ty = make::ty(&format!("Type{ty_args}")).clone_for_update();
ted::replace(target_ty.syntax(), new_ty.syntax());
edit.replace(ty.syntax(), new_ty.syntax());

// Insert new alias
let indent = IndentLevel::from_node(&node);
let ty_alias = make::ty_alias("Type", generic_params, None, None, Some((ty, None)))
.clone_for_update();
ted::insert_all(
ted::Position::before(node),

if let Some(cap) = ctx.config.snippet_cap {
if let Some(name) = ty_alias.name() {
edit.add_annotation(name.syntax(), builder.make_tabstop_before(cap));
}
}

let indent = IndentLevel::from_node(node);
edit.insert_all(
syntax_editor::Position::before(node),
vec![
ty_alias.syntax().clone().into(),
make::tokens::whitespace(&format!("\n\n{indent}")).into(),
],
);

if let Some(cap) = ctx.config.snippet_cap {
if let Some(name) = ty_alias.name() {
edit.add_tabstop_before(cap, name);
}
}
builder.add_file_edits(ctx.file_id(), edit);
},
)
}
Expand Down
96 changes: 95 additions & 1 deletion src/tools/rust-analyzer/crates/ide-db/src/source_change.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ use crate::{assists::Command, SnippetCap};
use base_db::AnchoredPathBuf;
use itertools::Itertools;
use nohash_hasher::IntMap;
use rustc_hash::FxHashMap;
use span::FileId;
use stdx::never;
use syntax::{
algo, AstNode, SyntaxElement, SyntaxNode, SyntaxNodePtr, SyntaxToken, TextRange, TextSize,
algo,
syntax_editor::{SyntaxAnnotation, SyntaxEditor},
AstNode, SyntaxElement, SyntaxNode, SyntaxNodePtr, SyntaxToken, TextRange, TextSize,
};
use text_edit::{TextEdit, TextEditBuilder};

Expand Down Expand Up @@ -197,6 +200,11 @@ pub struct SourceChangeBuilder {
pub source_change: SourceChange,
pub command: Option<Command>,

/// Keeps track of all edits performed on each file
pub file_editors: FxHashMap<FileId, SyntaxEditor>,
/// Keeps track of which annotations correspond to which snippets
pub snippet_annotations: Vec<(AnnotationSnippet, SyntaxAnnotation)>,

/// Maps the original, immutable `SyntaxNode` to a `clone_for_update` twin.
pub mutated_tree: Option<TreeMutator>,
/// Keeps track of where to place snippets
Expand Down Expand Up @@ -238,6 +246,8 @@ impl SourceChangeBuilder {
file_id: file_id.into(),
source_change: SourceChange::default(),
command: None,
file_editors: FxHashMap::default(),
snippet_annotations: vec![],
mutated_tree: None,
snippet_builder: None,
}
Expand All @@ -248,7 +258,75 @@ impl SourceChangeBuilder {
self.file_id = file_id.into();
}

pub fn make_editor(&self, node: &SyntaxNode) -> SyntaxEditor {
SyntaxEditor::new(node.ancestors().last().unwrap_or_else(|| node.clone()))
}

pub fn add_file_edits(&mut self, file_id: impl Into<FileId>, edit: SyntaxEditor) {
match self.file_editors.entry(file_id.into()) {
Entry::Occupied(mut entry) => entry.get_mut().merge(edit),
Entry::Vacant(entry) => {
entry.insert(edit);
}
}
}

pub fn make_placeholder_snippet(&mut self, _cap: SnippetCap) -> SyntaxAnnotation {
self.add_snippet_annotation(AnnotationSnippet::Over)
}

pub fn make_tabstop_before(&mut self, _cap: SnippetCap) -> SyntaxAnnotation {
self.add_snippet_annotation(AnnotationSnippet::Before)
}

pub fn make_tabstop_after(&mut self, _cap: SnippetCap) -> SyntaxAnnotation {
self.add_snippet_annotation(AnnotationSnippet::After)
}

fn commit(&mut self) {
// Apply syntax editor edits
for (file_id, editor) in mem::take(&mut self.file_editors) {
let edit_result = editor.finish();
let mut snippet_edit = vec![];

// Find snippet edits
for (kind, annotation) in &self.snippet_annotations {
let elements = edit_result.find_annotation(*annotation);

let snippet = match (kind, elements) {
(AnnotationSnippet::Before, [element]) => {
Snippet::Tabstop(element.text_range().start())
}
(AnnotationSnippet::After, [element]) => {
Snippet::Tabstop(element.text_range().end())
}
(AnnotationSnippet::Over, [element]) => {
Snippet::Placeholder(element.text_range())
}
(AnnotationSnippet::Over, elements) if !elements.is_empty() => {
Snippet::PlaceholderGroup(
elements.iter().map(|it| it.text_range()).collect(),
)
}
_ => continue,
};

snippet_edit.push(snippet);
}

let mut edit = TextEdit::builder();
algo::diff(edit_result.old_root(), edit_result.new_root()).into_text_edit(&mut edit);
let edit = edit.finish();

let snippet_edit =
if !snippet_edit.is_empty() { Some(SnippetEdit::new(snippet_edit)) } else { None };

if !edit.is_empty() || snippet_edit.is_some() {
self.source_change.insert_source_and_snippet_edit(file_id, edit, snippet_edit);
}
}

// Apply mutable edits
let snippet_edit = self.snippet_builder.take().map(|builder| {
SnippetEdit::new(
builder.places.into_iter().flat_map(PlaceSnippet::finalize_position).collect(),
Expand Down Expand Up @@ -369,6 +447,13 @@ impl SourceChangeBuilder {
self.source_change.is_snippet = true;
}

fn add_snippet_annotation(&mut self, kind: AnnotationSnippet) -> SyntaxAnnotation {
let annotation = SyntaxAnnotation::new();
self.snippet_annotations.push((kind, annotation));
self.source_change.is_snippet = true;
annotation
}

pub fn finish(mut self) -> SourceChange {
self.commit();

Expand Down Expand Up @@ -416,6 +501,15 @@ pub enum Snippet {
PlaceholderGroup(Vec<TextRange>),
}

pub enum AnnotationSnippet {
/// Place a tabstop before an element
Before,
/// Place a tabstop before an element
After,
/// Place a placeholder snippet in place of the element(s)
Over,
}

enum PlaceSnippet {
/// Place a tabstop before an element
Before(SyntaxElement),
Expand Down

0 comments on commit c47a656

Please sign in to comment.