rust/crates/ide/src/expand_macro.rs

442 lines
11 KiB
Rust
Raw Normal View History

2021-04-08 09:20:14 -05:00
use std::iter;
use hir::Semantics;
use ide_db::{helpers::pick_best_token, RootDatabase};
use itertools::Itertools;
2021-08-25 19:36:33 -05:00
use syntax::{ast, ted, AstNode, NodeOrToken, SyntaxKind, SyntaxNode, WalkEvent, 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**
// |===
//
// 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> {
let sema = Semantics::new(db);
let file = sema.parse(position.file_id);
2019-11-17 12:47:50 -06: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
// 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:
// ```
// #[attr]
// #[derive($0Foo)]
// struct Bar;
// ```
let derive = sema.descend_into_macros(tok.clone()).iter().find_map(|descended| {
let attr = descended.ancestors().find_map(ast::Attr::cast)?;
let (path, tt) = attr.as_simple_call()?;
if path == "derive" {
let mut tt = tt.syntax().children_with_tokens().skip(1).join("");
tt.pop();
let expansions = sema.expand_derive_macro(&attr)?;
Some(ExpandedMacro {
name: tt,
expansion: expansions.into_iter().map(insert_whitespaces).join(""),
})
} else {
None
2021-08-25 19:36:33 -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
let mut expanded = None;
let mut name = None;
for node in tok.ancestors() {
if let Some(item) = ast::Item::cast(node.clone()) {
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);
break;
}
}
if let Some(mac) = ast::MacroCall::cast(node) {
name = Some(mac.path()?.segment()?.name_ref()?.to_string());
expanded = expand_macro_recur(&sema, &mac);
break;
}
}
2019-11-17 12:47:50 -06:00
// FIXME:
// macro expansion may lose all white space information
// But we hope someday we can use ra_fmt for that
let expansion = insert_whitespaces(expanded?);
Some(ExpandedMacro { name: name.unwrap_or_else(|| "???".to_owned()), expansion })
2019-11-17 12:47:50 -06:00
}
fn expand_macro_recur(
sema: &Semantics<RootDatabase>,
macro_call: &ast::MacroCall,
2019-11-17 12:47:50 -06:00
) -> Option<SyntaxNode> {
let expanded = sema.expand(macro_call)?.clone_for_update();
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
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);
let mut replacements = Vec::new();
2019-11-17 12:47:50 -06:00
for child in children {
if let Some(new_node) = exp(sema, &child) {
// check if the whole original syntax is replaced
2019-11-22 20:33:14 -06:00
if expanded == *child.syntax() {
return Some(new_node);
2019-11-22 20:33:14 -06:00
}
replacements.push((child, new_node));
2019-11-21 22:04:20 -06:00
}
2019-11-17 12:47:50 -06:00
}
replacements.into_iter().rev().for_each(|(old, new)| ted::replace(old.syntax(), new));
Some(expanded)
2019-11-17 12:47:50 -06:00
}
2019-11-19 10:12:48 -06:00
// FIXME: It would also be cool to share logic here and in the mbe tests,
// which are pretty unreadable at the moment.
fn insert_whitespaces(syn: SyntaxNode) -> String {
2021-08-25 19:36:33 -05:00
use SyntaxKind::*;
2019-11-19 10:12:48 -06:00
let mut res = String::new();
2019-11-17 12:47:50 -06:00
2019-11-19 10:12:48 -06:00
let mut indent = 0;
let mut last: Option<SyntaxKind> = None;
2021-08-25 19:36:33 -05:00
for event in syn.preorder_with_tokens() {
let token = match event {
WalkEvent::Enter(NodeOrToken::Token(token)) => token,
WalkEvent::Leave(NodeOrToken::Node(node))
if matches!(node.kind(), ATTR | MATCH_ARM | STRUCT | ENUM | UNION | FN | IMPL) =>
{
res.push('\n');
res.extend(iter::repeat(" ").take(2 * indent));
continue;
}
_ => continue,
};
let is_next = |f: fn(SyntaxKind) -> bool, default| -> bool {
token.next_token().map(|it| f(it.kind())).unwrap_or(default)
2019-11-19 10:12:48 -06:00
};
2019-12-20 14:14:30 -06:00
let is_last =
|f: fn(SyntaxKind) -> bool, default| -> bool { last.map(f).unwrap_or(default) };
2019-11-19 10:12:48 -06:00
2021-04-08 09:20:14 -05:00
match token.kind() {
k if is_text(k) && is_next(|it| !it.is_punct(), true) => {
res.push_str(token.text());
res.push(' ');
}
2019-11-19 10:12:48 -06:00
L_CURLY if is_next(|it| it != R_CURLY, true) => {
indent += 1;
2021-04-08 09:20:14 -05:00
if is_last(is_text, false) {
res.push(' ');
}
res.push_str("{\n");
res.extend(iter::repeat(" ").take(2 * indent));
2019-11-19 10:12:48 -06:00
}
R_CURLY if is_last(|it| it != L_CURLY, true) => {
2019-12-20 14:14:30 -06:00
indent = indent.saturating_sub(1);
2021-04-08 09:20:14 -05:00
res.push('\n');
res.extend(iter::repeat(" ").take(2 * indent));
res.push_str("}");
}
R_CURLY => {
res.push_str("}\n");
res.extend(iter::repeat(" ").take(2 * indent));
2019-11-19 10:12:48 -06:00
}
LIFETIME_IDENT if is_next(|it| it == IDENT || it == MUT_KW, true) => {
2021-04-08 09:20:14 -05:00
res.push_str(token.text());
res.push(' ');
}
2021-11-26 20:22:21 -06:00
AS_KW => {
res.push_str(token.text());
res.push(' ');
}
2021-04-08 09:20:14 -05:00
T![;] => {
res.push_str(";\n");
res.extend(iter::repeat(" ").take(2 * indent));
}
T![->] => res.push_str(" -> "),
T![=] => res.push_str(" = "),
T![=>] => res.push_str(" => "),
_ => res.push_str(token.text()),
}
2019-11-19 10:12:48 -06:00
last = Some(token.kind());
}
2019-11-17 12:47:50 -06:00
2019-11-21 12:35:49 -06:00
return res;
fn is_text(k: SyntaxKind) -> bool {
k.is_keyword() || k.is_literal() || k == IDENT
}
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;
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
);
}
#[test]
fn macro_expand_with_dollar_crate() {
2020-07-01 10:52:22 -05:00
check(
r#"
2020-07-01 10:52:22 -05:00
#[macro_export]
macro_rules! bar {
() => {0};
}
macro_rules! foo {
() => {$crate::bar!()};
}
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 "#]],
);
}
#[test]
fn macro_expand_derive() {
check(
r#"
2021-10-26 13:15:25 -05:00
//- proc_macros: identity
//- minicore: clone, derive
2021-10-26 13:15:25 -05:00
#[proc_macros::identity]
#[derive(C$0lone)]
struct Foo {}
"#,
expect![[r#"
Clone
impl< >core::clone::Clone for Foo< >{}
2021-08-25 19:36:33 -05:00
"#]],
);
}
#[test]
fn macro_expand_derive2() {
check(
r#"
//- minicore: copy, clone, derive
2021-08-25 19:36:33 -05:00
#[derive(Cop$0y)]
#[derive(Clone)]
struct Foo {}
"#,
expect![[r#"
Copy
impl< >core::marker::Copy for Foo< >{}
2021-08-25 19:36:33 -05:00
"#]],
);
}
#[test]
fn macro_expand_derive_multi() {
check(
r#"
//- minicore: copy, clone, derive
#[derive(Cop$0y, Clone)]
struct Foo {}
"#,
expect![[r#"
Copy, Clone
impl< >core::marker::Copy for Foo< >{}
impl< >core::clone::Clone for Foo< >{}
"#]],
);
}
2019-11-17 12:47:50 -06:00
}