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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
pub use self::ctx::{Ctx, PathComponent};
use std::fmt::{self, Debug, Display, Formatter};
use swc_common::Span;

#[macro_use]
mod macros;
mod ctx;
mod js_ast;

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Config {
    /// If this value is true, the differences of [Span]s are ignored.
    ///
    /// Defaults to false.
    pub ignore_span: bool,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Node(String);

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Difference {
    pub path: Vec<PathComponent>,
    pub left: Node,
    pub right: Node,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum DiffResult {
    /// Two nodes are identical.
    Identical,

    Different(Difference),

    Multiple(Vec<DiffResult>),
}

impl From<Difference> for DiffResult {
    fn from(v: Difference) -> Self {
        DiffResult::Different(v)
    }
}

impl Display for Difference {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "Path: ")?;
        for c in &self.path {
            match c {
                PathComponent::StructProp { struct_name, key } => {
                    write!(
                        f,
                        "({struct_name}.{key})",
                        key = key,
                        struct_name = struct_name
                    )?;
                }
                PathComponent::VecElem { l, r } => {
                    write!(f, "[{} <-> {}]", l, r)?;
                }
            }
        }
        writeln!(f)?;

        writeln!(f, "Left: {}", self.left.0)?;
        writeln!(f, "Right: {}", self.right.0)?;

        Ok(())
    }
}

impl Display for DiffResult {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        match self {
            DiffResult::Identical => {}
            DiffResult::Different(d) => {
                writeln!(f, "{}", d)?;
            }
            DiffResult::Multiple(d) => {
                if d.len() == 1 {
                    for d in d {
                        write!(f, "{}", d)?;
                    }
                } else {
                    for d in d {
                        writeln!(f, "{}", d)?;
                    }
                }
            }
        }

        Ok(())
    }
}

#[auto_impl::auto_impl(Box)]
pub trait Diff: Debug {
    /// This may remove common node from `self` and `other`.
    fn diff(&mut self, other: &mut Self, ctx: &mut Ctx) -> DiffResult;
}

impl Diff for Span {
    fn diff(&mut self, other: &mut Self, ctx: &mut Ctx) -> DiffResult {
        if *self == *other {
            return DiffResult::Identical;
        }

        if ctx.config.ignore_span {
            return DiffResult::Identical;
        }

        DiffResult::Different(Difference {
            path: ctx.path.clone(),
            left: Node(format!("{:?}", self)),
            right: Node(format!("{:?}", other)),
        })
    }
}

impl<T> Diff for Vec<T>
where
    T: Diff,
{
    fn diff(&mut self, other: &mut Self, ctx: &mut Ctx) -> DiffResult {
        let mut results = Vec::new();

        if self.len() != other.len() {
            results.push(DiffResult::Different(Difference {
                path: ctx.path.clone(),
                left: Node(format!("len = {}", self.len())),
                right: Node(format!("len = {}", other.len())),
            }));
        }

        let mut should_retry = false;

        let should_try_shifting = ctx.path.iter().all(|v| match v {
            PathComponent::VecElem { l, r } => *l == *r,
            _ => true,
        });

        // If we are visiting this vector for the first time, we can shift indexes to
        // reduce output files.
        //
        // e.g.
        //
        // A:
        //
        // console.log('Foo')
        // console.log('Bar')
        // console.log('Baz')
        //
        //
        // B:
        //
        // console.log('Bar')
        // console.log('Baz')
        //
        //
        // We can remove two statements.
        if should_try_shifting {
            let mut l_removed = vec![];
            let mut r_removed = vec![];

            for (l_idx, l) in self.iter_mut().enumerate() {
                for (r_idx, r) in other.iter_mut().enumerate() {
                    if r_removed.contains(&r_idx) {
                        continue;
                    }

                    let mut ctx = ctx.clone();
                    ctx.path.push(PathComponent::VecElem { l: l_idx, r: r_idx });

                    let diff = l.diff(r, &mut ctx);

                    if matches!(diff, DiffResult::Identical) {
                        l_removed.push(l_idx);
                        r_removed.push(r_idx);
                        should_retry = true;
                        break;
                    }
                    if l_idx == r_idx {
                        results.push(diff);
                    }
                }
            }

            if !l_removed.is_empty() {
                let new_l = self
                    .drain(..)
                    .enumerate()
                    .filter(|(i, _)| !l_removed.contains(i))
                    .map(|(_, v)| v)
                    .collect::<Vec<_>>();

                *self = new_l;
            }

            if !r_removed.is_empty() {
                let new_r = other
                    .drain(..)
                    .enumerate()
                    .filter(|(i, _)| !r_removed.contains(i))
                    .map(|(_, v)| v)
                    .collect::<Vec<_>>();
                *other = new_r;
            }
        } else {
            let mut l = self.iter_mut();
            let mut r = other.iter_mut();
            let mut idx = 0;
            let mut removed = vec![];

            while let (Some(l), Some(r)) = (l.next(), r.next()) {
                let cur_idx = idx;
                idx += 1;

                let mut ctx = ctx.clone();
                ctx.path.push(PathComponent::VecElem {
                    l: cur_idx,
                    r: cur_idx,
                });

                let diff = l.diff(r, &mut ctx);

                if matches!(diff, DiffResult::Identical) {
                    removed.push(cur_idx);
                    continue;
                }

                results.push(diff);
            }

            if !removed.is_empty() {
                should_retry = true;

                let new_l = self
                    .drain(..)
                    .enumerate()
                    .filter(|(i, _)| !removed.contains(i))
                    .map(|(_, v)| v)
                    .collect::<Vec<_>>();
                let new_r = other
                    .drain(..)
                    .enumerate()
                    .filter(|(i, _)| !removed.contains(i))
                    .map(|(_, v)| v)
                    .collect::<Vec<_>>();

                *self = new_l;
                *other = new_r;
            }
        }

        if should_retry {
            return self.diff(other, ctx);
        }

        // TODO: Dump extra nodes

        if results.is_empty() {
            return DiffResult::Identical;
        }

        DiffResult::Multiple(results)
    }
}

impl<T> Diff for Option<T>
where
    T: Diff,
{
    fn diff(&mut self, other: &mut Self, ctx: &mut Ctx) -> DiffResult {
        let result = match (&mut *self, &mut *other) {
            (Some(l), Some(r)) => l.diff(r, ctx),
            (None, None) => DiffResult::Identical,
            (None, Some(r)) => DiffResult::Different(Difference {
                path: ctx.path.clone(),
                left: Node("None".into()),
                right: Node(format!("{:?}", r)),
            }),
            (Some(l), None) => DiffResult::Different(Difference {
                path: ctx.path.clone(),
                left: Node(format!("{:?}", l)),
                right: Node("None".into()),
            }),
        };

        if matches!(result, DiffResult::Identical) {
            // Remove common node.
            *self = None;
            *other = None;
            return result;
        }

        result
    }
}

trivial!(bool, (), char);
trivial!(usize, u8, u16, u32, u64, u128);
trivial!(isize, i8, i16, i32, i64, i128);
trivial!(f32, f64);
trivial!(String, str);
trivial!(num_bigint::BigInt);

impl<S> Diff for string_cache::Atom<S>
where
    S: string_cache::StaticAtomSet,
{
    fn diff(&mut self, other: &mut Self, ctx: &mut Ctx) -> DiffResult {
        if *self == *other {
            return DiffResult::Identical;
        }

        DiffResult::Different(Difference {
            path: ctx.path.clone(),
            left: Node(format!("{:?}", self)),
            right: Node(format!("{:?}", other)),
        })
    }
}