2020-12-10 08:41:57 -06:00
|
|
|
use ide_db::helpers::insert_use::{try_merge_imports, try_merge_trees, MergeBehavior};
|
2021-03-18 04:57:55 -05:00
|
|
|
use syntax::{algo::neighbor, ast, ted, AstNode};
|
2020-03-18 10:41:24 -05:00
|
|
|
|
2020-05-06 11:45:35 -05:00
|
|
|
use crate::{
|
|
|
|
assist_context::{AssistContext, Assists},
|
2020-11-24 15:25:13 -06:00
|
|
|
utils::next_prev,
|
2020-06-28 17:36:05 -05:00
|
|
|
AssistId, AssistKind,
|
2020-05-06 11:45:35 -05:00
|
|
|
};
|
2020-03-18 10:41:24 -05:00
|
|
|
|
|
|
|
// Assist: merge_imports
|
|
|
|
//
|
|
|
|
// Merges two imports with a common prefix.
|
|
|
|
//
|
|
|
|
// ```
|
2021-01-06 14:15:48 -06:00
|
|
|
// use std::$0fmt::Formatter;
|
2020-03-18 10:41:24 -05:00
|
|
|
// use std::io;
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// use std::{fmt::Formatter, io};
|
|
|
|
// ```
|
2020-05-06 11:45:35 -05:00
|
|
|
pub(crate) fn merge_imports(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
2020-03-18 10:41:24 -05:00
|
|
|
let tree: ast::UseTree = ctx.find_node_at_offset()?;
|
2021-03-18 04:57:55 -05:00
|
|
|
let original_parent = tree.syntax().ancestors().last()?;
|
|
|
|
|
|
|
|
let tree = tree.clone_for_update();
|
|
|
|
let new_parent = tree.syntax().ancestors().last()?;
|
|
|
|
|
2020-05-07 10:32:01 -05:00
|
|
|
let mut offset = ctx.offset();
|
2020-03-24 11:03:05 -05:00
|
|
|
|
2021-03-18 04:57:55 -05:00
|
|
|
let mut imports = None;
|
|
|
|
let mut uses = None;
|
2020-07-30 07:12:04 -05:00
|
|
|
if let Some(use_item) = tree.syntax().parent().and_then(ast::Use::cast) {
|
2021-03-18 04:57:55 -05:00
|
|
|
let (merged, to_remove) =
|
2020-09-05 08:51:26 -05:00
|
|
|
next_prev().filter_map(|dir| neighbor(&use_item, dir)).find_map(|use_item2| {
|
2020-12-10 08:41:57 -06:00
|
|
|
try_merge_imports(&use_item, &use_item2, MergeBehavior::Full).zip(Some(use_item2))
|
2020-03-19 06:18:59 -05:00
|
|
|
})?;
|
2020-03-18 10:41:24 -05:00
|
|
|
|
2021-03-18 04:57:55 -05:00
|
|
|
imports = Some((use_item, merged, to_remove));
|
2020-03-19 06:18:59 -05:00
|
|
|
} else {
|
2021-03-18 04:57:55 -05:00
|
|
|
let (merged, to_remove) =
|
2020-09-05 08:51:26 -05:00
|
|
|
next_prev().filter_map(|dir| neighbor(&tree, dir)).find_map(|use_tree| {
|
2020-12-10 08:41:57 -06:00
|
|
|
try_merge_trees(&tree, &use_tree, MergeBehavior::Full).zip(Some(use_tree))
|
2020-09-05 08:51:26 -05:00
|
|
|
})?;
|
2020-03-19 06:18:59 -05:00
|
|
|
|
2021-03-18 04:57:55 -05:00
|
|
|
uses = Some((tree.clone(), merged, to_remove))
|
2020-03-19 06:18:59 -05:00
|
|
|
};
|
|
|
|
|
2020-05-06 05:51:28 -05:00
|
|
|
let target = tree.syntax().text_range();
|
2020-06-28 17:36:05 -05:00
|
|
|
acc.add(
|
2020-07-02 16:48:35 -05:00
|
|
|
AssistId("merge_imports", AssistKind::RefactorRewrite),
|
2020-06-28 17:36:05 -05:00
|
|
|
"Merge imports",
|
|
|
|
target,
|
|
|
|
|builder| {
|
2021-03-18 04:57:55 -05:00
|
|
|
if let Some((to_replace, replacement, to_remove)) = imports {
|
|
|
|
if to_remove.syntax().text_range().end() < offset {
|
|
|
|
offset -= to_remove.syntax().text_range().len();
|
|
|
|
}
|
|
|
|
ted::replace(to_replace.syntax().clone(), replacement.syntax().clone());
|
|
|
|
to_remove.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some((to_replace, replacement, to_remove)) = uses {
|
|
|
|
if to_remove.syntax().text_range().end() < offset {
|
|
|
|
offset -= to_remove.syntax().text_range().len();
|
|
|
|
}
|
|
|
|
ted::replace(to_replace.syntax().clone(), replacement.syntax().clone());
|
|
|
|
to_remove.remove()
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.replace(original_parent.text_range(), new_parent.to_string())
|
2020-06-28 17:36:05 -05:00
|
|
|
},
|
|
|
|
)
|
2020-03-18 10:41:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-06-23 01:41:43 -05:00
|
|
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
2020-03-18 10:41:24 -05:00
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2020-10-13 18:39:58 -05:00
|
|
|
#[test]
|
|
|
|
fn test_merge_equal() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::fmt$0::{Display, Debug};
|
2020-10-13 18:39:58 -05:00
|
|
|
use std::fmt::{Display, Debug};
|
|
|
|
",
|
|
|
|
r"
|
|
|
|
use std::fmt::{Debug, Display};
|
|
|
|
",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-18 10:41:24 -05:00
|
|
|
#[test]
|
|
|
|
fn test_merge_first() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::fmt$0::Debug;
|
2020-03-18 10:41:24 -05:00
|
|
|
use std::fmt::Display;
|
|
|
|
",
|
|
|
|
r"
|
2020-05-20 16:14:31 -05:00
|
|
|
use std::fmt::{Debug, Display};
|
2020-03-18 10:41:24 -05:00
|
|
|
",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_merge_second() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
|
|
|
use std::fmt::Debug;
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::fmt$0::Display;
|
2020-03-18 10:41:24 -05:00
|
|
|
",
|
|
|
|
r"
|
2020-09-12 12:18:14 -05:00
|
|
|
use std::fmt::{Debug, Display};
|
2020-03-18 10:41:24 -05:00
|
|
|
",
|
2020-03-19 06:18:59 -05:00
|
|
|
);
|
2020-03-18 10:41:24 -05:00
|
|
|
}
|
|
|
|
|
2020-08-12 11:49:43 -05:00
|
|
|
#[test]
|
|
|
|
fn merge_self1() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::fmt$0;
|
2020-08-12 11:49:43 -05:00
|
|
|
use std::fmt::Display;
|
|
|
|
",
|
|
|
|
r"
|
|
|
|
use std::fmt::{self, Display};
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn merge_self2() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::{fmt, $0fmt::Display};
|
2020-08-12 11:49:43 -05:00
|
|
|
",
|
|
|
|
r"
|
2020-09-12 12:18:14 -05:00
|
|
|
use std::{fmt::{self, Display}};
|
2020-08-12 11:49:43 -05:00
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-05 08:51:26 -05:00
|
|
|
#[test]
|
|
|
|
fn skip_pub1() {
|
|
|
|
check_assist_not_applicable(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
pub use std::fmt$0::Debug;
|
2020-09-05 08:51:26 -05:00
|
|
|
use std::fmt::Display;
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn skip_pub_last() {
|
|
|
|
check_assist_not_applicable(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::fmt$0::Debug;
|
2020-09-05 08:51:26 -05:00
|
|
|
pub use std::fmt::Display;
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-05 09:15:16 -05:00
|
|
|
#[test]
|
|
|
|
fn skip_pub_crate_pub() {
|
|
|
|
check_assist_not_applicable(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
pub(crate) use std::fmt$0::Debug;
|
2020-09-05 09:15:16 -05:00
|
|
|
pub use std::fmt::Display;
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn skip_pub_pub_crate() {
|
|
|
|
check_assist_not_applicable(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
pub use std::fmt$0::Debug;
|
2020-09-05 09:15:16 -05:00
|
|
|
pub(crate) use std::fmt::Display;
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn merge_pub() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
pub use std::fmt$0::Debug;
|
2020-09-05 09:15:16 -05:00
|
|
|
pub use std::fmt::Display;
|
|
|
|
",
|
|
|
|
r"
|
|
|
|
pub use std::fmt::{Debug, Display};
|
|
|
|
",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn merge_pub_crate() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
pub(crate) use std::fmt$0::Debug;
|
2020-09-05 09:15:16 -05:00
|
|
|
pub(crate) use std::fmt::Display;
|
|
|
|
",
|
|
|
|
r"
|
|
|
|
pub(crate) use std::fmt::{Debug, Display};
|
|
|
|
",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-18 10:41:24 -05:00
|
|
|
#[test]
|
|
|
|
fn test_merge_nested() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::{fmt$0::Debug, fmt::Display};
|
2020-03-18 10:41:24 -05:00
|
|
|
",
|
|
|
|
r"
|
2020-05-20 16:14:31 -05:00
|
|
|
use std::{fmt::{Debug, Display}};
|
2020-03-18 10:41:24 -05:00
|
|
|
",
|
2020-03-19 06:18:59 -05:00
|
|
|
);
|
2020-09-12 12:18:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_merge_nested2() {
|
2020-03-19 06:18:59 -05:00
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::{fmt::Debug, fmt$0::Display};
|
2020-03-19 06:18:59 -05:00
|
|
|
",
|
|
|
|
r"
|
2020-09-12 12:18:14 -05:00
|
|
|
use std::{fmt::{Debug, Display}};
|
2020-03-23 14:57:42 -05:00
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-27 11:28:25 -05:00
|
|
|
#[test]
|
|
|
|
fn test_merge_single_wildcard_diff_prefixes() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std$0::cell::*;
|
2020-03-27 11:28:25 -05:00
|
|
|
use std::str;
|
|
|
|
",
|
|
|
|
r"
|
2020-05-20 16:14:31 -05:00
|
|
|
use std::{cell::*, str};
|
2020-03-27 11:28:25 -05:00
|
|
|
",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_merge_both_wildcard_diff_prefixes() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std$0::cell::*;
|
2020-03-27 11:28:25 -05:00
|
|
|
use std::str::*;
|
|
|
|
",
|
|
|
|
r"
|
2020-05-20 16:14:31 -05:00
|
|
|
use std::{cell::*, str::*};
|
2020-03-27 11:28:25 -05:00
|
|
|
",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-23 14:57:42 -05:00
|
|
|
#[test]
|
|
|
|
fn removes_just_enough_whitespace() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use foo$0::bar;
|
2020-03-23 14:57:42 -05:00
|
|
|
use foo::baz;
|
|
|
|
|
|
|
|
/// Doc comment
|
|
|
|
",
|
|
|
|
r"
|
2020-05-20 16:14:31 -05:00
|
|
|
use foo::{bar, baz};
|
2020-03-23 14:57:42 -05:00
|
|
|
|
|
|
|
/// Doc comment
|
2020-03-24 11:03:05 -05:00
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn works_with_trailing_comma() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
|
|
|
use {
|
2021-01-06 14:15:48 -06:00
|
|
|
foo$0::bar,
|
2020-03-24 11:03:05 -05:00
|
|
|
foo::baz,
|
|
|
|
};
|
|
|
|
",
|
|
|
|
r"
|
|
|
|
use {
|
2020-05-20 16:14:31 -05:00
|
|
|
foo::{bar, baz},
|
2020-03-24 11:03:05 -05:00
|
|
|
};
|
|
|
|
",
|
|
|
|
);
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
|
|
|
use {
|
|
|
|
foo::baz,
|
2021-01-06 14:15:48 -06:00
|
|
|
foo$0::bar,
|
2020-03-24 11:03:05 -05:00
|
|
|
};
|
|
|
|
",
|
|
|
|
r"
|
|
|
|
use {
|
2020-05-20 16:14:31 -05:00
|
|
|
foo::{bar, baz},
|
2020-03-24 11:03:05 -05:00
|
|
|
};
|
2020-03-19 06:18:59 -05:00
|
|
|
",
|
|
|
|
);
|
2020-03-18 10:41:24 -05:00
|
|
|
}
|
2020-04-12 20:29:14 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_double_comma() {
|
|
|
|
check_assist(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2020-04-12 20:34:01 -05:00
|
|
|
use foo::bar::baz;
|
2021-01-06 14:15:48 -06:00
|
|
|
use foo::$0{
|
2020-04-12 20:34:01 -05:00
|
|
|
FooBar,
|
2020-04-12 20:29:14 -05:00
|
|
|
};
|
|
|
|
",
|
|
|
|
r"
|
2020-09-12 12:18:14 -05:00
|
|
|
use foo::{FooBar, bar::baz};
|
2020-04-12 20:29:14 -05:00
|
|
|
",
|
|
|
|
)
|
|
|
|
}
|
2020-06-23 01:41:43 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty_use() {
|
|
|
|
check_assist_not_applicable(
|
|
|
|
merge_imports,
|
|
|
|
r"
|
2021-01-06 14:15:48 -06:00
|
|
|
use std::$0
|
2020-06-23 01:41:43 -05:00
|
|
|
fn main() {}",
|
|
|
|
);
|
|
|
|
}
|
2020-03-18 10:41:24 -05:00
|
|
|
}
|