rust-analyzer/crates/ra_assists/src/assist_context.rs

234 lines
8.4 KiB
Rust
Raw Normal View History

//! See `AssistContext`
use algo::find_covering_element;
use hir::Semantics;
2020-05-06 13:26:40 +00:00
use ra_db::{FileId, FileRange};
use ra_fmt::{leading_indent, reindent};
2020-05-06 13:26:40 +00:00
use ra_ide_db::{
source_change::{SingleFileChange, SourceChange},
RootDatabase,
};
2019-02-03 18:26:35 +00:00
use ra_syntax::{
algo::{self, find_node_at_offset, SyntaxRewriter},
2020-04-24 21:40:41 +00:00
AstNode, SourceFile, SyntaxElement, SyntaxKind, SyntaxNode, SyntaxToken, TextRange, TextSize,
2019-07-21 10:28:58 +00:00
TokenAtOffset,
2019-02-03 18:26:35 +00:00
};
use ra_text_edit::TextEditBuilder;
2019-02-03 18:26:35 +00:00
2020-05-07 15:09:59 +00:00
use crate::{Assist, AssistId, GroupLabel, ResolvedAssist};
2019-02-03 18:26:35 +00:00
/// `AssistContext` allows to apply an assist or check if it could be applied.
2019-02-03 18:26:35 +00:00
///
/// Assists use a somewhat over-engineered approach, given the current needs.
/// The assists workflow consists of two phases. In the first phase, a user asks
/// for the list of available assists. In the second phase, the user picks a
2019-02-03 18:26:35 +00:00
/// particular assist and it gets applied.
///
/// There are two peculiarities here:
///
/// * first, we ideally avoid computing more things then necessary to answer "is
/// assist applicable" in the first phase.
2019-02-03 18:26:35 +00:00
/// * second, when we are applying assist, we don't have a guarantee that there
/// weren't any changes between the point when user asked for assists and when
/// they applied a particular assist. So, when applying assist, we need to do
/// all the checks from scratch.
///
/// To avoid repeating the same code twice for both "check" and "apply"
/// functions, we use an approach reminiscent of that of Django's function based
/// views dealing with forms. Each assist receives a runtime parameter,
/// `resolve`. It first check if an edit is applicable (potentially computing
/// info required to compute the actual edit). If it is applicable, and
/// `resolve` is `true`, it then computes the actual edit.
2019-02-03 18:26:35 +00:00
///
/// So, to implement the original assists workflow, we can first apply each edit
/// with `resolve = false`, and then applying the selected edit again, with
/// `resolve = true` this time.
2019-02-03 18:26:35 +00:00
///
/// Note, however, that we don't actually use such two-phase logic at the
/// moment, because the LSP API is pretty awkward in this place, and it's much
/// easier to just compute the edit eagerly :-)
pub(crate) struct AssistContext<'a> {
pub(crate) sema: Semantics<'a, RootDatabase>,
pub(super) db: &'a RootDatabase,
2019-02-03 18:26:35 +00:00
pub(crate) frange: FileRange,
2019-07-19 08:24:41 +00:00
source_file: SourceFile,
2019-02-03 18:26:35 +00:00
}
impl<'a> AssistContext<'a> {
pub fn new(sema: Semantics<'a, RootDatabase>, frange: FileRange) -> AssistContext<'a> {
let source_file = sema.parse(frange.file_id);
let db = sema.db;
AssistContext { sema, db, frange, source_file }
2019-02-03 18:26:35 +00:00
}
// NB, this ignores active selection.
pub(crate) fn offset(&self) -> TextSize {
self.frange.range.start()
2019-02-03 18:26:35 +00:00
}
2019-07-19 08:24:41 +00:00
pub(crate) fn token_at_offset(&self) -> TokenAtOffset<SyntaxToken> {
self.source_file.syntax().token_at_offset(self.offset())
2019-02-03 18:26:35 +00:00
}
pub(crate) fn find_token_at_offset(&self, kind: SyntaxKind) -> Option<SyntaxToken> {
self.token_at_offset().find(|it| it.kind() == kind)
}
pub(crate) fn find_node_at_offset<N: AstNode>(&self) -> Option<N> {
find_node_at_offset(self.source_file.syntax(), self.offset())
2019-02-03 18:26:35 +00:00
}
2020-05-02 19:24:55 +00:00
pub(crate) fn find_node_at_offset_with_descend<N: AstNode>(&self) -> Option<N> {
2020-05-07 15:32:01 +00:00
self.sema.find_node_at_offset_with_descend(self.source_file.syntax(), self.offset())
2020-05-02 19:24:55 +00:00
}
2019-07-19 08:24:41 +00:00
pub(crate) fn covering_element(&self) -> SyntaxElement {
2019-03-30 10:25:53 +00:00
find_covering_element(self.source_file.syntax(), self.frange.range)
2019-02-03 18:26:35 +00:00
}
// FIXME: remove
2019-07-19 08:24:41 +00:00
pub(crate) fn covering_node_for_range(&self, range: TextRange) -> SyntaxElement {
find_covering_element(self.source_file.syntax(), range)
}
2019-02-03 18:26:35 +00:00
}
pub(crate) struct Assists {
resolve: bool,
file: FileId,
2020-05-07 15:09:59 +00:00
buf: Vec<(Assist, Option<SourceChange>)>,
2020-02-09 13:30:27 +00:00
}
impl Assists {
pub(crate) fn new_resolved(ctx: &AssistContext) -> Assists {
Assists { resolve: true, file: ctx.frange.file_id, buf: Vec::new() }
}
pub(crate) fn new_unresolved(ctx: &AssistContext) -> Assists {
Assists { resolve: false, file: ctx.frange.file_id, buf: Vec::new() }
}
2020-05-07 15:09:59 +00:00
pub(crate) fn finish_unresolved(self) -> Vec<Assist> {
assert!(!self.resolve);
self.finish()
.into_iter()
.map(|(label, edit)| {
assert!(edit.is_none());
label
})
.collect()
}
pub(crate) fn finish_resolved(self) -> Vec<ResolvedAssist> {
assert!(self.resolve);
self.finish()
.into_iter()
2020-05-07 15:09:59 +00:00
.map(|(label, edit)| ResolvedAssist { assist: label, source_change: edit.unwrap() })
.collect()
}
pub(crate) fn add(
2020-02-09 13:30:27 +00:00
&mut self,
id: AssistId,
label: impl Into<String>,
target: TextRange,
f: impl FnOnce(&mut AssistBuilder),
) -> Option<()> {
2020-05-07 15:09:59 +00:00
let label = Assist::new(id, label.into(), None, target);
self.add_impl(label, f)
}
pub(crate) fn add_group(
&mut self,
group: &GroupLabel,
id: AssistId,
label: impl Into<String>,
target: TextRange,
f: impl FnOnce(&mut AssistBuilder),
) -> Option<()> {
2020-05-07 15:09:59 +00:00
let label = Assist::new(id, label.into(), Some(group.clone()), target);
self.add_impl(label, f)
}
2020-05-07 15:09:59 +00:00
fn add_impl(&mut self, label: Assist, f: impl FnOnce(&mut AssistBuilder)) -> Option<()> {
2020-05-06 13:26:40 +00:00
let change_label = label.label.clone();
let source_change = if self.resolve {
let mut builder = AssistBuilder::new(self.file);
f(&mut builder);
Some(builder.finish(change_label))
} else {
None
2020-02-09 13:30:27 +00:00
};
self.buf.push((label, source_change));
Some(())
2020-02-09 13:30:27 +00:00
}
2020-05-07 15:09:59 +00:00
fn finish(mut self) -> Vec<(Assist, Option<SourceChange>)> {
self.buf.sort_by_key(|(label, _edit)| label.target.len());
self.buf
2020-02-09 13:30:27 +00:00
}
}
pub(crate) struct AssistBuilder {
2019-02-03 18:26:35 +00:00
edit: TextEditBuilder,
2020-04-24 21:40:41 +00:00
cursor_position: Option<TextSize>,
2020-05-06 14:39:11 +00:00
file: FileId,
2019-02-03 18:26:35 +00:00
}
impl AssistBuilder {
pub(crate) fn new(file: FileId) -> AssistBuilder {
AssistBuilder { edit: TextEditBuilder::default(), cursor_position: None, file }
2020-05-02 19:24:55 +00:00
}
/// Remove specified `range` of text.
pub(crate) fn delete(&mut self, range: TextRange) {
self.edit.delete(range)
}
/// Append specified `text` at the given `offset`
pub(crate) fn insert(&mut self, offset: TextSize, text: impl Into<String>) {
self.edit.insert(offset, text.into())
2020-05-02 19:24:55 +00:00
}
2019-07-29 12:43:34 +00:00
/// Replaces specified `range` of text with a given string.
2019-02-03 18:26:35 +00:00
pub(crate) fn replace(&mut self, range: TextRange, replace_with: impl Into<String>) {
self.edit.replace(range, replace_with.into())
}
pub(crate) fn replace_ast<N: AstNode>(&mut self, old: N, new: N) {
algo::diff(old.syntax(), new.syntax()).into_text_edit(&mut self.edit)
}
2019-07-29 12:43:34 +00:00
/// Replaces specified `node` of text with a given string, reindenting the
/// string to maintain `node`'s existing indent.
2019-10-12 19:07:47 +00:00
// FIXME: remove in favor of ra_syntax::edit::IndentLevel::increase_indent
2019-02-03 18:26:35 +00:00
pub(crate) fn replace_node_and_indent(
&mut self,
node: &SyntaxNode,
replace_with: impl Into<String>,
) {
let mut replace_with = replace_with.into();
if let Some(indent) = leading_indent(node) {
2019-07-19 08:24:41 +00:00
replace_with = reindent(&replace_with, &indent)
2019-02-03 18:26:35 +00:00
}
2019-07-20 09:58:27 +00:00
self.replace(node.text_range(), replace_with)
2019-02-03 18:26:35 +00:00
}
pub(crate) fn rewrite(&mut self, rewriter: SyntaxRewriter) {
let node = rewriter.rewrite_root().unwrap();
let new = rewriter.rewrite(&node);
algo::diff(&node, &new).into_text_edit(&mut self.edit)
2019-02-03 18:26:35 +00:00
}
2019-07-29 12:43:34 +00:00
/// Specify desired position of the cursor after the assist is applied.
2020-04-24 21:40:41 +00:00
pub(crate) fn set_cursor(&mut self, offset: TextSize) {
2019-02-03 18:26:35 +00:00
self.cursor_position = Some(offset)
}
// FIXME: better API
pub(crate) fn set_file(&mut self, assist_file: FileId) {
self.file = assist_file;
}
2019-02-03 18:26:35 +00:00
// FIXME: kill this API
2019-07-29 12:43:34 +00:00
/// Get access to the raw `TextEditBuilder`.
pub(crate) fn text_edit_builder(&mut self) -> &mut TextEditBuilder {
&mut self.edit
}
fn finish(self, change_label: String) -> SourceChange {
2020-05-06 11:08:37 +00:00
let edit = self.edit.finish();
if edit.is_empty() && self.cursor_position.is_none() {
panic!("Only call `add_assist` if the assist can be applied")
2019-02-08 21:43:13 +00:00
}
2020-05-06 13:26:40 +00:00
SingleFileChange { label: change_label, edit, cursor_position: self.cursor_position }
2020-05-06 14:39:11 +00:00
.into_source_change(self.file)
2019-02-03 18:26:35 +00:00
}
}