regex_anre/
errorprinter.rs

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
// Copyright (c) 2024 Hemashushu <hippospark@gmail.com>, All rights reserved.
//
// This Source Code Form is subject to the terms of
// the Mozilla Public License version 2.0 and additional exceptions,
// more details in file LICENSE, LICENSE.additional and CONTRIBUTING.

use crate::AnreError;

//                 /-- selection start
//                 |                 /-- selection length
//                 v                 v
// prefix -->   ...snippet_source_text...  <-- suffix
//                       ^^^^
//                       |  \-- length
//                       \----- offset
struct SnippetRange {
    prefix: bool,
    suffix: bool,
    selection_start: usize,
    selection_length: usize,
    offset: usize,
    length: usize,
}

fn calculate_snippet_range(
    original_selection_start: usize,
    original_selection_length: usize,
    source_total_length: usize,
) -> SnippetRange {
    const LEADING_LENGTH: usize = 15;
    const SNIPPET_LENGTH: usize = 40;

    let (prefix, selection_start, offset) =
        if source_total_length < SNIPPET_LENGTH || original_selection_start < LEADING_LENGTH {
            (false, 0, original_selection_start)
        } else if original_selection_start + SNIPPET_LENGTH > source_total_length {
            (
                true,
                source_total_length - SNIPPET_LENGTH,
                original_selection_start - (source_total_length - SNIPPET_LENGTH),
            )
        } else {
            (
                true,
                original_selection_start - LEADING_LENGTH,
                LEADING_LENGTH,
            )
        };

    let (suffix, selection_length) = if selection_start + SNIPPET_LENGTH >= source_total_length {
        (false, source_total_length - selection_start)
    } else {
        (true, SNIPPET_LENGTH)
    };

    let length = if offset + original_selection_length > selection_length {
        selection_length - offset
    } else {
        original_selection_length
    };

    SnippetRange {
        prefix,
        suffix,
        selection_start,
        selection_length,
        offset,
        length,
    }
}

fn generate_snippet_and_indented_detail(
    chars: &mut dyn Iterator<Item = char>,
    snippet_range: &SnippetRange,
    detail: &str,
) -> (String, String) {
    // build snippet
    let mut snippet = String::new();
    snippet.push_str("| ");
    if snippet_range.prefix {
        snippet.push_str("...");
    }
    let selection_chars = chars
        .skip(snippet_range.selection_start)
        .take(snippet_range.selection_length);
    let selection_string = selection_chars
        .map(|c| match c {
            '\n' => ' ',
            '\t' => ' ',
            _ => c,
        })
        .collect::<String>();
    snippet.push_str(&selection_string);
    if snippet_range.suffix {
        snippet.push_str("...");
    }

    // build indented detail
    let mut indented_detail = String::new();
    indented_detail.push_str("| ");
    if snippet_range.prefix {
        indented_detail.push_str("   ");
    }
    indented_detail.push_str(&" ".repeat(snippet_range.offset));
    indented_detail.push('^');
    if snippet_range.length > 0 {
        indented_detail.push_str(&"^".repeat(snippet_range.length - 1));
    } else {
        indented_detail.push_str("____");
    }
    indented_detail.push(' ');
    indented_detail.push_str(detail);

    (snippet, indented_detail)
}

impl AnreError {
    pub fn with_source(&self, source: &str) -> String {
        // print human readable error message with the source

        let source_total_length = source.chars().count();
        let mut chars = source.chars();

        // | leading length
        // v
        // |------|
        // xxxxxxxx.xxxxxxxxxxx  <-- snippet text
        // |------------------|
        // ^
        // | snippet length

        match self {
            AnreError::SyntaxIncorrect(msg) => msg.to_owned(),
            AnreError::UnexpectedEndOfDocument(detail) => {
                let msg = "Unexpected to reach the end of document.";
                let snippet_range =
                    calculate_snippet_range(source_total_length, 0, source_total_length);
                let (snippet, indented_detail) =
                    generate_snippet_and_indented_detail(&mut chars, &snippet_range, detail);
                format!("{}\n{}\n{}", msg, snippet, indented_detail)
            }
            AnreError::MessageWithLocation(detail, location) => {
                let msg = format!(
                    "Error at line: {}, column: {}",
                    location.line + 1,
                    location.column + 1
                );

                let snippet_range =
                    calculate_snippet_range(location.index, location.length, source_total_length);
                let (snippet, indented_detail) =
                    generate_snippet_and_indented_detail(&mut chars, &snippet_range, detail);
                format!("{}\n{}\n{}", msg, snippet, indented_detail)
            }
        }
    }
}

#[cfg(test)]
mod tests {

    use pretty_assertions::assert_eq;

    use crate::{AnreError, location::Location};

    #[test]
    fn test_error_with_source() {
        let source1 = "0123456789"; // 10 chars
        let source2 = "012345678_b12345678_c12345678_d12345678_e123456789"; // 50 chars
        let msg = "abcde";

        assert_eq!(AnreError::SyntaxIncorrect(msg.to_owned()).with_source(source1), msg);
        assert_eq!(AnreError::SyntaxIncorrect(msg.to_owned()).with_source(source2), msg);
    }

    #[test]
    fn test_error_with_source_and_unexpected_end_of_document() {
        let source1 = "0123456789"; // 10 chars
        let source2 = "012345678_b12345678_c12345678_d12345678_e123456789"; // 50 chars
        let msg = "abcde";

        assert_eq!(
            AnreError::UnexpectedEndOfDocument(msg.to_owned()).with_source(source1),
            r#"Unexpected to reach the end of document.
| 0123456789
|           ^____ abcde"#
        );

        assert_eq!(
            AnreError::UnexpectedEndOfDocument(msg.to_owned()).with_source(source2),
            r#"Unexpected to reach the end of document.
| ...b12345678_c12345678_d12345678_e123456789
|                                            ^____ abcde"#
        );
    }

    #[test]
    fn test_error_with_source_and_location() {
        let source1 = "0123456789"; // 10 chars
        let source2 = "012345678_b12345678_c12345678_d12345678_e123456789"; // 50 chars
        let msg = "abcde";

        // first

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 0, 11, 13))
                .with_source(source1),
            r#"Error at line: 12, column: 14
| 0123456789
| ^____ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 0, 11, 13))
                .with_source(source2),
            r#"Error at line: 12, column: 14
| 012345678_b12345678_c12345678_d12345678_...
| ^____ abcde"#
        );

        // head

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 2, 11, 13))
                .with_source(source1),
            r#"Error at line: 12, column: 14
| 0123456789
|   ^____ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 15, 11, 13))
                .with_source(source2),
            r#"Error at line: 12, column: 14
| ...b12345678_c12345678_d12345678_e123456789
|         ^____ abcde"#
        );

        // middle

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 5, 11, 13))
                .with_source(source1),
            r#"Error at line: 12, column: 14
| 0123456789
|      ^____ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 25, 11, 13))
                .with_source(source2),
            r#"Error at line: 12, column: 14
| ...b12345678_c12345678_d12345678_e123456789
|                   ^____ abcde"#
        );

        // tail

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 8, 11, 13))
                .with_source(source1),
            r#"Error at line: 12, column: 14
| 0123456789
|         ^____ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 45, 11, 13))
                .with_source(source2),
            r#"Error at line: 12, column: 14
| ...b12345678_c12345678_d12345678_e123456789
|                                       ^____ abcde"#
        );

        // last

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 10, 11, 13))
                .with_source(source1),
            r#"Error at line: 12, column: 14
| 0123456789
|           ^____ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_position(/*0,*/ 50, 11, 13))
                .with_source(source2),
            r#"Error at line: 12, column: 14
| ...b12345678_c12345678_d12345678_e123456789
|                                            ^____ abcde"#
        );
    }

    #[test]
    fn test_error_with_source_and_range() {
        let source1 = "0123456789"; // 10 chars
        let source2 = "012345678_b12345678_c12345678_d12345678_e123456789"; // 50 chars
        let msg = "abcde";

        // first

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 0, 17, 19, 4))
                .with_source(source1),
            r#"Error at line: 18, column: 20
| 0123456789
| ^^^^ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 0, 17, 19, 8))
                .with_source(source2),
            r#"Error at line: 18, column: 20
| 012345678_b12345678_c12345678_d12345678_...
| ^^^^^^^^ abcde"#
        );

        // head

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 2, 17, 19, 4))
                .with_source(source1),
            r#"Error at line: 18, column: 20
| 0123456789
|   ^^^^ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 15, 17, 19, 8))
                .with_source(source2),
            r#"Error at line: 18, column: 20
| ...b12345678_c12345678_d12345678_e123456789
|         ^^^^^^^^ abcde"#
        );

        // middle

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 5, 17, 19, 4))
                .with_source(source1),
            r#"Error at line: 18, column: 20
| 0123456789
|      ^^^^ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 25, 17, 19, 8))
                .with_source(source2),
            r#"Error at line: 18, column: 20
| ...b12345678_c12345678_d12345678_e123456789
|                   ^^^^^^^^ abcde"#
        );

        // tail

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 8, 17, 19, 4))
                .with_source(source1),
            r#"Error at line: 18, column: 20
| 0123456789
|         ^^ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 45, 17, 19, 8))
                .with_source(source2),
            r#"Error at line: 18, column: 20
| ...b12345678_c12345678_d12345678_e123456789
|                                       ^^^^^ abcde"#
        );

        // last

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 10, 17, 19, 4))
                .with_source(source1),
            r#"Error at line: 18, column: 20
| 0123456789
|           ^____ abcde"#
        );

        assert_eq!(
            AnreError::MessageWithLocation(msg.to_owned(), Location::new_range(/*0,*/ 50, 17, 19, 8))
                .with_source(source2),
            r#"Error at line: 18, column: 20
| ...b12345678_c12345678_d12345678_e123456789
|                                            ^____ abcde"#
        );
    }
}