use darling::ast::Data; use proc_macro::TokenStream; use quote::quote; use syn::{ext::IdentExt, Error}; use crate::{ args::{self, RenameRuleExt, RenameTarget}, utils::{gen_deprecation, get_crate_name, get_rustdoc, visible_fn, GeneratorResult}, }; pub fn generate(enum_args: &args::Enum) -> GeneratorResult { let crate_name = get_crate_name(enum_args.internal); let ident = &enum_args.ident; let e = match &enum_args.data { Data::Enum(e) => e, _ => return Err(Error::new_spanned(ident, "Enum can only be applied to an enum.").into()), }; let gql_typename = enum_args .name .clone() .unwrap_or_else(|| RenameTarget::Type.rename(ident.to_string())); let desc = get_rustdoc(&enum_args.attrs)? .map(|s| quote! { ::std::option::Option::Some(#s) }) .unwrap_or_else(|| quote! {::std::option::Option::None}); let mut enum_items = Vec::new(); let mut items = Vec::new(); let mut schema_enum_items = Vec::new(); for variant in e { if !variant.fields.is_empty() { return Err(Error::new_spanned( &variant.ident, format!( "Invalid enum variant {}.\nGraphQL enums may only contain unit variants.", variant.ident ), ) .into()); } let item_ident = &variant.ident; let gql_item_name = variant.name.clone().unwrap_or_else(|| { enum_args .rename_items .rename(variant.ident.unraw().to_string(), RenameTarget::EnumItem) }); let item_deprecation = gen_deprecation(&variant.deprecation, &crate_name); let item_desc = get_rustdoc(&variant.attrs)? .map(|s| quote! { ::std::option::Option::Some(#s) }) .unwrap_or_else(|| quote! {::std::option::Option::None}); enum_items.push(item_ident); items.push(quote! { #crate_name::resolver_utils::EnumItem { name: #gql_item_name, value: #ident::#item_ident, } }); let visible = visible_fn(&variant.visible); schema_enum_items.push(quote! { enum_items.insert(#gql_item_name, #crate_name::registry::MetaEnumValue { name: #gql_item_name, description: #item_desc, deprecation: #item_deprecation, visible: #visible, }); }); } let remote_conversion = if let Some(remote) = &enum_args.remote { let remote_ty = syn::parse_str::(remote).map_err(|_| { Error::new_spanned(remote, format!("Invalid remote type: '{}'", remote)) })?; let local_to_remote_items = enum_items.iter().map(|item| { quote! { #ident::#item => #remote_ty::#item, } }); let remote_to_local_items = enum_items.iter().map(|item| { quote! { #remote_ty::#item => #ident::#item, } }); Some(quote! { impl ::std::convert::From<#ident> for #remote_ty { fn from(value: #ident) -> Self { match value { #(#local_to_remote_items)* } } } impl ::std::convert::From<#remote_ty> for #ident { fn from(value: #remote_ty) -> Self { match value { #(#remote_to_local_items)* } } } }) } else { None }; if schema_enum_items.is_empty() { return Err(Error::new_spanned( &ident, "A GraphQL Enum type must define one or more unique enum values.", ) .into()); } let visible = visible_fn(&enum_args.visible); let expanded = quote! { #[allow(clippy::all, clippy::pedantic)] impl #crate_name::resolver_utils::EnumType for #ident { fn items() -> &'static [#crate_name::resolver_utils::EnumItem<#ident>] { &[#(#items),*] } } #[allow(clippy::all, clippy::pedantic)] impl #ident { fn __type_name() -> ::std::borrow::Cow<'static, ::std::primitive::str> { ::std::borrow::Cow::Borrowed(#gql_typename) } fn __create_type_info(registry: &mut #crate_name::registry::Registry) -> ::std::string::String { registry.create_input_type::(#crate_name::registry::MetaTypeId::Enum, |registry| { #crate_name::registry::MetaType::Enum { name: ::std::borrow::ToOwned::to_owned(#gql_typename), description: #desc, enum_values: { let mut enum_items = #crate_name::indexmap::IndexMap::new(); #(#schema_enum_items)* enum_items }, visible: #visible, rust_typename: ::std::any::type_name::(), } }) } } #[allow(clippy::all, clippy::pedantic)] impl #crate_name::InputType for #ident { type RawValueType = Self; fn type_name() -> ::std::borrow::Cow<'static, ::std::primitive::str> { Self::__type_name() } fn create_type_info(registry: &mut #crate_name::registry::Registry) -> ::std::string::String { Self::__create_type_info(registry) } fn parse(value: ::std::option::Option<#crate_name::Value>) -> #crate_name::InputValueResult { #crate_name::resolver_utils::parse_enum(value.unwrap_or_default()) } fn to_value(&self) -> #crate_name::Value { #crate_name::resolver_utils::enum_value(*self) } fn as_raw_value(&self) -> ::std::option::Option<&Self::RawValueType> { ::std::option::Option::Some(self) } } #[#crate_name::async_trait::async_trait] impl #crate_name::OutputType for #ident { fn type_name() -> ::std::borrow::Cow<'static, ::std::primitive::str> { Self::__type_name() } fn create_type_info(registry: &mut #crate_name::registry::Registry) -> ::std::string::String { Self::__create_type_info(registry) } async fn resolve(&self, _: &#crate_name::ContextSelectionSet<'_>, _field: &#crate_name::Positioned<#crate_name::parser::types::Field>) -> #crate_name::ServerResult<#crate_name::Value> { ::std::result::Result::Ok(#crate_name::resolver_utils::enum_value(*self)) } } impl ::std::convert::From<#ident> for #crate_name::Value { fn from(value: #ident) -> #crate_name::Value { #crate_name::resolver_utils::enum_value(value) } } #remote_conversion }; Ok(expanded.into()) }