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
use std::{
num::ParseIntError,
ops::{Deref, DerefMut},
};
#[cfg(feature = "bson")]
use bson::oid::{self, ObjectId};
use serde::{Deserialize, Serialize};
use crate::{InputValueError, InputValueResult, Scalar, ScalarType, Value};
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug, Serialize, Deserialize, Default)]
#[serde(transparent)]
pub struct ID(pub String);
impl Deref for ID {
type Target = String;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for ID {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl<T: std::fmt::Display> From<T> for ID {
fn from(value: T) -> Self {
ID(value.to_string())
}
}
impl From<ID> for String {
fn from(id: ID) -> Self {
id.0
}
}
macro_rules! try_from_integers {
($($ty:ty),*) => {
$(
impl TryFrom<ID> for $ty {
type Error = ParseIntError;
fn try_from(id: ID) -> Result<Self, Self::Error> {
id.0.parse()
}
}
)*
};
}
try_from_integers!(i8, i16, i32, i64, i128, u8, u16, u32, u64, u128, isize, usize);
#[cfg(feature = "uuid")]
impl TryFrom<ID> for uuid::Uuid {
type Error = uuid::Error;
fn try_from(id: ID) -> Result<Self, Self::Error> {
uuid::Uuid::parse_str(&id.0)
}
}
#[cfg(feature = "bson")]
impl TryFrom<ID> for ObjectId {
type Error = oid::Error;
fn try_from(id: ID) -> std::result::Result<Self, oid::Error> {
ObjectId::parse_str(&id.0)
}
}
impl PartialEq<&str> for ID {
fn eq(&self, other: &&str) -> bool {
self.0.as_str() == *other
}
}
#[Scalar(internal, name = "ID")]
impl ScalarType for ID {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::Number(n) if n.is_i64() => Ok(ID(n.to_string())),
Value::String(s) => Ok(ID(s)),
_ => Err(InputValueError::expected_type(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Number(n) if n.is_i64() => true,
Value::String(_) => true,
_ => false,
}
}
fn to_value(&self) -> Value {
Value::String(self.0.clone())
}
}