async-graphql/src/types/maybe_undefined.rs

138 lines
3.4 KiB
Rust
Raw Normal View History

use crate::{registry, InputValueResult, InputValueType, Type, Value};
use std::borrow::Cow;
/// Similar to `Option`, but it has three states, `undefined`, `null` and `x`.
///
2020-05-28 14:18:15 +00:00
/// **Reference:** <https://spec.graphql.org/June2018/#sec-Null-Value>
///
/// # Examples
///
/// ```rust
/// use async_graphql::*;
///
/// struct Query;
///
/// #[GQLObject]
2020-05-28 14:18:15 +00:00
/// impl Query {
/// async fn value1(&self, input: MaybeUndefined<i32>) -> i32 {
/// if input.is_null() {
/// 1
/// } else if input.is_undefined() {
/// 2
/// } else {
/// input.take().unwrap()
/// }
/// }
/// }
///
/// #[async_std::main]
/// async fn main() {
/// let schema = Schema::new(Query, EmptyMutation, EmptySubscription);
/// let query = r#"
/// {
/// v1:value1(input: 99)
/// v2:value1(input: null)
2020-09-08 09:19:25 +00:00
/// v3:value1
2020-05-28 14:18:15 +00:00
/// }"#;
/// assert_eq!(
/// schema.execute(query).await.into_result().unwrap().data,
2020-05-28 14:18:15 +00:00
/// serde_json::json!({
/// "v1": 99,
/// "v2": 1,
/// "v3": 2,
/// })
/// );
/// }
/// ```
#[allow(missing_docs)]
pub enum MaybeUndefined<T> {
Undefined,
Null,
Value(T),
}
impl<T> MaybeUndefined<T> {
/// Returns true if the MaybeUndefined<T> is undefined.
#[inline]
pub fn is_undefined(&self) -> bool {
if let MaybeUndefined::Undefined = self {
true
} else {
false
}
}
/// Returns true if the MaybeUndefined<T> is null.
#[inline]
pub fn is_null(&self) -> bool {
if let MaybeUndefined::Null = self {
true
} else {
false
}
}
/// Borrow the value, returns `None` if the value is `undefined` or `null`, otherwise returns `Some(T)`.
#[inline]
pub fn value(&self) -> Option<&T> {
match self {
MaybeUndefined::Value(value) => Some(value),
_ => None,
}
}
/// Convert MaybeUndefined<T> to Option<T>.
#[inline]
pub fn take(self) -> Option<T> {
match self {
MaybeUndefined::Value(value) => Some(value),
_ => None,
}
}
}
impl<T: Type> Type for MaybeUndefined<T> {
fn type_name() -> Cow<'static, str> {
T::type_name()
}
fn qualified_type_name() -> String {
T::type_name().to_string()
}
fn create_type_info(registry: &mut registry::Registry) -> String {
T::create_type_info(registry);
T::type_name().to_string()
}
}
impl<T: InputValueType> InputValueType for MaybeUndefined<T> {
fn parse(value: Option<Value>) -> InputValueResult<Self> {
match value {
None => Ok(MaybeUndefined::Undefined),
Some(Value::Null) => Ok(MaybeUndefined::Null),
Some(value) => Ok(MaybeUndefined::Value(T::parse(Some(value))?)),
}
}
fn to_value(&self) -> Value {
match self {
MaybeUndefined::Value(value) => value.to_value(),
_ => Value::Null,
}
}
}
#[cfg(test)]
mod tests {
use crate::*;
#[test]
fn test_optional_type() {
assert_eq!(MaybeUndefined::<i32>::type_name(), "Int");
assert_eq!(MaybeUndefined::<i32>::qualified_type_name(), "Int");
assert_eq!(&MaybeUndefined::<i32>::type_name(), "Int");
assert_eq!(&MaybeUndefined::<i32>::qualified_type_name(), "Int");
}
}