2020-05-06 11:45:35 -05:00
|
|
|
//! See `AssistContext`
|
|
|
|
|
2020-06-08 17:01:40 -05:00
|
|
|
use std::mem;
|
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
use algo::find_covering_element;
|
2020-02-18 11:35:10 -06:00
|
|
|
use hir::Semantics;
|
2021-01-06 11:43:46 -06:00
|
|
|
use ide_db::{
|
|
|
|
base_db::{AnchoredPathBuf, FileId, FileRange},
|
|
|
|
helpers::SnippetCap,
|
|
|
|
};
|
2020-08-13 09:39:16 -05:00
|
|
|
use ide_db::{
|
2020-08-18 09:41:21 -05:00
|
|
|
label::Label,
|
2020-12-07 10:17:13 -06:00
|
|
|
source_change::{FileSystemEdit, SourceChange, SourceFileEdit},
|
2020-05-06 08:26:40 -05:00
|
|
|
RootDatabase,
|
|
|
|
};
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{
|
2020-05-06 11:45:35 -05:00
|
|
|
algo::{self, find_node_at_offset, SyntaxRewriter},
|
2020-11-06 15:21:56 -06:00
|
|
|
AstNode, AstToken, SourceFile, SyntaxElement, SyntaxKind, SyntaxToken, TextRange, TextSize,
|
2019-07-21 05:28:58 -05:00
|
|
|
TokenAtOffset,
|
2019-02-03 12:26:35 -06:00
|
|
|
};
|
2020-08-12 10:03:06 -05:00
|
|
|
use text_edit::{TextEdit, TextEditBuilder};
|
2019-02-03 12:26:35 -06:00
|
|
|
|
2021-01-06 11:43:46 -06:00
|
|
|
use crate::{assist_config::AssistConfig, Assist, AssistId, AssistKind, GroupLabel};
|
2019-02-03 12:26:35 -06:00
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
/// `AssistContext` allows to apply an assist or check if it could be applied.
|
2019-02-03 12:26:35 -06:00
|
|
|
///
|
2020-05-06 11:45:35 -05: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 12:26:35 -06:00
|
|
|
/// particular assist and it gets applied.
|
|
|
|
///
|
|
|
|
/// There are two peculiarities here:
|
|
|
|
///
|
2020-05-06 11:45:35 -05:00
|
|
|
/// * first, we ideally avoid computing more things then necessary to answer "is
|
|
|
|
/// assist applicable" in the first phase.
|
2019-02-03 12:26:35 -06: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,
|
2020-05-06 11:45:35 -05:00
|
|
|
/// `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 12:26:35 -06:00
|
|
|
///
|
|
|
|
/// So, to implement the original assists workflow, we can first apply each edit
|
2020-05-06 11:45:35 -05:00
|
|
|
/// with `resolve = false`, and then applying the selected edit again, with
|
|
|
|
/// `resolve = true` this time.
|
2019-02-03 12:26:35 -06: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
|
2019-12-24 09:44:32 -06:00
|
|
|
/// easier to just compute the edit eagerly :-)
|
2020-05-06 11:45:35 -05:00
|
|
|
pub(crate) struct AssistContext<'a> {
|
2020-05-17 05:09:53 -05:00
|
|
|
pub(crate) config: &'a AssistConfig,
|
2020-05-06 11:45:35 -05:00
|
|
|
pub(crate) sema: Semantics<'a, RootDatabase>,
|
2019-02-03 12:26:35 -06:00
|
|
|
pub(crate) frange: FileRange,
|
2019-07-19 03:24:41 -05:00
|
|
|
source_file: SourceFile,
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
impl<'a> AssistContext<'a> {
|
2020-05-17 05:09:53 -05:00
|
|
|
pub(crate) fn new(
|
|
|
|
sema: Semantics<'a, RootDatabase>,
|
|
|
|
config: &'a AssistConfig,
|
|
|
|
frange: FileRange,
|
|
|
|
) -> AssistContext<'a> {
|
2020-02-18 11:35:10 -06:00
|
|
|
let source_file = sema.parse(frange.file_id);
|
2020-07-15 08:45:30 -05:00
|
|
|
AssistContext { config, sema, frange, source_file }
|
2020-07-01 02:14:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn db(&self) -> &RootDatabase {
|
|
|
|
self.sema.db
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
// NB, this ignores active selection.
|
|
|
|
pub(crate) fn offset(&self) -> TextSize {
|
|
|
|
self.frange.range.start()
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
|
|
|
|
2019-07-19 03:24:41 -05:00
|
|
|
pub(crate) fn token_at_offset(&self) -> TokenAtOffset<SyntaxToken> {
|
2020-05-06 11:45:35 -05:00
|
|
|
self.source_file.syntax().token_at_offset(self.offset())
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
2020-11-06 15:21:56 -06:00
|
|
|
pub(crate) fn find_token_syntax_at_offset(&self, kind: SyntaxKind) -> Option<SyntaxToken> {
|
2019-10-27 03:45:59 -05:00
|
|
|
self.token_at_offset().find(|it| it.kind() == kind)
|
|
|
|
}
|
2020-11-06 15:21:56 -06:00
|
|
|
pub(crate) fn find_token_at_offset<T: AstToken>(&self) -> Option<T> {
|
|
|
|
self.token_at_offset().find_map(T::cast)
|
|
|
|
}
|
2019-10-27 03:48:40 -05:00
|
|
|
pub(crate) fn find_node_at_offset<N: AstNode>(&self) -> Option<N> {
|
2020-05-06 11:45:35 -05:00
|
|
|
find_node_at_offset(self.source_file.syntax(), self.offset())
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
2020-05-02 14:24:55 -05:00
|
|
|
pub(crate) fn find_node_at_offset_with_descend<N: AstNode>(&self) -> Option<N> {
|
2020-05-07 10:32:01 -05:00
|
|
|
self.sema.find_node_at_offset_with_descend(self.source_file.syntax(), self.offset())
|
2020-05-02 14:24:55 -05:00
|
|
|
}
|
2019-07-19 03:24:41 -05:00
|
|
|
pub(crate) fn covering_element(&self) -> SyntaxElement {
|
2019-03-30 05:25:53 -05:00
|
|
|
find_covering_element(self.source_file.syntax(), self.frange.range)
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
2020-05-06 11:45:35 -05:00
|
|
|
// FIXME: remove
|
2019-07-19 03:24:41 -05:00
|
|
|
pub(crate) fn covering_node_for_range(&self, range: TextRange) -> SyntaxElement {
|
2019-03-25 12:02:06 -05:00
|
|
|
find_covering_element(self.source_file.syntax(), range)
|
|
|
|
}
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
pub(crate) struct Assists {
|
|
|
|
resolve: bool,
|
|
|
|
file: FileId,
|
2020-12-26 05:11:42 -06:00
|
|
|
buf: Vec<Assist>,
|
2020-07-13 16:41:47 -05:00
|
|
|
allowed: Option<Vec<AssistKind>>,
|
2020-02-09 07:30:27 -06:00
|
|
|
}
|
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
impl Assists {
|
2020-12-26 05:11:42 -06:00
|
|
|
pub(crate) fn new(ctx: &AssistContext, resolve: bool) -> Assists {
|
2020-07-13 16:41:47 -05:00
|
|
|
Assists {
|
2020-12-26 05:11:42 -06:00
|
|
|
resolve,
|
2020-07-13 16:41:47 -05:00
|
|
|
file: ctx.frange.file_id,
|
|
|
|
buf: Vec::new(),
|
2020-07-15 08:45:30 -05:00
|
|
|
allowed: ctx.config.allowed.clone(),
|
2020-07-13 16:41:47 -05:00
|
|
|
}
|
2020-05-06 11:45:35 -05:00
|
|
|
}
|
2020-07-13 16:41:47 -05:00
|
|
|
|
2020-12-26 05:11:42 -06:00
|
|
|
pub(crate) fn finish(mut self) -> Vec<Assist> {
|
|
|
|
self.buf.sort_by_key(|assist| assist.target.len());
|
|
|
|
self.buf
|
2020-05-06 11:45:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn add(
|
2020-02-09 07:30:27 -06:00
|
|
|
&mut self,
|
|
|
|
id: AssistId,
|
|
|
|
label: impl Into<String>,
|
2020-05-06 05:51:28 -05:00
|
|
|
target: TextRange,
|
2020-05-06 11:45:35 -05:00
|
|
|
f: impl FnOnce(&mut AssistBuilder),
|
|
|
|
) -> Option<()> {
|
2020-07-13 16:41:47 -05:00
|
|
|
if !self.is_allowed(&id) {
|
|
|
|
return None;
|
|
|
|
}
|
2020-08-18 09:41:21 -05:00
|
|
|
let label = Label::new(label.into());
|
2020-12-26 05:11:42 -06:00
|
|
|
let assist = Assist { id, label, group: None, target, source_change: None };
|
2020-08-18 09:41:21 -05:00
|
|
|
self.add_impl(assist, f)
|
2020-05-06 11:45:35 -05:00
|
|
|
}
|
2020-07-13 16:41:47 -05:00
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
pub(crate) fn add_group(
|
|
|
|
&mut self,
|
|
|
|
group: &GroupLabel,
|
|
|
|
id: AssistId,
|
|
|
|
label: impl Into<String>,
|
|
|
|
target: TextRange,
|
|
|
|
f: impl FnOnce(&mut AssistBuilder),
|
|
|
|
) -> Option<()> {
|
2020-07-13 16:41:47 -05:00
|
|
|
if !self.is_allowed(&id) {
|
|
|
|
return None;
|
|
|
|
}
|
2020-08-18 09:41:21 -05:00
|
|
|
let label = Label::new(label.into());
|
2020-12-26 05:11:42 -06:00
|
|
|
let assist = Assist { id, label, group: Some(group.clone()), target, source_change: None };
|
2020-08-18 09:41:21 -05:00
|
|
|
self.add_impl(assist, f)
|
2020-05-06 11:45:35 -05:00
|
|
|
}
|
2020-07-13 16:41:47 -05:00
|
|
|
|
2020-12-26 05:11:42 -06:00
|
|
|
fn add_impl(&mut self, mut assist: Assist, f: impl FnOnce(&mut AssistBuilder)) -> Option<()> {
|
2020-05-06 11:45:35 -05:00
|
|
|
let source_change = if self.resolve {
|
|
|
|
let mut builder = AssistBuilder::new(self.file);
|
|
|
|
f(&mut builder);
|
2020-05-22 11:03:08 -05:00
|
|
|
Some(builder.finish())
|
2020-05-06 11:45:35 -05:00
|
|
|
} else {
|
|
|
|
None
|
2020-02-09 07:30:27 -06:00
|
|
|
};
|
2020-12-26 05:11:42 -06:00
|
|
|
assist.source_change = source_change.clone();
|
2020-02-09 07:30:27 -06:00
|
|
|
|
2020-12-26 05:11:42 -06:00
|
|
|
self.buf.push(assist);
|
2020-05-06 11:45:35 -05:00
|
|
|
Some(())
|
2020-02-09 07:30:27 -06:00
|
|
|
}
|
|
|
|
|
2020-07-13 16:41:47 -05:00
|
|
|
fn is_allowed(&self, id: &AssistId) -> bool {
|
|
|
|
match &self.allowed {
|
|
|
|
Some(allowed) => allowed.iter().any(|kind| kind.contains(id.1)),
|
|
|
|
None => true,
|
|
|
|
}
|
|
|
|
}
|
2020-02-09 07:30:27 -06:00
|
|
|
}
|
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
pub(crate) struct AssistBuilder {
|
2019-02-03 12:26:35 -06:00
|
|
|
edit: TextEditBuilder,
|
2020-06-08 17:01:40 -05:00
|
|
|
file_id: FileId,
|
2020-05-17 05:09:53 -05:00
|
|
|
is_snippet: bool,
|
2020-11-04 05:34:33 -06:00
|
|
|
source_file_edits: Vec<SourceFileEdit>,
|
2020-12-07 10:17:13 -06:00
|
|
|
file_system_edits: Vec<FileSystemEdit>,
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
impl AssistBuilder {
|
2020-06-08 17:01:40 -05:00
|
|
|
pub(crate) fn new(file_id: FileId) -> AssistBuilder {
|
|
|
|
AssistBuilder {
|
2020-08-12 09:58:56 -05:00
|
|
|
edit: TextEdit::builder(),
|
2020-06-08 17:01:40 -05:00
|
|
|
file_id,
|
|
|
|
is_snippet: false,
|
2020-11-04 05:34:33 -06:00
|
|
|
source_file_edits: Vec::default(),
|
2020-12-07 10:17:13 -06:00
|
|
|
file_system_edits: Vec::default(),
|
2020-06-08 17:01:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn edit_file(&mut self, file_id: FileId) {
|
2020-11-04 05:34:33 -06:00
|
|
|
self.commit();
|
2020-06-08 17:01:40 -05:00
|
|
|
self.file_id = file_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn commit(&mut self) {
|
|
|
|
let edit = mem::take(&mut self.edit).finish();
|
|
|
|
if !edit.is_empty() {
|
2020-11-04 05:34:33 -06:00
|
|
|
match self.source_file_edits.binary_search_by_key(&self.file_id, |edit| edit.file_id) {
|
|
|
|
Ok(idx) => self.source_file_edits[idx]
|
|
|
|
.edit
|
|
|
|
.union(edit)
|
|
|
|
.expect("overlapping edits for same file"),
|
|
|
|
Err(idx) => self
|
|
|
|
.source_file_edits
|
|
|
|
.insert(idx, SourceFileEdit { file_id: self.file_id, edit }),
|
|
|
|
}
|
2020-06-08 17:01:40 -05:00
|
|
|
}
|
2020-05-02 14:24:55 -05:00
|
|
|
}
|
|
|
|
|
2020-05-06 11:45:35 -05: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 14:24:55 -05:00
|
|
|
}
|
2020-05-19 18:53:21 -05:00
|
|
|
/// Append specified `snippet` at the given `offset`
|
2020-05-17 05:09:53 -05:00
|
|
|
pub(crate) fn insert_snippet(
|
|
|
|
&mut self,
|
|
|
|
_cap: SnippetCap,
|
|
|
|
offset: TextSize,
|
2020-05-19 18:53:21 -05:00
|
|
|
snippet: impl Into<String>,
|
2020-05-17 05:09:53 -05:00
|
|
|
) {
|
|
|
|
self.is_snippet = true;
|
2020-05-19 18:53:21 -05:00
|
|
|
self.insert(offset, snippet);
|
2020-05-17 05:09:53 -05:00
|
|
|
}
|
2019-07-29 07:43:34 -05:00
|
|
|
/// Replaces specified `range` of text with a given string.
|
2019-02-03 12:26:35 -06:00
|
|
|
pub(crate) fn replace(&mut self, range: TextRange, replace_with: impl Into<String>) {
|
|
|
|
self.edit.replace(range, replace_with.into())
|
|
|
|
}
|
2020-05-19 18:53:21 -05:00
|
|
|
/// Replaces specified `range` of text with a given `snippet`.
|
|
|
|
pub(crate) fn replace_snippet(
|
|
|
|
&mut self,
|
|
|
|
_cap: SnippetCap,
|
|
|
|
range: TextRange,
|
|
|
|
snippet: impl Into<String>,
|
|
|
|
) {
|
|
|
|
self.is_snippet = true;
|
|
|
|
self.replace(range, snippet);
|
|
|
|
}
|
2020-05-06 11:45:35 -05:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
pub(crate) fn rewrite(&mut self, rewriter: SyntaxRewriter) {
|
2020-11-09 09:40:41 -06:00
|
|
|
if let Some(node) = rewriter.rewrite_root() {
|
|
|
|
let new = rewriter.rewrite(&node);
|
|
|
|
algo::diff(&node, &new).into_text_edit(&mut self.edit);
|
|
|
|
}
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
2020-12-07 10:17:13 -06:00
|
|
|
pub(crate) fn create_file(&mut self, dst: AnchoredPathBuf, content: impl Into<String>) {
|
2020-12-17 07:09:55 -06:00
|
|
|
let file_system_edit =
|
|
|
|
FileSystemEdit::CreateFile { dst: dst.clone(), initial_contents: content.into() };
|
2020-12-07 10:17:13 -06:00
|
|
|
self.file_system_edits.push(file_system_edit);
|
|
|
|
}
|
2019-02-03 12:26:35 -06:00
|
|
|
|
2020-06-08 17:01:40 -05:00
|
|
|
fn finish(mut self) -> SourceChange {
|
|
|
|
self.commit();
|
2020-11-04 05:34:33 -06:00
|
|
|
SourceChange {
|
|
|
|
source_file_edits: mem::take(&mut self.source_file_edits),
|
2020-12-07 10:17:13 -06:00
|
|
|
file_system_edits: mem::take(&mut self.file_system_edits),
|
2020-11-04 05:34:33 -06:00
|
|
|
is_snippet: self.is_snippet,
|
2020-05-17 05:09:53 -05:00
|
|
|
}
|
2019-02-03 12:26:35 -06:00
|
|
|
}
|
|
|
|
}
|