2017-03-17 23:41:09 +00:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! # Quasiquoter
|
2017-06-05 01:41:33 +00:00
|
|
|
//! This file contains the implementation internals of the quasiquoter provided by `quote!`.
|
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
//! This quasiquoter uses macros 2.0 hygiene to reliably access
|
|
|
|
//! items from `proc_macro`, to build a `proc_macro::TokenStream`.
|
2017-03-17 23:41:09 +00:00
|
|
|
|
2017-11-05 18:25:45 +02:00
|
|
|
use {Delimiter, Literal, Spacing, Span, Term, TokenNode, TokenStream, TokenTree};
|
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
use syntax::ext::base::{ExtCtxt, ProcMacro};
|
2017-11-05 18:25:45 +02:00
|
|
|
use syntax::parse::token;
|
|
|
|
use syntax::tokenstream;
|
2017-03-17 23:41:09 +00:00
|
|
|
|
|
|
|
pub struct Quoter;
|
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
pub fn unquote<T: Into<TokenStream> + Clone>(tokens: &T) -> TokenStream {
|
|
|
|
T::into(tokens.clone())
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
|
2017-06-05 01:41:33 +00:00
|
|
|
pub trait Quote {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn quote(self) -> TokenStream;
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! quote_tok {
|
2017-11-05 18:25:45 +02:00
|
|
|
(,) => { TokenNode::Op(',', Spacing::Alone) };
|
|
|
|
(.) => { TokenNode::Op('.', Spacing::Alone) };
|
|
|
|
(:) => { TokenNode::Op(':', Spacing::Alone) };
|
|
|
|
(::) => {
|
|
|
|
[
|
|
|
|
TokenNode::Op(':', Spacing::Joint),
|
|
|
|
TokenNode::Op(':', Spacing::Alone)
|
|
|
|
].iter().cloned().collect::<TokenStream>()
|
|
|
|
};
|
|
|
|
(!) => { TokenNode::Op('!', Spacing::Alone) };
|
|
|
|
(<) => { TokenNode::Op('<', Spacing::Alone) };
|
|
|
|
(>) => { TokenNode::Op('>', Spacing::Alone) };
|
|
|
|
(_) => { TokenNode::Op('_', Spacing::Alone) };
|
|
|
|
(0) => { TokenNode::Literal(::Literal::integer(0)) };
|
|
|
|
(&) => { TokenNode::Op('&', Spacing::Alone) };
|
|
|
|
($i:ident) => { TokenNode::Term(Term::intern(stringify!($i))) };
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! quote_tree {
|
2017-11-05 18:25:45 +02:00
|
|
|
((unquote $($t:tt)*)) => { $($t)* };
|
2017-03-17 23:41:09 +00:00
|
|
|
((quote $($t:tt)*)) => { ($($t)*).quote() };
|
2017-11-05 18:25:45 +02:00
|
|
|
(($($t:tt)*)) => { TokenNode::Group(Delimiter::Parenthesis, quote!($($t)*)) };
|
|
|
|
([$($t:tt)*]) => { TokenNode::Group(Delimiter::Bracket, quote!($($t)*)) };
|
|
|
|
({$($t:tt)*}) => { TokenNode::Group(Delimiter::Brace, quote!($($t)*)) };
|
|
|
|
($t:tt) => { quote_tok!($t) };
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! quote {
|
|
|
|
() => { TokenStream::empty() };
|
2017-11-05 18:25:45 +02:00
|
|
|
($($t:tt)*) => {
|
|
|
|
[
|
|
|
|
$(TokenStream::from(quote_tree!($t)),)*
|
|
|
|
].iter().cloned().collect::<TokenStream>()
|
|
|
|
};
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ProcMacro for Quoter {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn expand<'cx>(&self, cx: &'cx mut ExtCtxt,
|
|
|
|
_: ::syntax_pos::Span,
|
|
|
|
stream: tokenstream::TokenStream)
|
|
|
|
-> tokenstream::TokenStream {
|
2017-03-17 23:41:09 +00:00
|
|
|
let mut info = cx.current_expansion.mark.expn_info().unwrap();
|
|
|
|
info.callee.allow_internal_unstable = true;
|
|
|
|
cx.current_expansion.mark.set_expn_info(info);
|
2017-11-05 20:21:05 +02:00
|
|
|
::__internal::set_sess(cx, || TokenStream(stream).quote().0)
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Quote> Quote for Option<T> {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
match self {
|
|
|
|
Some(t) => quote!(Some((quote t))),
|
2017-03-17 23:41:09 +00:00
|
|
|
None => quote!(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for TokenStream {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn quote(self) -> TokenStream {
|
2017-11-05 20:21:05 +02:00
|
|
|
if self.is_empty() {
|
|
|
|
return quote!(::TokenStream::empty());
|
|
|
|
}
|
2017-11-05 18:25:45 +02:00
|
|
|
let mut after_dollar = false;
|
2017-11-05 20:21:05 +02:00
|
|
|
let tokens = self.into_iter().filter_map(|tree| {
|
|
|
|
if after_dollar {
|
|
|
|
after_dollar = false;
|
|
|
|
match tree.kind {
|
|
|
|
TokenNode::Term(_) => {
|
|
|
|
return Some(quote!(::__internal::unquote(&(unquote tree)),));
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
2017-11-05 20:21:05 +02:00
|
|
|
TokenNode::Op('$', _) => {}
|
|
|
|
_ => panic!("`$` must be followed by an ident or `$` in `quote!`"),
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
2017-11-05 20:21:05 +02:00
|
|
|
} else if let TokenNode::Op('$', _) = tree.kind {
|
|
|
|
after_dollar = true;
|
|
|
|
return None;
|
|
|
|
}
|
2017-03-17 23:41:09 +00:00
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
Some(quote!(::TokenStream::from((quote tree)),))
|
|
|
|
}).collect::<TokenStream>();
|
2017-11-05 18:25:45 +02:00
|
|
|
|
|
|
|
if after_dollar {
|
|
|
|
panic!("unexpected trailing `$` in `quote!`");
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
2017-11-05 18:25:45 +02:00
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
quote!([(unquote tokens)].iter().cloned().collect::<::TokenStream>())
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for TokenTree {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn quote(self) -> TokenStream {
|
2017-11-05 20:21:05 +02:00
|
|
|
quote!(::TokenTree { span: (quote self.span), kind: (quote self.kind) })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for TokenNode {
|
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
macro_rules! gen_match {
|
|
|
|
($($i:ident($($arg:ident),+)),*) => {
|
|
|
|
match self {
|
|
|
|
$(TokenNode::$i($($arg),+) => quote! {
|
|
|
|
::TokenNode::$i($((quote $arg)),+)
|
|
|
|
},)*
|
|
|
|
}
|
2017-11-05 18:25:45 +02:00
|
|
|
}
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
2017-11-05 20:21:05 +02:00
|
|
|
|
|
|
|
gen_match! { Op(op, kind), Group(delim, tokens), Term(term), Literal(lit) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for char {
|
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
TokenNode::Literal(Literal::character(self)).into()
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Quote for &'a str {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
TokenNode::Literal(Literal::string(self)).into()
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for usize {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
TokenNode::Literal(Literal::integer(self as i128)).into()
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-05 18:25:45 +02:00
|
|
|
impl Quote for Term {
|
|
|
|
fn quote(self) -> TokenStream {
|
2017-11-05 20:21:05 +02:00
|
|
|
quote!(::Term::intern((quote self.as_str())))
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for Span {
|
2017-11-05 18:25:45 +02:00
|
|
|
fn quote(self) -> TokenStream {
|
2017-11-05 20:21:05 +02:00
|
|
|
quote!(::Span::default())
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
macro_rules! literals {
|
|
|
|
($($i:ident),*; $($raw:ident),*) => {
|
|
|
|
pub enum LiteralKind {
|
|
|
|
$($i,)*
|
|
|
|
$($raw(usize),)*
|
|
|
|
}
|
2017-03-17 23:41:09 +00:00
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
impl LiteralKind {
|
|
|
|
pub fn with_contents_and_suffix(self, contents: Term, suffix: Option<Term>)
|
|
|
|
-> Literal {
|
|
|
|
let contents = contents.0;
|
|
|
|
let suffix = suffix.map(|t| t.0);
|
|
|
|
match self {
|
|
|
|
$(LiteralKind::$i => {
|
|
|
|
Literal(token::Literal(token::Lit::$i(contents), suffix))
|
|
|
|
})*
|
|
|
|
$(LiteralKind::$raw(n) => {
|
|
|
|
Literal(token::Literal(token::Lit::$raw(contents, n), suffix))
|
|
|
|
})*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Literal {
|
|
|
|
fn kind_contents_and_suffix(self) -> (LiteralKind, Term, Option<Term>) {
|
|
|
|
let (lit, suffix) = match self.0 {
|
|
|
|
token::Literal(lit, suffix) => (lit, suffix),
|
|
|
|
_ => panic!("unsupported literal {:?}", self.0),
|
|
|
|
};
|
|
|
|
|
|
|
|
let (kind, contents) = match lit {
|
|
|
|
$(token::Lit::$i(contents) => (LiteralKind::$i, contents),)*
|
|
|
|
$(token::Lit::$raw(contents, n) => (LiteralKind::$raw(n), contents),)*
|
|
|
|
};
|
|
|
|
(kind, Term(contents), suffix.map(Term))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for LiteralKind {
|
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
match self {
|
|
|
|
$(LiteralKind::$i => quote! {
|
|
|
|
::__internal::LiteralKind::$i
|
2017-11-05 18:25:45 +02:00
|
|
|
},)*
|
2017-11-05 20:21:05 +02:00
|
|
|
$(LiteralKind::$raw(n) => quote! {
|
|
|
|
::__internal::LiteralKind::$raw((quote n))
|
2017-11-05 18:25:45 +02:00
|
|
|
},)*
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
impl Quote for Literal {
|
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
let (kind, contents, suffix) = self.kind_contents_and_suffix();
|
|
|
|
quote! {
|
|
|
|
(quote kind).with_contents_and_suffix((quote contents), (quote suffix))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
literals!(Byte, Char, Float, Str_, Integer, ByteStr; StrRaw, ByteStrRaw);
|
|
|
|
|
2017-11-05 18:25:45 +02:00
|
|
|
impl Quote for Delimiter {
|
|
|
|
fn quote(self) -> TokenStream {
|
2017-03-17 23:41:09 +00:00
|
|
|
macro_rules! gen_match {
|
2017-11-05 20:21:05 +02:00
|
|
|
($($i:ident),*) => {
|
|
|
|
match self {
|
|
|
|
$(Delimiter::$i => { quote!(::Delimiter::$i) })*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gen_match!(Parenthesis, Brace, Bracket, None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Quote for Spacing {
|
|
|
|
fn quote(self) -> TokenStream {
|
|
|
|
macro_rules! gen_match {
|
|
|
|
($($i:ident),*) => {
|
2017-11-05 18:25:45 +02:00
|
|
|
match self {
|
2017-11-05 20:21:05 +02:00
|
|
|
$(Spacing::$i => { quote!(::Spacing::$i) })*
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-05 20:21:05 +02:00
|
|
|
gen_match!(Alone, Joint)
|
2017-03-17 23:41:09 +00:00
|
|
|
}
|
|
|
|
}
|