rust/crates/assists/src/handlers/replace_qualified_name_with_use.rs

682 lines
13 KiB
Rust
Raw Normal View History

use syntax::{algo::SyntaxRewriter, ast, match_ast, AstNode, SyntaxNode, TextRange};
use test_utils::mark;
use crate::{
utils::{find_insert_use_container, insert_use, MergeBehaviour},
2020-06-28 17:36:05 -05:00
AssistContext, AssistId, AssistKind, Assists,
};
use ast::make;
2020-02-07 15:35:34 -06:00
// Assist: replace_qualified_name_with_use
2019-10-27 09:49:39 -05:00
//
2020-02-07 15:35:34 -06:00
// Adds a use statement for a given fully-qualified name.
2019-10-27 09:49:39 -05:00
//
// ```
// fn process(map: std::collections::<|>HashMap<String, String>) {}
// ```
// ->
// ```
// use std::collections::HashMap;
//
// fn process(map: HashMap<String, String>) {}
// ```
pub(crate) fn replace_qualified_name_with_use(
acc: &mut Assists,
ctx: &AssistContext,
) -> Option<()> {
let path: ast::Path = ctx.find_node_at_offset()?;
// We don't want to mess with use statements
2020-07-30 07:12:04 -05:00
if path.syntax().ancestors().find_map(ast::Use::cast).is_some() {
return None;
}
if path.qualifier().is_none() {
mark::hit!(dont_import_trivial_paths);
return None;
}
let path_to_import = path.to_string();
let path_to_import = match path.segment()?.generic_arg_list() {
Some(generic_args) => {
let generic_args_start =
generic_args.syntax().text_range().start() - path.syntax().text_range().start();
&path_to_import[TextRange::up_to(generic_args_start)]
}
None => path_to_import.as_str(),
};
let target = path.syntax().text_range();
let container = find_insert_use_container(path.syntax(), ctx)?;
let syntax = container.either(|l| l.syntax().clone(), |r| r.syntax().clone());
acc.add(
2020-07-02 16:48:35 -05:00
AssistId("replace_qualified_name_with_use", AssistKind::RefactorRewrite),
2020-02-07 15:35:34 -06:00
"Replace qualified path with use",
target,
|builder| {
// Now that we've brought the name into scope, re-qualify all paths that could be
// affected (that is, all paths inside the node we added the `use` to).
let mut rewriter = SyntaxRewriter::default();
shorten_paths(&mut rewriter, syntax.clone(), path);
let rewritten_syntax = rewriter.rewrite(&syntax);
let new_syntax = insert_use(
&rewritten_syntax,
make::path_from_text(path_to_import),
Some(MergeBehaviour::Full),
);
builder.replace(syntax.text_range(), new_syntax.to_string())
2020-02-28 14:53:20 -06:00
},
)
}
/// Adds replacements to `re` that shorten `path` in all descendants of `node`.
fn shorten_paths(rewriter: &mut SyntaxRewriter<'static>, node: SyntaxNode, path: ast::Path) {
for child in node.children() {
match_ast! {
match child {
// Don't modify `use` items, as this can break the `use` item when injecting a new
// import into the use tree.
2020-07-30 07:12:04 -05:00
ast::Use(_it) => continue,
// Don't descend into submodules, they don't have the same `use` items in scope.
ast::Module(_it) => continue,
ast::Path(p) => {
match maybe_replace_path(rewriter, p.clone(), path.clone()) {
Some(()) => {},
None => shorten_paths(rewriter, p.syntax().clone(), path.clone()),
}
},
_ => shorten_paths(rewriter, child, path.clone()),
}
}
}
}
fn maybe_replace_path(
rewriter: &mut SyntaxRewriter<'static>,
path: ast::Path,
target: ast::Path,
) -> Option<()> {
2020-07-19 13:26:24 -05:00
if !path_eq(path.clone(), target) {
return None;
}
// Shorten `path`, leaving only its last segment.
if let Some(parent) = path.qualifier() {
rewriter.delete(parent.syntax());
}
if let Some(double_colon) = path.coloncolon_token() {
rewriter.delete(&double_colon);
}
Some(())
}
fn path_eq(lhs: ast::Path, rhs: ast::Path) -> bool {
let mut lhs_curr = lhs;
let mut rhs_curr = rhs;
loop {
match (lhs_curr.segment(), rhs_curr.segment()) {
(Some(lhs), Some(rhs)) if lhs.syntax().text() == rhs.syntax().text() => (),
_ => return false,
}
match (lhs_curr.qualifier(), rhs_curr.qualifier()) {
(Some(lhs), Some(rhs)) => {
lhs_curr = lhs;
rhs_curr = rhs;
}
(None, None) => return true,
_ => return false,
}
}
}
2019-02-06 08:34:37 -06:00
#[cfg(test)]
mod tests {
2020-05-06 03:16:55 -05:00
use crate::tests::{check_assist, check_assist_not_applicable};
2019-02-06 08:34:37 -06:00
2019-10-27 09:26:51 -05:00
use super::*;
2019-02-06 08:34:37 -06:00
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_use_no_anchor() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
std::fmt::Debug<|>
",
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::Debug;
Debug
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_use_no_anchor_with_item_below() {
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
std::fmt::Debug<|>
fn main() {
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::Debug;
Debug
fn main() {
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_use_no_anchor_with_item_above() {
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
fn main() {
}
std::fmt::Debug<|>
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::Debug;
fn main() {
}
Debug
2019-02-06 08:34:37 -06:00
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_use_no_anchor_2seg() {
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
std::fmt<|>::Debug
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt;
fmt::Debug
",
);
}
2019-02-06 08:34:37 -06:00
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_use() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use stdx;
impl std::fmt::Debug<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::Debug;
use stdx;
impl Debug for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_file_use_other_anchor() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
impl std::fmt::Debug<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::Debug;
impl Debug for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_use_other_anchor_indent() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
impl std::fmt::Debug<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::Debug;
impl Debug for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_split_different() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt;
impl std::io<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
use std::{fmt, io};
2019-02-06 08:34:37 -06:00
impl io for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_split_self_for_use() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt;
impl std::fmt::Debug<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{self, Debug};
2019-02-06 08:34:37 -06:00
impl Debug for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_split_self_for_target() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::Debug;
impl std::fmt<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{Debug, self};
2019-02-06 08:34:37 -06:00
impl fmt for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_to_nested_self_nested() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::{Debug, nested::{Display}};
impl std::fmt::nested<|> for Foo {
}
",
// FIXME(veykril): should be nested::{self, Display} here
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{Debug, nested::{Display}, nested};
2019-02-06 08:34:37 -06:00
impl nested for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_to_nested_self_already_included() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::{Debug, nested::{self, Display}};
impl std::fmt::nested<|> for Foo {
}
",
// FIXME(veykril): self is being pulled out for some reason now
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{Debug, nested::{Display}, nested};
2019-02-06 08:34:37 -06:00
impl nested for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_to_nested_nested() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt::{Debug, nested::{Display}};
impl std::fmt::nested::Debug<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{Debug, nested::{Display}, nested::Debug};
2019-02-06 08:34:37 -06:00
impl Debug for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_split_common_target_longer() {
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
use std::fmt::Debug;
impl std::fmt::nested::Display<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{Debug, nested::Display};
impl Display for Foo {
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_split_common_use_longer() {
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
use std::fmt::nested::Debug;
impl std::fmt::Display<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{nested::Debug, Display};
impl Display for Foo {
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_use_nested_import() {
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
use crate::{
ty::{Substs, Ty},
AssocItem,
};
fn foo() { crate::ty::lower<|>::trait_env() }
",
// FIXME(veykril): formatting broke here
2020-06-15 15:39:26 -05:00
r"
use crate::{
ty::{Substs, Ty},
AssocItem,
ty::lower};
fn foo() { lower::trait_env() }
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_alias() {
2019-02-06 08:34:37 -06:00
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt as foo;
impl foo::Debug<|> for Foo {
}
",
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
use std::fmt as foo;
use foo::Debug;
impl Debug for Foo {
2019-02-06 08:34:37 -06:00
}
",
);
}
#[test]
fn dont_import_trivial_paths() {
mark::check!(dont_import_trivial_paths);
2019-02-06 08:34:37 -06:00
check_assist_not_applicable(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
2019-02-06 08:34:37 -06:00
impl foo<|> for Foo {
}
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_not_applicable_in_use() {
check_assist_not_applicable(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
use std::fmt<|>;
2019-02-06 08:34:37 -06:00
",
);
}
#[test]
2020-02-07 15:35:34 -06:00
fn test_replace_add_use_no_anchor_in_mod_mod() {
check_assist(
2020-02-07 15:35:34 -06:00
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
mod foo {
mod bar {
std::fmt::Debug<|>
}
}
",
2020-06-15 15:39:26 -05:00
r"
mod foo {
mod bar {
use std::fmt::Debug;
Debug
}
}
",
);
}
#[test]
fn inserts_imports_after_inner_attributes() {
check_assist(
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
#![allow(dead_code)]
fn main() {
std::fmt::Debug<|>
}
",
2020-06-15 15:39:26 -05:00
r"
#![allow(dead_code)]
use std::fmt::Debug;
fn main() {
Debug
}
",
);
}
#[test]
fn replaces_all_affected_paths() {
check_assist(
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
fn main() {
std::fmt::Debug<|>;
let x: std::fmt::Debug = std::fmt::Debug;
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::Debug;
fn main() {
Debug;
let x: Debug = Debug;
}
",
);
}
#[test]
fn replaces_all_affected_paths_mod() {
check_assist(
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
mod m {
fn f() {
std::fmt::Debug<|>;
let x: std::fmt::Debug = std::fmt::Debug;
}
fn g() {
std::fmt::Debug;
}
}
fn f() {
std::fmt::Debug;
}
",
2020-06-15 15:39:26 -05:00
r"
mod m {
use std::fmt::Debug;
fn f() {
Debug;
let x: Debug = Debug;
}
fn g() {
Debug;
}
}
fn f() {
std::fmt::Debug;
}
",
);
}
#[test]
fn does_not_replace_in_submodules() {
check_assist(
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
fn main() {
std::fmt::Debug<|>;
}
mod sub {
fn f() {
std::fmt::Debug;
}
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::Debug;
fn main() {
Debug;
}
mod sub {
fn f() {
std::fmt::Debug;
}
}
",
);
}
#[test]
fn does_not_replace_in_use() {
check_assist(
replace_qualified_name_with_use,
2020-06-15 15:39:26 -05:00
r"
use std::fmt::Display;
fn main() {
std::fmt<|>;
}
",
2020-06-15 15:39:26 -05:00
r"
use std::fmt::{Display, self};
fn main() {
fmt;
2020-08-03 14:17:05 -05:00
}
",
);
}
#[test]
fn does_not_replace_pub_use() {
check_assist(
replace_qualified_name_with_use,
r"
pub use std::fmt;
impl std::io<|> for Foo {
}
",
r"
pub use std::fmt;
use std::io;
2020-08-03 14:17:05 -05:00
impl io for Foo {
}
",
);
}
#[test]
fn does_not_replace_pub_crate_use() {
check_assist(
replace_qualified_name_with_use,
r"
pub(crate) use std::fmt;
impl std::io<|> for Foo {
}
",
r"
pub(crate) use std::fmt;
use std::io;
2020-08-03 14:17:05 -05:00
impl io for Foo {
}
",
);
}
2019-02-06 08:34:37 -06:00
}