summaryrefslogtreecommitdiff
path: root/serde_dhall/src/serde.rs
blob: 4fd7815a20ff47b8dcf36ae3d18a1282dc2b2ef4 (plain)
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
use std::borrow::Cow;

use serde::de::value::{
    MapAccessDeserializer, MapDeserializer, SeqDeserializer,
};

use dhall::syntax::{ExprKind, LitKind};
use dhall::NormalizedExpr;

use crate::de::{Deserialize, Error, Result};
use crate::Value;

impl<'a, T> crate::de::sealed::Sealed for T where T: serde::Deserialize<'a> {}

impl<'a, T> Deserialize for T
where
    T: serde::Deserialize<'a>,
{
    fn from_dhall(v: &Value) -> Result<Self> {
        T::deserialize(Deserializer(Cow::Owned(v.to_expr())))
    }
}

struct Deserializer<'a>(Cow<'a, NormalizedExpr>);

impl<'de: 'a, 'a> serde::de::IntoDeserializer<'de, Error> for Deserializer<'a> {
    type Deserializer = Deserializer<'a>;
    fn into_deserializer(self) -> Self::Deserializer {
        self
    }
}

impl<'de: 'a, 'a> serde::Deserializer<'de> for Deserializer<'a> {
    type Error = Error;

    fn deserialize_any<V>(self, visitor: V) -> Result<V::Value>
    where
        V: serde::de::Visitor<'de>,
    {
        use std::convert::TryInto;
        use ExprKind::*;
        use LitKind::*;
        let expr = self.0.as_ref();
        let not_serde_compatible = || {
            Err(Error::Deserialize(format!(
                "this cannot be deserialized into the serde data model: {}",
                expr
            )))
        };

        match expr.kind() {
            Lit(Bool(x)) => visitor.visit_bool(*x),
            Lit(Natural(x)) => {
                if let Ok(x64) = (*x).try_into() {
                    visitor.visit_u64(x64)
                } else if let Ok(x32) = (*x).try_into() {
                    visitor.visit_u32(x32)
                } else {
                    unimplemented!()
                }
            }
            Lit(Integer(x)) => {
                if let Ok(x64) = (*x).try_into() {
                    visitor.visit_i64(x64)
                } else if let Ok(x32) = (*x).try_into() {
                    visitor.visit_i32(x32)
                } else {
                    unimplemented!()
                }
            }
            Lit(Double(x)) => visitor.visit_f64((*x).into()),
            TextLit(x) => {
                // Normal form ensures that the tail is empty.
                assert!(x.tail().is_empty());
                visitor.visit_str(x.head())
            }
            EmptyListLit(..) => {
                visitor.visit_seq(SeqDeserializer::new(None::<()>.into_iter()))
            }
            NEListLit(xs) => visitor.visit_seq(SeqDeserializer::new(
                xs.iter().map(|x| Deserializer(Cow::Borrowed(x))),
            )),
            SomeLit(x) => visitor.visit_some(Deserializer(Cow::Borrowed(x))),
            App(f, x) => match f.kind() {
                Builtin(dhall::syntax::Builtin::OptionalNone) => {
                    visitor.visit_none()
                }
                Field(y, name) => match y.kind() {
                    UnionType(..) => {
                        let name: String = name.into();
                        visitor.visit_enum(MapAccessDeserializer::new(
                            MapDeserializer::new(
                                Some((name, Deserializer(Cow::Borrowed(x))))
                                    .into_iter(),
                            ),
                        ))
                    }
                    _ => not_serde_compatible(),
                },
                _ => not_serde_compatible(),
            },
            RecordLit(m) => visitor
                .visit_map(MapDeserializer::new(m.iter().map(|(k, v)| {
                    (k.as_ref(), Deserializer(Cow::Borrowed(v)))
                }))),
            Field(y, name) => match y.kind() {
                UnionType(..) => {
                    let name: String = name.into();
                    visitor.visit_enum(MapAccessDeserializer::new(
                        MapDeserializer::new(Some((name, ())).into_iter()),
                    ))
                }
                _ => not_serde_compatible(),
            },
            Const(..) | Var(..) | Lam(..) | Pi(..) | Let(..) | Annot(..)
            | Assert(..) | Builtin(..) | BinOp(..) | BoolIf(..)
            | RecordType(..) | UnionType(..) | Merge(..) | ToMap(..)
            | Projection(..) | ProjectionByExpr(..) | Completion(..)
            | Import(..) => not_serde_compatible(),
        }
    }

    fn deserialize_tuple<V>(self, _: usize, visitor: V) -> Result<V::Value>
    where
        V: serde::de::Visitor<'de>,
    {
        use ExprKind::*;
        let expr = self.0.as_ref();

        match expr.kind() {
            // Blindly takes keys in sorted order.
            RecordLit(m) => visitor.visit_seq(SeqDeserializer::new(
                m.iter().map(|(_, v)| Deserializer(Cow::Borrowed(v))),
            )),
            _ => self.deserialize_any(visitor),
        }
    }

    serde::forward_to_deserialize_any! {
        bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
        bytes byte_buf option unit unit_struct newtype_struct seq
        tuple_struct map struct enum identifier ignored_any
    }
}