-
Notifications
You must be signed in to change notification settings - Fork 423
/
interface_attr.rs
415 lines (374 loc) · 12.2 KB
/
interface_attr.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
//! Tests for `#[graphql_interface]` macro.
use juniper::{execute, graphql_object, graphql_value, DefaultScalarValue, EmptyMutation, EmptySubscription, GraphQLObject, GraphQLType, RootNode, ScalarValue, Variables, GraphQLTypeMeta};
/* SUGARED
#[derive(GraphQLObject)]
#[graphql(implements Character)]
struct Human {
id: String,
home_planet: String,
}
DESUGARS INTO: */
#[derive(GraphQLObject)]
struct Human {
id: String,
home_planet: String,
}
#[automatically_derived]
::juniper::inventory::submit! {
#![crate = juniper]
::juniper::GraphQLInterfaceTypeImplementor {
interface_name: "Character",
object: ::juniper::GraphQLObjectTypeInfo {
name: "Human",
mark_fn: <Human as ::juniper::marker::GraphQLObjectType<::juniper::DefaultScalarValue>>::mark,
}
}
}
impl<__S: ::juniper::ScalarValue> ::juniper::AsDynGraphQLType<__S> for Human {
type Context = <Self as ::juniper::GraphQLType<__S>>::Context;
type TypeInfo = <Self as ::juniper::GraphQLType<__S>>::TypeInfo;
fn as_dyn_graphql_type(&self) -> &(dyn GraphQLType<__S, Context = Self::Context, TypeInfo = Self::TypeInfo> + 'static + Send + Sync) {
self
}
}
/* SUGARED
#[graphql_interface]
impl Character for Human {
fn id(&self) -> &str {
&self.id
}
}
DESUGARS INTO: */
impl<GraphQLScalarValue: ::juniper::ScalarValue> Character<GraphQLScalarValue> for Human {
fn id(&self) -> &str {
&self.id
}
}
// ------------------------------------------
/* SUGARED
#[derive(GraphQLObject)]
#[graphql(implements Character)]
struct Droid {
id: String,
primary_function: String,
}
DESUGARS INTO: */
#[derive(GraphQLObject)]
struct Droid {
id: String,
primary_function: String,
}
::juniper::inventory::submit! {
#![crate = juniper]
::juniper::GraphQLInterfaceTypeImplementor {
interface_name: "Character",
object: ::juniper::GraphQLObjectTypeInfo {
name: "Droid",
mark_fn: <Droid as ::juniper::marker::GraphQLObjectType<::juniper::DefaultScalarValue>>::mark,
reg_fn:
}
}
}
#[automatically_derived]
impl<__S: ::juniper::ScalarValue> ::juniper::AsDynGraphQLType<__S> for Droid {
type Context = <Self as ::juniper::GraphQLType<__S>>::Context;
type TypeInfo = <Self as ::juniper::GraphQLType<__S>>::TypeInfo;
fn as_dyn_graphql_type(&self) -> &(dyn GraphQLType<__S, Context = Self::Context, TypeInfo = Self::TypeInfo> + 'static + Send + Sync) {
self
}
}
/* SUGARED
#[graphql_interface]
impl Character for Droid {
fn id(&self) -> &str {
&self.id
}
fn as_droid(&self) -> Option<&Droid> {
Some(self)
}
}
DESUGARS INTO: */
impl<GraphQLScalarValue: ::juniper::ScalarValue> Character<GraphQLScalarValue> for Droid {
fn id(&self) -> &str {
&self.id
}
fn as_droid(&self) -> Option<&Droid> {
Some(self)
}
}
// ------------------------------------------
/* SUGARED
#[graphql_interface]
trait Character {
fn id(&self) -> &str;
#[graphql_interface(downcast)]
fn as_droid(&self) -> Option<&Droid> { None }
}
DESUGARS INTO: */
trait Character<GraphQLScalarValue: ::juniper::ScalarValue = ::juniper::DefaultScalarValue>: ::juniper::AsDynGraphQLType<GraphQLScalarValue> {
fn id(&self) -> &str;
fn as_droid(&self) -> Option<&Droid> { None }
}
#[automatically_derived]
impl<'__obj> ::juniper::marker::GraphQLInterface for dyn Character<Context = (), TypeInfo = ()> + '__obj + Send + Sync
{
fn mark() {
if let Some(objects) = ::juniper::GRAPHQL_IFACE_TYPES.get("Character") {
for obj in objects {
(obj.mark_fn)();
}
}
}
}
#[automatically_derived]
impl<'__obj, __S> ::juniper::marker::IsOutputType<__S> for dyn Character<__S, Context = (), TypeInfo = ()> + '__obj + Send + Sync
where
__S: ::juniper::ScalarValue,
{
fn mark() {
if let Some(objects) = ::juniper::GRAPHQL_IFACE_TYPES.get("Character") {
for obj in objects {
(obj.mark_fn)();
}
}
}
}
#[automatically_derived]
impl<'__obj, __S> ::juniper::GraphQLType<__S> for dyn Character<__S, Context = (), TypeInfo = ()> + '__obj + Send + Sync
where
__S: ::juniper::ScalarValue,
{
type Context = ();
type TypeInfo = ();
fn type_name<'__i>(&self, info: &'__i Self::TypeInfo) -> Option<&'__i str> {
<Self as ::juniper::GraphQLTypeMeta<__S>>::name(info)
}
fn resolve_field(
&self,
_: &Self::TypeInfo,
field: &str,
_: &juniper::Arguments<__S>,
executor: &juniper::Executor<Self::Context, __S>,
) -> juniper::ExecutionResult<__S> {
match field {
"id" => {
let res = self.id();
::juniper::IntoResolvable::into(res, executor.context()).and_then(|res| match res {
Some((ctx, r)) => executor.replaced_context(ctx).resolve_with_ctx(&(), &r),
None => Ok(juniper::Value::null()),
})
}
_ => {
panic!(
"Field {} not found on GraphQL interface {}",
field, "Character",
);
}
}
}
fn concrete_type_name(&self, context: &Self::Context, info: &Self::TypeInfo) -> String {
// First, check custom downcaster to be used.
if ({ Character::as_droid(self) } as ::std::option::Option<&Droid>).is_some() {
return <Droid as ::juniper::GraphQLTypeMeta<__S>>::name(info)
.unwrap()
.to_string();
}
// Otherwise, get concrete type name as dyn object.
self.as_dyn_graphql_type().concrete_type_name(context, info)
}
fn resolve_into_type(
&self,
ti: &Self::TypeInfo,
type_name: &str,
_: Option<&[::juniper::Selection<__S>]>,
executor: &::juniper::Executor<Self::Context, __S>,
) -> ::juniper::ExecutionResult<__S> {
let context = executor.context();
// First, check custom downcaster to be used.
if type_name == (<Droid as ::juniper::GraphQLTypeMeta<__S>>::name(ti)).unwrap() {
return ::juniper::IntoResolvable::into(
Character::as_droid(self),
executor.context(),
)
.and_then(|res| match res {
Some((ctx, r)) => executor.replaced_context(ctx).resolve_with_ctx(&(), &r),
None => Ok(::juniper::Value::null()),
});
}
// Otherwise, resolve inner type as dyn object.
return ::juniper::IntoResolvable::into(
self.as_dyn_graphql_type(),
executor.context(),
)
.and_then(|res| match res {
Some((ctx, r)) => executor.replaced_context(ctx).resolve_with_ctx(&(), &r),
None => Ok(::juniper::Value::null()),
});
}
}
#[automatically_derived]
impl<'__obj, __S> ::juniper::GraphQLTypeMeta<__S> for dyn Character<__S, Context = (), TypeInfo = ()> + '__obj + Send + Sync
where
__S: ::juniper::ScalarValue,
{
fn name(_: &Self::TypeInfo) -> Option<&str> {
Some("Character")
}
fn meta<'r>(
info: &Self::TypeInfo,
registry: &mut ::juniper::Registry<'r, __S>,
) -> ::juniper::meta::MetaType<'r, __S>
where
__S: 'r,
{
// Ensure custom downcaster type is registered
let _ = registry.get_type::<&Droid>(info);
// Ensure all child types are registered
// TODO: how?
// TODO: get_type_by_name and iter
//let _ = registry.get_type::<&Human>(info);
let fields = vec![
// TODO: try array
registry.field_convert::<&str, _, Self::Context>("id", info),
];
registry
.build_interface_type::<dyn Character<__S, Context = (), TypeInfo = ()> + '__obj + Send + Sync>(info, &fields)
.into_meta()
}
}
#[automatically_derived]
impl<'__obj, __S> ::juniper::GraphQLTypeAsync<__S> for dyn Character<__S, Context = (), TypeInfo = ()> + '__obj + Send + Sync
where
__S: ::juniper::ScalarValue,
Self: Send + Sync,
__S: Send + Sync,
{
fn resolve_field_async<'b>(
&'b self,
info: &'b Self::TypeInfo,
field_name: &'b str,
arguments: &'b ::juniper::Arguments<__S>,
executor: &'b ::juniper::Executor<Self::Context, __S>,
) -> ::juniper::BoxFuture<'b, ::juniper::ExecutionResult<__S>> {
// TODO: similar to what happens in GraphQLType impl
let res = self.resolve_field(info, field_name, arguments, executor);
::juniper::futures::future::FutureExt::boxed(async move { res })
}
fn resolve_into_type_async<'b>(
&'b self,
ti: &'b Self::TypeInfo,
type_name: &str,
se: Option<&'b [::juniper::Selection<'b, __S>]>,
executor: &'b ::juniper::Executor<'b, 'b, Self::Context, __S>,
) -> ::juniper::BoxFuture<'b, ::juniper::ExecutionResult<__S>> {
// TODO: similar to what happens in GraphQLType impl
let res = self.resolve_into_type(ti, type_name, se, executor);
::juniper::futures::future::FutureExt::boxed(async move { res })
}
}
// ------------------------------------------
fn schema<'q, C, S, Q>(query_root: Q) -> RootNode<'q, Q, EmptyMutation<C>, EmptySubscription<C>, S>
where
Q: GraphQLTypeMeta<S, Context = C, TypeInfo = ()> + 'q,
S: ScalarValue + 'q,
{
RootNode::new(
query_root,
EmptyMutation::<C>::new(),
EmptySubscription::<C>::new(),
)
}
mod poc {
use super::*;
type DynCharacter<'a, S = DefaultScalarValue> = dyn Character<S, Context=(), TypeInfo=()> + 'a + Send + Sync;
enum QueryRoot {
Human,
Droid,
}
#[graphql_object]
impl QueryRoot {
fn character(&self) -> Box<DynCharacter<'_>> {
let ch: Box<DynCharacter<'_>> = match self {
Self::Human => Box::new(Human {
id: "human-32".to_string(),
home_planet: "earth".to_string(),
}),
Self::Droid => Box::new(Droid {
id: "droid-99".to_string(),
primary_function: "run".to_string(),
}),
};
ch
}
}
#[tokio::test]
async fn resolves_id_for_human() {
const DOC: &str = r#"{
character {
id
}
}"#;
let schema = schema(QueryRoot::Human);
assert_eq!(
execute(DOC, None, &schema, &Variables::new(), &()).await,
Ok((
graphql_value!({"character": {"id": "human-32"}}),
vec![],
)),
);
}
#[tokio::test]
async fn resolves_id_for_droid() {
const DOC: &str = r#"{
character {
id
}
}"#;
let schema = schema(QueryRoot::Droid);
assert_eq!(
execute(DOC, None, &schema, &Variables::new(), &()).await,
Ok((
graphql_value!({"character": {"id": "droid-99"}}),
vec![],
)),
);
}
#[tokio::test]
async fn resolves_human() {
const DOC: &str = r#"{
character {
... on Human {
humanId: id
homePlanet
}
}
}"#;
let schema = schema(QueryRoot::Human);
assert_eq!(
execute(DOC, None, &schema, &Variables::new(), &()).await,
Ok((
graphql_value!({"character": {"humanId": "human-32", "homePlanet": "earth"}}),
vec![],
)),
);
}
#[tokio::test]
async fn resolves_droid() {
const DOC: &str = r#"{
character {
... on Droid {
humanId: id
primaryFunction
}
}
}"#;
let schema = schema(QueryRoot::Droid);
assert_eq!(
execute(DOC, None, &schema, &Variables::new(), &()).await,
Ok((
graphql_value!({"character": {"droidId": "droid-99", "primaryFunction": "run"}}),
vec![],
)),
);
}
}