rich-rs 1.2.2

Rich text and beautiful formatting for the terminal
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
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
//! Pretty: pretty-print Rust data structures.
//!
//! This module provides pretty-printing functionality for Rust types that implement
//! the `Debug` trait. It formats debug output with proper indentation and line wrapping,
//! then applies syntax highlighting.
//!
//! # Example
//!
//! ```
//! use rich_rs::pretty::{Pretty, pretty_repr};
//!
//! let data = vec![1, 2, 3, 4, 5];
//! let pretty = Pretty::new(&data);
//!
//! // Or use the convenience function with a debug string:
//! let debug_str = format!("{:?}", data);
//! let formatted = pretty_repr(&debug_str, 80, 4, None, None, None, false);
//! ```
//!
//! # Differences from Python Rich
//!
//! - Python uses introspection (`__repr__`, attrs, dataclasses). Rust uses `Debug` trait.
//! - Python can traverse objects and build a tree. Rust parses the `Debug` output string.
//! - Configuration options remain similar for API compatibility.

use std::fmt::Debug;
use std::io::Stdout;

use crate::Renderable;
use crate::cells::cell_len;
use crate::console::{Console, ConsoleOptions, JustifyMethod, OverflowMethod};
use crate::highlighter::{Highlighter, repr_highlighter, repr_highlighter_with_theme};
use crate::measure::Measurement;
use crate::segment::Segments;
use crate::text::Text;
use crate::theme::Theme;

// ============================================================================
// Node - Tree structure for repr output
// ============================================================================

/// A node in a repr tree. May be atomic or a container.
#[derive(Debug, Clone)]
struct Node {
    /// Key representation (for key-value pairs like struct fields).
    key_repr: String,
    /// Value representation (for atomic values).
    value_repr: String,
    /// Opening brace/paren (e.g., "[", "{", "(").
    open_brace: String,
    /// Closing brace/paren (e.g., "]", "}", ")").
    close_brace: String,
    /// Empty representation (e.g., "[]", "{}").
    empty: String,
    /// Whether this is the last child in its parent container.
    last: bool,
    /// Whether this is a tuple (affects trailing comma for single-element tuples).
    is_tuple: bool,
    /// Child nodes (None for atomic values).
    children: Option<Vec<Node>>,
    /// Separator between key and value (": " for maps, "=" for struct fields).
    key_separator: String,
    /// Separator between children (", " typically).
    separator: String,
}

impl Default for Node {
    fn default() -> Self {
        Node {
            key_repr: String::new(),
            value_repr: String::new(),
            open_brace: String::new(),
            close_brace: String::new(),
            empty: String::new(),
            last: false,
            is_tuple: false,
            children: None,
            key_separator: ": ".to_string(),
            separator: ", ".to_string(),
        }
    }
}

impl Node {
    /// Create a new atomic node with a value.
    fn atomic(value: impl Into<String>) -> Self {
        Node {
            value_repr: value.into(),
            ..Default::default()
        }
    }

    /// Create a new container node.
    fn container(open: impl Into<String>, close: impl Into<String>) -> Self {
        Node {
            open_brace: open.into(),
            close_brace: close.into(),
            children: Some(Vec::new()),
            ..Default::default()
        }
    }

    /// Generate tokens for this node.
    fn iter_tokens(&self) -> Vec<String> {
        let mut tokens = Vec::new();

        if !self.key_repr.is_empty() {
            tokens.push(self.key_repr.clone());
            tokens.push(self.key_separator.clone());
        }

        if !self.value_repr.is_empty() {
            tokens.push(self.value_repr.clone());
        } else if let Some(ref children) = self.children {
            if children.is_empty() {
                if !self.empty.is_empty() {
                    tokens.push(self.empty.clone());
                } else {
                    tokens.push(self.open_brace.clone());
                    tokens.push(self.close_brace.clone());
                }
            } else {
                tokens.push(self.open_brace.clone());
                // Handle single-element tuple with trailing comma
                if self.is_tuple && children.len() == 1 {
                    tokens.extend(children[0].iter_tokens());
                    tokens.push(",".to_string());
                } else {
                    for (i, child) in children.iter().enumerate() {
                        tokens.extend(child.iter_tokens());
                        if i < children.len() - 1 {
                            tokens.push(self.separator.clone());
                        }
                    }
                }
                tokens.push(self.close_brace.clone());
            }
        }

        tokens
    }

    /// Check if the node fits within a given length.
    fn check_length(&self, start_length: usize, max_length: usize) -> bool {
        let mut total = start_length;
        for token in self.iter_tokens() {
            total += cell_len(&token);
            if total > max_length {
                return false;
            }
        }
        true
    }

    /// Render to string (single line).
    fn to_string_inline(&self) -> String {
        self.iter_tokens().join("")
    }

    /// Render the node to a pretty repr string.
    fn render(&self, max_width: usize, indent_size: usize, expand_all: bool) -> String {
        let mut lines = vec![Line::new(self.clone(), true)];
        let mut line_no = 0;

        while line_no < lines.len() {
            let line = &lines[line_no];
            if line.expandable() && !line.expanded {
                if expand_all || !line.check_length(max_width) {
                    let expanded = lines[line_no].expand(indent_size);
                    lines.splice(line_no..line_no + 1, expanded);
                }
            }
            line_no += 1;
        }

        lines
            .iter()
            .map(|l| l.to_string())
            .collect::<Vec<_>>()
            .join("\n")
    }
}

// ============================================================================
// Line - A line in repr output
// ============================================================================

/// A line in repr output.
#[derive(Debug, Clone)]
struct Line {
    /// The node for this line (if expandable).
    node: Option<Node>,
    /// Pre-rendered text (for non-expandable lines).
    text: String,
    /// Suffix after the node (e.g., ",").
    suffix: String,
    /// Leading whitespace.
    whitespace: String,
    /// Whether this line has been expanded.
    expanded: bool,
    /// Whether this is the last item in its parent.
    last: bool,
    /// Whether this is the root node.
    /// NOTE: Reserved for future use (e.g., special root formatting).
    #[allow(dead_code)]
    is_root: bool,
}

impl Line {
    fn new(node: Node, is_root: bool) -> Self {
        Line {
            node: Some(node),
            text: String::new(),
            suffix: String::new(),
            whitespace: String::new(),
            expanded: false,
            last: false,
            is_root,
        }
    }

    fn text_only(text: impl Into<String>, whitespace: impl Into<String>) -> Self {
        Line {
            node: None,
            text: text.into(),
            suffix: String::new(),
            whitespace: whitespace.into(),
            expanded: false,
            last: false,
            is_root: false,
        }
    }

    fn expandable(&self) -> bool {
        if let Some(ref node) = self.node {
            node.children.as_ref().is_some_and(|c| !c.is_empty())
        } else {
            false
        }
    }

    fn check_length(&self, max_length: usize) -> bool {
        let start_length = self.whitespace.len() + cell_len(&self.text) + cell_len(&self.suffix);
        if let Some(ref node) = self.node {
            node.check_length(start_length, max_length)
        } else {
            start_length <= max_length
        }
    }

    fn expand(&self, indent_size: usize) -> Vec<Line> {
        let mut result = Vec::new();

        let node = match &self.node {
            Some(n) => n,
            None => return vec![self.clone()],
        };

        let children = match &node.children {
            Some(c) => c,
            None => return vec![self.clone()],
        };

        // Opening line
        let open_text = if !node.key_repr.is_empty() {
            format!("{}{}{}", node.key_repr, node.key_separator, node.open_brace)
        } else {
            node.open_brace.clone()
        };
        result.push(Line::text_only(open_text, &self.whitespace));

        // Child whitespace
        let child_whitespace = format!("{}{}", self.whitespace, " ".repeat(indent_size));

        // Children
        let tuple_of_one = node.is_tuple && children.len() == 1;
        for (i, child) in children.iter().enumerate() {
            let is_last = i == children.len() - 1;
            let separator = if tuple_of_one {
                ","
            } else if !is_last {
                &node.separator
            } else {
                ""
            };

            let mut line = Line::new(child.clone(), false);
            line.whitespace = child_whitespace.clone();
            line.suffix = separator.to_string();
            line.last = is_last && !tuple_of_one;
            result.push(line);
        }

        // Closing line
        let mut close_line = Line::text_only(&node.close_brace, &self.whitespace);
        close_line.suffix = self.suffix.clone();
        close_line.last = self.last;
        result.push(close_line);

        result
    }
}

impl std::fmt::Display for Line {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if self.last {
            write!(
                f,
                "{}{}{}",
                self.whitespace,
                self.text,
                self.node
                    .as_ref()
                    .map_or(String::new(), |n| n.to_string_inline())
            )
        } else {
            write!(
                f,
                "{}{}{}{}",
                self.whitespace,
                self.text,
                self.node
                    .as_ref()
                    .map_or(String::new(), |n| n.to_string_inline()),
                self.suffix.trim_end()
            )
        }
    }
}

// ============================================================================
// Parser for Debug output
// ============================================================================

/// Parse a Debug output string into a Node tree.
fn parse_debug_output(
    s: &str,
    max_length: Option<usize>,
    max_string: Option<usize>,
    max_depth: Option<usize>,
) -> Node {
    let mut parser = DebugParser::new(s, max_length, max_string, max_depth);
    parser.parse()
}

struct DebugParser<'a> {
    input: &'a str,
    pos: usize,
    max_length: Option<usize>,
    max_string: Option<usize>,
    max_depth: Option<usize>,
}

impl<'a> DebugParser<'a> {
    fn new(
        input: &'a str,
        max_length: Option<usize>,
        max_string: Option<usize>,
        max_depth: Option<usize>,
    ) -> Self {
        DebugParser {
            input,
            pos: 0,
            max_length,
            max_string,
            max_depth,
        }
    }

    fn peek(&self) -> Option<char> {
        self.input[self.pos..].chars().next()
    }

    fn advance(&mut self) -> Option<char> {
        let c = self.peek()?;
        self.pos += c.len_utf8();
        Some(c)
    }

    fn skip_whitespace(&mut self) {
        while let Some(c) = self.peek() {
            if c.is_whitespace() {
                self.advance();
            } else {
                break;
            }
        }
    }

    fn parse(&mut self) -> Node {
        self.skip_whitespace();
        self.parse_value(0)
    }

    fn parse_value(&mut self, depth: usize) -> Node {
        self.skip_whitespace();

        // Check max depth - must skip nested content to avoid infinite loop
        if let Some(max_d) = self.max_depth {
            if depth >= max_d {
                // Skip the nested structure we're not parsing
                match self.peek() {
                    Some('[') => {
                        self.advance();
                        self.skip_to_closing_bracket(']');
                    }
                    Some('{') => {
                        self.advance();
                        self.skip_to_closing_bracket('}');
                    }
                    Some('(') => {
                        self.advance();
                        self.skip_to_closing_bracket(')');
                    }
                    Some('"') => {
                        self.parse_string();
                        return Node::atomic("...");
                    }
                    Some('\'') => {
                        self.parse_char();
                        return Node::atomic("...");
                    }
                    Some(c) if c.is_alphabetic() || c == '_' => {
                        self.skip_identifier_or_struct();
                    }
                    _ => {
                        self.parse_literal();
                        return Node::atomic("...");
                    }
                }
                return Node::atomic("...");
            }
        }

        match self.peek() {
            None => Node::atomic(""),
            Some('[') => self.parse_list(depth),
            Some('{') => self.parse_brace_container(depth),
            Some('(') => self.parse_tuple(depth),
            Some('"') => self.parse_string(),
            Some('\'') => self.parse_char(),
            Some(c) if c.is_alphabetic() || c == '_' => self.parse_identifier_or_struct(depth),
            _ => self.parse_literal(),
        }
    }

    fn parse_list(&mut self, depth: usize) -> Node {
        self.advance(); // consume '['
        let mut node = Node::container("[", "]");
        node.empty = "[]".to_string();

        self.skip_whitespace();

        let mut count = 0;
        while let Some(c) = self.peek() {
            if c == ']' {
                self.advance();
                break;
            }
            if c == ',' {
                self.advance();
                self.skip_whitespace();
                continue;
            }

            // Check max_length
            if let Some(max_len) = self.max_length {
                if count >= max_len {
                    // Skip to closing bracket and add ellipsis
                    let remaining = self.skip_to_closing_bracket(']');
                    if remaining > 0 {
                        let mut ellipsis = Node::atomic(format!("... +{}", remaining));
                        ellipsis.last = true;
                        if let Some(ref mut children) = node.children {
                            children.push(ellipsis);
                        }
                    }
                    break;
                }
            }

            let child = self.parse_value(depth + 1);
            if let Some(ref mut children) = node.children {
                children.push(child);
            }
            count += 1;
            self.skip_whitespace();
        }

        // Mark last child
        if let Some(ref mut children) = node.children {
            if let Some(last) = children.last_mut() {
                last.last = true;
            }
        }

        node
    }

    fn parse_brace_container(&mut self, depth: usize) -> Node {
        self.advance(); // consume '{'
        let mut node = Node::container("{", "}");
        node.empty = "{}".to_string();

        self.skip_whitespace();

        let mut count = 0;
        while let Some(c) = self.peek() {
            if c == '}' {
                self.advance();
                break;
            }
            if c == ',' {
                self.advance();
                self.skip_whitespace();
                continue;
            }

            // Check max_length
            if let Some(max_len) = self.max_length {
                if count >= max_len {
                    let remaining = self.skip_to_closing_bracket('}');
                    if remaining > 0 {
                        let mut ellipsis = Node::atomic(format!("... +{}", remaining));
                        ellipsis.last = true;
                        if let Some(ref mut children) = node.children {
                            children.push(ellipsis);
                        }
                    }
                    break;
                }
            }

            let child = self.parse_key_value_or_value(depth + 1);
            if let Some(ref mut children) = node.children {
                children.push(child);
            }
            count += 1;
            self.skip_whitespace();
        }

        if let Some(ref mut children) = node.children {
            if let Some(last) = children.last_mut() {
                last.last = true;
            }
        }

        node
    }

    fn parse_tuple(&mut self, depth: usize) -> Node {
        self.advance(); // consume '('
        let mut node = Node::container("(", ")");
        node.empty = "()".to_string();
        node.is_tuple = true;

        self.skip_whitespace();

        let mut count = 0;
        while let Some(c) = self.peek() {
            if c == ')' {
                self.advance();
                break;
            }
            if c == ',' {
                self.advance();
                self.skip_whitespace();
                continue;
            }

            if let Some(max_len) = self.max_length {
                if count >= max_len {
                    let remaining = self.skip_to_closing_bracket(')');
                    if remaining > 0 {
                        let mut ellipsis = Node::atomic(format!("... +{}", remaining));
                        ellipsis.last = true;
                        if let Some(ref mut children) = node.children {
                            children.push(ellipsis);
                        }
                    }
                    break;
                }
            }

            let child = self.parse_value(depth + 1);
            if let Some(ref mut children) = node.children {
                children.push(child);
            }
            count += 1;
            self.skip_whitespace();
        }

        if let Some(ref mut children) = node.children {
            if let Some(last) = children.last_mut() {
                last.last = true;
            }
        }

        node
    }

    fn parse_string(&mut self) -> Node {
        let start = self.pos;
        self.advance(); // consume opening quote

        let mut escaped = false;
        while let Some(c) = self.peek() {
            if escaped {
                escaped = false;
                self.advance();
            } else if c == '\\' {
                escaped = true;
                self.advance();
            } else if c == '"' {
                self.advance();
                break;
            } else {
                self.advance();
            }
        }

        let mut s = self.input[start..self.pos].to_string();

        // Apply max_string truncation (using char indices for UTF-8 safety)
        if let Some(max_str) = self.max_string {
            // Extract the content inside quotes
            let chars: Vec<char> = s.chars().collect();
            if chars.len() > 2 {
                // Get content between quotes (skip first and last char)
                let content_chars: Vec<char> = chars[1..chars.len() - 1].to_vec();
                if content_chars.len() > max_str {
                    let truncated: String = content_chars[..max_str].iter().collect();
                    let truncated_len = content_chars.len() - max_str;
                    s = format!("\"{}\"...+{}", truncated, truncated_len);
                }
            }
        }

        // Render strings Python-`repr` style (single quotes), matching Rich.
        // Rust's `Debug` emits double-quoted literals; convert them so pretty
        // output matches Python (`'value'`, not `"value"`).
        Node::atomic(double_to_python_quotes(&s))
    }

    fn parse_char(&mut self) -> Node {
        let start = self.pos;
        self.advance(); // consume opening quote

        let mut escaped = false;
        while let Some(c) = self.peek() {
            if escaped {
                escaped = false;
                self.advance();
            } else if c == '\\' {
                escaped = true;
                self.advance();
            } else if c == '\'' {
                self.advance();
                break;
            } else {
                self.advance();
            }
        }

        Node::atomic(&self.input[start..self.pos])
    }

    fn parse_identifier_or_struct(&mut self, depth: usize) -> Node {
        let ident = self.parse_identifier();
        self.skip_whitespace();

        match self.peek() {
            Some('(') => {
                // Could be struct with tuple fields or named fields
                self.advance(); // consume '('
                self.skip_whitespace();

                // Check if it's a unit struct (empty parens)
                if self.peek() == Some(')') {
                    self.advance();
                    return Node::atomic(format!("{}()", ident));
                }

                // Parse struct fields
                let mut node = Node::container(format!("{}(", ident), ")");
                node.empty = format!("{}()", ident);

                let mut count = 0;
                while let Some(c) = self.peek() {
                    if c == ')' {
                        self.advance();
                        break;
                    }
                    if c == ',' {
                        self.advance();
                        self.skip_whitespace();
                        continue;
                    }

                    if let Some(max_len) = self.max_length {
                        if count >= max_len {
                            let remaining = self.skip_to_closing_bracket(')');
                            if remaining > 0 {
                                let mut ellipsis = Node::atomic(format!("... +{}", remaining));
                                ellipsis.last = true;
                                if let Some(ref mut children) = node.children {
                                    children.push(ellipsis);
                                }
                            }
                            break;
                        }
                    }

                    let child = self.parse_struct_field(depth + 1);
                    if let Some(ref mut children) = node.children {
                        children.push(child);
                    }
                    count += 1;
                    self.skip_whitespace();
                }

                if let Some(ref mut children) = node.children {
                    if let Some(last) = children.last_mut() {
                        last.last = true;
                    }
                }

                node
            }
            Some('{') => {
                // Struct with named fields using braces
                self.advance(); // consume '{'
                self.skip_whitespace();

                if self.peek() == Some('}') {
                    self.advance();
                    return Node::atomic(format!("{} {{}}", ident));
                }

                let mut node = Node::container(format!("{} {{ ", ident), " }");
                node.empty = format!("{} {{}}", ident);

                let mut count = 0;
                while let Some(c) = self.peek() {
                    if c == '}' {
                        self.advance();
                        break;
                    }
                    if c == ',' {
                        self.advance();
                        self.skip_whitespace();
                        continue;
                    }

                    if let Some(max_len) = self.max_length {
                        if count >= max_len {
                            let remaining = self.skip_to_closing_bracket('}');
                            if remaining > 0 {
                                let mut ellipsis = Node::atomic(format!("... +{}", remaining));
                                ellipsis.last = true;
                                if let Some(ref mut children) = node.children {
                                    children.push(ellipsis);
                                }
                            }
                            break;
                        }
                    }

                    let child = self.parse_struct_field(depth + 1);
                    if let Some(ref mut children) = node.children {
                        children.push(child);
                    }
                    count += 1;
                    self.skip_whitespace();
                }

                if let Some(ref mut children) = node.children {
                    if let Some(last) = children.last_mut() {
                        last.last = true;
                    }
                }

                node
            }
            _ => Node::atomic(ident),
        }
    }

    fn parse_struct_field(&mut self, depth: usize) -> Node {
        self.skip_whitespace();

        // Check if this looks like "field_name: value" where field_name is a simple identifier
        let start = self.pos;

        // First, check if the field starts with a valid identifier character
        // If it starts with a quote or bracket, it's definitely a value, not a field name
        match self.peek() {
            Some(c) if c.is_alphabetic() || c == '_' => {}
            _ => return self.parse_value(depth),
        }

        // Scan the potential field name (must be valid Rust identifier)
        let mut field_end = self.pos;
        while let Some(c) = self.peek() {
            if c.is_alphanumeric() || c == '_' {
                self.advance();
                field_end = self.pos;
            } else {
                break;
            }
        }

        self.skip_whitespace();

        // Check for single colon (not ::) followed by the value
        // The colon must come immediately after the identifier (with optional whitespace)
        if self.peek() == Some(':') && !self.input[self.pos..].starts_with("::") {
            let field_name = self.input[start..field_end].to_string();
            self.advance(); // consume ':'
            self.skip_whitespace();

            let mut value_node = self.parse_value(depth);
            value_node.key_repr = field_name;
            value_node.key_separator = ": ".to_string();
            value_node
        } else {
            // Reset and parse as regular value
            self.pos = start;
            self.parse_value(depth)
        }
    }

    fn parse_key_value_or_value(&mut self, depth: usize) -> Node {
        // Similar to parse_struct_field but for map-like containers
        self.skip_whitespace();

        let start = self.pos;

        // Parse the key (could be a complex value)
        let key_node = self.parse_value(depth);

        self.skip_whitespace();

        // Check for colon or arrow separator
        if self.peek() == Some(':') {
            self.advance();
            self.skip_whitespace();

            let mut value_node = self.parse_value(depth);
            value_node.key_repr = key_node.to_string_inline();
            value_node.key_separator = ": ".to_string();
            value_node
        } else {
            // Reset and just return the key as a value
            self.pos = start;
            self.parse_value(depth)
        }
    }

    fn parse_identifier(&mut self) -> String {
        let start = self.pos;
        while let Some(c) = self.peek() {
            if c.is_alphanumeric() || c == '_' || c == ':' {
                self.advance();
            } else {
                break;
            }
        }
        self.input[start..self.pos].to_string()
    }

    fn parse_literal(&mut self) -> Node {
        let start = self.pos;
        while let Some(c) = self.peek() {
            if c == ',' || c == ']' || c == '}' || c == ')' || c.is_whitespace() {
                break;
            }
            self.advance();
        }
        Node::atomic(&self.input[start..self.pos])
    }

    fn skip_to_closing_bracket(&mut self, closing: char) -> usize {
        let mut depth = 1;
        let mut count = 0;
        let mut in_string = false;
        let mut escaped = false;

        while let Some(c) = self.peek() {
            if in_string {
                if escaped {
                    escaped = false;
                } else if c == '\\' {
                    escaped = true;
                } else if c == '"' {
                    in_string = false;
                }
                self.advance();
                continue;
            }

            if c == '"' {
                in_string = true;
                self.advance();
                continue;
            }

            match c {
                '[' | '{' | '(' => depth += 1,
                ']' | '}' | ')' => {
                    depth -= 1;
                    if depth == 0 && c == closing {
                        self.advance();
                        return count;
                    }
                }
                ',' if depth == 1 => count += 1,
                _ => {}
            }
            self.advance();
        }
        count
    }

    /// Skip over an identifier (including :: paths) and any following struct body
    fn skip_identifier_or_struct(&mut self) {
        loop {
            // Skip the identifier segment
            while let Some(c) = self.peek() {
                if c.is_alphanumeric() || c == '_' {
                    self.advance();
                } else {
                    break;
                }
            }

            // Check for :: path separator
            if self.input[self.pos..].starts_with("::") {
                self.advance(); // consume first :
                self.advance(); // consume second :
                continue; // continue to next path segment
            }
            break;
        }

        self.skip_whitespace();

        // Skip any following container
        match self.peek() {
            Some('(') => {
                self.advance();
                self.skip_to_closing_bracket(')');
            }
            Some('{') => {
                self.advance();
                self.skip_to_closing_bracket('}');
            }
            _ => {}
        }
    }
}

// ============================================================================
// Pretty struct
// ============================================================================

/// A renderable that pretty-prints Rust data structures.
///
/// Pretty takes any type that implements `Debug` and renders it with
/// proper indentation, line wrapping, and syntax highlighting.
///
/// # Example
///
/// ```
/// use rich_rs::pretty::Pretty;
/// use rich_rs::{Console, ConsoleOptions};
/// use rich_rs::Renderable;
///
/// let data = vec![1, 2, 3];
/// let pretty = Pretty::new(&data);
/// ```
pub struct Pretty {
    /// The debug representation of the object.
    debug_str: String,
    /// Highlighter to apply to the output.
    highlighter: Box<dyn Highlighter>,
    /// Number of spaces per indent level.
    indent_size: usize,
    /// Text justification method.
    /// NOTE: Not yet implemented - stored for future use.
    #[allow(dead_code)]
    justify: Option<JustifyMethod>,
    /// Overflow handling method.
    /// NOTE: Not yet implemented - stored for future use.
    #[allow(dead_code)]
    overflow: Option<OverflowMethod>,
    /// Disable word wrapping.
    /// NOTE: Not yet implemented - stored for future use.
    #[allow(dead_code)]
    no_wrap: bool,
    /// Enable indentation guides.
    indent_guides: bool,
    /// Maximum number of items in containers before abbreviating.
    max_length: Option<usize>,
    /// Maximum length of strings before truncating.
    max_string: Option<usize>,
    /// Maximum depth of nested structures.
    max_depth: Option<usize>,
    /// Expand all containers regardless of width.
    expand_all: bool,
    /// Margin to subtract from width.
    margin: usize,
    /// Insert a new line if output has multiple lines.
    insert_line: bool,
    /// Whether an explicit theme was set (if false, use Console's theme).
    explicit_theme: bool,
}

impl std::fmt::Debug for Pretty {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Pretty")
            .field("debug_str", &self.debug_str)
            .field("indent_size", &self.indent_size)
            .field("justify", &self.justify)
            .field("overflow", &self.overflow)
            .field("no_wrap", &self.no_wrap)
            .field("indent_guides", &self.indent_guides)
            .field("max_length", &self.max_length)
            .field("max_string", &self.max_string)
            .field("max_depth", &self.max_depth)
            .field("expand_all", &self.expand_all)
            .field("margin", &self.margin)
            .field("insert_line", &self.insert_line)
            .field("explicit_theme", &self.explicit_theme)
            .finish_non_exhaustive()
    }
}

impl Pretty {
    /// Create a new Pretty renderable from a Debug value.
    ///
    /// # Arguments
    ///
    /// * `value` - Any value that implements `Debug`
    ///
    /// # Example
    ///
    /// ```
    /// use rich_rs::pretty::Pretty;
    ///
    /// let data = vec!["hello", "world"];
    /// let pretty = Pretty::new(&data);
    /// ```
    pub fn new<T: Debug>(value: &T) -> Self {
        Pretty {
            debug_str: format!("{:?}", value),
            highlighter: Box::new(repr_highlighter()),
            indent_size: 4,
            justify: None,
            overflow: None,
            no_wrap: false,
            indent_guides: false,
            max_length: None,
            max_string: None,
            max_depth: None,
            expand_all: false,
            margin: 0,
            insert_line: false,
            explicit_theme: false,
        }
    }

    /// Create a Pretty renderable from a pre-formatted debug string.
    ///
    /// This is useful when you have already formatted the debug output.
    pub fn from_str(debug_str: impl Into<String>) -> Self {
        Pretty {
            debug_str: debug_str.into(),
            highlighter: Box::new(repr_highlighter()),
            indent_size: 4,
            justify: None,
            overflow: None,
            no_wrap: false,
            indent_guides: false,
            max_length: None,
            max_string: None,
            max_depth: None,
            expand_all: false,
            margin: 0,
            insert_line: false,
            explicit_theme: false,
        }
    }

    /// Set a custom highlighter.
    pub fn with_highlighter(mut self, highlighter: impl Highlighter + 'static) -> Self {
        self.highlighter = Box::new(highlighter);
        self
    }

    /// Set the number of spaces per indent level.
    pub fn with_indent_size(mut self, size: usize) -> Self {
        self.indent_size = size;
        self
    }

    /// Set the text justification method.
    ///
    /// NOTE: Not yet implemented - option is stored for future use.
    pub fn with_justify(mut self, justify: JustifyMethod) -> Self {
        self.justify = Some(justify);
        self
    }

    /// Set the overflow handling method.
    ///
    /// NOTE: Not yet implemented - option is stored for future use.
    pub fn with_overflow(mut self, overflow: OverflowMethod) -> Self {
        self.overflow = Some(overflow);
        self
    }

    /// Set whether to disable word wrapping.
    ///
    /// NOTE: Not yet implemented - option is stored for future use.
    pub fn with_no_wrap(mut self, no_wrap: bool) -> Self {
        self.no_wrap = no_wrap;
        self
    }

    /// Enable or disable indentation guides.
    pub fn with_indent_guides(mut self, guides: bool) -> Self {
        self.indent_guides = guides;
        self
    }

    /// Set the theme by name.
    ///
    /// Available themes: "default", "dracula", "gruvbox-dark", "nord"
    ///
    /// This overrides the Console's theme for this renderable.
    ///
    /// # Example
    ///
    /// ```
    /// use rich_rs::pretty::Pretty;
    ///
    /// let data = vec![1, 2, 3];
    /// let pretty = Pretty::new(&data).with_theme("dracula");
    /// ```
    pub fn with_theme(mut self, name: &str) -> Self {
        if let Some(theme) = Theme::from_name(name) {
            self.highlighter = Box::new(repr_highlighter_with_theme(theme));
            self.explicit_theme = true;
        }
        self
    }

    /// Set a custom theme.
    ///
    /// This overrides the Console's theme for this renderable.
    ///
    /// # Example
    ///
    /// ```
    /// use rich_rs::pretty::Pretty;
    /// use rich_rs::Theme;
    ///
    /// let theme = Theme::from_name("dracula").unwrap();
    /// let data = vec![1, 2, 3];
    /// let pretty = Pretty::new(&data).with_custom_theme(theme);
    /// ```
    pub fn with_custom_theme(mut self, theme: Theme) -> Self {
        self.highlighter = Box::new(repr_highlighter_with_theme(theme));
        self.explicit_theme = true;
        self
    }

    /// Set the maximum number of items in containers before abbreviating.
    pub fn with_max_length(mut self, max_length: Option<usize>) -> Self {
        self.max_length = max_length;
        self
    }

    /// Set the maximum length of strings before truncating.
    pub fn with_max_string(mut self, max_string: Option<usize>) -> Self {
        self.max_string = max_string;
        self
    }

    /// Set the maximum depth of nested structures.
    pub fn with_max_depth(mut self, max_depth: Option<usize>) -> Self {
        self.max_depth = max_depth;
        self
    }

    /// Set whether to expand all containers regardless of width.
    pub fn with_expand_all(mut self, expand_all: bool) -> Self {
        self.expand_all = expand_all;
        self
    }

    /// Set the margin to subtract from available width.
    pub fn with_margin(mut self, margin: usize) -> Self {
        self.margin = margin;
        self
    }

    /// Set whether to insert a new line if output has multiple lines.
    pub fn with_insert_line(mut self, insert_line: bool) -> Self {
        self.insert_line = insert_line;
        self
    }

    /// Get the raw debug string.
    pub fn debug_str(&self) -> &str {
        &self.debug_str
    }
}

impl Renderable for Pretty {
    fn render(&self, console: &Console<Stdout>, options: &ConsoleOptions) -> Segments {
        let max_width = options.max_width.saturating_sub(self.margin);

        let pretty_str = pretty_repr(
            &self.debug_str,
            max_width,
            self.indent_size,
            self.max_length,
            self.max_string,
            self.max_depth,
            self.expand_all,
        );

        if pretty_str.is_empty() {
            let dim_text = Text::styled("<empty repr>", crate::style::Style::new().with_dim(true));
            return dim_text.render(console, options);
        }

        // Apply indent guides if enabled
        let processed_str: String = if self.indent_guides {
            let mut result_lines = Vec::new();
            for line in pretty_str.lines() {
                let leading_spaces: usize = line.chars().take_while(|c| *c == ' ').count();
                let num_guides = leading_spaces / self.indent_size;

                if num_guides > 0 {
                    // Build guide prefix: "│   │   " etc.
                    let mut guide_prefix = String::new();
                    for _ in 0..num_guides {
                        guide_prefix.push('│');
                        for _ in 0..(self.indent_size - 1) {
                            guide_prefix.push(' ');
                        }
                    }
                    // Append the rest of the line (after leading spaces)
                    let remaining = &line[leading_spaces..];
                    result_lines.push(format!("{}{}", guide_prefix, remaining));
                } else {
                    result_lines.push(line.to_string());
                }
            }
            result_lines.join("\n")
        } else {
            pretty_str.clone()
        };
        let has_newlines = processed_str.contains('\n');

        let mut text = Text::plain(&processed_str);

        // Apply highlighting
        // If no explicit theme was set, use the Console's theme
        if !self.explicit_theme && options.theme_name != "default" {
            // Create a highlighter with the Console's theme
            if let Some(theme) = Theme::from_name(&options.theme_name) {
                let console_highlighter = repr_highlighter_with_theme(theme);
                console_highlighter.highlight(&mut text);
            } else {
                self.highlighter.highlight(&mut text);
            }
        } else {
            self.highlighter.highlight(&mut text);
        }

        // Apply dim + green style to indent guide characters
        if self.indent_guides {
            use crate::color::SimpleColor;
            let guide_style = crate::style::Style::new()
                .with_color(SimpleColor::Standard(2)) // green
                .with_dim(true);

            // Find all │ characters and style them
            let plain = text.plain_text().to_string();
            for (idx, ch) in plain.char_indices() {
                if ch == '│' {
                    // Style the guide character
                    let char_idx = plain[..idx].chars().count();
                    text.stylize(char_idx, char_idx + 1, guide_style);
                }
            }
        }

        let mut result = Segments::new();

        // Insert line if requested and output has multiple lines
        if self.insert_line && has_newlines {
            result.push(crate::segment::Segment::line());
        }

        // Render the text
        let text_segments = text.render(console, options);
        for seg in text_segments {
            result.push(seg);
        }

        result
    }

    fn measure(&self, _console: &Console<Stdout>, options: &ConsoleOptions) -> Measurement {
        // Subtract margin from available width, matching render behavior
        let max_width = options.max_width.saturating_sub(self.margin);

        let pretty_str = pretty_repr(
            &self.debug_str,
            max_width,
            self.indent_size,
            self.max_length,
            self.max_string,
            self.max_depth,
            self.expand_all,
        );

        let text_width = if pretty_str.is_empty() {
            0
        } else {
            pretty_str.lines().map(cell_len).max().unwrap_or(0)
        };

        Measurement::new(text_width, text_width)
    }
}

/// Convert a Rust `Debug` string literal (`"..."`) to Python `repr` style.
///
/// Rich's `Pretty` renders strings with single quotes (Python `repr`), e.g.
/// `'value'`. Rust's `Debug` emits double-quoted literals; this normalizes them
/// so pretty output matches Python. Follows CPython's quote selection: prefer
/// single quotes, but use double quotes when the string contains a single quote
/// and no double quote. The chosen quote is escaped inside the content.
fn double_to_python_quotes(literal: &str) -> String {
    let bytes = literal.as_bytes();
    if bytes.len() < 2 || bytes[0] != b'"' || bytes[bytes.len() - 1] != b'"' {
        return literal.to_string();
    }
    let inner = &literal[1..literal.len() - 1];

    // Decode the body, unescaping `\"` to a bare `"`. Other escapes (`\n`, `\t`,
    // `\\`, `\u{..}`) are shared between Rust and Python and kept verbatim.
    let mut raw = String::with_capacity(inner.len());
    let mut has_single = false;
    let mut has_double = false;
    let mut chars = inner.chars().peekable();
    while let Some(c) = chars.next() {
        if c == '\\' {
            match chars.next() {
                Some('"') => {
                    raw.push('"');
                    has_double = true;
                }
                Some(n) => {
                    raw.push('\\');
                    raw.push(n);
                }
                None => raw.push('\\'),
            }
        } else {
            if c == '\'' {
                has_single = true;
            } else if c == '"' {
                has_double = true;
            }
            raw.push(c);
        }
    }

    let quote = if has_single && !has_double { '"' } else { '\'' };
    let mut out = String::with_capacity(raw.len() + 2);
    out.push(quote);
    for c in raw.chars() {
        if c == quote {
            out.push('\\');
        }
        out.push(c);
    }
    out.push(quote);
    out
}

// ============================================================================
// Public API functions
// ============================================================================

/// Prettify a debug representation string by expanding onto new lines.
///
/// # Arguments
///
/// * `debug_str` - The debug string to format
/// * `max_width` - Maximum width of output lines
/// * `indent_size` - Number of spaces per indent level
/// * `max_length` - Maximum number of items in containers before abbreviating
/// * `max_string` - Maximum length of strings before truncating
/// * `max_depth` - Maximum depth of nested structures
/// * `expand_all` - Expand all containers regardless of width
///
/// # Returns
///
/// A formatted string with proper indentation.
///
/// # Example
///
/// ```
/// use rich_rs::pretty::pretty_repr;
///
/// let data = vec![1, 2, 3, 4, 5];
/// let debug_str = format!("{:?}", data);
/// let formatted = pretty_repr(&debug_str, 40, 4, None, None, None, false);
/// ```
pub fn pretty_repr(
    debug_str: &str,
    max_width: usize,
    indent_size: usize,
    max_length: Option<usize>,
    max_string: Option<usize>,
    max_depth: Option<usize>,
    expand_all: bool,
) -> String {
    let node = parse_debug_output(debug_str, max_length, max_string, max_depth);
    node.render(max_width, indent_size, expand_all)
}

/// Pretty-print a value to the console.
///
/// # Arguments
///
/// * `value` - Any value that implements `Debug`
/// * `console` - Optional console instance (uses default if None)
/// * `indent_guides` - Enable indentation guides
/// * `max_length` - Maximum number of items in containers
/// * `max_string` - Maximum length of strings
/// * `max_depth` - Maximum depth of nested structures
/// * `expand_all` - Expand all containers
///
/// # Example
///
/// ```no_run
/// use rich_rs::pretty::pprint;
/// use rich_rs::Console;
///
/// let data = vec![1, 2, 3];
/// let mut console = Console::new();
/// pprint(&data, Some(&mut console), true, None, None, None, false);
/// ```
pub fn pprint<T: Debug>(
    value: &T,
    console: Option<&mut Console>,
    indent_guides: bool,
    max_length: Option<usize>,
    max_string: Option<usize>,
    max_depth: Option<usize>,
    expand_all: bool,
) {
    let pretty = Pretty::new(value)
        .with_indent_guides(indent_guides)
        .with_max_length(max_length)
        .with_max_string(max_string)
        .with_max_depth(max_depth)
        .with_expand_all(expand_all)
        .with_overflow(OverflowMethod::Ignore);

    if let Some(console) = console {
        let _ = console.print(&pretty, None, None, None, false, "\n");
    } else {
        let mut default_console = Console::new();
        let _ = default_console.print(&pretty, None, None, None, false, "\n");
    }
}

// ============================================================================
// Tests
// ============================================================================

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

    // ==================== Node tests ====================

    #[test]
    fn test_node_atomic() {
        let node = Node::atomic("42");
        assert_eq!(node.to_string_inline(), "42");
    }

    #[test]
    fn test_node_container_empty() {
        let mut node = Node::container("[", "]");
        node.empty = "[]".to_string();
        assert_eq!(node.to_string_inline(), "[]");
    }

    #[test]
    fn test_node_container_with_children() {
        let mut node = Node::container("[", "]");
        if let Some(ref mut children) = node.children {
            children.push(Node::atomic("1"));
            children.push(Node::atomic("2"));
            children.push(Node::atomic("3"));
        }
        assert_eq!(node.to_string_inline(), "[1, 2, 3]");
    }

    #[test]
    fn test_node_tuple_single_element() {
        let mut node = Node::container("(", ")");
        node.is_tuple = true;
        if let Some(ref mut children) = node.children {
            children.push(Node::atomic("1"));
        }
        assert_eq!(node.to_string_inline(), "(1,)");
    }

    #[test]
    fn test_node_with_key() {
        let mut node = Node::atomic("42");
        node.key_repr = "answer".to_string();
        assert_eq!(node.to_string_inline(), "answer: 42");
    }

    // ==================== Parser tests ====================

    #[test]
    fn test_parse_simple_list() {
        let node = parse_debug_output("[1, 2, 3]", None, None, None);
        assert_eq!(node.to_string_inline(), "[1, 2, 3]");
    }

    #[test]
    fn test_parse_empty_list() {
        let node = parse_debug_output("[]", None, None, None);
        assert_eq!(node.to_string_inline(), "[]");
    }

    #[test]
    fn test_parse_nested_list() {
        let node = parse_debug_output("[[1, 2], [3, 4]]", None, None, None);
        assert_eq!(node.to_string_inline(), "[[1, 2], [3, 4]]");
    }

    #[test]
    fn test_parse_tuple() {
        let node = parse_debug_output("(1, 2, 3)", None, None, None);
        assert_eq!(node.to_string_inline(), "(1, 2, 3)");
    }

    #[test]
    fn test_parse_single_element_tuple() {
        let node = parse_debug_output("(1,)", None, None, None);
        assert_eq!(node.to_string_inline(), "(1,)");
    }

    #[test]
    fn test_parse_struct() {
        let node = parse_debug_output("Point { x: 1, y: 2 }", None, None, None);
        let rendered = node.to_string_inline();
        assert!(rendered.contains("Point"));
        assert!(rendered.contains("x"));
        assert!(rendered.contains("y"));
    }

    #[test]
    fn test_parse_string() {
        // Strings render Python-repr style (single quotes), matching Rich.
        let node = parse_debug_output("\"hello\"", None, None, None);
        assert_eq!(node.to_string_inline(), "'hello'");
    }

    #[test]
    fn test_parse_escaped_string() {
        let node = parse_debug_output("\"hello\\nworld\"", None, None, None);
        assert_eq!(node.to_string_inline(), "'hello\\nworld'");
    }

    #[test]
    fn test_string_quote_selection() {
        // Contains a single quote, no double quote → use double quotes.
        let node = parse_debug_output("\"it's\"", None, None, None);
        assert_eq!(node.to_string_inline(), "\"it's\"");
        // Contains a double quote (escaped in Rust debug) → single quotes, with
        // the double quote left bare.
        let node = parse_debug_output("\"say \\\"hi\\\"\"", None, None, None);
        assert_eq!(node.to_string_inline(), "'say \"hi\"'");
    }

    #[test]
    fn test_parse_max_length() {
        let node = parse_debug_output("[1, 2, 3, 4, 5]", Some(3), None, None);
        let rendered = node.to_string_inline();
        assert!(rendered.contains("..."));
    }

    #[test]
    fn test_parse_max_depth() {
        let node = parse_debug_output("[[1, 2], [3, 4]]", None, None, Some(1));
        let rendered = node.to_string_inline();
        assert!(rendered.contains("..."));
    }

    // ==================== Pretty struct tests ====================

    #[test]
    fn test_pretty_new() {
        let data = vec![1, 2, 3];
        let pretty = Pretty::new(&data);
        assert!(pretty.debug_str().contains("[1, 2, 3]"));
    }

    #[test]
    fn test_pretty_with_indent_size() {
        let data = vec![1, 2, 3];
        let pretty = Pretty::new(&data).with_indent_size(2);
        assert_eq!(pretty.indent_size, 2);
    }

    #[test]
    fn test_pretty_with_max_length() {
        let data = vec![1, 2, 3, 4, 5];
        let pretty = Pretty::new(&data).with_max_length(Some(3));
        assert_eq!(pretty.max_length, Some(3));
    }

    #[test]
    fn test_pretty_with_expand_all() {
        let data = vec![1, 2, 3];
        let pretty = Pretty::new(&data).with_expand_all(true);
        assert!(pretty.expand_all);
    }

    // ==================== pretty_repr tests ====================

    #[test]
    fn test_pretty_repr_fits_single_line() {
        let result = pretty_repr("[1, 2, 3]", 80, 4, None, None, None, false);
        assert_eq!(result, "[1, 2, 3]");
    }

    #[test]
    fn test_pretty_repr_expands_when_too_wide() {
        let result = pretty_repr("[1, 2, 3, 4, 5]", 10, 4, None, None, None, false);
        assert!(result.contains('\n'));
    }

    #[test]
    fn test_pretty_repr_expand_all() {
        let result = pretty_repr("[1, 2, 3]", 80, 4, None, None, None, true);
        assert!(result.contains('\n'));
    }

    #[test]
    fn test_pretty_repr_nested() {
        let result = pretty_repr("[[1, 2], [3, 4]]", 15, 4, None, None, None, false);
        assert!(result.contains('\n'));
    }

    // ==================== Renderable tests ====================

    #[test]
    fn test_pretty_is_send_sync() {
        fn assert_send<T: Send>() {}
        fn assert_sync<T: Sync>() {}
        assert_send::<Pretty>();
        assert_sync::<Pretty>();
    }

    #[test]
    fn test_pretty_render() {
        let data = vec![1, 2, 3];
        let pretty = Pretty::new(&data);
        let console = Console::with_options(ConsoleOptions {
            max_width: 80,
            ..Default::default()
        });
        let options = console.options().clone();

        let segments = pretty.render(&console, &options);
        assert!(!segments.is_empty());
    }

    #[test]
    fn test_pretty_measure() {
        let data = vec![1, 2, 3];
        let pretty = Pretty::new(&data);
        let console = Console::new();
        let options = ConsoleOptions::default();

        let measurement = pretty.measure(&console, &options);
        assert!(measurement.minimum > 0);
        assert!(measurement.maximum >= measurement.minimum);
    }

    // ==================== Debug trait tests ====================

    #[test]
    fn test_pretty_debug() {
        let data = vec![1, 2, 3];
        let pretty = Pretty::new(&data);
        let debug_str = format!("{:?}", pretty);
        assert!(debug_str.contains("Pretty"));
    }

    // ==================== Complex data structure tests ====================

    #[test]
    fn test_pretty_hashmap() {
        use std::collections::HashMap;
        let mut map = HashMap::new();
        map.insert("a", 1);
        map.insert("b", 2);
        let pretty = Pretty::new(&map);
        assert!(pretty.debug_str().contains("a"));
        assert!(pretty.debug_str().contains("b"));
    }

    #[test]
    fn test_pretty_option() {
        let some_value: Option<i32> = Some(42);
        let none_value: Option<i32> = None;

        let pretty_some = Pretty::new(&some_value);
        let pretty_none = Pretty::new(&none_value);

        assert!(pretty_some.debug_str().contains("Some"));
        assert!(pretty_some.debug_str().contains("42"));
        assert!(pretty_none.debug_str().contains("None"));
    }

    #[test]
    fn test_pretty_result() {
        let ok_value: Result<i32, &str> = Ok(42);
        let err_value: Result<i32, &str> = Err("error");

        let pretty_ok = Pretty::new(&ok_value);
        let pretty_err = Pretty::new(&err_value);

        assert!(pretty_ok.debug_str().contains("Ok"));
        assert!(pretty_err.debug_str().contains("Err"));
    }

    #[derive(Debug)]
    #[allow(dead_code)]
    struct TestStruct {
        name: String,
        value: i32,
        items: Vec<i32>,
    }

    #[test]
    fn test_pretty_custom_struct() {
        let s = TestStruct {
            name: "test".to_string(),
            value: 42,
            items: vec![1, 2, 3],
        };
        let pretty = Pretty::new(&s);
        assert!(pretty.debug_str().contains("TestStruct"));
        assert!(pretty.debug_str().contains("name"));
        assert!(pretty.debug_str().contains("value"));
        assert!(pretty.debug_str().contains("items"));
    }

    #[test]
    fn test_pretty_deeply_nested() {
        let data = vec![vec![vec![1, 2], vec![3, 4]], vec![vec![5, 6], vec![7, 8]]];
        let result = pretty_repr(&format!("{:?}", data), 20, 4, None, None, None, false);
        // Should expand due to width constraint
        assert!(result.contains('\n'));
    }
}