mirror of https://github.com/LemmyNet/lemmy.git
150 lines
4.2 KiB
Rust
150 lines
4.2 KiB
Rust
|
use proc_macro2::TokenStream;
|
||
|
use quote::quote;
|
||
|
use syn::{parse_macro_input, Data, DeriveInput};
|
||
|
|
||
|
/// Generates implementation ActivityHandler for an enum, which looks like the following (handling
|
||
|
/// all enum variants).
|
||
|
///
|
||
|
/// Based on this code:
|
||
|
/// ```ignore
|
||
|
/// #[derive(serde::Deserialize, serde::Serialize, ActivityHandler)]
|
||
|
/// #[serde(untagged)]
|
||
|
/// pub enum PersonInboxActivities {
|
||
|
/// CreateNote(CreateNote),
|
||
|
/// UpdateNote(UpdateNote),
|
||
|
/// ```
|
||
|
/// It will generate this:
|
||
|
/// ```ignore
|
||
|
/// impl ActivityHandler for PersonInboxActivities {
|
||
|
///
|
||
|
/// async fn verify(
|
||
|
/// &self,
|
||
|
/// context: &LemmyContext,
|
||
|
/// request_counter: &mut i32,
|
||
|
/// ) -> Result<(), LemmyError> {
|
||
|
/// match self {
|
||
|
/// PersonInboxActivities::CreateNote(a) => a.verify(context, request_counter).await,
|
||
|
/// PersonInboxActivities::UpdateNote(a) => a.verify(context, request_counter).await,
|
||
|
/// }
|
||
|
/// }
|
||
|
///
|
||
|
/// async fn receive(
|
||
|
/// &self,
|
||
|
/// context: &LemmyContext,
|
||
|
/// request_counter: &mut i32,
|
||
|
/// ) -> Result<(), LemmyError> {
|
||
|
/// match self {
|
||
|
/// PersonInboxActivities::CreateNote(a) => a.receive(context, request_counter).await,
|
||
|
/// PersonInboxActivities::UpdateNote(a) => a.receive(context, request_counter).await,
|
||
|
/// }
|
||
|
/// }
|
||
|
/// fn common(&self) -> &ActivityCommonFields {
|
||
|
/// match self {
|
||
|
/// PersonInboxActivities::CreateNote(a) => a.common(),
|
||
|
/// PersonInboxActivities::UpdateNote(a) => a.common(),
|
||
|
/// }
|
||
|
/// }
|
||
|
///
|
||
|
/// ```
|
||
|
///
|
||
|
/// TODO: consider replacing this macro with https://crates.io/crates/typetag crate, though it
|
||
|
/// doesnt support untagged enums which we need for apub.
|
||
|
#[proc_macro_derive(ActivityHandler)]
|
||
|
pub fn derive_activity_handler(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
||
|
// Parse the input tokens into a syntax tree.
|
||
|
let input = parse_macro_input!(input as DeriveInput);
|
||
|
|
||
|
// Used in the quasi-quotation below as `#name`.
|
||
|
let name = input.ident;
|
||
|
|
||
|
let (impl_generics, ty_generics, where_clause) = input.generics.split_for_impl();
|
||
|
|
||
|
let input_enum = if let Data::Enum(d) = input.data {
|
||
|
d
|
||
|
} else {
|
||
|
unimplemented!()
|
||
|
};
|
||
|
|
||
|
let impl_verify = input_enum
|
||
|
.variants
|
||
|
.iter()
|
||
|
.map(|variant| variant_impl_verify(&name, variant));
|
||
|
let impl_receive = input_enum
|
||
|
.variants
|
||
|
.iter()
|
||
|
.map(|variant| variant_impl_receive(&name, variant));
|
||
|
let impl_common = input_enum
|
||
|
.variants
|
||
|
.iter()
|
||
|
.map(|variant| variant_impl_common(&name, variant));
|
||
|
|
||
|
// The generated impl.
|
||
|
let expanded = quote! {
|
||
|
#[async_trait::async_trait(?Send)]
|
||
|
impl #impl_generics lemmy_apub_lib::ActivityHandler for #name #ty_generics #where_clause {
|
||
|
async fn verify(
|
||
|
&self,
|
||
|
context: &LemmyContext,
|
||
|
request_counter: &mut i32,
|
||
|
) -> Result<(), LemmyError> {
|
||
|
match self {
|
||
|
#(#impl_verify)*
|
||
|
}
|
||
|
}
|
||
|
async fn receive(
|
||
|
&self,
|
||
|
context: &LemmyContext,
|
||
|
request_counter: &mut i32,
|
||
|
) -> Result<(), LemmyError> {
|
||
|
match self {
|
||
|
#(#impl_receive)*
|
||
|
}
|
||
|
}
|
||
|
fn common(&self) -> &ActivityCommonFields {
|
||
|
match self {
|
||
|
#(#impl_common)*
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
// Hand the output tokens back to the compiler.
|
||
|
proc_macro::TokenStream::from(expanded)
|
||
|
}
|
||
|
|
||
|
fn variant_impl_common(name: &syn::Ident, variant: &syn::Variant) -> TokenStream {
|
||
|
let id = &variant.ident;
|
||
|
match &variant.fields {
|
||
|
syn::Fields::Unnamed(_) => {
|
||
|
quote! {
|
||
|
#name::#id(a) => a.common(),
|
||
|
}
|
||
|
}
|
||
|
_ => unimplemented!(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn variant_impl_verify(name: &syn::Ident, variant: &syn::Variant) -> TokenStream {
|
||
|
let id = &variant.ident;
|
||
|
match &variant.fields {
|
||
|
syn::Fields::Unnamed(_) => {
|
||
|
quote! {
|
||
|
#name::#id(a) => a.verify(context, request_counter).await,
|
||
|
}
|
||
|
}
|
||
|
_ => unimplemented!(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn variant_impl_receive(name: &syn::Ident, variant: &syn::Variant) -> TokenStream {
|
||
|
let id = &variant.ident;
|
||
|
match &variant.fields {
|
||
|
syn::Fields::Unnamed(_) => {
|
||
|
quote! {
|
||
|
#name::#id(a) => a.receive(context, request_counter).await,
|
||
|
}
|
||
|
}
|
||
|
_ => unimplemented!(),
|
||
|
}
|
||
|
}
|