2022-01-26 05:55:01 +11:00
|
|
|
extern crate proc_macro;
|
|
|
|
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
use quote::quote;
|
|
|
|
use syn::spanned::Spanned;
|
|
|
|
|
|
|
|
#[proc_macro_derive(Params, attributes(id))]
|
|
|
|
pub fn derive_params(input: TokenStream) -> TokenStream {
|
|
|
|
let ast = syn::parse_macro_input!(input as syn::DeriveInput);
|
|
|
|
|
2022-01-26 06:02:58 +11:00
|
|
|
let struct_name = &ast.ident;
|
2022-01-26 05:55:01 +11:00
|
|
|
let fields = match ast.data {
|
|
|
|
syn::Data::Struct(syn::DataStruct {
|
|
|
|
fields: syn::Fields::Named(named_fields),
|
|
|
|
..
|
|
|
|
}) => named_fields,
|
|
|
|
_ => {
|
|
|
|
return syn::Error::new(
|
|
|
|
ast.span(),
|
|
|
|
"Deriving Params is only supported on structs with named fields",
|
|
|
|
)
|
|
|
|
.to_compile_error()
|
|
|
|
.into()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// We only care about fields with an `id` attribute. We'll build a that creates a hashmap
|
|
|
|
// containing pointers to those parmaeters.
|
|
|
|
let mut param_insert_tokens = Vec::new();
|
|
|
|
for field in fields.named {
|
2022-01-26 06:02:58 +11:00
|
|
|
let field_name = match &field.ident {
|
2022-01-26 05:55:01 +11:00
|
|
|
Some(ident) => ident,
|
|
|
|
_ => continue,
|
|
|
|
};
|
|
|
|
|
2022-01-26 06:02:58 +11:00
|
|
|
for attr in field.attrs {
|
2022-01-26 05:55:01 +11:00
|
|
|
let list = match attr.parse_meta() {
|
|
|
|
Ok(syn::Meta::List(list)) if list.path.is_ident("id") => list,
|
|
|
|
_ => continue,
|
|
|
|
};
|
|
|
|
|
|
|
|
let param_id =
|
|
|
|
match list.nested.first() {
|
|
|
|
Some(syn::NestedMeta::Lit(syn::Lit::Str(s))) => s.value(),
|
|
|
|
_ => return syn::Error::new(
|
|
|
|
attr.span(),
|
|
|
|
"The id attribute should have a single string argument: #[id(\"foo_bar\")]",
|
|
|
|
)
|
|
|
|
.to_compile_error()
|
|
|
|
.into(),
|
|
|
|
};
|
|
|
|
|
|
|
|
// The specific parameter types know how to convert themselves into the correct ParamPtr
|
|
|
|
// variant
|
2022-01-26 06:02:58 +11:00
|
|
|
param_insert_tokens
|
|
|
|
.push(quote! { param_map.insert(#param_id, self.#field_name.as_ptr()); });
|
2022-01-26 05:55:01 +11:00
|
|
|
}
|
2022-01-25 22:29:00 +11:00
|
|
|
}
|
2022-01-26 05:55:01 +11:00
|
|
|
|
|
|
|
quote! {
|
2022-01-26 06:02:58 +11:00
|
|
|
impl Params for #struct_name {
|
2022-01-26 05:55:01 +11:00
|
|
|
fn param_map(
|
|
|
|
self: std::pin::Pin<&Self>,
|
|
|
|
) -> std::collections::HashMap<&'static str, nih_plug::params::ParamPtr> {
|
|
|
|
let mut param_map = std::collections::HashMap::new();
|
|
|
|
|
|
|
|
#(#param_insert_tokens)*
|
|
|
|
|
|
|
|
param_map
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.into()
|
2022-01-25 22:29:00 +11:00
|
|
|
}
|