use std::borrow::Cow; use proc_macro2::TokenStream; use quote::quote; use syn::Result; use crate::args::name_arg; use syn::ItemStatic; pub(crate) struct Map { item: ItemStatic, name: String, } impl Map { pub(crate) fn parse(attrs: TokenStream, item: TokenStream) -> Result { let item: ItemStatic = syn::parse2(item)?; let mut args = syn::parse2(attrs)?; let name = name_arg(&mut args).unwrap_or_else(|| item.ident.to_string()); Ok(Map { item, name }) } pub(crate) fn expand(&self) -> Result { let section_name: Cow<'_, _> = "maps".to_string().into(); let name = &self.name; let item = &self.item; Ok(quote! { #[link_section = #section_name] #[export_name = #name] #item }) } } #[cfg(test)] mod tests { use super::*; use syn::parse_quote; #[test] fn test_map_with_name() { let map = Map::parse( parse_quote!(name = "foo"), parse_quote!( static BAR: HashMap<&'static str, u32> = HashMap::new(); ), ) .unwrap(); let expanded = map.expand().unwrap(); let expected = quote!( #[link_section = "maps"] #[export_name = "foo"] static BAR: HashMap<&'static str, u32> = HashMap::new(); ); assert_eq!(expected.to_string(), expanded.to_string()); } #[test] fn test_map_no_name() { let map = Map::parse( parse_quote!(), parse_quote!( static BAR: HashMap<&'static str, u32> = HashMap::new(); ), ) .unwrap(); let expanded = map.expand().unwrap(); let expected = quote!( #[link_section = "maps"] #[export_name = "BAR"] static BAR: HashMap<&'static str, u32> = HashMap::new(); ); assert_eq!(expected.to_string(), expanded.to_string()); } }