cynic_codegen/query_variables_derive/
mod.rs1use {
2 proc_macro2::TokenStream,
3 quote::{format_ident, quote, quote_spanned},
4 syn::visit_mut::{self, VisitMut},
5};
6
7mod input;
8
9use crate::{generics_for_serde, variables_fields_ident};
10
11use self::input::QueryVariablesDeriveInput;
12
13pub fn query_variables_derive(ast: &syn::DeriveInput) -> Result<TokenStream, syn::Error> {
14 use darling::FromDeriveInput;
15
16 match QueryVariablesDeriveInput::from_derive_input(ast) {
17 Ok(input) => query_variables_derive_impl(input),
18 Err(e) => Ok(e.write_errors()),
19 }
20}
21
22pub fn query_variables_derive_impl(
23 input: QueryVariablesDeriveInput,
24) -> Result<TokenStream, syn::Error> {
25 let ident = &input.ident;
26
27 let (impl_generics, ty_generics, where_clause) = input.generics.split_for_impl();
28 let generics_with_ser = generics_for_serde::with_serialize_bounds(&input.generics);
29 let (impl_generics_with_ser, _, where_clause_with_ser) = generics_with_ser.split_for_impl();
30
31 let vis = &input.vis;
32 let schema_module = &input.schema_module();
33 let fields_struct_ident = variables_fields_ident(ident);
34
35 let input_fields = input.data.take_struct().unwrap().fields;
36
37 let mut field_funcs = Vec::new();
38 let mut variables = Vec::new();
39 let mut field_inserts = Vec::new();
40 let mut coercion_checks = Vec::new();
41 let mut field_output_types = Vec::new();
42
43 for (field_idx, f) in input_fields.into_iter().enumerate() {
44 let name = f.ident.as_ref().unwrap();
45 let ty = &f.ty;
46 let mut ty_for_fields_struct = match f.graphql_type {
47 None => ty.clone(),
48 Some(ref graphql_type) => {
49 let new_type_that_coerces_to_schema_type =
71 format_ident!("CoercionProxyForField{field_idx}");
72 field_output_types.push(quote! {
73 #vis struct #new_type_that_coerces_to_schema_type;
74 cynic::impl_coercions!(#new_type_that_coerces_to_schema_type [] [], #schema_module::#graphql_type);
75 });
76 coercion_checks.push(quote! {
77 cynic::assert_impl!(#ty [#impl_generics] [#where_clause]: cynic::coercions::CoercesTo<#schema_module::#graphql_type>);
78 });
79
80 syn::parse_quote! { #new_type_that_coerces_to_schema_type }
82 }
83 };
84 TurnLifetimesToStatic.visit_type_mut(&mut ty_for_fields_struct);
85 let name_str =
86 proc_macro2::Literal::string(&f.graphql_ident(input.rename_all).graphql_name());
87
88 field_funcs.push(quote! {
89 #vis fn #name() -> cynic::variables::VariableDefinition<Self, #ty_for_fields_struct> {
90 cynic::variables::VariableDefinition::new(#name_str)
91 }
92 });
93
94 variables.push(quote! {
95 (#name_str, <#ty as #schema_module::variable::Variable>::TYPE)
96 });
97
98 match f.skip_serializing_if {
99 Some(skip_check_fn) => {
100 let skip_check_fn = &*skip_check_fn;
101 field_inserts.push(quote! {
102 if !#skip_check_fn(&self.#name) {
103 map_serializer.serialize_entry(#name_str, &self.#name)?;
104 }
105 })
106 }
107 None => field_inserts.push(quote! {
108 map_serializer.serialize_entry(#name_str, &self.#name)?;
109 }),
110 }
111 }
112
113 let map_len = field_inserts.len();
114
115 let ident_span = ident.span();
116 let fields_struct = quote_spanned! { ident_span =>
117 #vis struct #fields_struct_ident;
118
119 impl cynic::QueryVariablesFields for #fields_struct_ident {}
120
121 impl cynic::queries::VariableMatch<#fields_struct_ident> for #fields_struct_ident {}
122
123 const _: () = {
124 #(
125 #field_output_types
126 )*
127
128 impl #fields_struct_ident {
129 #(
130 #field_funcs
131 )*
132 }
133 };
134 };
135
136 Ok(quote! {
137
138 #[automatically_derived]
139 impl #impl_generics cynic::QueryVariables for #ident #ty_generics #where_clause {
140 type Fields = #fields_struct_ident;
141 const VARIABLES: &'static [(&'static str, cynic::variables::VariableType)]
142 = &[#(#variables),*];
143 }
144
145 #[automatically_derived]
146 impl #impl_generics_with_ser cynic::serde::Serialize for #ident #ty_generics #where_clause_with_ser {
147 fn serialize<__S>(&self, serializer: __S) -> Result<__S::Ok, __S::Error>
148 where
149 __S: cynic::serde::Serializer,
150 {
151 use cynic::serde::ser::SerializeMap;
152 #(#coercion_checks)*
153
154 let mut map_serializer = serializer.serialize_map(Some(#map_len))?;
155
156 #(#field_inserts)*
157
158 map_serializer.end()
159 }
160 }
161
162 #fields_struct
163 })
164}
165
166struct TurnLifetimesToStatic;
167impl VisitMut for TurnLifetimesToStatic {
168 fn visit_lifetime_mut(&mut self, i: &mut syn::Lifetime) {
169 i.ident = format_ident!("static");
170 visit_mut::visit_lifetime_mut(self, i)
171 }
172}