1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
use crate::syntax::qualified::QualifiedName; use quote::IdentFragment; use std::fmt::{self, Display}; use std::iter::FromIterator; use std::slice::Iter; use syn::parse::{Parse, ParseStream, Result}; use syn::{Ident, Token}; mod kw { syn::custom_keyword!(namespace); } #[derive(Clone, Default)] pub struct Namespace { segments: Vec<Ident>, } impl Namespace { pub const ROOT: Self = Namespace { segments: Vec::new(), }; pub fn iter(&self) -> Iter<Ident> { self.segments.iter() } pub fn parse_bridge_attr_namespace(input: ParseStream) -> Result<Namespace> { if input.is_empty() { return Ok(Namespace::ROOT); } input.parse::<kw::namespace>()?; input.parse::<Token![=]>()?; let namespace = input.parse::<Namespace>()?; input.parse::<Option<Token![,]>>()?; Ok(namespace) } } impl Default for &Namespace { fn default() -> Self { const ROOT: &Namespace = &Namespace::ROOT; ROOT } } impl Parse for Namespace { fn parse(input: ParseStream) -> Result<Self> { let segments = QualifiedName::parse_quoted_or_unquoted(input)?.segments; Ok(Namespace { segments }) } } impl Display for Namespace { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { for segment in self { write!(f, "{}$", segment)?; } Ok(()) } } impl IdentFragment for Namespace { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { Display::fmt(self, f) } } impl<'a> IntoIterator for &'a Namespace { type Item = &'a Ident; type IntoIter = Iter<'a, Ident>; fn into_iter(self) -> Self::IntoIter { self.iter() } } impl<'a> FromIterator<&'a Ident> for Namespace { fn from_iter<I>(idents: I) -> Self where I: IntoIterator<Item = &'a Ident>, { let segments = idents.into_iter().cloned().collect(); Namespace { segments } } }