async-graphql/src/types/external/non_zero_integers.rs
Sunli 42817a3aa6 Implement Type for more stdlib collection types #189
Implement InputValueType/OutputValueType for HashSet<T>/BTreeSet<T>/VecDeque<T>/LinkedList<T>
Implement ScalarType for char/NonZero*/HashMap<String,T>/BTreeMap<String, T>
2020-09-14 20:06:44 +08:00

277 lines
8.9 KiB
Rust

use crate::{GQLScalar, InputValueError, InputValueResult, ScalarType, Value};
use std::num::{
NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8,
};
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroI8 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_i64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n < i8::MIN as i64 || n > i8::MAX as i64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
i8::MIN,
i8::MAX
)));
}
Ok(NonZeroI8::new(n as i8).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_i64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as i64))
}
}
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroI16 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_i64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n < i16::MIN as i64 || n > i16::MAX as i64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
i16::MIN,
i16::MAX
)));
}
Ok(NonZeroI16::new(n as i16).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_i64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as i64))
}
}
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroI32 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_i64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n < i32::MIN as i64 || n > i32::MAX as i64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
i32::MIN,
i32::MAX
)));
}
Ok(NonZeroI32::new(n as i32).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_i64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as i64))
}
}
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroI64 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_i64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n < i64::MIN as i64 || n > i64::MAX as i64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
i64::MIN,
i64::MAX
)));
}
Ok(NonZeroI64::new(n as i64).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_i64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as i64))
}
}
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroU8 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_u64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n > u8::MAX as u64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
1,
u8::MAX
)));
}
Ok(NonZeroU8::new(n as u8).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_u64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as u64))
}
}
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroU16 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_u64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n > u16::MAX as u64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
1,
u16::MAX
)));
}
Ok(NonZeroU16::new(n as u16).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_u64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as u64))
}
}
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroU32 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_u64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n > u32::MAX as u64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
1,
u32::MAX
)));
}
Ok(NonZeroU32::new(n as u32).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_u64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as u64))
}
}
/// The `Int` scalar type represents non-fractional whole numeric values.
#[GQLScalar(internal, name = "Int")]
impl ScalarType for NonZeroU64 {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) => {
let n = n
.as_u64()
.ok_or_else(|| InputValueError::from("Invalid number"))?;
if n > u64::MAX as u64 || n == 0 {
return Err(InputValueError::from(format!(
"Only integers from {} to {} or non zero are accepted.",
1,
u64::MAX
)));
}
Ok(NonZeroU64::new(n as u64).unwrap())
}
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_u64() => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::Number(serde_json::Number::from(self.get() as u64))
}
}