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
use crate::BaseData;
use crate::BaseKind;
use crate::Erased;
use crate::Generic;
use crate::GenericKind;
use crate::Generics;
use crate::Signature;
use crate::Ty;
use crate::TypeFamily;
use lark_collections::{FxIndexMap, FxIndexSet, Seq};
use lark_entity::Entity;
use std::collections::BTreeMap;
use std::hash::Hash;
use std::sync::Arc;

pub trait Map<S: TypeFamily, T: TypeFamily>: Clone {
    type Output;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output;
}

pub trait FamilyMapper<S: TypeFamily, T: TypeFamily> {
    fn map_ty(&mut self, ty: Ty<S>) -> Ty<T>;

    fn map_placeholder(&mut self, placeholder: S::Placeholder) -> T::Placeholder;

    fn map_perm(&mut self, perm: S::Perm) -> T::Perm;
}

impl<S, T, V> Map<S, T> for &V
where
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T>,
{
    type Output = V::Output;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        <V as Map<S, T>>::map(self, mapper)
    }
}

impl<S, T, V> Map<S, T> for Arc<V>
where
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T>,
{
    type Output = Arc<V::Output>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        let this: &V = self;
        Arc::new(this.map(mapper))
    }
}

impl<S, T, V> Map<S, T> for Option<V>
where
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T>,
{
    type Output = Option<V::Output>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        match self {
            Some(v) => Some(v.map(mapper)),
            None => None,
        }
    }
}

impl<S, T, V> Map<S, T> for Vec<V>
where
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T>,
{
    type Output = Vec<V::Output>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        self.iter().map(|e| e.map(mapper)).collect()
    }
}

impl<S, T, V> Map<S, T> for Seq<V>
where
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T>,
{
    type Output = Seq<V::Output>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        self.iter().map(|e| e.map(mapper)).collect()
    }
}

impl<K, S, T, V> Map<S, T> for BTreeMap<K, V>
where
    K: Clone + Eq + Ord,
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T>,
{
    type Output = BTreeMap<K, V::Output>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        self.iter()
            .map(|(k, v)| (k.clone(), v.map(mapper)))
            .collect()
    }
}

impl<K, S, T, V> Map<S, T> for FxIndexMap<K, V>
where
    K: Clone + Eq + Hash,
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T>,
{
    type Output = FxIndexMap<K, V::Output>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        self.iter()
            .map(|(k, v)| (k.clone(), v.map(mapper)))
            .collect()
    }
}

impl<S, T, V> Map<S, T> for FxIndexSet<V>
where
    S: TypeFamily,
    T: TypeFamily,
    V: Map<S, T> + Eq + Hash,
    V::Output: Eq + Hash,
{
    type Output = FxIndexSet<V::Output>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        self.iter().map(|v| v.map(mapper)).collect()
    }
}

impl<S, T> Map<S, T> for Ty<S>
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = Ty<T>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        mapper.map_ty(*self)
    }
}

impl<S, T> Map<S, T> for BaseData<S>
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = BaseData<T>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        let BaseData { kind, generics } = self;
        BaseData {
            kind: kind.map(mapper),
            generics: generics.map(mapper),
        }
    }
}

impl<S, T> Map<S, T> for Entity
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = Entity;

    fn map(&self, _mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        *self
    }
}

impl<S, T> Map<S, T> for BaseKind<S>
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = BaseKind<T>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        match self {
            BaseKind::Named(def_id) => BaseKind::Named(def_id.map(mapper)),

            BaseKind::Placeholder(placeholder) => {
                BaseKind::Placeholder(mapper.map_placeholder(*placeholder))
            }

            BaseKind::Error => BaseKind::Error,
        }
    }
}

impl<S, T> Map<S, T> for Generics<S>
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = Generics<T>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        let Generics { elements } = self;
        Generics {
            elements: elements.map(mapper),
        }
    }
}

impl<S, T> Map<S, T> for Generic<S>
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = Generic<T>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        match self {
            GenericKind::Ty(ty) => GenericKind::Ty(ty.map(mapper)),
        }
    }
}

impl<S, T> Map<S, T> for Signature<S>
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = Signature<T>;

    fn map(&self, mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        let Signature { inputs, output } = self;
        Signature {
            inputs: inputs.map(mapper),
            output: output.map(mapper),
        }
    }
}

impl<S, T> Map<S, T> for Erased
where
    S: TypeFamily,
    T: TypeFamily,
{
    type Output = Erased;

    fn map(&self, _mapper: &mut impl FamilyMapper<S, T>) -> Self::Output {
        *self
    }
}