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

261 lines
8.8 KiB
Rust
Raw Normal View History

2019-10-27 09:04:06 +00:00
//! This module defines `AssistCtx` -- the API surface that is exposed to assists.
2020-02-06 15:58:57 +00:00
use hir::{InFile, SourceAnalyzer, SourceBinder};
use ra_db::{FileRange, SourceDatabase};
use ra_fmt::{leading_indent, reindent};
use ra_ide_db::RootDatabase;
2019-02-03 18:26:35 +00:00
use ra_syntax::{
algo::{self, find_covering_element, find_node_at_offset},
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
};
use ra_text_edit::TextEditBuilder;
2019-02-03 18:26:35 +00:00
use crate::{AssistAction, AssistId, AssistLabel, GroupLabel, ResolvedAssist};
2019-02-03 18:26:35 +00:00
#[derive(Clone, Debug)]
pub(crate) struct Assist(pub(crate) Vec<AssistInfo>);
#[derive(Clone, Debug)]
pub(crate) struct AssistInfo {
pub(crate) label: AssistLabel,
pub(crate) group_label: Option<GroupLabel>,
pub(crate) action: Option<AssistAction>,
}
impl AssistInfo {
fn new(label: AssistLabel) -> AssistInfo {
AssistInfo { label, group_label: None, action: None }
}
fn resolved(self, action: AssistAction) -> AssistInfo {
AssistInfo { action: Some(action), ..self }
}
fn with_group(self, group_label: GroupLabel) -> AssistInfo {
AssistInfo { group_label: Some(group_label), ..self }
}
pub(crate) fn into_resolved(self) -> Option<ResolvedAssist> {
let label = self.label;
let group_label = self.group_label;
self.action.map(|action| ResolvedAssist { label, group_label, action })
}
2019-02-03 18:26:35 +00:00
}
2020-02-07 14:53:31 +00:00
pub(crate) type AssistHandler = fn(AssistCtx) -> Option<Assist>;
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 :-)
2019-02-03 18:26:35 +00:00
#[derive(Debug)]
2020-02-06 15:58:57 +00:00
pub(crate) struct AssistCtx<'a> {
pub(crate) 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
should_compute_edit: bool,
}
2020-02-07 14:04:50 +00:00
impl Clone for AssistCtx<'_> {
2019-02-03 18:26:35 +00:00
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,
}
}
}
2020-02-06 15:58:57 +00:00
impl<'a> AssistCtx<'a> {
2020-02-07 13:53:50 +00:00
pub fn new(db: &RootDatabase, frange: FileRange, should_compute_edit: bool) -> AssistCtx {
let parse = db.parse(frange.file_id);
2020-02-07 13:53:50 +00:00
AssistCtx { db, frange, source_file: parse.tree(), should_compute_edit }
2019-02-03 18:26:35 +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>,
2020-01-01 23:39:01 +00:00
f: impl FnOnce(&mut ActionBuilder),
) -> Option<Assist> {
2020-02-07 14:04:50 +00:00
let label = AssistLabel::new(label.into(), id);
let mut info = AssistInfo::new(label);
if self.should_compute_edit {
2019-10-27 15:22:14 +00:00
let action = {
2020-01-01 23:39:01 +00:00
let mut edit = ActionBuilder::default();
2019-10-27 15:22:14 +00:00
f(&mut edit);
edit.build()
};
info = info.resolved(action)
2020-01-01 23:39:01 +00:00
};
Some(Assist(vec![info]))
2020-01-01 23:39:01 +00:00
}
2020-02-09 13:30:27 +00:00
pub(crate) fn add_assist_group(self, group_name: impl Into<String>) -> AssistGroup<'a> {
AssistGroup { ctx: self, group_name: group_name.into(), assists: Vec::new() }
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
}
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> {
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
}
2020-02-06 15:58:57 +00:00
pub(crate) fn source_binder(&self) -> SourceBinder<'a, RootDatabase> {
2020-01-16 15:08:46 +00:00
SourceBinder::new(self.db)
}
2019-11-15 22:14:56 +00:00
pub(crate) fn source_analyzer(
&self,
node: &SyntaxNode,
offset: Option<TextUnit>,
) -> SourceAnalyzer {
2020-01-16 15:08:46 +00:00
let src = InFile::new(self.frange.file_id.into(), node);
self.source_binder().analyze(src, offset)
2019-11-15 22:14:56 +00:00
}
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
}
2020-02-09 13:30:27 +00:00
pub(crate) struct AssistGroup<'a> {
ctx: AssistCtx<'a>,
group_name: String,
assists: Vec<AssistInfo>,
2020-02-09 13:30:27 +00:00
}
impl<'a> AssistGroup<'a> {
pub(crate) fn add_assist(
&mut self,
id: AssistId,
label: impl Into<String>,
f: impl FnOnce(&mut ActionBuilder),
) {
let label = AssistLabel::new(label.into(), id);
let mut info = AssistInfo::new(label).with_group(GroupLabel(self.group_name.clone()));
if self.ctx.should_compute_edit {
2020-02-09 13:30:27 +00:00
let action = {
let mut edit = ActionBuilder::default();
f(&mut edit);
edit.build()
};
info = info.resolved(action)
2020-02-09 13:30:27 +00:00
};
self.assists.push(info)
2020-02-09 13:30:27 +00:00
}
pub(crate) fn finish(self) -> Option<Assist> {
assert!(!self.assists.is_empty());
Some(Assist(self.assists))
2020-02-09 13:30:27 +00:00
}
}
2019-02-03 18:26:35 +00:00
#[derive(Default)]
2020-01-01 23:39:01 +00:00
pub(crate) struct ActionBuilder {
2019-02-03 18:26:35 +00:00
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
}
2020-01-01 23:39:01 +00:00
impl ActionBuilder {
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`.
pub(crate) fn text_edit_builder(&mut self) -> &mut TextEditBuilder {
&mut self.edit
}
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-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
}
}