summaryrefslogtreecommitdiffstats
path: root/src/edits.rs
blob: d573049e7c08173a40228ba2a5d4a7a68386ad0f (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
use std::cmp::max;

use syntect::highlighting::StyleModifier;

use crate::edits::string_pair::StringPair;

/// Create background style sections for a region of removed/added 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 get_diff_style_sections(
    minus_lines: &Vec<String>,
    plus_lines: &Vec<String>,
    minus_style_modifier: StyleModifier,
    minus_emph_style_modifier: StyleModifier,
    plus_style_modifier: StyleModifier,
    plus_emph_style_modifier: StyleModifier,
) -> (
    Vec<Vec<(StyleModifier, String)>>,
    Vec<Vec<(StyleModifier, String)>>,
) {
    let mut minus_line_sections = Vec::new();
    let mut plus_line_sections = Vec::new();

    for (minus, plus) in minus_lines.iter().zip(plus_lines.iter()) {
        let string_pair = StringPair::new(minus, plus);
        let change_begin = string_pair.common_prefix_length;

        // 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(string_pair.lengths[0], string_pair.common_prefix_length);
        let plus_length = max(string_pair.lengths[1], string_pair.common_prefix_length);

        // We require that change_begin <= change_end. Consider:
        // minus = "a c"
        // plus  = "a b c"
        // Here, the common prefix length is 2, and the common suffix length is 2, yet the
        // length of minus is 3. This overlap between prefix and suffix leads to a violation of
        // the requirement. We resolve this by taking the following maxima:
        let minus_change_end = max(
            minus_length - string_pair.common_suffix_length,
            change_begin,
        );
        let plus_change_end = max(plus_length - string_pair.common_suffix_length, change_begin);

        minus_line_sections.push(vec![
            (minus_style_modifier, minus[0..change_begin].to_string()),
            (
                minus_emph_style_modifier,
                minus[change_begin..minus_change_end].to_string(),
            ),
            (minus_style_modifier, minus[minus_change_end..].to_string()),
        ]);
        plus_line_sections.push(vec![
            (plus_style_modifier, plus[0..change_begin].to_string()),
            (
                plus_emph_style_modifier,
                plus[change_begin..plus_change_end].to_string(),
            ),
            (plus_style_modifier, plus[plus_change_end..].to_string()),
        ]);
    }
    (minus_line_sections, plus_line_sections)
}

#[cfg(test)]
mod tests {
    use super::*;
    use syntect::highlighting::{Color, FontStyle};

    #[test]
    fn test_get_diff_style_sections_1() {
        let actual_edits = get_diff_style_sections(
            &vec!["aaa\n".to_string()],
            &vec!["aba\n".to_string()],
            MINUS,
            MINUS_EMPH,
            PLUS,
            PLUS_EMPH,
        );
        let expected_edits = (
            vec![as_strings(vec![
                (MINUS, "a"),
                (MINUS_EMPH, "a"),
                (MINUS, "a\n"),
            ])],
            vec![as_strings(vec![
                (PLUS, "a"),
                (PLUS_EMPH, "b"),
                (PLUS, "a\n"),
            ])],
        );

        assert_consistent(&expected_edits);
        assert_consistent(&actual_edits);
        assert_eq!(actual_edits, expected_edits);
    }

    #[test]
    fn test_get_diff_style_sections_2() {
        let actual_edits = get_diff_style_sections(
            &vec!["d.iteritems()\n".to_string()],
            &vec!["d.items()\n".to_string()],
            MINUS,
            MINUS_EMPH,
            PLUS,
            PLUS_EMPH,
        );
        let expected_edits = (
            vec![as_strings(vec![
                (MINUS, "d."),
                (MINUS_EMPH, "iter"),
                (MINUS, "items()\n"),
            ])],
            vec![as_strings(vec![
                (PLUS, "d."),
                (PLUS_EMPH, ""),
                (PLUS, "items()\n"),
            ])],
        );
        assert_consistent(&expected_edits);
        assert_consistent(&actual_edits);
        assert_eq!(actual_edits, expected_edits);
    }

    type StyleSection = (StyleModifier, String);
    type StyleSections = Vec<StyleSection>;
    type LineStyleSections = Vec<StyleSections>;
    type Edits = (LineStyleSections, LineStyleSections);

    fn assert_consistent(edits: &Edits) {
        let (minus_line_style_sections, plus_line_style_sections) = edits;
        for (minus_style_sections, plus_style_sections) in minus_line_style_sections
            .iter()
            .zip(plus_line_style_sections)
        {
            let (minus_total, minus_delta) = summarize_style_sections(minus_style_sections);
            let (plus_total, plus_delta) = summarize_style_sections(plus_style_sections);
            assert_eq!(minus_total - minus_delta, plus_total - plus_delta);
        }
    }

    fn summarize_style_sections(sections: &StyleSections) -> (usize, usize) {
        let mut total = 0;
        let mut delta = 0;
        for (style, s) in sections {
            total += s.len();
            if is_emph(style) {
                delta += s.len();
            }
        }
        (total, delta)
    }

    const RED: Color = Color::BLACK;
    const GREEN: Color = Color::WHITE;

    const MINUS: StyleModifier = StyleModifier {
        foreground: None,
        background: Some(RED),
        font_style: None,
    };

    const MINUS_EMPH: StyleModifier = StyleModifier {
        foreground: None,
        background: Some(RED),
        font_style: Some(FontStyle::BOLD),
    };

    const PLUS: StyleModifier = StyleModifier {
        foreground: None,
        background: Some(GREEN),
        font_style: None,
    };

    const PLUS_EMPH: StyleModifier = StyleModifier {
        foreground: None,
        background: Some(GREEN),
        font_style: Some(FontStyle::BOLD),
    };

    fn as_strings(sections: Vec<(StyleModifier, &str)>) -> StyleSections {
        let mut new_sections = Vec::new();
        for (style, s) in sections {
            new_sections.push((style, s.to_string()));
        }
        new_sections
    }

    // For debugging test failures:

    #[allow(dead_code)]
    fn compare_style_sections(actual: Edits, expected: Edits) {
        let (minus, plus) = actual;
        println!("actual minus:");
        print_line_style_sections(minus);
        println!("actual plus:");
        print_line_style_sections(plus);

        let (minus, plus) = expected;
        println!("expected minus:");
        print_line_style_sections(minus);
        pri