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
use crate::ast::executable::{SelectionSet, TypeCondition};
use crate::ast::{FromTokens, IsMatch, ParseError, Tokens, TryFromTokens, VariableDirectives};
use crate::lexical_token::PunctuatorType;
#[derive(Debug)]
pub struct InlineFragment<'a> {
type_condition: Option<TypeCondition<'a>>,
directives: VariableDirectives<'a>,
selection_set: SelectionSet<'a>,
}
impl<'a> FromTokens<'a> for InlineFragment<'a> {
fn from_tokens(tokens: &mut impl Tokens<'a>) -> Result<Self, ParseError> {
tokens.expect_punctuator(PunctuatorType::Ellipse)?;
let type_condition = TypeCondition::try_from_tokens(tokens).transpose()?;
let directives = VariableDirectives::from_tokens(tokens)?;
let selection_set = SelectionSet::from_tokens(tokens)?;
Ok(Self {
type_condition,
directives,
selection_set,
})
}
}
impl<'a> IsMatch<'a> for InlineFragment<'a> {
fn is_match(tokens: &mut impl Tokens<'a>) -> bool {
tokens.peek_punctuator_matches(0, PunctuatorType::Ellipse)
&& tokens
.peek_name(1)
.map(|n| n.as_ref() == TypeCondition::ON)
.unwrap_or(true)
}
}
impl<'a> InlineFragment<'a> {
pub fn type_condition(&self) -> Option<&str> {
self.type_condition
.as_ref()
.map(|tc| tc.named_type().as_ref())
}
pub fn selection_set(&self) -> &SelectionSet<'a> {
&self.selection_set
}
}
impl<'a> bluejay_core::executable::InlineFragment for InlineFragment<'a> {
type Directives = VariableDirectives<'a>;
type SelectionSet = SelectionSet<'a>;
fn type_condition(&self) -> Option<&str> {
self.type_condition
.as_ref()
.map(|tc| tc.named_type().as_ref())
}
fn directives(&self) -> &Self::Directives {
&self.directives
}
fn selection_set(&self) -> &Self::SelectionSet {
&self.selection_set
}
}