| // Copyright 2018 Syn Developers |
| // |
| // 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. |
| |
| use super::*; |
| use punctuated::Punctuated; |
| |
| use std::iter; |
| |
| use proc_macro2::{Delimiter, Spacing, TokenStream, TokenTree}; |
| |
| #[cfg(feature = "extra-traits")] |
| use std::hash::{Hash, Hasher}; |
| #[cfg(feature = "extra-traits")] |
| use tt::TokenStreamHelper; |
| |
| ast_struct! { |
| /// An attribute like `#[repr(transparent)]`. |
| /// |
| /// *This type is available if Syn is built with the `"derive"` or `"full"` |
| /// feature.* |
| /// |
| /// # Syntax |
| /// |
| /// Rust has six types of attributes. |
| /// |
| /// - Outer attributes like `#[repr(transparent)]`. These appear outside or |
| /// in front of the item they describe. |
| /// - Inner attributes like `#![feature(proc_macro)]`. These appear inside |
| /// of the item they describe, usually a module. |
| /// - Outer doc comments like `/// # Example`. |
| /// - Inner doc comments like `//! Please file an issue`. |
| /// - Outer block comments `/** # Example */`. |
| /// - Inner block comments `/*! Please file an issue */`. |
| /// |
| /// The `style` field of type `AttrStyle` distinguishes whether an attribute |
| /// is outer or inner. Doc comments and block comments are promoted to |
| /// attributes, as this is how they are processed by the compiler and by |
| /// `macro_rules!` macros. |
| /// |
| /// The `path` field gives the possibly colon-delimited path against which |
| /// the attribute is resolved. It is equal to `"doc"` for desugared doc |
| /// comments. The `tts` field contains the rest of the attribute body as |
| /// tokens. |
| /// |
| /// ```text |
| /// #[derive(Copy)] #[crate::precondition x < 5] |
| /// ^^^^^^~~~~~~ ^^^^^^^^^^^^^^^^^^^ ~~~~~ |
| /// path tts path tts |
| /// ``` |
| /// |
| /// Use the [`interpret_meta`] method to try parsing the tokens of an |
| /// attribute into the structured representation that is used by convention |
| /// across most Rust libraries. |
| /// |
| /// [`interpret_meta`]: #method.interpret_meta |
| pub struct Attribute #manual_extra_traits { |
| pub pound_token: Token![#], |
| pub style: AttrStyle, |
| pub bracket_token: token::Bracket, |
| pub path: Path, |
| pub tts: TokenStream, |
| } |
| } |
| |
| #[cfg(feature = "extra-traits")] |
| impl Eq for Attribute {} |
| |
| #[cfg(feature = "extra-traits")] |
| impl PartialEq for Attribute { |
| fn eq(&self, other: &Self) -> bool { |
| self.style == other.style |
| && self.pound_token == other.pound_token |
| && self.bracket_token == other.bracket_token |
| && self.path == other.path |
| && TokenStreamHelper(&self.tts) == TokenStreamHelper(&other.tts) |
| } |
| } |
| |
| #[cfg(feature = "extra-traits")] |
| impl Hash for Attribute { |
| fn hash<H>(&self, state: &mut H) |
| where |
| H: Hasher, |
| { |
| self.style.hash(state); |
| self.pound_token.hash(state); |
| self.bracket_token.hash(state); |
| self.path.hash(state); |
| TokenStreamHelper(&self.tts).hash(state); |
| } |
| } |
| |
| impl Attribute { |
| /// Parses the tokens after the path as a [`Meta`](enum.Meta.html) if |
| /// possible. |
| pub fn interpret_meta(&self) -> Option<Meta> { |
| let name = if self.path.segments.len() == 1 { |
| &self.path.segments.first().unwrap().value().ident |
| } else { |
| return None; |
| }; |
| |
| if self.tts.is_empty() { |
| return Some(Meta::Word(name.clone())); |
| } |
| |
| let tts = self.tts.clone().into_iter().collect::<Vec<_>>(); |
| |
| if tts.len() == 1 { |
| if let Some(meta) = Attribute::extract_meta_list(name.clone(), &tts[0]) { |
| return Some(meta); |
| } |
| } |
| |
| if tts.len() == 2 { |
| if let Some(meta) = Attribute::extract_name_value(name.clone(), &tts[0], &tts[1]) { |
| return Some(meta); |
| } |
| } |
| |
| None |
| } |
| |
| fn extract_meta_list(ident: Ident, tt: &TokenTree) -> Option<Meta> { |
| let g = match *tt { |
| TokenTree::Group(ref g) => g, |
| _ => return None, |
| }; |
| if g.delimiter() != Delimiter::Parenthesis { |
| return None; |
| } |
| let tokens = g.stream().clone().into_iter().collect::<Vec<_>>(); |
| let nested = match list_of_nested_meta_items_from_tokens(&tokens) { |
| Some(n) => n, |
| None => return None, |
| }; |
| Some(Meta::List(MetaList { |
| paren_token: token::Paren(g.span()), |
| ident: ident, |
| nested: nested, |
| })) |
| } |
| |
| fn extract_name_value(ident: Ident, a: &TokenTree, b: &TokenTree) -> Option<Meta> { |
| let a = match *a { |
| TokenTree::Punct(ref o) => o, |
| _ => return None, |
| }; |
| if a.spacing() != Spacing::Alone { |
| return None; |
| } |
| if a.as_char() != '=' { |
| return None; |
| } |
| |
| match *b { |
| TokenTree::Literal(ref l) if !l.to_string().starts_with('/') => { |
| Some(Meta::NameValue(MetaNameValue { |
| ident: ident, |
| eq_token: Token]), |
| lit: Lit::new(l.clone()), |
| })) |
| } |
| TokenTree::Ident(ref v) => match &v.to_string()[..] { |
| v @ "true" | v @ "false" => Some(Meta::NameValue(MetaNameValue { |
| ident: ident, |
| eq_token: Token]), |
| lit: Lit::Bool(LitBool { |
| value: v == "true", |
| span: b.span(), |
| }), |
| })), |
| _ => None, |
| }, |
| _ => None, |
| } |
| } |
| } |
| |
| fn nested_meta_item_from_tokens(tts: &[TokenTree]) -> Option<(NestedMeta, &[TokenTree])> { |
| assert!(!tts.is_empty()); |
| |
| match tts[0] { |
| TokenTree::Literal(ref lit) => { |
| if lit.to_string().starts_with('/') { |
| None |
| } else { |
| let lit = Lit::new(lit.clone()); |
| Some((NestedMeta::Literal(lit), &tts[1..])) |
| } |
| } |
| |
| TokenTree::Ident(ref ident) => { |
| if tts.len() >= 3 { |
| if let Some(meta) = Attribute::extract_name_value(ident.clone(), &tts[1], &tts[2]) { |
| return Some((NestedMeta::Meta(meta), &tts[3..])); |
| } |
| } |
| |
| if tts.len() >= 2 { |
| if let Some(meta) = Attribute::extract_meta_list(ident.clone(), &tts[1]) { |
| return Some((NestedMeta::Meta(meta), &tts[2..])); |
| } |
| } |
| |
| Some((Meta::Word(ident.clone()).into(), &tts[1..])) |
| } |
| |
| _ => None, |
| } |
| } |
| |
| fn list_of_nested_meta_items_from_tokens( |
| mut tts: &[TokenTree], |
| ) -> Option<Punctuated<NestedMeta, Token![,]>> { |
| let mut nested_meta_items = Punctuated::new(); |
| let mut first = true; |
| |
| while !tts.is_empty() { |
| let prev_comma = if first { |
| first = false; |
| None |
| } else if let TokenTree::Punct(ref op) = tts[0] { |
| if op.spacing() != Spacing::Alone { |
| return None; |
| } |
| if op.as_char() != ',' { |
| return None; |
| } |
| let tok = Token]); |
| tts = &tts[1..]; |
| if tts.is_empty() { |
| break; |
| } |
| Some(tok) |
| } else { |
| return None; |
| }; |
| let (nested, rest) = match nested_meta_item_from_tokens(tts) { |
| Some(pair) => pair, |
| None => return None, |
| }; |
| if let Some(comma) = prev_comma { |
| nested_meta_items.push_punct(comma); |
| } |
| nested_meta_items.push_value(nested); |
| tts = rest; |
| } |
| |
| Some(nested_meta_items) |
| } |
| |
| ast_enum! { |
| /// Distinguishes between attributes that decorate an item and attributes |
| /// that are contained within an item. |
| /// |
| /// *This type is available if Syn is built with the `"derive"` or `"full"` |
| /// feature.* |
| /// |
| /// # Outer attributes |
| /// |
| /// - `#[repr(transparent)]` |
| /// - `/// # Example` |
| /// - `/** Please file an issue */` |
| /// |
| /// # Inner attributes |
| /// |
| /// - `#![feature(proc_macro)]` |
| /// - `//! # Example` |
| /// - `/*! Please file an issue */` |
| #[cfg_attr(feature = "clone-impls", derive(Copy))] |
| pub enum AttrStyle { |
| Outer, |
| Inner(Token![!]), |
| } |
| } |
| |
| ast_enum_of_structs! { |
| /// Content of a compile-time structured attribute. |
| /// |
| /// *This type is available if Syn is built with the `"derive"` or `"full"` |
| /// feature.* |
| /// |
| /// ## Word |
| /// |
| /// A meta word is like the `test` in `#[test]`. |
| /// |
| /// ## List |
| /// |
| /// A meta list is like the `derive(Copy)` in `#[derive(Copy)]`. |
| /// |
| /// ## NameValue |
| /// |
| /// A name-value meta is like the `path = "..."` in `#[path = |
| /// "sys/windows.rs"]`. |
| /// |
| /// # Syntax tree enum |
| /// |
| /// This type is a [syntax tree enum]. |
| /// |
| /// [syntax tree enum]: enum.Expr.html#syntax-tree-enums |
| pub enum Meta { |
| pub Word(Ident), |
| /// A structured list within an attribute, like `derive(Copy, Clone)`. |
| /// |
| /// *This type is available if Syn is built with the `"derive"` or |
| /// `"full"` feature.* |
| pub List(MetaList { |
| pub ident: Ident, |
| pub paren_token: token::Paren, |
| pub nested: Punctuated<NestedMeta, Token![,]>, |
| }), |
| /// A name-value pair within an attribute, like `feature = "nightly"`. |
| /// |
| /// *This type is available if Syn is built with the `"derive"` or |
| /// `"full"` feature.* |
| pub NameValue(MetaNameValue { |
| pub ident: Ident, |
| pub eq_token: Token![=], |
| pub lit: Lit, |
| }), |
| } |
| } |
| |
| impl Meta { |
| /// Returns the identifier that begins this structured meta item. |
| /// |
| /// For example this would return the `test` in `#[test]`, the `derive` in |
| /// `#[derive(Copy)]`, and the `path` in `#[path = "sys/windows.rs"]`. |
| pub fn name(&self) -> Ident { |
| match *self { |
| Meta::Word(ref meta) => meta.clone(), |
| Meta::List(ref meta) => meta.ident.clone(), |
| Meta::NameValue(ref meta) => meta.ident.clone(), |
| } |
| } |
| } |
| |
| ast_enum_of_structs! { |
| /// Element of a compile-time attribute list. |
| /// |
| /// *This type is available if Syn is built with the `"derive"` or `"full"` |
| /// feature.* |
| pub enum NestedMeta { |
| /// A structured meta item, like the `Copy` in `#[derive(Copy)]` which |
| /// would be a nested `Meta::Word`. |
| pub Meta(Meta), |
| |
| /// A Rust literal, like the `"new_name"` in `#[rename("new_name")]`. |
| pub Literal(Lit), |
| } |
| } |
| |
| pub trait FilterAttrs<'a> { |
| type Ret: Iterator<Item = &'a Attribute>; |
| |
| fn outer(self) -> Self::Ret; |
| fn inner(self) -> Self::Ret; |
| } |
| |
| impl<'a, T> FilterAttrs<'a> for T |
| where |
| T: IntoIterator<Item = &'a Attribute>, |
| { |
| type Ret = iter::Filter<T::IntoIter, fn(&&Attribute) -> bool>; |
| |
| fn outer(self) -> Self::Ret { |
| fn is_outer(attr: &&Attribute) -> bool { |
| match attr.style { |
| AttrStyle::Outer => true, |
| _ => false, |
| } |
| } |
| self.into_iter().filter(is_outer) |
| } |
| |
| fn inner(self) -> Self::Ret { |
| fn is_inner(attr: &&Attribute) -> bool { |
| match attr.style { |
| AttrStyle::Inner(_) => true, |
| _ => false, |
| } |
| } |
| self.into_iter().filter(is_inner) |
| } |
| } |
| |
| #[cfg(feature = "parsing")] |
| pub mod parsing { |
| use super::*; |
| use parse::{ParseStream, Result}; |
| |
| impl Attribute { |
| pub fn parse_outer(input: ParseStream) -> Result<Vec<Self>> { |
| let mut attrs = Vec::new(); |
| while input.peek(Token![#]) { |
| attrs.push(input.call(single_parse_outer)?); |
| } |
| Ok(attrs) |
| } |
| |
| pub fn parse_inner(input: ParseStream) -> Result<Vec<Self>> { |
| let mut attrs = Vec::new(); |
| while input.peek(Token![#]) && input.peek2(Token![!]) { |
| attrs.push(input.call(single_parse_inner)?); |
| } |
| Ok(attrs) |
| } |
| } |
| |
| pub fn single_parse_inner(input: ParseStream) -> Result<Attribute> { |
| let content; |
| Ok(Attribute { |
| pound_token: input.parse()?, |
| style: AttrStyle::Inner(input.parse()?), |
| bracket_token: bracketed!(content in input), |
| path: content.call(Path::parse_mod_style)?, |
| tts: content.parse()?, |
| }) |
| } |
| |
| pub fn single_parse_outer(input: ParseStream) -> Result<Attribute> { |
| let content; |
| Ok(Attribute { |
| pound_token: input.parse()?, |
| style: AttrStyle::Outer, |
| bracket_token: bracketed!(content in input), |
| path: content.call(Path::parse_mod_style)?, |
| tts: content.parse()?, |
| }) |
| } |
| } |
| |
| #[cfg(feature = "printing")] |
| mod printing { |
| use super::*; |
| use proc_macro2::TokenStream; |
| use quote::ToTokens; |
| |
| impl ToTokens for Attribute { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| self.pound_token.to_tokens(tokens); |
| if let AttrStyle::Inner(ref b) = self.style { |
| b.to_tokens(tokens); |
| } |
| self.bracket_token.surround(tokens, |tokens| { |
| self.path.to_tokens(tokens); |
| self.tts.to_tokens(tokens); |
| }); |
| } |
| } |
| |
| impl ToTokens for MetaList { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| self.ident.to_tokens(tokens); |
| self.paren_token.surround(tokens, |tokens| { |
| self.nested.to_tokens(tokens); |
| }) |
| } |
| } |
| |
| impl ToTokens for MetaNameValue { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| self.ident.to_tokens(tokens); |
| self.eq_token.to_tokens(tokens); |
| self.lit.to_tokens(tokens); |
| } |
| } |
| } |