juniper/types/async_await.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
use std::future;
use auto_enums::enum_derive;
use crate::{
ast::Selection,
executor::{ExecutionResult, Executor},
parser::Spanning,
value::{DefaultScalarValue, Object, ScalarValue, Value},
};
use crate::BoxFuture;
use super::base::{is_excluded, merge_key_into, Arguments, GraphQLType, GraphQLValue};
/// Extension of [`GraphQLValue`] trait with asynchronous queries/mutations resolvers.
///
/// Convenience macros related to asynchronous queries/mutations expand into an implementation of
/// this trait and [`GraphQLValue`] for the given type.
pub trait GraphQLValueAsync<S = DefaultScalarValue>: GraphQLValue<S> + Sync
where
Self::TypeInfo: Sync,
Self::Context: Sync,
S: ScalarValue + Send + Sync,
{
/// Resolves the value of a single field on this [`GraphQLValueAsync`].
///
/// The `arguments` object contains all the specified arguments, with default values being
/// substituted for the ones not provided by the query.
///
/// The `executor` can be used to drive selections into sub-[objects][3].
///
/// # Panics
///
/// The default implementation panics.
///
/// [3]: https://spec.graphql.org/October2021#sec-Objects
fn resolve_field_async<'a>(
&'a self,
_info: &'a Self::TypeInfo,
_field_name: &'a str,
_arguments: &'a Arguments<S>,
_executor: &'a Executor<Self::Context, S>,
) -> BoxFuture<'a, ExecutionResult<S>> {
panic!(
"GraphQLValueAsync::resolve_field_async() must be implemented by objects and \
interfaces",
);
}
/// Resolves this [`GraphQLValueAsync`] (being an [interface][1] or an [union][2]) into a
/// concrete downstream [object][3] type.
///
/// Tries to resolve this [`GraphQLValueAsync`] into the provided `type_name`. If the type
/// matches, then passes the instance along to [`Executor::resolve`].
///
/// # Panics
///
/// The default implementation panics.
///
/// [1]: https://spec.graphql.org/October2021#sec-Interfaces
/// [2]: https://spec.graphql.org/October2021#sec-Unions
/// [3]: https://spec.graphql.org/October2021#sec-Objects
fn resolve_into_type_async<'a>(
&'a self,
info: &'a Self::TypeInfo,
type_name: &str,
selection_set: Option<&'a [Selection<'a, S>]>,
executor: &'a Executor<'a, 'a, Self::Context, S>,
) -> BoxFuture<'a, ExecutionResult<S>> {
if self.type_name(info).unwrap() == type_name {
self.resolve_async(info, selection_set, executor)
} else {
panic!(
"GraphQLValueAsync::resolve_into_type_async() must be implemented by unions and \
interfaces",
);
}
}
/// Resolves the provided `selection_set` against this [`GraphQLValueAsync`].
///
/// For non-[object][3] types, the `selection_set` will be [`None`] and the value should simply
/// be returned.
///
/// For [objects][3], all fields in the `selection_set` should be resolved. The default
/// implementation uses [`GraphQLValueAsync::resolve_field_async`] to resolve all fields,
/// including those through a fragment expansion.
///
/// Since the [GraphQL spec specifies][0] that errors during field processing should result in
/// a null-value, this might return `Ok(Null)` in case of a failure. Errors are recorded
/// internally.
///
/// # Panics
///
/// The default implementation panics, if `selection_set` is [`None`].
///
/// [0]: https://spec.graphql.org/October2021#sec-Handling-Field-Errors
/// [3]: https://spec.graphql.org/October2021#sec-Objects
fn resolve_async<'a>(
&'a self,
info: &'a Self::TypeInfo,
selection_set: Option<&'a [Selection<S>]>,
executor: &'a Executor<Self::Context, S>,
) -> BoxFuture<'a, ExecutionResult<S>> {
if let Some(sel) = selection_set {
Box::pin(async move {
Ok(resolve_selection_set_into_async(self, info, sel, executor).await)
})
} else {
panic!(
"GraphQLValueAsync::resolve_async() must be implemented by non-object output types",
);
}
}
}
/// Extension of [`GraphQLType`] trait with asynchronous queries/mutations resolvers.
///
/// It's automatically implemented for [`GraphQLValueAsync`] and [`GraphQLType`] implementers, so
/// doesn't require manual or code-generated implementation.
pub trait GraphQLTypeAsync<S = DefaultScalarValue>: GraphQLValueAsync<S> + GraphQLType<S>
where
Self::Context: Sync,
Self::TypeInfo: Sync,
S: ScalarValue + Send + Sync,
{
}
impl<S, T> GraphQLTypeAsync<S> for T
where
T: GraphQLValueAsync<S> + GraphQLType<S> + ?Sized,
T::Context: Sync,
T::TypeInfo: Sync,
S: ScalarValue + Send + Sync,
{
}
// Wrapper function around resolve_selection_set_into_async_recursive.
// This wrapper is necessary because async fns can not be recursive.
fn resolve_selection_set_into_async<'a, 'e, T, S>(
instance: &'a T,
info: &'a T::TypeInfo,
selection_set: &'e [Selection<'e, S>],
executor: &'e Executor<'e, 'e, T::Context, S>,
) -> BoxFuture<'a, Value<S>>
where
T: GraphQLValueAsync<S> + ?Sized,
T::TypeInfo: Sync,
T::Context: Sync,
S: ScalarValue + Send + Sync,
'e: 'a,
{
Box::pin(resolve_selection_set_into_async_recursive(
instance,
info,
selection_set,
executor,
))
}
struct AsyncField<S> {
name: String,
value: Option<Value<S>>,
}
enum AsyncValue<S> {
Field(AsyncField<S>),
Nested(Value<S>),
}
pub(crate) async fn resolve_selection_set_into_async_recursive<'a, T, S>(
instance: &'a T,
info: &'a T::TypeInfo,
selection_set: &'a [Selection<'a, S>],
executor: &'a Executor<'a, 'a, T::Context, S>,
) -> Value<S>
where
T: GraphQLValueAsync<S> + ?Sized,
T::TypeInfo: Sync,
T::Context: Sync,
S: ScalarValue + Send + Sync,
{
use futures::stream::{FuturesOrdered, StreamExt as _};
#[enum_derive(Future)]
enum AsyncValueFuture<A, B, C, D> {
Field(A),
FragmentSpread(B),
InlineFragment1(C),
InlineFragment2(D),
}
let mut object = Object::with_capacity(selection_set.len());
let mut async_values = FuturesOrdered::<AsyncValueFuture<_, _, _, _>>::new();
let meta_type = executor
.schema()
.concrete_type_by_name(
instance
.type_name(info)
.expect("Resolving named type's selection set")
.as_ref(),
)
.expect("Type not found in schema");
for selection in selection_set {
match *selection {
Selection::Field(Spanning {
item: ref f,
ref span,
}) => {
if is_excluded(&f.directives, executor.variables()) {
continue;
}
let response_name = f.alias.as_ref().unwrap_or(&f.name).item;
if f.name.item == "__typename" {
object.add_field(
response_name,
Value::scalar(instance.concrete_type_name(executor.context(), info)),
);
continue;
}
let meta_field = meta_type.field_by_name(f.name.item).unwrap_or_else(|| {
panic!(
"Field {} not found on type {:?}",
f.name.item,
meta_type.name(),
)
});
let exec_vars = executor.variables();
let sub_exec = executor.field_sub_executor(
response_name,
f.name.item,
span.start,
f.selection_set.as_ref().map(|v| &v[..]),
);
let args = Arguments::new(
f.arguments.as_ref().map(|m| {
m.item
.iter()
.filter_map(|(k, v)| {
let val = v.item.clone().into_const(exec_vars)?;
Some((k.item, Spanning::new(v.span, val)))
})
.collect()
}),
&meta_field.arguments,
);
let pos = span.start;
let is_non_null = meta_field.field_type.is_non_null();
let response_name = response_name.to_string();
async_values.push_back(AsyncValueFuture::Field(async move {
// TODO: implement custom future type instead of
// two-level boxing.
let res = instance
.resolve_field_async(info, f.name.item, &args, &sub_exec)
.await;
let value = match res {
Ok(Value::Null) if is_non_null => None,
Ok(v) => Some(v),
Err(e) => {
sub_exec.push_error_at(e, pos);
if is_non_null {
None
} else {
Some(Value::null())
}
}
};
AsyncValue::Field(AsyncField {
name: response_name,
value,
})
}));
}
Selection::FragmentSpread(Spanning {
item: ref spread,
ref span,
}) => {
if is_excluded(&spread.directives, executor.variables()) {
continue;
}
let fragment = &executor
.fragment_by_name(spread.name.item)
.expect("Fragment could not be found");
let sub_exec = executor.type_sub_executor(
Some(fragment.type_condition.item),
Some(&fragment.selection_set[..]),
);
let concrete_type_name = instance.concrete_type_name(sub_exec.context(), info);
let type_name = instance.type_name(info);
if executor
.schema()
.is_named_subtype(&concrete_type_name, fragment.type_condition.item)
|| Some(fragment.type_condition.item) == type_name
{
let sub_result = instance
.resolve_into_type_async(
info,
&concrete_type_name,
Some(&fragment.selection_set[..]),
&sub_exec,
)
.await;
if let Ok(Value::Object(obj)) = sub_result {
for (k, v) in obj {
async_values.push_back(AsyncValueFuture::FragmentSpread(
future::ready(AsyncValue::Field(AsyncField {
name: k,
value: Some(v),
})),
));
}
} else if let Err(e) = sub_result {
sub_exec.push_error_at(e, span.start);
}
}
}
Selection::InlineFragment(Spanning {
item: ref fragment,
ref span,
}) => {
if is_excluded(&fragment.directives, executor.variables()) {
continue;
}
let sub_exec = executor.type_sub_executor(
fragment.type_condition.as_ref().map(|c| c.item),
Some(&fragment.selection_set[..]),
);
if let Some(ref type_condition) = fragment.type_condition {
// Check whether the type matches the type condition.
let concrete_type_name = instance.concrete_type_name(sub_exec.context(), info);
if executor
.schema()
.is_named_subtype(&concrete_type_name, type_condition.item)
{
let sub_result = instance
.resolve_into_type_async(
info,
&concrete_type_name,
Some(&fragment.selection_set[..]),
&sub_exec,
)
.await;
if let Ok(Value::Object(obj)) = sub_result {
for (k, v) in obj {
async_values.push_back(AsyncValueFuture::InlineFragment1(
future::ready(AsyncValue::Field(AsyncField {
name: k,
value: Some(v),
})),
));
}
} else if let Err(e) = sub_result {
sub_exec.push_error_at(e, span.start);
}
}
} else {
async_values.push_back(AsyncValueFuture::InlineFragment2(async move {
let value = resolve_selection_set_into_async(
instance,
info,
&fragment.selection_set[..],
&sub_exec,
)
.await;
AsyncValue::Nested(value)
}));
}
}
}
}
while let Some(item) = async_values.next().await {
match item {
AsyncValue::Field(AsyncField { name, value }) => {
if let Some(value) = value {
merge_key_into(&mut object, &name, value);
} else {
return Value::null();
}
}
AsyncValue::Nested(obj) => match obj {
v @ Value::Null => {
return v;
}
Value::Object(obj) => {
for (k, v) in obj {
merge_key_into(&mut object, &k, v);
}
}
_ => unreachable!(),
},
}
}
Value::Object(object)
}