map.rs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. use std::borrow::Cow;
  2. use proc_macro2::TokenStream;
  3. use quote::quote;
  4. use syn::{ItemStatic, Result};
  5. use crate::args::name_arg;
  6. pub(crate) struct Map {
  7. item: ItemStatic,
  8. name: String,
  9. }
  10. impl Map {
  11. pub(crate) fn parse(attrs: TokenStream, item: TokenStream) -> Result<Map> {
  12. let item: ItemStatic = syn::parse2(item)?;
  13. let mut args = syn::parse2(attrs)?;
  14. let name = name_arg(&mut args).unwrap_or_else(|| item.ident.to_string());
  15. Ok(Self { item, name })
  16. }
  17. pub(crate) fn expand(&self) -> TokenStream {
  18. let section_name: Cow<'_, _> = "maps".into();
  19. let name = &self.name;
  20. let item = &self.item;
  21. quote! {
  22. #[link_section = #section_name]
  23. #[export_name = #name]
  24. #item
  25. }
  26. }
  27. }
  28. #[cfg(test)]
  29. mod tests {
  30. use syn::parse_quote;
  31. use super::*;
  32. #[test]
  33. fn test_map_with_name() {
  34. let map = Map::parse(
  35. parse_quote!(name = "foo"),
  36. parse_quote!(
  37. static BAR: HashMap<&'static str, u32> = HashMap::new();
  38. ),
  39. )
  40. .unwrap();
  41. let expanded = map.expand();
  42. let expected = quote!(
  43. #[link_section = "maps"]
  44. #[export_name = "foo"]
  45. static BAR: HashMap<&'static str, u32> = HashMap::new();
  46. );
  47. assert_eq!(expected.to_string(), expanded.to_string());
  48. }
  49. #[test]
  50. fn test_map_no_name() {
  51. let map = Map::parse(
  52. parse_quote!(),
  53. parse_quote!(
  54. static BAR: HashMap<&'static str, u32> = HashMap::new();
  55. ),
  56. )
  57. .unwrap();
  58. let expanded = map.expand();
  59. let expected = quote!(
  60. #[link_section = "maps"]
  61. #[export_name = "BAR"]
  62. static BAR: HashMap<&'static str, u32> = HashMap::new();
  63. );
  64. assert_eq!(expected.to_string(), expanded.to_string());
  65. }
  66. }