2019-09-02 18:51:03 +03:00
|
|
|
//! This module takes a (parsed) definition of `macro_rules` invocation, a
|
|
|
|
//! `tt::TokenTree` representing an argument of macro invocation, and produces a
|
|
|
|
//! `tt::TokenTree` for the result of the expansion.
|
|
|
|
|
2019-09-17 02:06:14 +03:00
|
|
|
mod matcher;
|
|
|
|
mod transcriber;
|
|
|
|
|
2019-07-04 23:05:17 +03:00
|
|
|
use ra_syntax::SmolStr;
|
2019-01-31 13:59:25 +03:00
|
|
|
use rustc_hash::FxHashMap;
|
|
|
|
|
2020-03-14 20:24:18 +01:00
|
|
|
use crate::{ExpandError, ExpandResult};
|
|
|
|
|
|
|
|
pub(crate) fn expand(rules: &crate::MacroRules, input: &tt::Subtree) -> ExpandResult<tt::Subtree> {
|
|
|
|
let (mut result, mut unmatched_tokens, mut unmatched_patterns, mut err) = (
|
|
|
|
tt::Subtree::default(),
|
|
|
|
usize::max_value(),
|
|
|
|
usize::max_value(),
|
|
|
|
Some(ExpandError::NoMatchingRule),
|
|
|
|
);
|
2020-03-13 13:03:31 +01:00
|
|
|
for rule in &rules.rules {
|
2020-03-14 20:24:18 +01:00
|
|
|
let ((res, tokens, patterns), e) = expand_rule(rule, input);
|
2020-03-13 13:03:31 +01:00
|
|
|
if e.is_none() {
|
|
|
|
// if we find a rule that applies without errors, we're done
|
|
|
|
return (res, None);
|
|
|
|
}
|
2020-03-14 20:24:18 +01:00
|
|
|
// use the rule if we matched more tokens, or had fewer patterns left
|
|
|
|
if tokens < unmatched_tokens || tokens == unmatched_tokens && patterns < unmatched_patterns
|
|
|
|
{
|
2020-03-13 15:18:17 +01:00
|
|
|
result = res;
|
|
|
|
err = e;
|
2020-03-14 20:24:18 +01:00
|
|
|
unmatched_tokens = tokens;
|
|
|
|
unmatched_patterns = patterns;
|
2020-03-13 15:18:17 +01:00
|
|
|
}
|
2020-03-13 13:03:31 +01:00
|
|
|
}
|
|
|
|
(result, err)
|
2019-01-31 13:59:25 +03:00
|
|
|
}
|
|
|
|
|
2020-03-14 20:24:18 +01:00
|
|
|
fn expand_rule(
|
|
|
|
rule: &crate::Rule,
|
|
|
|
input: &tt::Subtree,
|
|
|
|
) -> ExpandResult<(tt::Subtree, usize, usize)> {
|
|
|
|
dbg!(&rule.lhs);
|
|
|
|
let (match_result, bindings_err) = dbg!(matcher::match_(&rule.lhs, input));
|
|
|
|
let (res, transcribe_err) = dbg!(transcriber::transcribe(&rule.rhs, &match_result.bindings));
|
|
|
|
(
|
|
|
|
(res, match_result.unmatched_tokens, match_result.unmatched_patterns),
|
|
|
|
bindings_err.or(transcribe_err),
|
|
|
|
)
|
2019-01-31 13:59:25 +03:00
|
|
|
}
|
|
|
|
|
2019-01-31 23:01:34 +03:00
|
|
|
/// The actual algorithm for expansion is not too hard, but is pretty tricky.
|
|
|
|
/// `Bindings` structure is the key to understanding what we are doing here.
|
|
|
|
///
|
|
|
|
/// On the high level, it stores mapping from meta variables to the bits of
|
|
|
|
/// syntax it should be substituted with. For example, if `$e:expr` is matched
|
|
|
|
/// with `1 + 1` by macro_rules, the `Binding` will store `$e -> 1 + 1`.
|
|
|
|
///
|
|
|
|
/// The tricky bit is dealing with repetitions (`$()*`). Consider this example:
|
|
|
|
///
|
2019-02-08 13:55:45 +03:00
|
|
|
/// ```not_rust
|
2019-01-31 23:01:34 +03:00
|
|
|
/// macro_rules! foo {
|
|
|
|
/// ($($ i:ident $($ e:expr),*);*) => {
|
|
|
|
/// $(fn $ i() { $($ e);*; })*
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// foo! { foo 1,2,3; bar 4,5,6 }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Here, the `$i` meta variable is matched first with `foo` and then with
|
|
|
|
/// `bar`, and `$e` is matched in turn with `1`, `2`, `3`, `4`, `5`, `6`.
|
|
|
|
///
|
|
|
|
/// To represent such "multi-mappings", we use a recursive structures: we map
|
|
|
|
/// variables not to values, but to *lists* of values or other lists (that is,
|
|
|
|
/// to the trees).
|
|
|
|
///
|
|
|
|
/// For the above example, the bindings would store
|
|
|
|
///
|
2019-02-08 13:55:45 +03:00
|
|
|
/// ```not_rust
|
2019-01-31 23:01:34 +03:00
|
|
|
/// i -> [foo, bar]
|
|
|
|
/// e -> [[1, 2, 3], [4, 5, 6]]
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// We construct `Bindings` in the `match_lhs`. The interesting case is
|
|
|
|
/// `TokenTree::Repeat`, where we use `push_nested` to create the desired
|
|
|
|
/// nesting structure.
|
|
|
|
///
|
|
|
|
/// The other side of the puzzle is `expand_subtree`, where we use the bindings
|
|
|
|
/// to substitute meta variables in the output template. When expanding, we
|
2019-02-11 17:18:27 +01:00
|
|
|
/// maintain a `nesting` stack of indices which tells us which occurrence from
|
2019-01-31 23:01:34 +03:00
|
|
|
/// the `Bindings` we should take. We push to the stack when we enter a
|
|
|
|
/// repetition.
|
|
|
|
///
|
|
|
|
/// In other words, `Bindings` is a *multi* mapping from `SmolStr` to
|
|
|
|
/// `tt::TokenTree`, where the index to select a particular `TokenTree` among
|
|
|
|
/// many is not a plain `usize`, but an `&[usize]`.
|
2019-01-31 13:59:25 +03:00
|
|
|
#[derive(Debug, Default)]
|
|
|
|
struct Bindings {
|
2019-01-31 15:22:55 +03:00
|
|
|
inner: FxHashMap<SmolStr, Binding>,
|
2019-01-31 13:59:25 +03:00
|
|
|
}
|
|
|
|
|
2019-01-31 15:22:55 +03:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum Binding {
|
2019-09-10 20:09:43 +03:00
|
|
|
Fragment(Fragment),
|
2019-01-31 15:22:55 +03:00
|
|
|
Nested(Vec<Binding>),
|
2019-05-04 01:14:25 +08:00
|
|
|
Empty,
|
2019-01-31 15:22:55 +03:00
|
|
|
}
|
|
|
|
|
2019-09-10 20:09:43 +03:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
enum Fragment {
|
|
|
|
/// token fragments are just copy-pasted into the output
|
|
|
|
Tokens(tt::TokenTree),
|
|
|
|
/// Ast fragments are inserted with fake delimiters, so as to make things
|
|
|
|
/// like `$i * 2` where `$i = 1 + 1` work as expectd.
|
|
|
|
Ast(tt::TokenTree),
|
|
|
|
}
|
|
|
|
|
2019-03-03 20:33:50 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use ra_syntax::{ast, AstNode};
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
use crate::ast_to_token_tree;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_expand_rule() {
|
|
|
|
assert_err(
|
|
|
|
"($($i:ident);*) => ($i)",
|
|
|
|
"foo!{a}",
|
|
|
|
ExpandError::BindingError(String::from(
|
|
|
|
"expected simple binding, found nested binding `i`",
|
|
|
|
)),
|
|
|
|
);
|
|
|
|
|
2019-04-18 10:21:36 +08:00
|
|
|
// FIXME:
|
|
|
|
// Add an err test case for ($($i:ident)) => ($())
|
2019-03-03 20:33:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn assert_err(macro_body: &str, invocation: &str, err: ExpandError) {
|
2020-03-13 13:03:31 +01:00
|
|
|
assert_eq!(expand_first(&create_rules(&format_macro(macro_body)), invocation).1, Some(err));
|
2019-03-03 20:33:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn format_macro(macro_body: &str) -> String {
|
|
|
|
format!(
|
|
|
|
"
|
|
|
|
macro_rules! foo {{
|
|
|
|
{}
|
|
|
|
}}
|
|
|
|
",
|
|
|
|
macro_body
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_rules(macro_definition: &str) -> crate::MacroRules {
|
2019-05-28 17:39:01 +03:00
|
|
|
let source_file = ast::SourceFile::parse(macro_definition).ok().unwrap();
|
2019-03-03 20:33:50 +01:00
|
|
|
let macro_definition =
|
|
|
|
source_file.syntax().descendants().find_map(ast::MacroCall::cast).unwrap();
|
|
|
|
|
2019-07-18 20:09:50 +03:00
|
|
|
let (definition_tt, _) =
|
|
|
|
ast_to_token_tree(¯o_definition.token_tree().unwrap()).unwrap();
|
2019-03-03 20:33:50 +01:00
|
|
|
crate::MacroRules::parse(&definition_tt).unwrap()
|
|
|
|
}
|
|
|
|
|
2020-03-14 20:24:18 +01:00
|
|
|
fn expand_first(rules: &crate::MacroRules, invocation: &str) -> ExpandResult<tt::Subtree> {
|
2019-05-28 17:39:01 +03:00
|
|
|
let source_file = ast::SourceFile::parse(invocation).ok().unwrap();
|
2019-03-03 20:33:50 +01:00
|
|
|
let macro_invocation =
|
|
|
|
source_file.syntax().descendants().find_map(ast::MacroCall::cast).unwrap();
|
|
|
|
|
2019-07-18 20:09:50 +03:00
|
|
|
let (invocation_tt, _) =
|
|
|
|
ast_to_token_tree(¯o_invocation.token_tree().unwrap()).unwrap();
|
2019-03-03 20:33:50 +01:00
|
|
|
|
2020-03-14 20:24:18 +01:00
|
|
|
let expanded = expand_rule(&rules.rules[0], &invocation_tt);
|
|
|
|
((expanded.0).0, expanded.1)
|
2019-03-03 20:33:50 +01:00
|
|
|
}
|
|
|
|
}
|