2019-10-27 09:04:06 +00:00
|
|
|
//! This module defines `AssistCtx` -- the API surface that is exposed to assists.
|
2019-11-28 09:50:26 +00:00
|
|
|
use hir::{db::HirDatabase, InFile, SourceAnalyzer};
|
2019-02-03 18:26:35 +00:00
|
|
|
use ra_db::FileRange;
|
2019-07-04 20:05:17 +00:00
|
|
|
use ra_fmt::{leading_indent, reindent};
|
2019-02-03 18:26:35 +00:00
|
|
|
use ra_syntax::{
|
2019-09-28 17:09:57 +00:00
|
|
|
algo::{self, find_covering_element, find_node_at_offset},
|
2019-10-27 08:45:59 +00:00
|
|
|
AstNode, SourceFile, SyntaxElement, SyntaxKind, SyntaxNode, SyntaxToken, TextRange, TextUnit,
|
2019-07-21 10:28:58 +00:00
|
|
|
TokenAtOffset,
|
2019-02-03 18:26:35 +00:00
|
|
|
};
|
2019-07-04 20:05:17 +00:00
|
|
|
use ra_text_edit::TextEditBuilder;
|
2019-02-03 18:26:35 +00:00
|
|
|
|
2019-07-04 20:05:17 +00:00
|
|
|
use crate::{AssistAction, AssistId, AssistLabel};
|
2019-02-03 18:26:35 +00:00
|
|
|
|
2019-02-11 17:07:21 +00:00
|
|
|
#[derive(Clone, Debug)]
|
2019-02-03 18:26:35 +00:00
|
|
|
pub(crate) enum Assist {
|
2019-10-27 15:22:14 +00:00
|
|
|
Unresolved { label: AssistLabel },
|
|
|
|
Resolved { label: AssistLabel, action: AssistAction },
|
2019-02-03 18:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// `AssistCtx` allows to apply an assist or check if it could be applied.
|
|
|
|
///
|
2019-02-08 21:43:13 +00:00
|
|
|
/// Assists use a somewhat over-engineered approach, given the current needs. The
|
2019-02-03 18:26:35 +00:00
|
|
|
/// 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
|
|
|
|
/// 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.
|
|
|
|
/// * 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,
|
|
|
|
/// `should_compute_edit`. It first check if an edit is applicable (potentially
|
|
|
|
/// computing info required to compute the actual edit). If it is applicable,
|
|
|
|
/// and `should_compute_edit` is `true`, it then computes the actual edit.
|
|
|
|
///
|
|
|
|
/// So, to implement the original assists workflow, we can first apply each edit
|
|
|
|
/// with `should_compute_edit = false`, and then applying the selected edit
|
|
|
|
/// again, with `should_compute_edit = true` this time.
|
|
|
|
///
|
|
|
|
/// 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 :-)#[derive(Debug, Clone)]
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub(crate) struct AssistCtx<'a, DB> {
|
|
|
|
pub(crate) db: &'a DB,
|
|
|
|
pub(crate) frange: FileRange,
|
2019-07-19 08:24:41 +00:00
|
|
|
source_file: SourceFile,
|
2019-02-03 18:26:35 +00:00
|
|
|
should_compute_edit: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, DB> Clone for AssistCtx<'a, DB> {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
AssistCtx {
|
|
|
|
db: self.db,
|
|
|
|
frange: self.frange,
|
2019-07-19 08:24:41 +00:00
|
|
|
source_file: self.source_file.clone(),
|
2019-02-03 18:26:35 +00:00
|
|
|
should_compute_edit: self.should_compute_edit,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, DB: HirDatabase> AssistCtx<'a, DB> {
|
|
|
|
pub(crate) fn with_ctx<F, T>(db: &DB, frange: FileRange, should_compute_edit: bool, f: F) -> T
|
|
|
|
where
|
|
|
|
F: FnOnce(AssistCtx<DB>) -> T,
|
|
|
|
{
|
2019-07-12 16:41:13 +00:00
|
|
|
let parse = db.parse(frange.file_id);
|
2019-02-11 17:07:21 +00:00
|
|
|
|
2019-10-27 15:22:14 +00:00
|
|
|
let ctx = AssistCtx { db, frange, source_file: parse.tree(), should_compute_edit };
|
2019-02-03 18:26:35 +00:00
|
|
|
f(ctx)
|
|
|
|
}
|
|
|
|
|
2019-10-27 14:35:37 +00:00
|
|
|
pub(crate) fn add_assist(
|
2019-10-27 15:22:14 +00:00
|
|
|
self,
|
2019-02-24 10:53:35 +00:00
|
|
|
id: AssistId,
|
2019-02-03 18:26:35 +00:00
|
|
|
label: impl Into<String>,
|
|
|
|
f: impl FnOnce(&mut AssistBuilder),
|
2019-10-27 14:35:37 +00:00
|
|
|
) -> Option<Assist> {
|
2019-02-24 10:53:35 +00:00
|
|
|
let label = AssistLabel { label: label.into(), id };
|
2019-10-27 15:22:14 +00:00
|
|
|
let assist = if self.should_compute_edit {
|
|
|
|
let action = {
|
|
|
|
let mut edit = AssistBuilder::default();
|
|
|
|
f(&mut edit);
|
|
|
|
edit.build()
|
|
|
|
};
|
|
|
|
Assist::Resolved { label, action }
|
|
|
|
} else {
|
|
|
|
Assist::Unresolved { label }
|
|
|
|
};
|
|
|
|
|
|
|
|
Some(assist)
|
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> {
|
2019-07-21 10:28:58 +00:00
|
|
|
self.source_file.syntax().token_at_offset(self.frange.range.start())
|
2019-02-03 18:26:35 +00:00
|
|
|
}
|
|
|
|
|
2019-10-27 08:45:59 +00:00
|
|
|
pub(crate) fn find_token_at_offset(&self, kind: SyntaxKind) -> Option<SyntaxToken> {
|
|
|
|
self.token_at_offset().find(|it| it.kind() == kind)
|
|
|
|
}
|
|
|
|
|
2019-10-27 08:48:40 +00:00
|
|
|
pub(crate) fn find_node_at_offset<N: AstNode>(&self) -> Option<N> {
|
2019-02-03 18:26:35 +00:00
|
|
|
find_node_at_offset(self.source_file.syntax(), self.frange.range.start())
|
|
|
|
}
|
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
|
|
|
}
|
2019-11-15 22:14:56 +00:00
|
|
|
pub(crate) fn source_analyzer(
|
|
|
|
&self,
|
|
|
|
node: &SyntaxNode,
|
|
|
|
offset: Option<TextUnit>,
|
|
|
|
) -> SourceAnalyzer {
|
2019-11-28 09:50:26 +00:00
|
|
|
SourceAnalyzer::new(self.db, InFile::new(self.frange.file_id.into(), node), offset)
|
2019-11-15 22:14:56 +00:00
|
|
|
}
|
2019-03-25 17:02:06 +00:00
|
|
|
|
2019-07-19 08:24:41 +00:00
|
|
|
pub(crate) fn covering_node_for_range(&self, range: TextRange) -> SyntaxElement {
|
2019-03-25 17:02:06 +00:00
|
|
|
find_covering_element(self.source_file.syntax(), range)
|
|
|
|
}
|
2019-02-03 18:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub(crate) struct AssistBuilder {
|
|
|
|
edit: TextEditBuilder,
|
|
|
|
cursor_position: Option<TextUnit>,
|
2019-02-08 21:43:13 +00:00
|
|
|
target: Option<TextRange>,
|
2019-02-03 18:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AssistBuilder {
|
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())
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-07-29 12:43:34 +00:00
|
|
|
/// Remove specified `range` of text.
|
2019-02-03 18:26:35 +00:00
|
|
|
#[allow(unused)]
|
|
|
|
pub(crate) fn delete(&mut self, range: TextRange) {
|
|
|
|
self.edit.delete(range)
|
|
|
|
}
|
|
|
|
|
2019-07-29 12:43:34 +00:00
|
|
|
/// Append specified `text` at the given `offset`
|
2019-02-03 18:26:35 +00:00
|
|
|
pub(crate) fn insert(&mut self, offset: TextUnit, text: impl Into<String>) {
|
|
|
|
self.edit.insert(offset, text.into())
|
|
|
|
}
|
|
|
|
|
2019-07-29 12:43:34 +00:00
|
|
|
/// Specify desired position of the cursor after the assist is applied.
|
2019-02-03 18:26:35 +00:00
|
|
|
pub(crate) fn set_cursor(&mut self, offset: TextUnit) {
|
|
|
|
self.cursor_position = Some(offset)
|
|
|
|
}
|
|
|
|
|
2019-07-29 12:43:34 +00:00
|
|
|
/// Specify that the assist should be active withing the `target` range.
|
|
|
|
///
|
|
|
|
/// Target ranges are used to sort assists: the smaller the target range,
|
|
|
|
/// the more specific assist is, and so it should be sorted first.
|
2019-02-08 21:43:13 +00:00
|
|
|
pub(crate) fn target(&mut self, target: TextRange) {
|
|
|
|
self.target = Some(target)
|
|
|
|
}
|
|
|
|
|
2019-07-29 12:43:34 +00:00
|
|
|
/// Get access to the raw `TextEditBuilder`.
|
2019-04-21 19:13:52 +00:00
|
|
|
pub(crate) fn text_edit_builder(&mut self) -> &mut TextEditBuilder {
|
|
|
|
&mut self.edit
|
|
|
|
}
|
|
|
|
|
2019-09-28 17:09:57 +00:00
|
|
|
pub(crate) fn replace_ast<N: AstNode>(&mut self, old: N, new: N) {
|
2019-09-30 06:27:26 +00:00
|
|
|
algo::diff(old.syntax(), new.syntax()).into_text_edit(&mut self.edit)
|
2019-09-28 17:09:57 +00:00
|
|
|
}
|
|
|
|
|
2019-02-03 18:26:35 +00:00
|
|
|
fn build(self) -> AssistAction {
|
2019-02-08 21:43:13 +00:00
|
|
|
AssistAction {
|
|
|
|
edit: self.edit.finish(),
|
|
|
|
cursor_position: self.cursor_position,
|
|
|
|
target: self.target,
|
|
|
|
}
|
2019-02-03 18:26:35 +00:00
|
|
|
}
|
|
|
|
}
|