summaryrefslogtreecommitdiffstats
path: root/src/edits.rs
blob: 2eb1e0d3bb5a2e0d82b15c653661a82177af80fb (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
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
use crate::edits::line_pair::LinePair;

/// Infer the edit operations responsible for the differences between a collection of old and new
/// lines.
/*
  This function is called iff a region of n minus lines followed by n plus lines is encountered,
  e.g. n successive lines have been partially changed.

  Consider the i-th such line and let m, p be the i-th minus and i-th plus line, respectively.  The
  following cases exist:

  1. Whitespace deleted at line beginning.
     => The deleted section is highlighted in m; p is unstyled.

  2. Whitespace inserted at line beginning.
     => The inserted section is highlighted in p; m is unstyled.

  3. An internal section of the line containing a non-whitespace character has been deleted.
     => The deleted section is highlighted in m; p is unstyled.

  4. An internal section of the line containing a non-whitespace character has been changed.
     => The original section is highlighted in m; the replacement is highlighted in p.

  5. An internal section of the line containing a non-whitespace character has been inserted.
     => The inserted section is highlighted in p; m is unstyled.

  Note that whitespace can be neither deleted nor inserted at the end of the line: the line by
  definition has no trailing whitespace.
*/
pub fn infer_edit_sections<'a, EditOperationTag>(
    minus_lines: &'a Vec<String>,
    plus_lines: &'a Vec<String>,
    non_deletion: EditOperationTag,
    deletion: EditOperationTag,
    non_insertion: EditOperationTag,
    insertion: EditOperationTag,
    distance_threshold: f64,
) -> (
    Vec<Vec<(EditOperationTag, &'a str)>>,
    Vec<Vec<(EditOperationTag, &'a str)>>,
)
where
    EditOperationTag: Copy,
{
    let mut minus_line_sections = Vec::new();
    let mut plus_line_sections = Vec::new();

    (minus_line_sections, plus_line_sections)
}

mod line_pair {
    use std::cmp::{max, min};

    use itertools::Itertools;
    use unicode_segmentation::UnicodeSegmentation;

    /// A pair of right-trimmed strings.
    pub struct LinePair<'a> {
        pub minus_line: &'a str,
        pub plus_line: &'a str,
        pub minus_edit: Edit,
        pub plus_edit: Edit,
        pub distance: f64,
    }

    pub struct Edit {
        pub start: usize,
        pub end: usize,
        string_length: usize,
    }

    impl Edit {
        // TODO: exclude leading whitespace in this calculation
        fn distance(&self) -> f64 {
            (self.end - self.start) as f64 / self.string_length as f64
        }
    }

    impl<'a> LinePair<'a> {
        pub fn new(s0: &'a str, s1: &'a str) -> Self {
            let (g0, g1) = (s0.grapheme_indices(true), s1.grapheme_indices(true));
            let common_prefix_length = LinePair::common_prefix_length(g0, g1);
            // TODO: Don't compute grapheme segmentation twice?
            let (g0, g1) = (s0.grapheme_indices(true), s1.grapheme_indices(true));
            let (common_suffix_length, trailing_whitespace) = LinePair::suffix_data(g0, g1);
            let lengths = [
                s0.len() - trailing_whitespace[0],
                s1.len() - trailing_whitespace[1],
            ];

            // We require that (right-trimmed length) >= (common prefix length). Consider:
            // minus = "a    "
            // plus  = "a b  "
            // Here, the right-trimmed length of minus is 1, yet the common prefix length is 2. We
            // resolve this by taking the following maxima:
            let minus_length = max(lengths[0], common_prefix_length);
            let plus_length = max(lengths[1], common_prefix_length);

            // Work backwards from the end of the strings. The end of the change region is equal to
            // the start of their common suffix. To find the start of the change region, start with
            // the end of their common prefix, and then move leftwards until it is before the start
            // of the common suffix in both strings.
            let minus_change_end = minus_length - common_suffix_length;
            let plus_change_end = plus_length - common_suffix_length;
            let change_begin = min(common_prefix_length, min(minus_change_end, plus_change_end));

            let minus_edit = Edit {
                start: change_begin,
                end: minus_change_end,
                string_length: minus_length,
            };
            let plus_edit = Edit {
                start: change_begin,
                end: plus_change_end,
                string_length: plus_length,
            };
            let distance = minus_edit.distance() + plus_edit.distance();
            LinePair {
                minus_line: s0,
                plus_line: s1,
                minus_edit,
                plus_edit,
                distance,
            }
        }

        /// Align the two strings at their left ends and consider only the bytes up to the length of
        /// the shorter string. Return the byte offset of the first differing grapheme cluster, or
        /// the byte length of shorter string if they do not differ.
        fn common_prefix_length<'b, I>(s0: I, s1: I) -> usize
        where
            I: Iterator<Item = (usize, &'b str)>,
            I: Itertools,
        {
            s0.zip(s1)
                .peekable()
                .peeking_take_while(|((_, c0), (_, c1))| c0 == c1)
                .fold(0, |offset, ((_, c0), (_, _))| offset + c0.len())
        }

        /// Trim trailing whitespace and align the two strings at their right ends. Fix the origin
        /// at their right ends and, looking left, consider only the bytes up to the length of the
        /// shorter string. Return the byte offset of the first differing grapheme cluster, or the
        /// byte length of the shorter string if they do not differ. Also return the number of bytes
        /// of whitespace trimmed from each string.
        fn suffix_data<'b, I>(s0: I, s1: I) -> (usize, [usize; 2])
        where
            I: DoubleEndedIterator<Item = (usize, &'b str)>,
            I: Itertools,
        {
            let mut s0 = s0.rev().peekable();
            let mut s1 = s1.rev().peekable();

            let is_whitespace = |(_, c): &(usize, &str)| *c == " " || *c == "\n";
            let n0 = (&mut s0).peeking_take_while(is_whitespace).count();
            let n1 = (&mut s1).peeking_take_while(is_whitespace).count();

            (LinePair::common_prefix_length(s0, s1), [n0, n1])
        }
    }

    #[cfg(test)]
    mod tests {
        use super::*;

        fn common_prefix_length(s1: &str, s2: &str) -> usize {
            super::LinePair::common_prefix_length(
                s1.grapheme_indices(true),
                s2.grapheme_indices(true),
            )
        }

        fn common_suffix_length(s1: &str, s2: &str) -> usize {
            super::LinePair::suffix_data(s1.grapheme_indices(true), s2.grapheme_indices(true)).0
        }

        #[test]
        fn test_common_prefix_length() {
            assert_eq!(common_prefix_length("", ""), 0);
            assert_eq!(common_prefix_length("", "a"), 0);
            assert_eq!(common_prefix_length("a", ""), 0);
            assert_eq!(common_prefix_length("a", "b"), 0);
            assert_eq!(common_prefix_length("a", "a"), 1);