-
Notifications
You must be signed in to change notification settings - Fork 423
/
mod.rs
862 lines (771 loc) · 32.5 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
//! Code generation for [GraphQL object][1].
//!
//! [1]: https://spec.graphql.org/October2021#sec-Objects
pub mod attr;
pub mod derive;
use std::{any::TypeId, collections::HashSet, marker::PhantomData};
use proc_macro2::TokenStream;
use quote::{format_ident, quote, ToTokens};
use syn::{
ext::IdentExt as _,
parse::{Parse, ParseStream},
parse_quote,
spanned::Spanned as _,
token,
};
use crate::common::{
field, filter_attrs, gen,
parse::{
attr::{err, OptionExt as _},
GenericsExt as _, ParseBufferExt as _, TypeExt,
},
rename, scalar, Description, SpanContainer,
};
/// Available arguments behind `#[graphql]` (or `#[graphql_object]`) attribute
/// when generating code for [GraphQL object][1] type.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[derive(Debug, Default)]
pub(crate) struct Attr {
/// Explicitly specified name of this [GraphQL object][1] type.
///
/// If [`None`], then Rust type name is used by default.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) name: Option<SpanContainer<String>>,
/// Explicitly specified [description][2] of this [GraphQL object][1] type.
///
/// If [`None`], then Rust doc comment will be used as the [description][2],
/// if any.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
/// [2]: https://spec.graphql.org/October2021#sec-Descriptions
pub(crate) description: Option<SpanContainer<Description>>,
/// Explicitly specified type of [`Context`] to use for resolving this
/// [GraphQL object][1] type with.
///
/// If [`None`], then unit type `()` is assumed as a type of [`Context`].
///
/// [`Context`]: juniper::Context
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) context: Option<SpanContainer<syn::Type>>,
/// Explicitly specified type (or type parameter with its bounds) of
/// [`ScalarValue`] to use for resolving this [GraphQL object][1] type with.
///
/// If [`None`], then generated code will be generic over any
/// [`ScalarValue`] type, which, in turn, requires all [object][1] fields to
/// be generic over any [`ScalarValue`] type too. That's why this type
/// should be specified only if one of the variants implements
/// [`GraphQLType`] in a non-generic way over [`ScalarValue`] type.
///
/// [`GraphQLType`]: juniper::GraphQLType
/// [`ScalarValue`]: juniper::ScalarValue
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) scalar: Option<SpanContainer<scalar::AttrValue>>,
/// Explicitly specified [GraphQL interfaces][2] this [GraphQL object][1]
/// type implements.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
/// [2]: https://spec.graphql.org/October2021#sec-Interfaces
pub(crate) interfaces: HashSet<SpanContainer<syn::Type>>,
/// Explicitly specified [`rename::Policy`] for all fields of this
/// [GraphQL object][1] type.
///
/// If [`None`], then the [`rename::Policy::CamelCase`] will be applied by
/// default.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) rename_fields: Option<SpanContainer<rename::Policy>>,
/// Indicator whether the generated code is intended to be used only inside
/// the [`juniper`] library.
pub(crate) is_internal: bool,
}
impl Parse for Attr {
fn parse(input: ParseStream<'_>) -> syn::Result<Self> {
let mut out = Self::default();
while !input.is_empty() {
let ident = input.parse_any_ident()?;
match ident.to_string().as_str() {
"name" => {
input.parse::<token::Eq>()?;
let name = input.parse::<syn::LitStr>()?;
out.name
.replace(SpanContainer::new(
ident.span(),
Some(name.span()),
name.value(),
))
.none_or_else(|_| err::dup_arg(&ident))?
}
"desc" | "description" => {
input.parse::<token::Eq>()?;
let desc = input.parse::<Description>()?;
out.description
.replace(SpanContainer::new(ident.span(), Some(desc.span()), desc))
.none_or_else(|_| err::dup_arg(&ident))?
}
"ctx" | "context" | "Context" => {
input.parse::<token::Eq>()?;
let ctx = input.parse::<syn::Type>()?;
out.context
.replace(SpanContainer::new(ident.span(), Some(ctx.span()), ctx))
.none_or_else(|_| err::dup_arg(&ident))?
}
"scalar" | "Scalar" | "ScalarValue" => {
input.parse::<token::Eq>()?;
let scl = input.parse::<scalar::AttrValue>()?;
out.scalar
.replace(SpanContainer::new(ident.span(), Some(scl.span()), scl))
.none_or_else(|_| err::dup_arg(&ident))?
}
"impl" | "implements" | "interfaces" => {
input.parse::<token::Eq>()?;
for iface in input.parse_maybe_wrapped_and_punctuated::<
syn::Type, token::Bracket, token::Comma,
>()? {
let iface_span = iface.span();
out
.interfaces
.replace(SpanContainer::new(ident.span(), Some(iface_span), iface))
.none_or_else(|_| err::dup_arg(iface_span))?;
}
}
"rename_all" => {
input.parse::<token::Eq>()?;
let val = input.parse::<syn::LitStr>()?;
out.rename_fields
.replace(SpanContainer::new(
ident.span(),
Some(val.span()),
val.try_into()?,
))
.none_or_else(|_| err::dup_arg(&ident))?;
}
"internal" => {
out.is_internal = true;
}
name => {
return Err(err::unknown_arg(&ident, name));
}
}
input.try_parse::<token::Comma>()?;
}
Ok(out)
}
}
impl Attr {
/// Tries to merge two [`Attr`]s into a single one, reporting about
/// duplicates, if any.
fn try_merge(self, mut another: Self) -> syn::Result<Self> {
Ok(Self {
name: try_merge_opt!(name: self, another),
description: try_merge_opt!(description: self, another),
context: try_merge_opt!(context: self, another),
scalar: try_merge_opt!(scalar: self, another),
interfaces: try_merge_hashset!(interfaces: self, another => span_joined),
rename_fields: try_merge_opt!(rename_fields: self, another),
is_internal: self.is_internal || another.is_internal,
})
}
/// Parses [`Attr`] from the given multiple `name`d [`syn::Attribute`]s
/// placed on a struct or impl block definition.
pub(crate) fn from_attrs(name: &str, attrs: &[syn::Attribute]) -> syn::Result<Self> {
let mut attr = filter_attrs(name, attrs)
.map(|attr| attr.parse_args())
.try_fold(Self::default(), |prev, curr| prev.try_merge(curr?))?;
if attr.description.is_none() {
attr.description = Description::parse_from_doc_attrs(attrs)?;
}
Ok(attr)
}
}
/// Definition of [GraphQL object][1] for code generation.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[derive(Debug)]
pub(crate) struct Definition<Operation: ?Sized> {
/// Name of this [GraphQL object][1] in GraphQL schema.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) name: String,
/// Rust type that this [GraphQL object][1] is represented with.
///
/// It should contain all its generics, if any.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) ty: syn::Type,
/// Generics of the Rust type that this [GraphQL object][1] is implemented
/// for.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) generics: syn::Generics,
/// Description of this [GraphQL object][1] to put into GraphQL schema.
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) description: Option<Description>,
/// Rust type of [`Context`] to generate [`GraphQLType`] implementation with
/// for this [GraphQL object][1].
///
/// [`GraphQLType`]: juniper::GraphQLType
/// [`Context`]: juniper::Context
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) context: syn::Type,
/// [`ScalarValue`] parametrization to generate [`GraphQLType`]
/// implementation with for this [GraphQL object][1].
///
/// [`GraphQLType`]: juniper::GraphQLType
/// [`ScalarValue`]: juniper::ScalarValue
/// [1]: https://spec.graphql.org/October2021#sec-Objects
pub(crate) scalar: scalar::Type,
/// Defined [GraphQL fields][2] of this [GraphQL object][1].
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
/// [2]: https://spec.graphql.org/October2021#sec-Language.Fields
pub(crate) fields: Vec<field::Definition>,
/// [GraphQL interfaces][2] implemented by this [GraphQL object][1].
///
/// [1]: https://spec.graphql.org/October2021#sec-Objects
/// [2]: https://spec.graphql.org/October2021#sec-Interfaces
pub(crate) interfaces: HashSet<syn::Type>,
/// [GraphQL operation][1] this [`Definition`] should generate code for.
///
/// Either [GraphQL query][2] or [GraphQL subscription][3].
///
/// [1]: https://spec.graphql.org/October2021#sec-Language.Operations
/// [2]: https://spec.graphql.org/October2021#sec-Query
/// [3]: https://spec.graphql.org/October2021#sec-Subscription
pub(crate) _operation: PhantomData<Box<Operation>>,
}
impl<Operation: ?Sized + 'static> Definition<Operation> {
/// Returns prepared [`syn::Generics::split_for_impl`] for [`GraphQLType`]
/// trait (and similar) implementation of this [GraphQL object][1].
///
/// If `for_async` is `true`, then additional predicates are added to suit
/// the [`GraphQLAsyncValue`] trait (and similar) requirements.
///
/// [`GraphQLAsyncValue`]: juniper::GraphQLAsyncValue
/// [`GraphQLType`]: juniper::GraphQLType
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
pub(crate) fn impl_generics(&self, for_async: bool) -> (TokenStream, Option<syn::WhereClause>) {
let mut generics = self.generics.clone();
let scalar = &self.scalar;
if scalar.is_implicit_generic() {
generics.params.push(parse_quote! { #scalar });
}
if scalar.is_generic() {
generics
.make_where_clause()
.predicates
.push(parse_quote! { #scalar: ::juniper::ScalarValue });
}
if let Some(bound) = scalar.bounds() {
generics.make_where_clause().predicates.push(bound);
}
if for_async {
let self_ty = if self.generics.lifetimes().next().is_some() {
let mut lifetimes = vec![];
// Modify lifetime names to omit "lifetime name `'a` shadows a
// lifetime name that is already in scope" error.
let mut ty = self.ty.clone();
ty.lifetimes_iter_mut(&mut |lt| {
let ident = lt.ident.unraw();
lt.ident = format_ident!("__fa__{ident}");
lifetimes.push(lt.clone());
});
quote! { for<#( #lifetimes ),*> #ty }
} else {
quote! { Self }
};
generics
.make_where_clause()
.predicates
.push(parse_quote! { #self_ty: Sync });
if scalar.is_generic() {
generics
.make_where_clause()
.predicates
.push(parse_quote! { #scalar: Send + Sync });
}
}
let (impl_generics, _, where_clause) = generics.split_for_impl();
(quote! { #impl_generics }, where_clause.cloned())
}
/// Returns generated code implementing [`marker::IsOutputType`] trait for
/// this [GraphQL object][1].
///
/// [`marker::IsOutputType`]: juniper::marker::IsOutputType
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
pub(crate) fn impl_output_type_tokens(&self) -> TokenStream {
let scalar = &self.scalar;
let (impl_generics, where_clause) = self.impl_generics(false);
let ty = &self.ty;
let coerce_result = TypeId::of::<Operation>() != TypeId::of::<Query>();
let fields_marks = self
.fields
.iter()
.map(|f| f.method_mark_tokens(coerce_result, scalar));
let interface_tys = self.interfaces.iter();
quote! {
#[automatically_derived]
impl #impl_generics ::juniper::marker::IsOutputType<#scalar> for #ty #where_clause
{
fn mark() {
#( #fields_marks )*
#( <#interface_tys as ::juniper::marker::IsOutputType<#scalar>>::mark(); )*
}
}
}
}
/// Returns generated code implementing [`BaseType`], [`BaseSubTypes`],
/// [`WrappedType`] and [`Fields`] traits for this [GraphQL object][1].
///
/// [`BaseSubTypes`]: juniper::macros::reflect::BaseSubTypes
/// [`BaseType`]: juniper::macros::reflect::BaseType
/// [`Fields`]: juniper::macros::reflect::Fields
/// [`WrappedType`]: juniper::macros::reflect::WrappedType
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
pub(crate) fn impl_reflection_traits_tokens(&self) -> TokenStream {
let scalar = &self.scalar;
let name = &self.name;
let (impl_generics, where_clause) = self.impl_generics(false);
let ty = &self.ty;
let fields = self.fields.iter().map(|f| &f.name);
let interfaces = self.interfaces.iter();
quote! {
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::BaseType<#scalar>
for #ty
#where_clause
{
const NAME: ::juniper::macros::reflect::Type = #name;
}
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::BaseSubTypes<#scalar>
for #ty
#where_clause
{
const NAMES: ::juniper::macros::reflect::Types =
&[<Self as ::juniper::macros::reflect::BaseType<#scalar>>::NAME];
}
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::Implements<#scalar>
for #ty
#where_clause
{
const NAMES: ::juniper::macros::reflect::Types =
&[#(<#interfaces as ::juniper::macros::reflect::BaseType<#scalar>>::NAME),*];
}
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::WrappedType<#scalar>
for #ty
#where_clause
{
const VALUE: ::juniper::macros::reflect::WrappedValue = 1;
}
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::Fields<#scalar>
for #ty
#where_clause
{
const NAMES: ::juniper::macros::reflect::Names = &[#(#fields),*];
}
}
}
/// Returns generated code implementing [`GraphQLType`] trait for this
/// [GraphQL object][1].
///
/// [`GraphQLType`]: juniper::GraphQLType
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
pub(crate) fn impl_graphql_type_tokens(&self) -> TokenStream {
let scalar = &self.scalar;
let (impl_generics, where_clause) = self.impl_generics(false);
let ty = &self.ty;
let name = &self.name;
let description = &self.description;
let extract_stream_type = TypeId::of::<Operation>() != TypeId::of::<Query>();
let fields_meta = self
.fields
.iter()
.map(|f| f.method_meta_tokens(extract_stream_type.then_some(scalar)));
// Sorting is required to preserve/guarantee the order of interfaces registered in schema.
let mut interface_tys: Vec<_> = self.interfaces.iter().collect();
interface_tys.sort_unstable_by(|a, b| {
let (a, b) = (quote!(#a).to_string(), quote!(#b).to_string());
a.cmp(&b)
});
let interfaces = (!interface_tys.is_empty()).then(|| {
quote! {
.interfaces(&[
#( registry.get_type::<#interface_tys>(info), )*
])
}
});
quote! {
#[automatically_derived]
impl #impl_generics ::juniper::GraphQLType<#scalar> for #ty #where_clause
{
fn name(_ : &Self::TypeInfo) -> Option<&'static str> {
Some(#name)
}
fn meta<'r>(
info: &Self::TypeInfo,
registry: &mut ::juniper::Registry<'r, #scalar>
) -> ::juniper::meta::MetaType<'r, #scalar>
where #scalar: 'r,
{
let fields = [
#( #fields_meta, )*
];
registry.build_object_type::<#ty>(info, &fields)
#description
#interfaces
.into_meta()
}
}
}
}
}
/// [GraphQL query operation][2] of the [`Definition`] to generate code for.
///
/// [2]: https://spec.graphql.org/October2021#sec-Query
struct Query;
impl ToTokens for Definition<Query> {
fn to_tokens(&self, into: &mut TokenStream) {
self.impl_graphql_object_tokens().to_tokens(into);
self.impl_output_type_tokens().to_tokens(into);
self.impl_graphql_type_tokens().to_tokens(into);
self.impl_graphql_value_tokens().to_tokens(into);
self.impl_graphql_value_async_tokens().to_tokens(into);
self.impl_reflection_traits_tokens().to_tokens(into);
self.impl_field_meta_tokens().to_tokens(into);
self.impl_field_tokens().to_tokens(into);
self.impl_async_field_tokens().to_tokens(into);
}
}
impl Definition<Query> {
/// Returns generated code implementing [`GraphQLObject`] trait for this
/// [GraphQL object][1].
///
/// [`GraphQLObject`]: juniper::GraphQLObject
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
fn impl_graphql_object_tokens(&self) -> TokenStream {
let scalar = &self.scalar;
let const_scalar = self.scalar.default_ty();
let (impl_generics, where_clause) = self.impl_generics(false);
let ty = &self.ty;
let interface_tys = self.interfaces.iter();
let generics = {
let mut generics = self.generics.clone();
if scalar.is_implicit_generic() {
generics.params.push(parse_quote! { #scalar })
}
generics
};
let const_interface_tys = interface_tys.clone().cloned().map(|mut ty| {
generics.replace_type_with_defaults(&mut ty);
ty
});
// TODO: Make it work by repeating `sa::assert_type_ne_all!` expansion,
// but considering generics.
//let interface_tys: Vec<_> = self.interfaces.iter().collect();
//let all_interfaces_unique = (interface_tys.len() > 1).then(|| {
// quote! { ::juniper::sa::assert_type_ne_all!(#( #interface_tys ),*); }
//});
quote! {
#[automatically_derived]
impl #impl_generics ::juniper::marker::GraphQLObject<#scalar> for #ty #where_clause
{
fn mark() {
#( <#interface_tys as ::juniper::marker::GraphQLInterface<#scalar>>::mark(); )*
::juniper::assert_implemented_for!(
#const_scalar, #ty, #(#const_interface_tys),*
);
}
}
}
}
/// Returns generated code implementing [`FieldMeta`] traits for each field
/// of this [GraphQL object][1].
///
/// [`FieldMeta`]: juniper::FieldMeta
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
fn impl_field_meta_tokens(&self) -> TokenStream {
let impl_ty = &self.ty;
let scalar = &self.scalar;
let context = &self.context;
let (impl_generics, where_clause) = self.impl_generics(false);
self.fields
.iter()
.map(|field| {
let (name, ty) = (&field.name, field.ty.clone());
let arguments = field
.arguments
.as_ref()
.iter()
.flat_map(|vec| vec.iter())
.filter_map(|arg| match arg {
field::MethodArgument::Regular(arg) => {
let (name, ty) = (&arg.name, &arg.ty);
Some(quote! {(
#name,
<#ty as ::juniper::macros::reflect::BaseType<#scalar>>::NAME,
<#ty as ::juniper::macros::reflect::WrappedType<#scalar>>::VALUE,
)})
}
field::MethodArgument::Executor | field::MethodArgument::Context(_) => None,
})
.collect::<Vec<_>>();
quote! {
#[allow(deprecated, non_snake_case)]
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::FieldMeta<
#scalar,
{ ::juniper::macros::reflect::fnv1a128(#name) }
> for #impl_ty #where_clause {
type Context = #context;
type TypeInfo = ();
const TYPE: ::juniper::macros::reflect::Type =
<#ty as ::juniper::macros::reflect::BaseType<#scalar>>::NAME;
const SUB_TYPES: ::juniper::macros::reflect::Types =
<#ty as ::juniper::macros::reflect::BaseSubTypes<#scalar>>::NAMES;
const WRAPPED_VALUE: juniper::macros::reflect::WrappedValue =
<#ty as ::juniper::macros::reflect::WrappedType<#scalar>>::VALUE;
const ARGUMENTS: &'static [(
::juniper::macros::reflect::Name,
::juniper::macros::reflect::Type,
::juniper::macros::reflect::WrappedValue,
)] = &[#(#arguments,)*];
}
}
})
.collect()
}
/// Returns generated code implementing [`Field`] trait for each field of
/// this [GraphQL object][1].
///
/// [`Field`]: juniper::Field
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
fn impl_field_tokens(&self) -> TokenStream {
let (impl_ty, scalar) = (&self.ty, &self.scalar);
let (impl_generics, where_clause) = self.impl_generics(false);
self.fields
.iter()
.map(|field| {
let (name, mut res_ty, ident) = (&field.name, field.ty.clone(), &field.ident);
let resolve = if field.is_async {
quote! {
::std::panic!(
"Tried to resolve async field `{}` on type `{}` with a sync resolver",
#name,
<Self as ::juniper::macros::reflect::BaseType<#scalar>>::NAME,
);
}
} else {
let res = if field.is_method() {
let args = field
.arguments
.as_ref()
.unwrap()
.iter()
.map(|arg| arg.method_resolve_field_tokens(scalar, false));
let rcv = field.has_receiver.then(|| {
quote! { self, }
});
quote! { Self::#ident(#rcv #( #args ),*) }
} else {
res_ty = parse_quote! { _ };
quote! { &self.#ident }
};
let resolving_code = gen::sync_resolving_code();
quote! {
let res: #res_ty = #res;
#resolving_code
}
};
quote! {
#[allow(deprecated, non_snake_case)]
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::Field<
#scalar,
{ ::juniper::macros::reflect::fnv1a128(#name) }
> for #impl_ty
#where_clause
{
fn call(
&self,
info: &Self::TypeInfo,
args: &::juniper::Arguments<'_, #scalar>,
executor: &::juniper::Executor<'_, '_, Self::Context, #scalar>,
) -> ::juniper::ExecutionResult<#scalar> {
#resolve
}
}
}
})
.collect()
}
/// Returns generated code implementing [`AsyncField`] trait for each field
/// of this [GraphQL object][1].
///
/// [`AsyncField`]: juniper::AsyncField
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
fn impl_async_field_tokens(&self) -> TokenStream {
let (impl_ty, scalar) = (&self.ty, &self.scalar);
let (impl_generics, where_clause) = self.impl_generics(true);
self.fields
.iter()
.map(|field| {
let (name, mut res_ty, ident) = (&field.name, field.ty.clone(), &field.ident);
let mut res = if field.is_method() {
let args = field
.arguments
.as_ref()
.unwrap()
.iter()
.map(|arg| arg.method_resolve_field_tokens(scalar, true));
let rcv = field.has_receiver.then(|| {
quote! { self, }
});
quote! { Self::#ident(#rcv #( #args ),*) }
} else {
res_ty = parse_quote! { _ };
quote! { &self.#ident }
};
if !field.is_async {
res = quote! { ::juniper::futures::future::ready(#res) };
}
let resolving_code = gen::async_resolving_code(Some(&res_ty));
quote! {
#[allow(deprecated, non_snake_case)]
#[automatically_derived]
impl #impl_generics ::juniper::macros::reflect::AsyncField<
#scalar,
{ ::juniper::macros::reflect::fnv1a128(#name) }
> for #impl_ty
#where_clause
{
fn call<'b>(
&'b self,
info: &'b Self::TypeInfo,
args: &'b ::juniper::Arguments<'_, #scalar>,
executor: &'b ::juniper::Executor<'_, '_, Self::Context, #scalar>,
) -> ::juniper::BoxFuture<'b, ::juniper::ExecutionResult<#scalar>> {
let fut = #res;
#resolving_code
}
}
}
})
.collect()
}
/// Returns generated code implementing [`GraphQLValue`] trait for this
/// [GraphQL object][1].
///
/// [`GraphQLValue`]: juniper::GraphQLValue
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
fn impl_graphql_value_tokens(&self) -> TokenStream {
let scalar = &self.scalar;
let context = &self.context;
let (impl_generics, where_clause) = self.impl_generics(false);
let ty = &self.ty;
let ty_name = ty.to_token_stream().to_string();
let name = &self.name;
let fields_resolvers = self.fields.iter().map(|f| {
let name = &f.name;
quote! {
#name => {
::juniper::macros::reflect::Field::<
#scalar,
{ ::juniper::macros::reflect::fnv1a128(#name) }
>::call(self, info, args, executor)
}
}
});
let no_field_err =
field::Definition::method_resolve_field_err_no_field_tokens(scalar, &ty_name);
quote! {
#[allow(deprecated)]
#[automatically_derived]
impl #impl_generics ::juniper::GraphQLValue<#scalar> for #ty #where_clause
{
type Context = #context;
type TypeInfo = ();
fn type_name<'__i>(&self, info: &'__i Self::TypeInfo) -> Option<&'__i str> {
<Self as ::juniper::GraphQLType<#scalar>>::name(info)
}
fn resolve_field(
&self,
info: &Self::TypeInfo,
field: &str,
args: &::juniper::Arguments<'_, #scalar>,
executor: &::juniper::Executor<'_, '_, Self::Context, #scalar>,
) -> ::juniper::ExecutionResult<#scalar> {
match field {
#( #fields_resolvers )*
_ => #no_field_err,
}
}
fn concrete_type_name(
&self,
_: &Self::Context,
_: &Self::TypeInfo,
) -> String {
#name.into()
}
}
}
}
/// Returns generated code implementing [`GraphQLValueAsync`] trait for this
/// [GraphQL object][1].
///
/// [`GraphQLValueAsync`]: juniper::GraphQLValueAsync
/// [1]: https://spec.graphql.org/October2021#sec-Objects
#[must_use]
fn impl_graphql_value_async_tokens(&self) -> TokenStream {
let scalar = &self.scalar;
let (impl_generics, where_clause) = self.impl_generics(true);
let ty = &self.ty;
let ty_name = ty.to_token_stream().to_string();
let fields_resolvers = self.fields.iter().map(|f| {
let name = &f.name;
quote! {
#name => {
::juniper::macros::reflect::AsyncField::<
#scalar,
{ ::juniper::macros::reflect::fnv1a128(#name) }
>::call(self, info, args, executor)
}
}
});
let no_field_err =
field::Definition::method_resolve_field_err_no_field_tokens(scalar, &ty_name);
quote! {
#[allow(deprecated, non_snake_case)]
#[automatically_derived]
impl #impl_generics ::juniper::GraphQLValueAsync<#scalar> for #ty #where_clause
{
fn resolve_field_async<'b>(
&'b self,
info: &'b Self::TypeInfo,
field: &'b str,
args: &'b ::juniper::Arguments<'_, #scalar>,
executor: &'b ::juniper::Executor<'_, '_, Self::Context, #scalar>,
) -> ::juniper::BoxFuture<'b, ::juniper::ExecutionResult<#scalar>> {
match field {
#( #fields_resolvers )*
_ => Box::pin(async move { #no_field_err }),
}
}
}
}
}
}