rust/crates/mbe/src/lib.rs

355 lines
11 KiB
Rust
Raw Normal View History

//! `mbe` (short for Macro By Example) crate contains code for handling
2020-08-12 16:46:20 +02:00
//! `macro_rules` macros. It uses `TokenTree` (from `tt` package) as the
//! interface, although it contains some code to bridge `SyntaxNode`s and
//! `TokenTree`s as well!
2021-10-09 14:48:38 +03:00
//!
//! The tes for this functionality live in another crate:
//! `hir_def::macro_expansion_tests::mbe`.
2019-01-31 21:29:04 +03:00
mod parser;
2021-01-29 20:23:38 +08:00
mod expander;
2019-01-31 21:29:04 +03:00
mod syntax_bridge;
mod tt_iter;
2019-04-07 21:42:53 +08:00
mod subtree_source;
2019-01-30 23:17:32 +03:00
2021-02-05 19:57:32 +08:00
#[cfg(test)]
mod benchmark;
2021-05-24 18:43:42 +02:00
mod token_map;
2021-02-05 19:57:32 +08:00
use std::fmt;
use crate::{
2021-10-02 20:21:23 +03:00
parser::{MetaTemplate, Op},
tt_iter::TtIter,
};
// FIXME: we probably should re-think `token_tree_to_syntax_node` interfaces
pub use ::parser::ParserEntryPoint;
pub use tt::{Delimiter, DelimiterKind, Punct};
#[derive(Debug, PartialEq, Eq, Clone)]
2019-03-03 10:40:03 +01:00
pub enum ParseError {
UnexpectedToken(String),
2019-03-03 12:45:30 +01:00
Expected(String),
InvalidRepeat,
2021-01-08 15:42:40 +01:00
RepetitionEmptyTokenTree,
2019-03-03 10:40:03 +01:00
}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
ParseError::UnexpectedToken(it) => f.write_str(it),
ParseError::Expected(it) => f.write_str(it),
ParseError::InvalidRepeat => f.write_str("invalid repeat"),
ParseError::RepetitionEmptyTokenTree => f.write_str("empty token tree in repetition"),
}
}
}
2020-05-14 17:57:37 +08:00
#[derive(Debug, PartialEq, Eq, Clone)]
2019-03-03 10:40:03 +01:00
pub enum ExpandError {
2019-03-02 20:20:26 +01:00
NoMatchingRule,
UnexpectedToken,
BindingError(String),
ConversionError,
// FIXME: no way mbe should know about proc macros.
UnresolvedProcMacro,
Other(String),
2020-03-27 00:41:44 +08:00
}
impl fmt::Display for ExpandError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
ExpandError::NoMatchingRule => f.write_str("no rule matches input tokens"),
ExpandError::UnexpectedToken => f.write_str("unexpected token in input"),
ExpandError::BindingError(e) => f.write_str(e),
ExpandError::ConversionError => f.write_str("could not convert tokens"),
ExpandError::UnresolvedProcMacro => f.write_str("unresolved proc macro"),
ExpandError::Other(e) => f.write_str(e),
}
}
}
2021-05-24 21:47:01 +02:00
pub use crate::{
syntax_bridge::{
parse_exprs_with_sep, parse_to_token_tree, syntax_node_to_token_tree,
syntax_node_to_token_tree_censored, token_tree_to_syntax_node,
2021-05-24 21:47:01 +02:00
},
2021-08-21 18:19:18 +02:00
token_map::TokenMap,
};
2019-01-31 13:46:40 +03:00
2019-02-11 19:07:49 +03:00
/// This struct contains AST for a single `macro_rules` definition. What might
2019-01-31 22:14:28 +03:00
/// be very confusing is that AST has almost exactly the same shape as
/// `tt::TokenTree`, but there's a crucial difference: in macro rules, `$ident`
/// and `$()*` have special meaning (see `Var` and `Repeat` data structures)
#[derive(Clone, Debug, PartialEq, Eq)]
2021-10-10 21:07:43 +03:00
pub struct DeclarativeMacro {
2021-01-26 05:15:47 +08:00
rules: Vec<Rule>,
/// Highest id of the token we have in TokenMap
shift: Shift,
}
#[derive(Clone, Debug, PartialEq, Eq)]
struct Rule {
2020-12-30 02:35:21 +08:00
lhs: MetaTemplate,
rhs: MetaTemplate,
}
2021-08-21 18:06:03 +02:00
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub struct Shift(u32);
impl Shift {
2021-08-21 18:06:03 +02:00
pub fn new(tt: &tt::Subtree) -> Shift {
// Note that TokenId is started from zero,
// We have to add 1 to prevent duplication.
let value = max_id(tt).map_or(0, |it| it + 1);
return Shift(value);
// Find the max token id inside a subtree
fn max_id(subtree: &tt::Subtree) -> Option<u32> {
subtree
.token_trees
.iter()
.filter_map(|tt| match tt {
tt::TokenTree::Subtree(subtree) => {
let tree_id = max_id(subtree);
match subtree.delimiter {
Some(it) if it.id != tt::TokenId::unspecified() => {
Some(tree_id.map_or(it.id.0, |t| t.max(it.id.0)))
}
_ => tree_id,
}
}
tt::TokenTree::Leaf(leaf) => {
let id = match leaf {
tt::Leaf::Literal(it) => it.id,
tt::Leaf::Punct(it) => it.id,
tt::Leaf::Ident(it) => it.id,
};
(id != tt::TokenId::unspecified()).then(|| id.0)
}
})
.max()
}
}
/// Shift given TokenTree token id
2021-08-21 18:06:03 +02:00
pub fn shift_all(self, tt: &mut tt::Subtree) {
2021-06-07 13:59:01 +02:00
for t in &mut tt.token_trees {
match t {
tt::TokenTree::Leaf(leaf) => match leaf {
tt::Leaf::Ident(ident) => ident.id = self.shift(ident.id),
tt::Leaf::Punct(punct) => punct.id = self.shift(punct.id),
tt::Leaf::Literal(lit) => lit.id = self.shift(lit.id),
},
tt::TokenTree::Subtree(tt) => {
2019-12-20 15:14:30 -05:00
if let Some(it) = tt.delimiter.as_mut() {
it.id = self.shift(it.id);
};
self.shift_all(tt)
}
2019-11-05 01:01:05 +08:00
}
}
}
2019-11-04 23:22:18 +08:00
2021-08-21 18:06:03 +02:00
pub fn shift(self, id: tt::TokenId) -> tt::TokenId {
if id == tt::TokenId::unspecified() {
return id;
2019-11-04 23:22:18 +08:00
}
tt::TokenId(id.0 + self.0)
}
2021-08-21 18:06:03 +02:00
pub fn unshift(self, id: tt::TokenId) -> Option<tt::TokenId> {
id.0.checked_sub(self.0).map(tt::TokenId)
2019-11-04 23:22:18 +08:00
}
}
#[derive(Debug, Eq, PartialEq)]
pub enum Origin {
Def,
Call,
}
2021-10-10 21:07:43 +03:00
impl DeclarativeMacro {
/// The old, `macro_rules! m {}` flavor.
pub fn parse_macro_rules(tt: &tt::Subtree) -> Result<DeclarativeMacro, ParseError> {
2019-09-22 23:39:29 +03:00
// Note: this parsing can be implemented using mbe machinery itself, by
// matching against `$($lhs:tt => $rhs:tt);*` pattern, but implementing
// manually seems easier.
let mut src = TtIter::new(tt);
let mut rules = Vec::new();
while src.len() > 0 {
2021-01-26 05:15:47 +08:00
let rule = Rule::parse(&mut src, true)?;
rules.push(rule);
if let Err(()) = src.expect_char(';') {
if src.len() > 0 {
2020-12-30 02:35:21 +08:00
return Err(ParseError::Expected("expected `;`".to_string()));
}
break;
}
}
2019-09-22 23:39:29 +03:00
2021-06-07 13:59:01 +02:00
for rule in &rules {
2019-09-22 23:39:29 +03:00
validate(&rule.lhs)?;
}
2021-10-10 21:07:43 +03:00
Ok(DeclarativeMacro { rules, shift: Shift::new(tt) })
2021-01-26 05:15:47 +08:00
}
2021-10-10 21:07:43 +03:00
/// The new, unstable `macro m {}` flavor.
pub fn parse_macro2(tt: &tt::Subtree) -> Result<DeclarativeMacro, ParseError> {
2021-01-26 05:15:47 +08:00
let mut src = TtIter::new(tt);
let mut rules = Vec::new();
if Some(tt::DelimiterKind::Brace) == tt.delimiter_kind() {
2021-03-08 22:19:44 +02:00
cov_mark::hit!(parse_macro_def_rules);
2021-01-26 05:15:47 +08:00
while src.len() > 0 {
let rule = Rule::parse(&mut src, true)?;
rules.push(rule);
2021-04-03 03:08:31 +02:00
if let Err(()) = src.expect_any_char(&[';', ',']) {
2021-01-26 05:15:47 +08:00
if src.len() > 0 {
2021-04-03 03:08:31 +02:00
return Err(ParseError::Expected(
"expected `;` or `,` to delimit rules".to_string(),
));
2021-01-26 05:15:47 +08:00
}
break;
}
}
} else {
2021-03-08 22:19:44 +02:00
cov_mark::hit!(parse_macro_def_simple);
2021-01-26 05:15:47 +08:00
let rule = Rule::parse(&mut src, false)?;
if src.len() != 0 {
return Err(ParseError::Expected("remain tokens in macro def".to_string()));
}
rules.push(rule);
}
2021-06-07 13:59:01 +02:00
for rule in &rules {
2021-01-26 05:15:47 +08:00
validate(&rule.lhs)?;
}
2021-10-10 21:07:43 +03:00
Ok(DeclarativeMacro { rules, shift: Shift::new(tt) })
2021-01-26 05:15:47 +08:00
}
pub fn expand(&self, tt: &tt::Subtree) -> ExpandResult<tt::Subtree> {
// apply shift
let mut tt = tt.clone();
self.shift.shift_all(&mut tt);
2021-01-29 20:23:38 +08:00
expander::expand_rules(&self.rules, &tt)
2019-01-31 22:14:28 +03:00
}
pub fn map_id_down(&self, id: tt::TokenId) -> tt::TokenId {
self.shift.shift(id)
}
pub fn map_id_up(&self, id: tt::TokenId) -> (tt::TokenId, Origin) {
match self.shift.unshift(id) {
Some(id) => (id, Origin::Call),
None => (id, Origin::Def),
}
}
pub fn shift(&self) -> Shift {
self.shift
}
2019-01-31 22:14:28 +03:00
}
impl Rule {
2021-06-07 13:59:01 +02:00
fn parse(src: &mut TtIter, expect_arrow: bool) -> Result<Self, ParseError> {
2020-12-31 02:38:40 +08:00
let lhs = src
.expect_subtree()
2020-12-31 02:38:40 +08:00
.map_err(|()| ParseError::Expected("expected subtree".to_string()))?;
2021-01-26 05:15:47 +08:00
if expect_arrow {
src.expect_char('=').map_err(|()| ParseError::Expected("expected `=`".to_string()))?;
src.expect_char('>').map_err(|()| ParseError::Expected("expected `>`".to_string()))?;
}
2020-12-31 02:38:40 +08:00
let rhs = src
.expect_subtree()
2020-12-31 02:38:40 +08:00
.map_err(|()| ParseError::Expected("expected subtree".to_string()))?;
2020-12-30 02:35:21 +08:00
2021-10-02 20:21:23 +03:00
let lhs = MetaTemplate::parse_pattern(lhs)?;
let rhs = MetaTemplate::parse_template(rhs)?;
2020-12-30 02:35:21 +08:00
Ok(crate::Rule { lhs, rhs })
}
2019-04-24 23:01:32 +08:00
}
2020-12-30 02:35:21 +08:00
fn validate(pattern: &MetaTemplate) -> Result<(), ParseError> {
for op in pattern.iter() {
match op {
2021-06-13 09:24:16 +05:30
Op::Subtree { tokens, .. } => validate(tokens)?,
2021-01-30 16:12:30 +08:00
Op::Repeat { tokens: subtree, separator, .. } => {
// Checks that no repetition which could match an empty token
// https://github.com/rust-lang/rust/blob/a58b1ed44f5e06976de2bdc4d7dc81c36a96934f/src/librustc_expand/mbe/macro_rules.rs#L558
if separator.is_none()
&& subtree.iter().all(|child_op| {
match child_op {
Op::Var { kind, .. } => {
// vis is optional
2020-12-30 02:35:21 +08:00
if kind.as_ref().map_or(false, |it| it == "vis") {
return true;
}
}
Op::Repeat { kind, .. } => {
return matches!(
kind,
parser::RepeatKind::ZeroOrMore | parser::RepeatKind::ZeroOrOne
)
}
Op::Leaf(_) => {}
2021-01-30 16:12:30 +08:00
Op::Subtree { .. } => {}
}
false
})
{
return Err(ParseError::RepetitionEmptyTokenTree);
}
validate(subtree)?
}
_ => (),
}
}
Ok(())
2019-01-30 23:25:02 +03:00
}
2019-01-31 22:14:28 +03:00
2020-11-26 16:04:23 +01:00
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct ExpandResult<T> {
pub value: T,
pub err: Option<ExpandError>,
}
2020-03-16 12:22:10 +01:00
impl<T> ExpandResult<T> {
2020-11-26 16:04:23 +01:00
pub fn ok(value: T) -> Self {
Self { value, err: None }
2020-03-16 12:22:10 +01:00
}
2020-11-26 16:04:23 +01:00
pub fn only_err(err: ExpandError) -> Self
2020-03-16 12:22:10 +01:00
where
T: Default,
{
2020-11-26 16:04:23 +01:00
Self { value: Default::default(), err: Some(err) }
2020-03-16 12:22:10 +01:00
}
pub fn str_err(err: String) -> Self
where
T: Default,
{
Self::only_err(ExpandError::Other(err))
}
2020-03-16 12:22:10 +01:00
pub fn map<U>(self, f: impl FnOnce(T) -> U) -> ExpandResult<U> {
2020-11-26 16:04:23 +01:00
ExpandResult { value: f(self.value), err: self.err }
2020-03-16 12:22:10 +01:00
}
pub fn result(self) -> Result<T, ExpandError> {
2021-06-07 13:59:01 +02:00
self.err.map_or(Ok(self.value), Err)
2020-03-16 12:22:10 +01:00
}
}
impl<T: Default> From<Result<T, ExpandError>> for ExpandResult<T> {
2020-11-26 16:04:23 +01:00
fn from(result: Result<T, ExpandError>) -> Self {
2021-03-21 15:33:18 +01:00
result.map_or_else(Self::only_err, Self::ok)
2020-03-16 12:22:10 +01:00
}
}