Add target file information to AssistAction

This commit is contained in:
Timo Freiberg 2020-04-18 16:12:21 +02:00
parent 317fc650d5
commit ba8faf3efc
4 changed files with 82 additions and 16 deletions

View file

@ -10,7 +10,7 @@ use ra_syntax::{
}; };
use ra_text_edit::TextEditBuilder; use ra_text_edit::TextEditBuilder;
use crate::{AssistAction, AssistId, AssistLabel, GroupLabel, ResolvedAssist}; use crate::{AssistAction, AssistFile, AssistId, AssistLabel, GroupLabel, ResolvedAssist};
use algo::SyntaxRewriter; use algo::SyntaxRewriter;
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
@ -180,6 +180,7 @@ pub(crate) struct ActionBuilder {
edit: TextEditBuilder, edit: TextEditBuilder,
cursor_position: Option<TextUnit>, cursor_position: Option<TextUnit>,
target: Option<TextRange>, target: Option<TextRange>,
file: AssistFile,
} }
impl ActionBuilder { impl ActionBuilder {
@ -241,11 +242,16 @@ impl ActionBuilder {
algo::diff(&node, &new).into_text_edit(&mut self.edit) algo::diff(&node, &new).into_text_edit(&mut self.edit)
} }
pub(crate) fn set_file(&mut self, assist_file: AssistFile) {
self.file = assist_file
}
fn build(self) -> AssistAction { fn build(self) -> AssistAction {
AssistAction { AssistAction {
edit: self.edit.finish(), edit: self.edit.finish(),
cursor_position: self.cursor_position, cursor_position: self.cursor_position,
target: self.target, target: self.target,
file: self.file,
} }
} }
} }

View file

@ -3,7 +3,7 @@ use ra_syntax::{
SyntaxKind, SyntaxNode, TextUnit, SyntaxKind, SyntaxNode, TextUnit,
}; };
use crate::{Assist, AssistCtx, AssistId}; use crate::{Assist, AssistCtx, AssistFile, AssistId};
use ast::{edit::IndentLevel, ArgListOwner, ModuleItemOwner}; use ast::{edit::IndentLevel, ArgListOwner, ModuleItemOwner};
use hir::HirDisplay; use hir::HirDisplay;
use rustc_hash::{FxHashMap, FxHashSet}; use rustc_hash::{FxHashMap, FxHashSet};
@ -44,10 +44,10 @@ pub(crate) fn add_function(ctx: AssistCtx) -> Option<Assist> {
} }
let target_module = if let Some(qualifier) = path.qualifier() { let target_module = if let Some(qualifier) = path.qualifier() {
if let Some(hir::PathResolution::Def(hir::ModuleDef::Module(resolved))) = if let Some(hir::PathResolution::Def(hir::ModuleDef::Module(module))) =
ctx.sema.resolve_path(&qualifier) ctx.sema.resolve_path(&qualifier)
{ {
Some(resolved.definition_source(ctx.sema.db).value) Some(module.definition_source(ctx.sema.db))
} else { } else {
return None; return None;
} }
@ -61,6 +61,7 @@ pub(crate) fn add_function(ctx: AssistCtx) -> Option<Assist> {
edit.target(call.syntax().text_range()); edit.target(call.syntax().text_range());
if let Some(function_template) = function_builder.render() { if let Some(function_template) = function_builder.render() {
edit.set_file(function_template.file);
edit.set_cursor(function_template.cursor_offset); edit.set_cursor(function_template.cursor_offset);
edit.insert(function_template.insert_offset, function_template.fn_def.to_string()); edit.insert(function_template.insert_offset, function_template.fn_def.to_string());
} }
@ -71,6 +72,7 @@ struct FunctionTemplate {
insert_offset: TextUnit, insert_offset: TextUnit,
cursor_offset: TextUnit, cursor_offset: TextUnit,
fn_def: ast::SourceFile, fn_def: ast::SourceFile,
file: AssistFile,
} }
struct FunctionBuilder { struct FunctionBuilder {
@ -78,6 +80,7 @@ struct FunctionBuilder {
fn_name: ast::Name, fn_name: ast::Name,
type_params: Option<ast::TypeParamList>, type_params: Option<ast::TypeParamList>,
params: ast::ParamList, params: ast::ParamList,
file: AssistFile,
} }
impl FunctionBuilder { impl FunctionBuilder {
@ -87,16 +90,19 @@ impl FunctionBuilder {
ctx: &AssistCtx, ctx: &AssistCtx,
call: &ast::CallExpr, call: &ast::CallExpr,
path: &ast::Path, path: &ast::Path,
generate_in: Option<hir::ModuleSource>, generate_in: Option<hir::InFile<hir::ModuleSource>>,
) -> Option<Self> { ) -> Option<Self> {
let mut file = AssistFile::default();
let target = if let Some(generate_in_module) = generate_in { let target = if let Some(generate_in_module) = generate_in {
next_space_for_fn_in_module(generate_in_module)? let (in_file, target) = next_space_for_fn_in_module(ctx.sema.db, generate_in_module)?;
file = in_file;
target
} else { } else {
next_space_for_fn_after_call_site(&call)? next_space_for_fn_after_call_site(&call)?
}; };
let fn_name = fn_name(&path)?; let fn_name = fn_name(&path)?;
let (type_params, params) = fn_args(ctx, &call)?; let (type_params, params) = fn_args(ctx, &call)?;
Some(Self { target, fn_name, type_params, params }) Some(Self { target, fn_name, type_params, params, file })
} }
fn render(self) -> Option<FunctionTemplate> { fn render(self) -> Option<FunctionTemplate> {
let placeholder_expr = ast::make::expr_todo(); let placeholder_expr = ast::make::expr_todo();
@ -130,7 +136,7 @@ impl FunctionBuilder {
.text_range() .text_range()
.start(); .start();
let cursor_offset = insert_offset + cursor_offset_from_fn_start; let cursor_offset = insert_offset + cursor_offset_from_fn_start;
Some(FunctionTemplate { insert_offset, cursor_offset, fn_def }) Some(FunctionTemplate { insert_offset, cursor_offset, fn_def, file: self.file })
} }
} }
@ -250,23 +256,29 @@ fn next_space_for_fn_after_call_site(expr: &ast::CallExpr) -> Option<GeneratedFu
last_ancestor.map(GeneratedFunctionTarget::BehindItem) last_ancestor.map(GeneratedFunctionTarget::BehindItem)
} }
fn next_space_for_fn_in_module(module: hir::ModuleSource) -> Option<GeneratedFunctionTarget> { fn next_space_for_fn_in_module(
match module { db: &dyn hir::db::AstDatabase,
module: hir::InFile<hir::ModuleSource>,
) -> Option<(AssistFile, GeneratedFunctionTarget)> {
let file = module.file_id.original_file(db);
let assist_file = AssistFile::TargetFile(file);
let assist_item = match module.value {
hir::ModuleSource::SourceFile(it) => { hir::ModuleSource::SourceFile(it) => {
if let Some(last_item) = it.items().last() { if let Some(last_item) = it.items().last() {
Some(GeneratedFunctionTarget::BehindItem(last_item.syntax().clone())) GeneratedFunctionTarget::BehindItem(last_item.syntax().clone())
} else { } else {
Some(GeneratedFunctionTarget::BehindItem(it.syntax().clone())) GeneratedFunctionTarget::BehindItem(it.syntax().clone())
} }
} }
hir::ModuleSource::Module(it) => { hir::ModuleSource::Module(it) => {
if let Some(last_item) = it.item_list().and_then(|it| it.items().last()) { if let Some(last_item) = it.item_list().and_then(|it| it.items().last()) {
Some(GeneratedFunctionTarget::BehindItem(last_item.syntax().clone())) GeneratedFunctionTarget::BehindItem(last_item.syntax().clone())
} else { } else {
it.item_list().map(GeneratedFunctionTarget::InEmptyItemList) GeneratedFunctionTarget::InEmptyItemList(it.item_list()?)
} }
} }
} };
Some((assist_file, assist_item))
} }
#[cfg(test)] #[cfg(test)]
@ -884,6 +896,37 @@ fn foo() {
) )
} }
#[test]
fn add_function_in_another_file() {
check_assist(
add_function,
r"
//- /main.rs
mod foo;
fn main() {
foo::bar<|>()
}
//- /foo.rs
",
r"
//- /main.rs
mod foo;
fn main() {
foo::bar()
}
//- /foo.rs
fn bar() {
<|>todo!()
}
",
)
}
#[test] #[test]
fn add_function_not_applicable_if_function_already_exists() { fn add_function_not_applicable_if_function_already_exists() {
check_assist_not_applicable( check_assist_not_applicable(

View file

@ -17,7 +17,7 @@ mod doc_tests;
pub mod utils; pub mod utils;
pub mod ast_transform; pub mod ast_transform;
use ra_db::FileRange; use ra_db::{FileId, FileRange};
use ra_ide_db::RootDatabase; use ra_ide_db::RootDatabase;
use ra_syntax::{TextRange, TextUnit}; use ra_syntax::{TextRange, TextUnit};
use ra_text_edit::TextEdit; use ra_text_edit::TextEdit;
@ -54,6 +54,7 @@ pub struct AssistAction {
pub cursor_position: Option<TextUnit>, pub cursor_position: Option<TextUnit>,
// FIXME: This belongs to `AssistLabel` // FIXME: This belongs to `AssistLabel`
pub target: Option<TextRange>, pub target: Option<TextRange>,
pub file: AssistFile,
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
@ -63,6 +64,18 @@ pub struct ResolvedAssist {
pub action: AssistAction, pub action: AssistAction,
} }
#[derive(Debug, Clone, Copy)]
pub enum AssistFile {
CurrentFile,
TargetFile(FileId),
}
impl Default for AssistFile {
fn default() -> Self {
Self::CurrentFile
}
}
/// Return all the assists applicable at the given position. /// Return all the assists applicable at the given position.
/// ///
/// Assists are returned in the "unresolved" state, that is only labels are /// Assists are returned in the "unresolved" state, that is only labels are

View file

@ -37,6 +37,10 @@ fn action_to_edit(
file_id: FileId, file_id: FileId,
assist_label: &AssistLabel, assist_label: &AssistLabel,
) -> SourceChange { ) -> SourceChange {
let file_id = match action.file {
ra_assists::AssistFile::TargetFile(it) => it,
_ => file_id,
};
let file_edit = SourceFileEdit { file_id, edit: action.edit }; let file_edit = SourceFileEdit { file_id, edit: action.edit };
SourceChange::source_file_edit(assist_label.label.clone(), file_edit) SourceChange::source_file_edit(assist_label.label.clone(), file_edit)
.with_cursor_opt(action.cursor_position.map(|offset| FilePosition { offset, file_id })) .with_cursor_opt(action.cursor_position.map(|offset| FilePosition { offset, file_id }))