summaryrefslogtreecommitdiff
path: root/dhall/src/syntax/ast/map.rs
blob: 8b896c0bc456f4c4148d68e7607a16e3bb60e750 (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
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
271
272
273
274
275
276
277
278
279
280
281
282
/// A sorted map that allows multiple values for each key.
pub use dup_tree_map::DupTreeMap;
pub use dup_tree_set::DupTreeSet;

mod known_size_iter {
    pub struct KnownSizeIterator<I> {
        pub iter: I,
        pub size: usize,
    }

    impl<I: Iterator> Iterator for KnownSizeIterator<I> {
        type Item = I::Item;

        fn next(&mut self) -> Option<Self::Item> {
            let next = self.iter.next();
            if next.is_some() {
                self.size -= 1;
            }
            next
        }

        fn size_hint(&self) -> (usize, Option<usize>) {
            (self.size, Some(self.size))
        }
    }

    // unsafe impl<I: Iterator> iter::TrustedLen for KnownSizeIterator<I> {}
}

mod tuple {
    mod sealed {
        pub trait Sealed {}
    }
    pub trait Tuple: sealed::Sealed {
        type First;
        type Second;
    }
    impl<A, B> sealed::Sealed for (A, B) {}
    impl<A, B> Tuple for (A, B) {
        type First = A;
        type Second = B;
    }
}

mod dup_tree_map {
    use super::known_size_iter::KnownSizeIterator;
    use super::tuple::Tuple;
    use smallvec::SmallVec;
    use std::collections::BTreeMap;
    use std::iter;

    type OneOrMore<V> = SmallVec<[V; 1]>;
    type DupTreeMapInternal<K, V> = BTreeMap<K, OneOrMore<V>>;

    #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct DupTreeMap<K, V> {
        map: DupTreeMapInternal<K, V>,
        size: usize,
    }

    // Generic types and functions to construct the iterators for this struct.
    type ZipRepeatIter<T> = iter::Zip<
        iter::Repeat<<T as Tuple>::First>,
        <<T as Tuple>::Second as IntoIterator>::IntoIter,
    >;
    type DupTreeMapIter<M> = KnownSizeIterator<
        iter::FlatMap<
            <M as IntoIterator>::IntoIter,
            ZipRepeatIter<<M as IntoIterator>::Item>,
            fn(
                <M as IntoIterator>::Item,
            ) -> ZipRepeatIter<<M as IntoIterator>::Item>,
        >,
    >;

    fn zip_repeat<'a, K, I>((k, iter): (K, I)) -> ZipRepeatIter<(K, I)>
    where
        K: Clone,
        I: IntoIterator,
    {
        iter::repeat(k).zip(iter.into_iter())
    }

    fn make_map_iter<M, K, I>(map: M, size: usize) -> DupTreeMapIter<M>
    where
        M: IntoIterator<Item = (K, I)>,
        K: Clone,
        I: IntoIterator,
    {
        KnownSizeIterator {
            iter: map.into_iter().flat_map(zip_repeat),
            size,
        }
    }

    pub type IterMut<'a, K, V> =
        DupTreeMapIter<&'a mut DupTreeMapInternal<K, V>>;
    pub type Iter<'a, K, V> = DupTreeMapIter<&'a DupTreeMapInternal<K, V>>;
    pub type IntoIter<K, V> = DupTreeMapIter<DupTreeMapInternal<K, V>>;

    impl<K: Ord, V> DupTreeMap<K, V> {
        pub fn new() -> Self {
            DupTreeMap {
                map: BTreeMap::new(),
                size: 0,
            }
        }

        pub fn insert(&mut self, key: K, value: V) {
            self.map.entry(key).or_default().push(value);
            self.size += 1;
        }

        pub fn len(&self) -> usize {
            self.size
        }
        pub fn is_empty(&self) -> bool {
            self.size == 0
        }

        pub fn iter(&self) -> Iter<'_, K, V> {
            make_map_iter(&self.map, self.size)
        }

        pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
            make_map_iter(&mut self.map, self.size)
        }
    }

    impl<K, V> Default for DupTreeMap<K, V>
    where
        K: Ord,
    {
        fn default() -> Self {
            Self::new()
        }
    }

    impl<K, V> IntoIterator for DupTreeMap<K, V>
    where
        K: Ord + Clone,
    {
        type Item = (K, V);
        type IntoIter = IntoIter<K, V>;

        fn into_iter(self) -> Self::IntoIter {
            make_map_iter(self.map, self.size)
        }
    }

    impl<'a, K, V> IntoIterator for &'a DupTreeMap<K, V>
    where
        K: Ord + 'a,
        V: 'a,
    {
        type Item = (&'a K, &'a V);
        type IntoIter = Iter<'a, K, V>;

        fn into_iter(self) -> Self::IntoIter {
            self.iter()
        }
    }

    impl<'a, K, V> IntoIterator for &'a mut DupTreeMap<K, V>
    where
        K: Ord + 'a,
        V: 'a,
    {
        type Item = (&'a K, &'a mut V);
        type IntoIter = IterMut<'a, K, V>;

        fn into_iter(self) -> Self::IntoIter {
            self.iter_mut()
        }
    }

    impl<K, V> iter::FromIterator<(K, V)> for DupTreeMap<K, V>
    where
        K: Ord,
    {
        fn from_iter<T>(iter: T) -> Self
        where
            T: IntoIterator<Item = (K, V)>,
        {
            let mut map = DupTreeMap::new();
            for (k, v) in iter {
                map.insert(k, v);
            }
            map
        }
    }
}

mod dup_tree_set {
    use super::tuple::Tuple;
    use super::DupTreeMap;
    use std::iter;

    #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct DupTreeSet<K> {
        map: DupTreeMap<K, ()>,
    }

    type DupTreeSetIter<M> = iter::Map<
        <M as IntoIterator>::IntoIter,
        fn(
            <M as IntoIterator>::Item,
        ) -> <<M as IntoIterator>::Item as Tuple>::First,
    >;

    pub type Iter<'a, K> = DupTreeSetIter<&'a DupTreeMap<K, ()>>;
    pub type IntoIter<K> = DupTreeSetIter<DupTreeMap<K, ()>>;

    fn drop_second<A, B>((a, _): (A, B)) -> A {
        a
    }

    impl<K: Ord> DupTreeSet<K> {
        pub fn new() -> Self {
            DupTreeSet {
                map: DupTreeMap::new(),
            }
        }

        pub fn len(&self) -> usize {
            self.map.len()
        }
        pub fn is_empty(&self) -> bool {
            self.map.is_empty()
        }

        pub fn iter<'a>(&'a self) -> Iter<'a, K> {
            self.map.iter().map(drop_second)
        }
    }

    impl<K> Default for DupTreeSet<K>
    where
        K: Ord,
    {
        fn default() -> Self {
            Self::new()
        }
    }

    impl<K> IntoIterator for DupTreeSet<K>
    where
        K: Ord + Clone,
    {
        type Item = K;
        type IntoIter = IntoIter<K>;

        fn into_iter(self) -> Self::IntoIter {
            self.map.into_iter().map(drop_second)
        }
    }

    impl<'a, K> IntoIterator for &'a DupTreeSet<K>
    where
        K: Ord + 'a,
    {
        type Item = &'a K;
        type IntoIter = Iter<'a, K>;

        fn into_iter(self) -> Self::IntoIter {
            self.iter()
        }
    }

    impl<K> iter::FromIterator<K> for DupTreeSet<K>
    where
        K: Ord,
    {
        fn from_iter<T>(iter: T) -> Self
        where
            T: IntoIterator<Item = K>,
        {
            let map = iter.into_iter().map(|k| (k, ())).collect();
            DupTreeSet { map }
        }
    }
}