2020-02-18 11:35:10 -06:00
|
|
|
use hir::Semantics;
|
2021-12-13 08:55:13 -06:00
|
|
|
use ide_db::{
|
2021-12-13 09:25:54 -06:00
|
|
|
helpers::{insert_whitespace_into_node::insert_ws_into, pick_best_token},
|
2021-12-13 08:55:13 -06:00
|
|
|
RootDatabase,
|
|
|
|
};
|
2022-02-21 05:57:57 -06:00
|
|
|
use syntax::{ast, ted, AstNode, NodeOrToken, SyntaxKind, SyntaxNode, T};
|
2020-02-06 05:52:32 -06:00
|
|
|
|
|
|
|
use crate::FilePosition;
|
2019-11-17 12:47:50 -06:00
|
|
|
|
2019-11-19 08:56:48 -06:00
|
|
|
pub struct ExpandedMacro {
|
|
|
|
pub name: String,
|
|
|
|
pub expansion: String,
|
|
|
|
}
|
|
|
|
|
2020-05-31 03:14:36 -05:00
|
|
|
// Feature: Expand Macro Recursively
|
|
|
|
//
|
|
|
|
// Shows the full macro expansion of the macro at current cursor.
|
|
|
|
//
|
|
|
|
// |===
|
|
|
|
// | Editor | Action Name
|
|
|
|
//
|
|
|
|
// | VS Code | **Rust Analyzer: Expand macro recursively**
|
|
|
|
// |===
|
2021-03-30 18:08:10 -05:00
|
|
|
//
|
|
|
|
// image::https://user-images.githubusercontent.com/48062697/113020648-b3973180-917a-11eb-84a9-ecb921293dc5.gif[]
|
2019-11-19 08:56:48 -06:00
|
|
|
pub(crate) fn expand_macro(db: &RootDatabase, position: FilePosition) -> Option<ExpandedMacro> {
|
2020-02-18 11:35:10 -06:00
|
|
|
let sema = Semantics::new(db);
|
|
|
|
let file = sema.parse(position.file_id);
|
2019-11-17 12:47:50 -06:00
|
|
|
|
2021-06-22 10:28:07 -05:00
|
|
|
let tok = pick_best_token(file.syntax().token_at_offset(position.offset), |kind| match kind {
|
|
|
|
SyntaxKind::IDENT => 1,
|
|
|
|
_ => 0,
|
|
|
|
})?;
|
2021-09-13 20:00:53 -05:00
|
|
|
|
2021-10-26 13:09:14 -05:00
|
|
|
// due to how Rust Analyzer works internally, we need to special case derive attributes,
|
2021-10-26 13:10:09 -05:00
|
|
|
// otherwise they might not get found, e.g. here with the cursor at $0 `#[attr]` would expand:
|
2021-10-26 13:09:14 -05:00
|
|
|
// ```
|
|
|
|
// #[attr]
|
|
|
|
// #[derive($0Foo)]
|
|
|
|
// struct Bar;
|
|
|
|
// ```
|
|
|
|
|
2022-02-21 04:51:53 -06:00
|
|
|
let derive = sema.descend_into_macros(tok.clone()).into_iter().find_map(|descended| {
|
|
|
|
let hir_file = sema.hir_file_for(&descended.parent()?);
|
|
|
|
if !hir_file.is_derive_attr_macro(db) {
|
|
|
|
return None;
|
2021-08-25 19:36:33 -05:00
|
|
|
}
|
2022-02-21 04:51:53 -06:00
|
|
|
|
|
|
|
let name = descended.ancestors().filter_map(ast::Path::cast).last()?.to_string();
|
|
|
|
// up map out of the #[derive] expansion
|
|
|
|
let token = hir::InFile::new(hir_file, descended).upmap(db)?.value;
|
|
|
|
let attr = token.ancestors().find_map(ast::Attr::cast)?;
|
|
|
|
let expansions = sema.expand_derive_macro(&attr)?;
|
2022-02-21 05:57:57 -06:00
|
|
|
let idx = attr
|
|
|
|
.token_tree()?
|
|
|
|
.token_trees_and_tokens()
|
|
|
|
.filter_map(NodeOrToken::into_token)
|
|
|
|
.take_while(|it| it == &token)
|
|
|
|
.filter(|it| it.kind() == T![,])
|
|
|
|
.count();
|
|
|
|
Some(ExpandedMacro {
|
|
|
|
name,
|
|
|
|
expansion: expansions.get(idx).cloned().map(insert_ws_into)?.to_string(),
|
|
|
|
})
|
2021-10-26 13:09:14 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
if derive.is_some() {
|
|
|
|
return derive;
|
2021-08-25 19:36:33 -05:00
|
|
|
}
|
2021-09-13 20:00:53 -05:00
|
|
|
|
|
|
|
// FIXME: Intermix attribute and bang! expansions
|
|
|
|
// currently we only recursively expand one of the two types
|
2021-06-07 09:05:36 -05:00
|
|
|
let mut expanded = None;
|
|
|
|
let mut name = None;
|
|
|
|
for node in tok.ancestors() {
|
2021-06-08 15:13:22 -05:00
|
|
|
if let Some(item) = ast::Item::cast(node.clone()) {
|
2021-08-21 16:24:12 -05:00
|
|
|
if let Some(def) = sema.resolve_attr_macro_call(&item) {
|
|
|
|
name = def.name(db).map(|name| name.to_string());
|
|
|
|
expanded = expand_attr_macro_recur(&sema, &item);
|
2021-06-08 15:13:22 -05:00
|
|
|
break;
|
2021-06-07 09:05:36 -05:00
|
|
|
}
|
|
|
|
}
|
2021-06-08 15:13:22 -05:00
|
|
|
if let Some(mac) = ast::MacroCall::cast(node) {
|
|
|
|
name = Some(mac.path()?.segment()?.name_ref()?.to_string());
|
|
|
|
expanded = expand_macro_recur(&sema, &mac);
|
|
|
|
break;
|
|
|
|
}
|
2021-06-07 09:05:36 -05:00
|
|
|
}
|
2019-11-17 12:47:50 -06:00
|
|
|
|
2019-11-19 08:56:28 -06:00
|
|
|
// FIXME:
|
|
|
|
// macro expansion may lose all white space information
|
|
|
|
// But we hope someday we can use ra_fmt for that
|
2021-12-13 09:25:54 -06:00
|
|
|
let expansion = insert_ws_into(expanded?).to_string();
|
2021-08-21 16:24:12 -05:00
|
|
|
Some(ExpandedMacro { name: name.unwrap_or_else(|| "???".to_owned()), expansion })
|
2019-11-17 12:47:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn expand_macro_recur(
|
2020-02-18 11:35:10 -06:00
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
macro_call: &ast::MacroCall,
|
2019-11-17 12:47:50 -06:00
|
|
|
) -> Option<SyntaxNode> {
|
2021-04-19 12:43:26 -05:00
|
|
|
let expanded = sema.expand(macro_call)?.clone_for_update();
|
2021-08-21 16:24:12 -05:00
|
|
|
expand(sema, expanded, ast::MacroCall::cast, expand_macro_recur)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expand_attr_macro_recur(sema: &Semantics<RootDatabase>, item: &ast::Item) -> Option<SyntaxNode> {
|
|
|
|
let expanded = sema.expand_attr_macro(item)?.clone_for_update();
|
|
|
|
expand(sema, expanded, ast::Item::cast, expand_attr_macro_recur)
|
|
|
|
}
|
2019-11-17 12:47:50 -06:00
|
|
|
|
2021-08-21 16:24:12 -05:00
|
|
|
fn expand<T: AstNode>(
|
|
|
|
sema: &Semantics<RootDatabase>,
|
|
|
|
expanded: SyntaxNode,
|
|
|
|
f: impl FnMut(SyntaxNode) -> Option<T>,
|
|
|
|
exp: impl Fn(&Semantics<RootDatabase>, &T) -> Option<SyntaxNode>,
|
|
|
|
) -> Option<SyntaxNode> {
|
|
|
|
let children = expanded.descendants().filter_map(f);
|
2021-04-19 12:43:26 -05:00
|
|
|
let mut replacements = Vec::new();
|
2019-11-17 12:47:50 -06:00
|
|
|
|
2021-04-19 12:43:26 -05:00
|
|
|
for child in children {
|
2021-08-21 16:24:12 -05:00
|
|
|
if let Some(new_node) = exp(sema, &child) {
|
2021-04-19 12:43:26 -05:00
|
|
|
// check if the whole original syntax is replaced
|
2019-11-22 20:33:14 -06:00
|
|
|
if expanded == *child.syntax() {
|
2021-04-19 12:43:26 -05:00
|
|
|
return Some(new_node);
|
2019-11-22 20:33:14 -06:00
|
|
|
}
|
2021-04-19 12:43:26 -05:00
|
|
|
replacements.push((child, new_node));
|
2019-11-21 22:04:20 -06:00
|
|
|
}
|
2019-11-17 12:47:50 -06:00
|
|
|
}
|
|
|
|
|
2021-04-19 12:43:26 -05:00
|
|
|
replacements.into_iter().rev().for_each(|(old, new)| ted::replace(old.syntax(), new));
|
|
|
|
Some(expanded)
|
2019-11-17 12:47:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-08-21 06:19:31 -05:00
|
|
|
use expect_test::{expect, Expect};
|
2019-11-17 12:47:50 -06:00
|
|
|
|
2020-10-02 10:34:31 -05:00
|
|
|
use crate::fixture;
|
2020-02-18 11:35:10 -06:00
|
|
|
|
2021-08-25 19:36:33 -05:00
|
|
|
#[track_caller]
|
2020-07-01 10:52:22 -05:00
|
|
|
fn check(ra_fixture: &str, expect: Expect) {
|
2020-10-02 10:34:31 -05:00
|
|
|
let (analysis, pos) = fixture::position(ra_fixture);
|
2020-07-01 10:52:22 -05:00
|
|
|
let expansion = analysis.expand_macro(pos).unwrap().unwrap();
|
|
|
|
let actual = format!("{}\n{}", expansion.name, expansion.expansion);
|
|
|
|
expect.assert_eq(&actual);
|
2019-11-17 12:47:50 -06:00
|
|
|
}
|
|
|
|
|
2021-11-26 20:22:21 -06:00
|
|
|
#[test]
|
|
|
|
fn macro_expand_as_keyword() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
macro_rules! bar {
|
|
|
|
($i:tt) => { $i as _ }
|
|
|
|
}
|
|
|
|
fn main() {
|
|
|
|
let x: u64 = ba$0r!(5i64);
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
bar
|
|
|
|
5i64 as _"#]],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-17 12:47:50 -06:00
|
|
|
#[test]
|
|
|
|
fn macro_expand_recursive_expansion() {
|
2020-07-01 10:52:22 -05:00
|
|
|
check(
|
2019-11-17 12:47:50 -06:00
|
|
|
r#"
|
2020-07-01 10:52:22 -05:00
|
|
|
macro_rules! bar {
|
|
|
|
() => { fn b() {} }
|
|
|
|
}
|
|
|
|
macro_rules! foo {
|
|
|
|
() => { bar!(); }
|
|
|
|
}
|
|
|
|
macro_rules! baz {
|
|
|
|
() => { foo!(); }
|
|
|
|
}
|
2021-01-06 14:15:48 -06:00
|
|
|
f$0oo!();
|
2020-07-01 10:52:22 -05:00
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
foo
|
|
|
|
fn b(){}
|
2021-08-25 19:36:33 -05:00
|
|
|
|
2020-07-01 10:52:22 -05:00
|
|
|
"#]],
|
2019-11-17 12:47:50 -06:00
|
|
|
);
|
2019-11-19 10:12:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn macro_expand_multiple_lines() {
|
2020-07-01 10:52:22 -05:00
|
|
|
check(
|
2019-11-19 10:12:48 -06:00
|
|
|
r#"
|
2020-07-01 10:52:22 -05:00
|
|
|
macro_rules! foo {
|
|
|
|
() => {
|
|
|
|
fn some_thing() -> u32 {
|
|
|
|
let a = 0;
|
|
|
|
a + 10
|
2019-11-19 10:12:48 -06:00
|
|
|
}
|
2020-07-01 10:52:22 -05:00
|
|
|
}
|
|
|
|
}
|
2021-01-06 14:15:48 -06:00
|
|
|
f$0oo!();
|
2019-11-19 10:12:48 -06:00
|
|
|
"#,
|
2020-07-01 10:52:22 -05:00
|
|
|
expect![[r#"
|
2021-08-25 19:36:33 -05:00
|
|
|
foo
|
|
|
|
fn some_thing() -> u32 {
|
|
|
|
let a = 0;
|
|
|
|
a+10
|
|
|
|
}
|
|
|
|
"#]],
|
2019-11-19 10:12:48 -06:00
|
|
|
);
|
2019-11-21 12:35:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn macro_expand_match_ast() {
|
2020-07-01 10:52:22 -05:00
|
|
|
check(
|
2019-11-21 12:35:30 -06:00
|
|
|
r#"
|
2020-07-01 10:52:22 -05:00
|
|
|
macro_rules! match_ast {
|
|
|
|
(match $node:ident { $($tt:tt)* }) => { match_ast!(match ($node) { $($tt)* }) };
|
|
|
|
(match ($node:expr) {
|
|
|
|
$( ast::$ast:ident($it:ident) => $res:block, )*
|
|
|
|
_ => $catch_all:expr $(,)?
|
|
|
|
}) => {{
|
|
|
|
$( if let Some($it) = ast::$ast::cast($node.clone()) $res else )*
|
|
|
|
{ $catch_all }
|
|
|
|
}};
|
|
|
|
}
|
2020-02-06 05:52:32 -06:00
|
|
|
|
2020-07-01 10:52:22 -05:00
|
|
|
fn main() {
|
2021-01-06 14:15:48 -06:00
|
|
|
mat$0ch_ast! {
|
2020-07-01 10:52:22 -05:00
|
|
|
match container {
|
|
|
|
ast::TraitDef(it) => {},
|
|
|
|
ast::ImplDef(it) => {},
|
|
|
|
_ => { continue },
|
2020-02-06 05:52:32 -06:00
|
|
|
}
|
2019-11-21 12:35:30 -06:00
|
|
|
}
|
|
|
|
}
|
2020-07-01 10:52:22 -05:00
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
match_ast
|
|
|
|
{
|
|
|
|
if let Some(it) = ast::TraitDef::cast(container.clone()){}
|
|
|
|
else if let Some(it) = ast::ImplDef::cast(container.clone()){}
|
|
|
|
else {
|
|
|
|
{
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#]],
|
|
|
|
);
|
2019-11-17 12:47:50 -06:00
|
|
|
}
|
2019-11-21 22:04:20 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn macro_expand_match_ast_inside_let_statement() {
|
2020-07-01 10:52:22 -05:00
|
|
|
check(
|
2019-11-21 22:04:20 -06:00
|
|
|
r#"
|
2020-07-01 10:52:22 -05:00
|
|
|
macro_rules! match_ast {
|
|
|
|
(match $node:ident { $($tt:tt)* }) => { match_ast!(match ($node) { $($tt)* }) };
|
|
|
|
(match ($node:expr) {}) => {{}};
|
|
|
|
}
|
2019-11-21 22:04:20 -06:00
|
|
|
|
2020-07-01 10:52:22 -05:00
|
|
|
fn main() {
|
|
|
|
let p = f(|it| {
|
2021-01-06 14:15:48 -06:00
|
|
|
let res = mat$0ch_ast! { match c {}};
|
2020-07-01 10:52:22 -05:00
|
|
|
Some(res)
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
match_ast
|
|
|
|
{}
|
|
|
|
"#]],
|
2019-11-21 22:04:20 -06:00
|
|
|
);
|
|
|
|
}
|
2019-11-22 20:33:14 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn macro_expand_inner_macro_fail_to_expand() {
|
2020-07-01 10:52:22 -05:00
|
|
|
check(
|
2019-11-22 20:33:14 -06:00
|
|
|
r#"
|
2020-07-01 10:52:22 -05:00
|
|
|
macro_rules! bar {
|
|
|
|
(BAD) => {};
|
|
|
|
}
|
|
|
|
macro_rules! foo {
|
|
|
|
() => {bar!()};
|
|
|
|
}
|
2019-11-22 20:33:14 -06:00
|
|
|
|
2020-07-01 10:52:22 -05:00
|
|
|
fn main() {
|
2021-01-06 14:15:48 -06:00
|
|
|
let res = fo$0o!();
|
2020-07-01 10:52:22 -05:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
foo
|
|
|
|
"#]],
|
2019-11-22 20:33:14 -06:00
|
|
|
);
|
|
|
|
}
|
2019-11-26 01:05:53 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn macro_expand_with_dollar_crate() {
|
2020-07-01 10:52:22 -05:00
|
|
|
check(
|
2019-11-26 01:05:53 -06:00
|
|
|
r#"
|
2020-07-01 10:52:22 -05:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! bar {
|
|
|
|
() => {0};
|
|
|
|
}
|
|
|
|
macro_rules! foo {
|
|
|
|
() => {$crate::bar!()};
|
|
|
|
}
|
2019-11-26 01:05:53 -06:00
|
|
|
|
2020-07-01 10:52:22 -05:00
|
|
|
fn main() {
|
2021-01-06 14:15:48 -06:00
|
|
|
let res = fo$0o!();
|
2020-07-01 10:52:22 -05:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
foo
|
|
|
|
0 "#]],
|
2019-11-26 01:05:53 -06:00
|
|
|
);
|
|
|
|
}
|
2021-08-24 09:33:52 -05:00
|
|
|
|
2022-01-06 08:38:25 -06:00
|
|
|
#[test]
|
|
|
|
fn macro_expand_with_dyn_absolute_path() {
|
|
|
|
check(
|
|
|
|
r#"
|
|
|
|
macro_rules! foo {
|
|
|
|
() => {fn f<T>(_: &dyn ::std::marker::Copy) {}};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let res = fo$0o!();
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
foo
|
|
|
|
fn f<T>(_: &dyn ::std::marker::Copy){}
|
|
|
|
"#]],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-24 09:33:52 -05:00
|
|
|
#[test]
|
|
|
|
fn macro_expand_derive() {
|
|
|
|
check(
|
|
|
|
r#"
|
2021-10-26 13:15:25 -05:00
|
|
|
//- proc_macros: identity
|
2021-11-17 12:46:32 -06:00
|
|
|
//- minicore: clone, derive
|
2021-08-24 09:33:52 -05:00
|
|
|
|
2021-10-26 13:15:25 -05:00
|
|
|
#[proc_macros::identity]
|
2021-08-24 09:33:52 -05:00
|
|
|
#[derive(C$0lone)]
|
|
|
|
struct Foo {}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
Clone
|
2022-01-06 04:08:32 -06:00
|
|
|
impl < >core::clone::Clone for Foo< >{}
|
2021-08-25 19:36:33 -05:00
|
|
|
|
|
|
|
"#]],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn macro_expand_derive2() {
|
|
|
|
check(
|
|
|
|
r#"
|
2021-11-17 12:46:32 -06:00
|
|
|
//- minicore: copy, clone, derive
|
2021-08-25 19:36:33 -05:00
|
|
|
|
|
|
|
#[derive(Cop$0y)]
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct Foo {}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
|
|
|
Copy
|
2022-01-06 04:08:32 -06:00
|
|
|
impl < >core::marker::Copy for Foo< >{}
|
2021-08-25 19:36:33 -05:00
|
|
|
|
2021-08-24 09:33:52 -05:00
|
|
|
"#]],
|
|
|
|
);
|
|
|
|
}
|
2021-08-25 20:32:34 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn macro_expand_derive_multi() {
|
|
|
|
check(
|
|
|
|
r#"
|
2021-11-17 12:46:32 -06:00
|
|
|
//- minicore: copy, clone, derive
|
2021-08-25 20:32:34 -05:00
|
|
|
|
|
|
|
#[derive(Cop$0y, Clone)]
|
|
|
|
struct Foo {}
|
|
|
|
"#,
|
|
|
|
expect![[r#"
|
2022-02-21 05:57:57 -06:00
|
|
|
Copy
|
2022-01-06 04:08:32 -06:00
|
|
|
impl < >core::marker::Copy for Foo< >{}
|
2021-08-25 20:32:34 -05:00
|
|
|
|
|
|
|
"#]],
|
|
|
|
);
|
|
|
|
}
|
2019-11-17 12:47:50 -06:00
|
|
|
}
|