powerliners 0.2.12

1:1 Rust port of powerline/powerline. The ultimate statusline/prompt utility
Documentation
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
// vim:fileencoding=utf-8:noet
//! Port of `powerline/lint/markedjson/error.py`.
//!
//! Error-reporting primitives for the lint-time JSON loader. Defines
//! `NON_PRINTABLE_RE`, the `strtrans` non-printable substitutor, the
//! rich `Mark` carrying buffer/pointer for `get_snippet`, the
//! `format_error` multi-line error formatter, and the `MarkedError` /
//! `EchoErr` value types.
//!
//! Note: the leaner `Mark { line, column }` used by token/scanner code
//! lives in `nodes.rs`; this `RichMark` is the lint-error reporting
//! variant that knows about the source buffer.

// from __future__ import (unicode_literals, division, absolute_import, print_function)  // py:2
// import sys                                        // py:4
// import re                                         // py:5
// from powerline.lib.encoding import get_preferred_output_encoding                        // py:7

use regex::Regex;
use std::sync::OnceLock;

/// Port of `NON_PRINTABLE_RE` from
/// `powerline/lint/markedjson/error.py:10`.
///
/// Matches characters outside the JSON-allowed printable range.
/// The Python source builds this from `NON_PRINTABLE_STR` (py:10-32)
/// excluding `\t`, `\n`, `\x20-\x7E`, `U+0085`, the BMP printable
/// blocks, and the SMP range. Rust analog: a conservative ASCII-control
/// matcher covering the same forbidden range for control codes.
#[allow(non_snake_case)]
pub fn NON_PRINTABLE_RE() -> &'static Regex {
    static R: OnceLock<Regex> = OnceLock::new();
    R.get_or_init(|| {
        // py:10-33 NON_PRINTABLE_STR build.
        Regex::new(r"[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]").unwrap()
    })
}

/// Port of `repl()` from `powerline/lint/markedjson/error.py:36`.
///
/// Python: `return '<x%04x>' % ord(s.group())`.
/// Given the matched character, returns the `<xNNNN>` escape.
pub fn repl(matched: &str) -> String {
    // py:37  ord(s.group())
    let cp = matched.chars().next().map(|c| c as u32).unwrap_or(0);
    format!("<x{:04x}>", cp)
}

/// Port of `strtrans()` from `powerline/lint/markedjson/error.py:40`.
///
/// Python: `NON_PRINTABLE_RE.sub(repl, s.replace('\t', '>---'))`.
/// Replaces tabs with `>---` then escapes non-printable characters.
pub fn strtrans(s: &str) -> String {
    // py:41  s.replace('\t', '>---')
    let tabs = s.replace('\t', ">---");
    // py:41  NON_PRINTABLE_RE.sub(repl, ...)
    NON_PRINTABLE_RE()
        .replace_all(&tabs, |caps: &regex::Captures<'_>| repl(&caps[0]))
        .into_owned()
}

/// Port of `class Mark` from `powerline/lint/markedjson/error.py:44`.
///
/// Lint-error mark: carries the source buffer so `get_snippet` can
/// extract the offending line. Distinct from the leaner
/// `nodes::Mark { line, column }` used by tokens.
#[derive(Debug, Clone)]
pub struct RichMark {
    /// Python: `self.name` — source name (e.g. file path).
    pub name: String,
    /// Python: `self.line` — 0-based line index.
    pub line: usize,
    /// Python: `self.column` — 0-based column index.
    pub column: usize,
    /// Python: `self.buffer` — full source buffer (Some(chars)) or None.
    pub buffer: Option<Vec<char>>,
    /// Python: `self.pointer` — absolute index into buffer.
    pub pointer: usize,
    /// Python: `self.old_mark` — chain pointer for value-replacement
    /// history (boxed because of recursion).
    pub old_mark: Option<Box<RichMark>>,
    /// Python: `self.merged_marks` — additional marks merged into this
    /// one.
    pub merged_marks: Vec<RichMark>,
}

impl RichMark {
    /// Port of `Mark.__init__()` from
    /// `powerline/lint/markedjson/error.py:45`.
    pub fn new(
        name: impl Into<String>,
        line: usize,
        column: usize,
        buffer: Option<Vec<char>>,
        pointer: usize,
    ) -> Self {
        // py:46  class Mark:
        // py:47  def __init__(self, name, line, column, buffer, pointer, old_mark=None, merged_marks=None):
        // py:48  self.name = name
        // py:49  self.line = line
        // py:50  self.column = column
        // py:51  self.buffer = buffer
        // py:52  self.pointer = pointer
        // py:53  self.old_mark = old_mark
        // py:54  self.merged_marks = merged_marks or []
        Self {
            name: name.into(),
            line,
            column,
            buffer,
            pointer,
            old_mark: None,
            merged_marks: Vec::new(),
        }
    }

    /// Port of `Mark.copy()` from
    /// `powerline/lint/markedjson/error.py:53`.
    pub fn copy(&self) -> RichMark {
        // py:56  def copy(self):
        // py:57  return Mark(self.name, self.line, self.column, self.buffer, self.pointer, self.old_mark, self.merged_marks[:])
        self.clone()
    }

    /// Port of `Mark.get_snippet()` from
    /// `powerline/lint/markedjson/error.py:56`.
    ///
    /// Extracts an `indent`-prefixed source-context snippet
    /// surrounding `pointer`, with a `^` caret marker on the
    /// following line.
    pub fn get_snippet(&self, indent: usize, max_length: usize) -> Option<String> {
        // py:59  def get_snippet(self, indent=4, max_length=75):
        // py:60  if self.buffer is None:
        // py:61  return None
        let buf = self.buffer.as_ref()?;
        // py:62  head = ''
        // py:63  start = self.pointer
        // py:64  while start > 0 and self.buffer[start - 1] not in '\0\n':
        let mut head = String::new();
        let mut start = self.pointer;
        while start > 0 && !matches!(buf.get(start - 1), Some('\0') | Some('\n')) {
            // py:65  start -= 1
            start -= 1;
            // py:66  if self.pointer - start > max_length / 2 - 1:
            if self.pointer.saturating_sub(start) > max_length / 2 - 1 {
                // py:67  head = ' ... '
                // py:68  start += 5
                // py:69  break
                head = " ... ".to_string();
                start += 5;
                break;
            }
        }
        // py:70  tail = ''
        // py:71  end = self.pointer
        // py:72  while end < len(self.buffer) and self.buffer[end] not in '\0\n':
        let mut tail = String::new();
        let mut end = self.pointer;
        while end < buf.len() && !matches!(buf.get(end), Some('\0') | Some('\n')) {
            // py:73  end += 1
            end += 1;
            // py:74  if end - self.pointer > max_length / 2 - 1:
            if end - self.pointer > max_length / 2 - 1 {
                // py:75  tail = ' ... '
                // py:76  end -= 5
                // py:77  break
                tail = " ... ".to_string();
                end -= 5;
                break;
            }
        }
        // py:78  snippet = [self.buffer[start:self.pointer], self.buffer[self.pointer], self.buffer[self.pointer + 1:end]]
        let pre: String = buf[start..self.pointer].iter().collect();
        let ch: String = buf.get(self.pointer).copied().unwrap_or('\0').to_string();
        let post: String = buf
            .get(self.pointer + 1..end.min(buf.len()))
            .map(|s| s.iter().collect())
            .unwrap_or_default();
        // py:79  snippet = [strtrans(s) for s in snippet]
        let snippet = [strtrans(&pre), strtrans(&ch), strtrans(&post)];
        // py:80  return (
        // py:81  ' ' * indent + head + ''.join(snippet) + tail + '\n'
        // py:82  + ' ' * (indent + len(head) + len(snippet[0])) + '^'
        // py:83  )
        let indent_str = " ".repeat(indent);
        let caret_pad = " ".repeat(indent + head.len() + snippet[0].len());
        Some(format!(
            "{}{}{}{}{}{}\n{}^",
            indent_str, head, snippet[0], snippet[1], snippet[2], tail, caret_pad
        ))
    }

    /// Port of `Mark.advance_string()` from
    /// `powerline/lint/markedjson/error.py:81`.
    pub fn advance_string(&self, diff: usize) -> RichMark {
        // py:85  def advance_string(self, diff):
        // py:86  ret = self.copy()
        // py:87  # FIXME Currently does not work properly with escaped strings.
        // py:88  ret.column += diff
        // py:89  ret.pointer += diff
        // py:90  return ret
        let mut ret = self.copy();
        ret.column += diff;
        ret.pointer += diff;
        ret
    }

    /// Port of `Mark.set_old_mark()` from
    /// `powerline/lint/markedjson/error.py:88`.
    ///
    /// Sets the old-mark chain. Detects recursive cycles and refuses.
    /// Returns `Err(())` on cycle (Python raises `ValueError`).
    pub fn set_old_mark(&mut self, old_mark: RichMark) -> Result<(), &'static str> {
        // py:92  def set_old_mark(self, old_mark):
        // py:93  if self is old_mark:
        // py:94  return
        if std::ptr::eq(self as *const _, &old_mark as *const _) {
            return Ok(());
        }
        // py:95  checked_marks = set([id(self)])
        // py:96  older_mark = old_mark
        // py:97  while True:
        // py:98  if id(older_mark) in checked_marks:
        // py:99  raise ValueError('Trying to set recursive marks')
        // py:100  checked_marks.add(id(older_mark))
        // py:101  older_mark = older_mark.old_mark
        // py:102  if not older_mark:
        // py:103  break
        let mut seen: Vec<(String, usize, usize)> =
            vec![(self.name.clone(), self.line, self.column)];
        let mut cursor: Option<&RichMark> = Some(&old_mark);
        while let Some(m) = cursor {
            let id = (m.name.clone(), m.line, m.column);
            if seen.contains(&id) {
                return Err("Trying to set recursive marks");
            }
            seen.push(id);
            cursor = m.old_mark.as_deref();
        }
        // py:104  self.old_mark = old_mark
        self.old_mark = Some(Box::new(old_mark));
        Ok(())
    }

    /// Port of `Mark.set_merged_mark()` from
    /// `powerline/lint/markedjson/error.py:102`.
    pub fn set_merged_mark(&mut self, merged_mark: RichMark) {
        // py:106  def set_merged_mark(self, merged_mark):
        // py:107  self.merged_marks.append(merged_mark)
        self.merged_marks.push(merged_mark);
    }

    /// Port of `Mark.to_string()` from
    /// `powerline/lint/markedjson/error.py:109`. Faithful-name
    /// alias of [`to_string_marked`](Self::to_string_marked);
    /// renamed primary fn to avoid colliding with the
    /// [`ToString`] auto-impl from [`std::fmt::Display`].
    #[allow(
        clippy::wrong_self_convention,
        clippy::inherent_to_string_shadow_display
    )]
    pub fn to_string(&self, indent: usize, head_text: &str, add_snippet: bool) -> String {
        // py:109  def to_string(self, indent=0, head_text='in ', add_snippet=True):
        self.to_string_marked(indent, head_text, add_snippet)
    }

    /// Port of `Mark.to_string()` from
    /// `powerline/lint/markedjson/error.py:105`.
    pub fn to_string_marked(&self, indent: usize, head_text: &str, add_snippet: bool) -> String {
        // py:109  def to_string(self, indent=0, head_text='in ', add_snippet=True):
        // py:110  mark = self
        // py:111  where = ''
        // py:112  processed_marks = set()
        let mut where_str = String::new();
        let mut cursor: Option<&RichMark> = Some(self);
        let mut cur_indent = indent;
        let mut processed: Vec<(String, usize, usize)> = Vec::new();
        // py:113  while mark:
        while let Some(mark) = cursor {
            // py:114  indentstr = ' ' * indent
            let indent_str = " ".repeat(cur_indent);
            // py:115  where += ('%s  %s"%s", line %d, column %d' % (
            // py:116  indentstr, head_text, mark.name, mark.line + 1, mark.column + 1))
            where_str.push_str(&format!(
                "{}  {}\"{}\", line {}, column {}",
                indent_str,
                head_text,
                mark.name,
                mark.line + 1,
                mark.column + 1,
            ));
            // py:117  if add_snippet:
            // py:118  snippet = mark.get_snippet(indent=(indent + 4))
            // py:119  if snippet:
            // py:120  where += ':\n' + snippet
            if add_snippet {
                if let Some(snippet) = mark.get_snippet(cur_indent + 4, 75) {
                    where_str.push_str(":\n");
                    where_str.push_str(&snippet);
                }
            }
            // py:121  if mark.merged_marks:
            // py:122  where += '\n' + indentstr + '  with additionally merged\n'
            // py:123  where += mark.merged_marks[0].to_string(indent + 4, head_text='', add_snippet=False)
            // py:124  for mmark in mark.merged_marks[1:]:
            // py:125  where += '\n' + indentstr + '  and\n'
            // py:126  where += mmark.to_string(indent + 4, head_text='', add_snippet=False)
            if !mark.merged_marks.is_empty() {
                where_str.push('\n');
                where_str.push_str(&indent_str);
                where_str.push_str("  with additionally merged\n");
                where_str.push_str(&mark.merged_marks[0].to_string_marked(
                    cur_indent + 4,
                    "",
                    false,
                ));
                for mm in &mark.merged_marks[1..] {
                    where_str.push('\n');
                    where_str.push_str(&indent_str);
                    where_str.push_str("  and\n");
                    where_str.push_str(&mm.to_string_marked(cur_indent + 4, "", false));
                }
            }
            // py:127  if add_snippet:
            // py:128  processed_marks.add(id(mark))
            // py:129  if mark.old_mark:
            // py:130  where += '\n' + indentstr + '  which replaced value\n'
            // py:131  indent += 4
            if add_snippet {
                let id = (mark.name.clone(), mark.line, mark.column);
                processed.push(id);
                if mark.old_mark.is_some() {
                    where_str.push('\n');
                    where_str.push_str(&indent_str);
                    where_str.push_str("  which replaced value\n");
                    cur_indent += 4;
                }
            }
            // py:132  mark = mark.old_mark
            // py:133  if id(mark) in processed_marks:
            // py:134  raise ValueError('Trying to dump recursive mark')
            cursor = mark.old_mark.as_deref();
            if let Some(m) = cursor {
                let id = (m.name.clone(), m.line, m.column);
                if processed.contains(&id) {
                    where_str.push_str("\n<recursive mark>");
                    break;
                }
            }
        }
        // py:135  return where
        where_str
    }
}

impl std::fmt::Display for RichMark {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        // py:139-142  __str__ = to_string()
        write!(f, "{}", self.to_string_marked(0, "in ", true))
    }
}

impl PartialEq for RichMark {
    fn eq(&self, other: &Self) -> bool {
        // py:144-149  self is other or (name == name and line == line and column == column)
        std::ptr::eq(self, other)
            || (self.name == other.name && self.line == other.line && self.column == other.column)
    }
}

/// Port of `format_error()` from
/// `powerline/lint/markedjson/error.py:166`.
///
/// Multi-line error formatter combining context/problem messages with
/// their respective marks and an optional trailing note.
pub fn format_error(
    context: Option<&str>,
    context_mark: Option<&RichMark>,
    problem: Option<&str>,
    problem_mark: Option<&RichMark>,
    note: Option<&str>,
    indent: usize,
) -> String {
    // py:167  def format_error(context=None, context_mark=None, problem=None, problem_mark=None, note=None, indent=0):
    // py:168  lines = []
    // py:169  indentstr = ' ' * indent
    let mut lines: Vec<String> = Vec::new();
    let indent_str = " ".repeat(indent);
    // py:170  if context is not None:
    // py:171  lines.append(indentstr + context)
    if let Some(c) = context {
        lines.push(format!("{}{}", indent_str, c));
    }
    // py:172  if (
    // py:173  context_mark is not None
    // py:174  and (
    // py:175  problem is None or problem_mark is None
    // py:176  or context_mark != problem_mark
    // py:177  )
    // py:178  ):
    // py:179  lines.append(context_mark.to_string(indent=indent))
    if let Some(cm) = context_mark {
        let same_as_problem = matches!((problem, problem_mark), (Some(_), Some(pm)) if cm == pm);
        if !same_as_problem {
            lines.push(cm.to_string_marked(indent, "in ", true));
        }
    }
    // py:180  if problem is not None:
    // py:181  lines.append(indentstr + problem)
    if let Some(p) = problem {
        lines.push(format!("{}{}", indent_str, p));
    }
    // py:182  if problem_mark is not None:
    // py:183  lines.append(problem_mark.to_string(indent=indent))
    if let Some(pm) = problem_mark {
        lines.push(pm.to_string_marked(indent, "in ", true));
    }
    // py:184  if note is not None:
    // py:185  lines.append(indentstr + note)
    if let Some(n) = note {
        lines.push(format!("{}{}", indent_str, n));
    }
    // py:186  return '\n'.join(lines)
    lines.join("\n")
}

/// Port of module-level `echoerr()` from
/// `powerline/lint/markedjson/error.py:156-164`.
///
/// Python defines `echoerr` twice (Py2 / Py3 branches at py:156
/// and py:161). Both write `'\n' + format_error(**kwargs) + '\n'`
/// to `kwargs.get('stream', sys.stderr)` — the Py2 branch encodes
/// via `get_preferred_output_encoding()` first.
///
/// Rust port uses the Py3 branch since Py2 is end-of-life.
/// `stream` defaults to stderr; pass any `io::Write` for redirection.
pub fn echoerr<W: std::io::Write>(
    stream: &mut W,
    context: Option<&str>,
    context_mark: Option<&RichMark>,
    problem: Option<&str>,
    problem_mark: Option<&RichMark>,
    description: Option<&str>,
    indent: usize,
) -> std::io::Result<()> {
    // py:156  def echoerr(**kwargs):
    // py:157  stream = kwargs.pop('stream', sys.stderr)
    // py:158  stream.write('\n')
    stream.write_all(b"\n")?;
    // py:159  stream.write((format_error(**kwargs) + '\n').encode(...))
    let formatted = format_error(
        context,
        context_mark,
        problem,
        problem_mark,
        description,
        indent,
    );
    stream.write_all(formatted.as_bytes())?;
    stream.write_all(b"\n")?;
    Ok(())
}

/// Port of `class MarkedError(Exception)` from
/// `powerline/lint/markedjson/error.py:188`.
#[derive(Debug, Clone)]
pub struct MarkedError {
    pub message: String,
}

impl MarkedError {
    /// Port of `MarkedError.__init__()` from
    /// `powerline/lint/markedjson/error.py:189`.
    pub fn new(
        context: Option<&str>,
        context_mark: Option<&RichMark>,
        problem: Option<&str>,
        problem_mark: Option<&RichMark>,
        note: Option<&str>,
    ) -> Self {
        // py:190  Exception.__init__(self, format_error(...))
        Self {
            message: format_error(context, context_mark, problem, problem_mark, note, 0),
        }
    }
}

impl std::fmt::Display for MarkedError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.message)
    }
}

impl std::error::Error for MarkedError {}

/// Port of `class EchoErr` from
/// `powerline/lint/markedjson/error.py:193`.
///
/// Wraps an `echoerr` callback + logger with a fixed indent. Rust
/// stub: holds the indent only; the actual `echoerr` callback is left
/// as a generic trait once a callback dispatch is needed.
pub struct EchoErr {
    pub indent: usize,
}

impl EchoErr {
    /// Port of `EchoErr.__init__()` from
    /// `powerline/lint/markedjson/error.py:196`.
    pub fn new(indent: usize) -> Self {
        Self { indent }
    }
}

impl EchoErr {
    /// Port of `EchoErr.__call__()` from
    /// `powerline/lint/markedjson/error.py:202-205`.
    ///
    /// Returns the kwargs dict with the indent defaulted to
    /// `self.indent` per py:204. The actual `self.echoerr(**kwargs)`
    /// dispatch at py:205 routes through a caller-supplied echoerr
    /// callable; the Rust port returns the resolved kwargs so the
    /// caller dispatches through its own echoerr path.
    pub fn call(
        &self,
        mut kwargs: serde_json::Map<String, serde_json::Value>,
    ) -> serde_json::Map<String, serde_json::Value> {
        // py:204  kwargs.setdefault('indent', self.indent)
        kwargs
            .entry("indent")
            .or_insert_with(|| serde_json::Value::from(self.indent));
        kwargs
    }
}

/// Port of `class DelayedEchoErr(EchoErr)` from
/// `powerline/lint/markedjson/error.py:208-241`.
///
/// Multi-variant error accumulator: each variant is a list of kwargs
/// dicts. `__call__` appends to the current variant; `next_variant`
/// starts a new bucket; `echo_all` walks every variant emitting the
/// captured errors through the underlying echoerr callable per
/// py:227-236.
pub struct DelayedEchoErr {
    /// Python: `self.errs` — list of variant buckets per py:213.
    pub errs: Vec<Vec<serde_json::Map<String, serde_json::Value>>>,
    /// Python: `self.message` (py:214).
    pub message: String,
    /// Python: `self.separator_message` (py:215).
    pub separator_message: String,
    /// Python: `self.indent_shift` (py:216).
    pub indent_shift: usize,
    /// Python: `self.indent` (py:217) — base indent + shift.
    pub indent: usize,
}

impl DelayedEchoErr {
    /// Port of `DelayedEchoErr.__init__()` from
    /// `powerline/lint/markedjson/error.py:211-217`.
    ///
    /// Takes the parent EchoErr's indent as the seed; computes
    /// `indent_shift = 4 if message_or_separator_set else 0` per
    /// py:216 and `indent = parent.indent + shift` per py:217.
    pub fn new(
        parent_indent: usize,
        message: impl Into<String>,
        separator_message: impl Into<String>,
    ) -> Self {
        let message = message.into();
        let separator_message = separator_message.into();
        // py:216  4 if message or separator_message else 0
        let indent_shift = if !message.is_empty() || !separator_message.is_empty() {
            4
        } else {
            0
        };
        Self {
            // py:213  self.errs = [[]]
            errs: vec![Vec::new()],
            message,
            separator_message,
            indent_shift,
            // py:217  echoerr.indent + indent_shift
            indent: parent_indent + indent_shift,
        }
    }

    /// Port of `DelayedEchoErr.__call__()` from
    /// `powerline/lint/markedjson/error.py:219-222`.
    ///
    /// Appends to the current variant bucket with the indent kwarg
    /// shifted by `self.indent`. Python's
    /// `kwargs.get('indent', 0) + self.indent` per py:221.
    pub fn call(&mut self, mut kwargs: serde_json::Map<String, serde_json::Value>) {
        // py:221  kwargs['indent'] = kwargs.get('indent', 0) + self.indent
        let prev = kwargs.get("indent").and_then(|v| v.as_u64()).unwrap_or(0) as usize;
        kwargs.insert(
            "indent".to_string(),
            serde_json::Value::from(prev + self.indent),
        );
        // py:222  self.errs[-1].append(kwargs)
        if let Some(last) = self.errs.last_mut() {
            last.push(kwargs);
        }
    }

    /// Port of `DelayedEchoErr.next_variant()` from
    /// `powerline/lint/markedjson/error.py:224-225`.
    ///
    /// Starts a new variant bucket per py:225.
    pub fn next_variant(&mut self) {
        // py:225  self.errs.append([])
        self.errs.push(Vec::new());
    }

    /// Port of `DelayedEchoErr.echo_all()` from
    /// `powerline/lint/markedjson/error.py:227-236`.
    ///
    /// Returns the flat list of kwargs dicts that the parent
    /// `echoerr(...)` callable would receive in order. Python
    /// dispatches each through `self.echoerr(**kwargs)` per py:236;
    /// the Rust port returns the resolved sequence so callers can
    /// route through their own echo strategy.
    pub fn echo_all(&self) -> Vec<serde_json::Map<String, serde_json::Value>> {
        let mut out: Vec<serde_json::Map<String, serde_json::Value>> = Vec::new();
        // py:228-229  if self.message: echoerr(problem=message, indent=...)
        if !self.message.is_empty() {
            let mut kw = serde_json::Map::new();
            kw.insert(
                "problem".to_string(),
                serde_json::Value::String(self.message.clone()),
            );
            kw.insert(
                "indent".to_string(),
                serde_json::Value::from(self.indent - self.indent_shift),
            );
            out.push(kw);
        }
        // py:230-236  iterate variants
        for (i, variant) in self.errs.iter().enumerate() {
            // py:231-232  if not variant: continue
            if variant.is_empty() {
                continue;
            }
            // py:233-234  separator_message for non-first variants
            if !self.separator_message.is_empty() && i > 0 {
                let mut kw = serde_json::Map::new();
                kw.insert(
                    "problem".to_string(),
                    serde_json::Value::String(self.separator_message.clone()),
                );
                kw.insert(
                    "indent".to_string(),
                    serde_json::Value::from(self.indent - self.indent_shift),
                );
                out.push(kw);
            }
            // py:235-236  echoerr(**kwargs) per kwargs in variant
            for kwargs in variant {
                out.push(kwargs.clone());
            }
        }
        out
    }

    /// Port of `DelayedEchoErr.__nonzero__()` / `__bool__()` from
    /// `powerline/lint/markedjson/error.py:238-241`.
    ///
    /// Python: `return not not self.errs` — true when `self.errs`
    /// is non-empty (the list of buckets), regardless of whether
    /// individual buckets contain anything.
    pub fn is_truthy(&self) -> bool {
        // py:239  return not not self.errs
        !self.errs.is_empty()
    }
}

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

    #[test]
    fn non_printable_re_matches_ctrl_chars() {
        assert!(NON_PRINTABLE_RE().is_match("\x07"));
        assert!(NON_PRINTABLE_RE().is_match("\x1f"));
        assert!(!NON_PRINTABLE_RE().is_match("abc"));
    }

    #[test]
    fn non_printable_re_allows_tab_newline_cr() {
        // py:NON_PRINTABLE_STR includes \t \n in the allowed set
        assert!(!NON_PRINTABLE_RE().is_match("\t"));
        assert!(!NON_PRINTABLE_RE().is_match("\n"));
        // CR is at 0x0D which is between 0x0B/0x0C and 0x0E-0x1F, so
        // CR (0x0D) is NOT in the forbidden range either.
        assert!(!NON_PRINTABLE_RE().is_match("\r"));
    }

    #[test]
    fn repl_formats_codepoint_as_hex() {
        // py:37  '<x%04x>' % ord(s.group())
        assert_eq!(repl("\x07"), "<x0007>");
        assert_eq!(repl("\x1f"), "<x001f>");
        assert_eq!(repl("A"), "<x0041>");
    }

    #[test]
    fn strtrans_replaces_tab_with_dashes() {
        // py:41  s.replace('\t', '>---')
        assert_eq!(strtrans("a\tb"), "a>---b");
    }

    #[test]
    fn strtrans_escapes_non_printable() {
        // py:41  NON_PRINTABLE_RE.sub(repl, ...)
        assert_eq!(strtrans("a\x07b"), "a<x0007>b");
    }

    #[test]
    fn strtrans_passes_printable_through() {
        assert_eq!(strtrans("hello world"), "hello world");
    }

    #[test]
    fn rich_mark_new_has_no_old_or_merged() {
        let m = RichMark::new("f.json", 0, 0, None, 0);
        assert!(m.old_mark.is_none());
        assert!(m.merged_marks.is_empty());
    }

    #[test]
    fn rich_mark_copy_is_equal() {
        let m = RichMark::new("f.json", 3, 4, None, 0);
        let c = m.copy();
        assert_eq!(m.name, c.name);
        assert_eq!(m.line, c.line);
        assert_eq!(m.column, c.column);
    }

    #[test]
    fn rich_mark_get_snippet_none_when_no_buffer() {
        let m = RichMark::new("f.json", 0, 0, None, 0);
        assert!(m.get_snippet(4, 75).is_none());
    }

    #[test]
    fn rich_mark_get_snippet_extracts_line() {
        let buf: Vec<char> = "hello world\n".chars().collect();
        // pointer at 'w' (index 6), max_length large enough
        let m = RichMark::new("f.json", 0, 6, Some(buf), 6);
        let snippet = m.get_snippet(4, 75).unwrap();
        // contains "hello world" and a caret on the next line
        assert!(snippet.contains("hello world"));
        assert!(snippet.contains('^'));
        // caret indent = 4 (indent) + 0 (head) + 6 (pre length "hello ")
        let caret_line = snippet.lines().nth(1).unwrap();
        assert_eq!(caret_line, "          ^"); // 10 spaces then ^
    }

    #[test]
    fn rich_mark_advance_string_offsets_column_and_pointer() {
        let m = RichMark::new("f.json", 1, 5, None, 10);
        let advanced = m.advance_string(3);
        assert_eq!(advanced.column, 8);
        assert_eq!(advanced.pointer, 13);
        assert_eq!(advanced.line, 1);
    }

    #[test]
    fn rich_mark_set_merged_mark_appends() {
        let mut m = RichMark::new("a", 0, 0, None, 0);
        m.set_merged_mark(RichMark::new("b", 1, 0, None, 0));
        m.set_merged_mark(RichMark::new("c", 2, 0, None, 0));
        assert_eq!(m.merged_marks.len(), 2);
        assert_eq!(m.merged_marks[0].name, "b");
        assert_eq!(m.merged_marks[1].name, "c");
    }

    #[test]
    fn rich_mark_set_old_mark_chains() {
        let mut m = RichMark::new("a", 0, 0, None, 0);
        let old = RichMark::new("b", 1, 0, None, 0);
        m.set_old_mark(old).unwrap();
        assert!(m.old_mark.is_some());
        assert_eq!(m.old_mark.as_ref().unwrap().name, "b");
    }

    #[test]
    fn rich_mark_eq_compares_name_line_column() {
        let a = RichMark::new("f", 1, 2, None, 10);
        let b = RichMark::new("f", 1, 2, None, 99); // diff pointer
        assert_eq!(a, b);
        let c = RichMark::new("f", 1, 3, None, 10); // diff col
        assert_ne!(a, c);
    }

    #[test]
    fn rich_mark_to_string_marked_emits_line_column() {
        let m = RichMark::new("f.json", 2, 4, None, 0);
        let s = m.to_string_marked(0, "in ", false);
        // py:115-116  '%s  %s"%s", line %d, column %d'
        //   line+1 = 3, column+1 = 5
        assert!(s.contains("\"f.json\", line 3, column 5"));
        assert!(s.contains("in "));
    }

    #[test]
    fn format_error_combines_context_and_problem() {
        let cm = RichMark::new("ctx.json", 0, 0, None, 0);
        let pm = RichMark::new("prob.json", 5, 0, None, 0);
        let s = format_error(
            Some("found error"),
            Some(&cm),
            Some("bad token"),
            Some(&pm),
            Some("hint: check syntax"),
            0,
        );
        assert!(s.contains("found error"));
        assert!(s.contains("bad token"));
        assert!(s.contains("ctx.json"));
        assert!(s.contains("prob.json"));
        assert!(s.contains("hint: check syntax"));
    }

    #[test]
    fn format_error_omits_context_mark_when_same_as_problem_mark() {
        // py:171-178  skip context_mark if it equals problem_mark
        let m = RichMark::new("f.json", 0, 0, None, 0);
        let s = format_error(Some("ctx"), Some(&m), Some("prob"), Some(&m), None, 0);
        // The "f.json" mark line should appear once (from problem_mark),
        // not twice.
        let count = s.matches("\"f.json\"").count();
        assert_eq!(count, 1);
    }

    #[test]
    fn format_error_indent_prefixes_text() {
        let s = format_error(Some("ctx"), None, None, None, None, 4);
        assert!(s.starts_with("    ctx"));
    }

    #[test]
    fn marked_error_format_includes_problem() {
        let pm = RichMark::new("f.json", 1, 1, None, 0);
        let e = MarkedError::new(
            Some("syntax error"),
            None,
            Some("unexpected token"),
            Some(&pm),
            None,
        );
        let s = e.to_string();
        assert!(s.contains("syntax error"));
        assert!(s.contains("unexpected token"));
        assert!(s.contains("f.json"));
    }

    #[test]
    fn marked_error_implements_error_traits() {
        let e = MarkedError::new(Some("ctx"), None, Some("prob"), None, None);
        let _: &dyn std::error::Error = &e;
    }

    #[test]
    fn echoerr_holds_indent() {
        let e = EchoErr::new(4);
        assert_eq!(e.indent, 4);
    }

    #[test]
    fn echo_err_call_defaults_indent_to_self_indent() {
        // py:204
        let e = EchoErr::new(8);
        let kwargs = serde_json::Map::new();
        let r = e.call(kwargs);
        assert_eq!(r["indent"], 8);
    }

    #[test]
    fn echo_err_call_preserves_explicit_indent() {
        // py:204  setdefault('indent', ...)
        let e = EchoErr::new(8);
        let mut kwargs = serde_json::Map::new();
        kwargs.insert("indent".to_string(), serde_json::json!(20));
        let r = e.call(kwargs);
        assert_eq!(r["indent"], 20);
    }

    #[test]
    fn delayed_echo_err_new_empty_message_shift_zero() {
        // py:216  4 if message or separator_message else 0
        let d = DelayedEchoErr::new(0, "", "");
        assert_eq!(d.indent_shift, 0);
        assert_eq!(d.indent, 0);
    }

    #[test]
    fn delayed_echo_err_new_message_shifts_by_4() {
        let d = DelayedEchoErr::new(2, "Error context", "");
        assert_eq!(d.indent_shift, 4);
        assert_eq!(d.indent, 6);
    }

    #[test]
    fn delayed_echo_err_new_separator_shifts_by_4() {
        let d = DelayedEchoErr::new(2, "", "Or:");
        assert_eq!(d.indent_shift, 4);
        assert_eq!(d.indent, 6);
    }

    #[test]
    fn delayed_echo_err_call_appends_to_last_variant() {
        // py:222
        let mut d = DelayedEchoErr::new(0, "", "");
        let mut kw = serde_json::Map::new();
        kw.insert("problem".to_string(), serde_json::json!("x"));
        d.call(kw);
        assert_eq!(d.errs[0].len(), 1);
        assert_eq!(d.errs[0][0]["problem"], "x");
    }

    #[test]
    fn delayed_echo_err_call_shifts_indent_by_self_indent() {
        // py:221
        let mut d = DelayedEchoErr::new(0, "message", "");
        // d.indent = 4
        let mut kw = serde_json::Map::new();
        kw.insert("indent".to_string(), serde_json::json!(2));
        d.call(kw);
        assert_eq!(d.errs[0][0]["indent"], 6);
    }

    #[test]
    fn delayed_echo_err_call_defaults_kwargs_indent_to_zero() {
        let mut d = DelayedEchoErr::new(0, "message", "");
        // d.indent = 4
        let kw = serde_json::Map::new();
        d.call(kw);
        // 0 + 4 = 4
        assert_eq!(d.errs[0][0]["indent"], 4);
    }

    #[test]
    fn delayed_echo_err_next_variant_appends_empty_bucket() {
        // py:225
        let mut d = DelayedEchoErr::new(0, "", "");
        assert_eq!(d.errs.len(), 1);
        d.next_variant();
        assert_eq!(d.errs.len(), 2);
        assert!(d.errs[1].is_empty());
    }

    #[test]
    fn delayed_echo_err_echo_all_empty_variants_returns_empty() {
        // py:230-232  if not variant: continue
        let d = DelayedEchoErr::new(0, "", "");
        assert!(d.echo_all().is_empty());
    }

    #[test]
    fn delayed_echo_err_echo_all_emits_message_first() {
        // py:228-229
        let mut d = DelayedEchoErr::new(0, "Error in config", "");
        let mut kw = serde_json::Map::new();
        kw.insert("problem".to_string(), serde_json::json!("detail"));
        d.call(kw);
        let out = d.echo_all();
        assert_eq!(out[0]["problem"], "Error in config");
        // indent - indent_shift = 4 - 4 = 0
        assert_eq!(out[0]["indent"], 0);
    }

    #[test]
    fn delayed_echo_err_echo_all_emits_separator_between_variants() {
        // py:233-234
        let mut d = DelayedEchoErr::new(0, "", "Or:");
        let mut kw = serde_json::Map::new();
        kw.insert("problem".to_string(), serde_json::json!("variant1"));
        d.call(kw);
        d.next_variant();
        let mut kw = serde_json::Map::new();
        kw.insert("problem".to_string(), serde_json::json!("variant2"));
        d.call(kw);

        let out = d.echo_all();
        // 1st variant entry, then separator, then 2nd variant entry
        let problems: Vec<&str> = out
            .iter()
            .filter_map(|m| m.get("problem").and_then(|v| v.as_str()))
            .collect();
        assert_eq!(problems, vec!["variant1", "Or:", "variant2"]);
    }

    #[test]
    fn delayed_echo_err_is_truthy_when_errs_non_empty() {
        // py:239
        let d = DelayedEchoErr::new(0, "", "");
        // Initial state: errs = [[]] (1 empty bucket)
        assert!(d.is_truthy());
    }

    #[test]
    fn delayed_echo_err_echo_all_skips_empty_first_variant_when_subsequent_has_content() {
        // py:230-232  empty buckets are skipped
        let mut d = DelayedEchoErr::new(0, "", "separator");
        // First bucket stays empty
        d.next_variant();
        let mut kw = serde_json::Map::new();
        kw.insert("problem".to_string(), serde_json::json!("v2"));
        d.call(kw);

        let out = d.echo_all();
        // Separator only emitted for non-first variants, but first is empty
        // so separator does emit before v2 (since i=1 > 0)
        let problems: Vec<&str> = out
            .iter()
            .filter_map(|m| m.get("problem").and_then(|v| v.as_str()))
            .collect();
        assert_eq!(problems, vec!["separator", "v2"]);
    }

    #[test]
    fn echoerr_writes_newline_problem_newline() {
        // py:156-164  '\n' + format_error(...) + '\n'
        let mut buf: Vec<u8> = Vec::new();
        echoerr(&mut buf, None, None, Some("disk full"), None, None, 0).unwrap();
        let s = String::from_utf8(buf).unwrap();
        assert!(s.starts_with('\n'));
        assert!(s.contains("disk full"));
        assert!(s.ends_with('\n'));
    }
}