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
use async_graphql_value::{ConstValue, Name, Value};
use serde::{Deserialize, Serialize};
use super::*;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExecutableDocument {
pub operations: DocumentOperations,
pub fragments: HashMap<Name, Positioned<FragmentDefinition>>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum DocumentOperations {
Single(Positioned<OperationDefinition>),
Multiple(HashMap<Name, Positioned<OperationDefinition>>),
}
impl DocumentOperations {
#[must_use]
pub fn iter(&self) -> OperationsIter<'_> {
OperationsIter(match self {
Self::Single(op) => OperationsIterInner::Single(Some(op)),
Self::Multiple(ops) => OperationsIterInner::Multiple(ops.iter()),
})
}
}
#[derive(Debug, Clone)]
pub struct OperationsIter<'a>(OperationsIterInner<'a>);
impl<'a> Iterator for OperationsIter<'a> {
type Item = (Option<&'a Name>, &'a Positioned<OperationDefinition>);
fn next(&mut self) -> Option<Self::Item> {
match &mut self.0 {
OperationsIterInner::Single(op) => op.take().map(|op| (None, op)),
OperationsIterInner::Multiple(iter) => iter.next().map(|(name, op)| (Some(name), op)),
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
let size = self.len();
(size, Some(size))
}
}
impl<'a> std::iter::FusedIterator for OperationsIter<'a> {}
impl<'a> ExactSizeIterator for OperationsIter<'a> {
fn len(&self) -> usize {
match &self.0 {
OperationsIterInner::Single(opt) => {
if opt.is_some() {
1
} else {
0
}
}
OperationsIterInner::Multiple(iter) => iter.len(),
}
}
}
#[derive(Debug, Clone)]
enum OperationsIterInner<'a> {
Single(Option<&'a Positioned<OperationDefinition>>),
Multiple(hash_map::Iter<'a, Name, Positioned<OperationDefinition>>),
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OperationDefinition {
pub ty: OperationType,
pub variable_definitions: Vec<Positioned<VariableDefinition>>,
pub directives: Vec<Positioned<Directive>>,
pub selection_set: Positioned<SelectionSet>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VariableDefinition {
pub name: Positioned<Name>,
pub var_type: Positioned<Type>,
pub directives: Vec<Positioned<Directive>>,
pub default_value: Option<Positioned<ConstValue>>,
}
impl VariableDefinition {
#[must_use]
pub fn default_value(&self) -> Option<&ConstValue> {
self.default_value.as_ref().map(|value| &value.node).or({
if self.var_type.node.nullable {
Some(&ConstValue::Null)
} else {
None
}
})
}
}
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub struct SelectionSet {
pub items: Vec<Positioned<Selection>>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Selection {
Field(Positioned<Field>),
FragmentSpread(Positioned<FragmentSpread>),
InlineFragment(Positioned<InlineFragment>),
}
impl Selection {
#[must_use]
pub fn directives(&self) -> &Vec<Positioned<Directive>> {
match self {
Self::Field(field) => &field.node.directives,
Self::FragmentSpread(spread) => &spread.node.directives,
Self::InlineFragment(fragment) => &fragment.node.directives,
}
}
#[must_use]
pub fn directives_mut(&mut self) -> &mut Vec<Positioned<Directive>> {
match self {
Self::Field(field) => &mut field.node.directives,
Self::FragmentSpread(spread) => &mut spread.node.directives,
Self::InlineFragment(fragment) => &mut fragment.node.directives,
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Field {
pub alias: Option<Positioned<Name>>,
pub name: Positioned<Name>,
pub arguments: Vec<(Positioned<Name>, Positioned<Value>)>,
pub directives: Vec<Positioned<Directive>>,
pub selection_set: Positioned<SelectionSet>,
}
impl Field {
#[must_use]
pub fn response_key(&self) -> &Positioned<Name> {
self.alias.as_ref().unwrap_or(&self.name)
}
#[must_use]
pub fn get_argument(&self, name: &str) -> Option<&Positioned<Value>> {
self.arguments
.iter()
.find(|item| item.0.node == name)
.map(|item| &item.1)
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FragmentSpread {
pub fragment_name: Positioned<Name>,
pub directives: Vec<Positioned<Directive>>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct InlineFragment {
pub type_condition: Option<Positioned<TypeCondition>>,
pub directives: Vec<Positioned<Directive>>,
pub selection_set: Positioned<SelectionSet>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FragmentDefinition {
pub type_condition: Positioned<TypeCondition>,
pub directives: Vec<Positioned<Directive>>,
pub selection_set: Positioned<SelectionSet>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypeCondition {
pub on: Positioned<Name>,
}