cynic_parser/values/
const_objects.rs

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
use std::fmt;

use crate::{common::IdRange, AstLookup, Span};

use super::{
    iter::{Iter, ValueStoreReader},
    ConstFieldId, ConstValue, ConstValueId, ValueStoreId,
};

#[derive(Clone, Copy)]
pub struct ConstObject<'a>(pub(super) super::Cursor<'a, ConstValueId>);

impl<'a> ConstObject<'a> {
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    pub fn len(&self) -> usize {
        let store = self.0.store;
        store.lookup(self.0.id).kind.as_object().unwrap().len()
    }

    pub fn span(&self) -> Span {
        let store = &self.0.store;
        store.lookup(self.0.id).span
    }

    pub fn fields(&self) -> Iter<'a, ConstObjectField<'a>> {
        let store = self.0.store;

        let IdRange { start, end } = store.lookup(self.0.id).kind.as_object().unwrap();
        let start = ConstFieldId::new(start.get());
        let end = ConstFieldId::new(end.get());

        Iter::new(IdRange { start, end }, store)
    }
}

impl fmt::Debug for ConstObject<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_map()
            .entries(self.fields().map(|field| (field.name(), field.value())))
            .finish()
    }
}

pub struct ConstObjectField<'a>(super::Cursor<'a, ConstFieldId>);

impl<'a> ConstObjectField<'a> {
    pub fn name(&self) -> &'a str {
        let store = self.0.store;
        store.lookup(store.lookup(self.0.id).name)
    }

    pub fn name_span(&self) -> Span {
        let store = self.0.store;
        store.lookup(self.0.id).name_span
    }

    pub fn value(&self) -> ConstValue<'a> {
        let store = self.0.store;
        store.read(ConstValueId::new(store.lookup(self.0.id).value.get()))
    }
}

impl<'a> ValueStoreReader<'a> for ConstObjectField<'a> {
    type Id = ConstFieldId;
}

impl ValueStoreId for ConstFieldId {
    type Reader<'a> = ConstObjectField<'a>;

    fn read(self, store: &super::ValueStore) -> Self::Reader<'_> {
        ConstObjectField(super::Cursor { id: self, store })
    }
}