cmsis-pdsc-parser 0.1.1

A CMSIS-Pack PDSC file parser for Rust
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
//! Types representing  [PDSC Debug Access](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/pdsc_family_pg.html#block_DebugSyntaxRules)

use serde::{Deserialize, Serialize};
use std::fmt;

use crate::debug_access::Statement::Comment;

/// Parse error for debug access XML elements.
#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
pub enum DebugAccessParseError {
    /// A required attribute or structural element was absent.
    MissingAttribute(String),
    /// An unrecognised statement or function name was encountered.
    UnknownStatement(String),
}

impl Default for DebugAccessParseError {
    fn default() -> Self {
        Self::UnknownStatement(String::default())
    }
}

impl From<DebugAccessParseError> for crate::Error {
    fn from(value: DebugAccessParseError) -> Self {
        Self::Debug(value)
    }
}

impl std::fmt::Display for DebugAccessParseError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::MissingAttribute(msg) => write!(f, "missing attribute: {msg}"),
            Self::UnknownStatement(name) => write!(f, "unknown statement: {name}"),
        }
    }
}

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

#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
/// Types representing the valid [PDSC Debug Access](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/pdsc_family_pg.html#block_DebugSyntaxRules)
/// statements.
pub enum Statement {
    /// A sole expression, e.g. `expression;`
    Expression(Expression),

    /// A variable assignment, e.g. `variable = expression;`
    Assignment(Assignment),

    /// A variable definition, e.g. `__var variable = 0;`
    Definition(Assignment),

    /// Comment, e.g. `// This is a comment`
    Comment(String),
}

impl Default for Statement {
    fn default() -> Self {
        Comment(String::default())
    }
}

impl TryFrom<String> for Statement {
    type Error = crate::Error;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        // If present trim any whitespace
        let input = value.trim().to_string();

        // Check if it is a comment
        if input.starts_with("//") {
            return Ok(Self::Comment(input));
        }

        // If present remove the semicolon
        let input = input.strip_suffix(";").unwrap_or(&input).to_string();

        // Check if this is an assignment or declaration
        let split: Option<(&str, &str)> = input.split_once('=');
        let result: Self = match split {
            None => {
                // No '=', must be a standalone expression
                let expression: Expression = input.try_into()?;
                Self::Expression(expression)
            }
            Some((variable, expression)) => {
                let variable = variable.trim();
                let expression = expression.trim();
                variable.strip_prefix("__var").map_or_else(
                    || {
                        let expression: Expression = expression.try_into()?;
                        Ok::<Self, Self::Error>(Self::Assignment(Assignment {
                            variable: variable.to_string(),
                            expression,
                        }))
                    },
                    |variable| {
                        let variable = variable.trim();
                        let expression: Expression = expression.try_into()?;
                        Ok::<Self, Self::Error>(Self::Definition(Assignment {
                            variable: variable.to_string(),
                            expression,
                        }))
                    },
                )?
            }
        };

        Ok(result)
    }
}

#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize, Default)]
/// A variable assignment, e.g. `variable = expression;`
pub struct Assignment {
    pub variable: String,
    pub expression: Expression,
}

#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
/// A variable representing a [PDSC Expression](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/pdsc_family_pg.html#block_ExpressionType)
pub enum Expression {
    /// An arithmetic, bitwise, or comparison expression, e.g. `2 + 2`, `reg & 0xFF`, `x == 1`, or a bare variable reference
    Normal(String),

    /// An expression representing an inline if statement, e.g. `(x < y) ? a : b`
    ///
    /// # Note
    ///
    /// The parser currently does not handle nested conditionals, e.g. `(x < y) ? ( (a < b) ? c : d ) : e`
    /// I hope noone has written a PDSC file which does this, if so this can be implemented.
    Conditional(Box<Conditional>),

    /// A call to a predefined [PDSC debug access function](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/debug_description.html#DebugFunctions),
    /// e.g. `Read32(0x40000000)` or `Sequence("ResetAndHalt")`
    FunctionCall(Box<DebugFunction>),
}

impl Default for Expression {
    fn default() -> Self {
        Self::Normal(String::default())
    }
}

impl TryFrom<String> for Expression {
    type Error = crate::Error;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        Ok(Self::try_from(value.as_str())?)
    }
}

impl TryFrom<&str> for Expression {
    type Error = DebugAccessParseError;

    fn try_from(value: &str) -> Result<Self, Self::Error> {
        if let Ok(condition) = Conditional::try_from(value) {
            return Ok(Self::Conditional(Box::new(condition)));
        }

        if let Some((name, args_str)) = detect_function_call(value) {
            let args: Vec<Self> = split_args(args_str)
                .into_iter()
                .map(Self::try_from)
                .collect::<Result<Vec<_>, _>>()?;
            let func = DebugFunction::try_from((name.to_string(), args))?;

            return Ok(Self::FunctionCall(Box::new(func)));
        }

        Ok(Self::Normal(value.to_string()))
    }
}

impl fmt::Display for Expression {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Normal(value) => f.write_str(value),
            Self::Conditional(condition) => condition.fmt(f),
            Self::FunctionCall(function) => function.fmt(f),
        }
    }
}

#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize, Default)]
/// An expression representing an inline if statement, e.g. `(x < y) ? a : b`
///
/// # Note
///
/// The parser currently does not handle nested conditionals, e.g. `(x < y) ? ( (a < b) ? c : d ) : e`
/// I hope noone has written a PDSC file which does this, if so this can be implemented.
pub struct Conditional {
    /// The conditional part, `(x < y) ? a : b -> x < y`
    pub condition: Expression,
    /// The value when the conditional evaluates to true, `(x < y) ? a : b -> a`
    pub true_value: Expression,
    /// The value when the conditional evaluates to false, `(x < y) ? a : b -> b`
    pub false_value: Expression,
}

impl TryFrom<String> for Conditional {
    type Error = DebugAccessParseError;

    /// Performs the conversion between [String] and [Conditional]
    ///
    /// # Note
    ///
    /// The parser currently does not handle nested conditionals, e.g. `(x < y) ? ( (a < b) ? c : d ) : e`
    /// I hope noone has written a PDSC file which does this, if so this can be implemented.
    /// This will return a valid type with a garbage value.
    fn try_from(value: String) -> Result<Self, Self::Error> {
        Self::try_from(value.as_str())
    }
}

impl TryFrom<&str> for Conditional {
    type Error = DebugAccessParseError;

    /// Performs the conversion between [&str] and [Conditional]
    ///
    /// # Note
    ///
    /// The parser currently does not handle nested conditionals, e.g. `(x < y) ? ( (a < b) ? c : d ) : e`
    /// I hope noone has written a PDSC file which does this, if so this can be implemented.
    /// This will return a valid type with a garbage value.
    fn try_from(value: &str) -> Result<Self, Self::Error> {
        // Create the sates for the state machine
        #[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize, Default)]
        enum WalkerProgress {
            #[default]
            None,
            ParenOpen,
            ParenClose,
            Question,
            Colon,
        }

        // Variables to store the result
        let mut condition_str: String = String::new();
        let mut truthy_str: String = String::new();
        let mut falsey_str: String = String::new();

        // Use a state machine to walk the string
        let mut progress = WalkerProgress::None;
        for c in value.chars() {
            match progress {
                WalkerProgress::None => {
                    if c == '(' {
                        progress = WalkerProgress::ParenOpen;
                    }
                }
                WalkerProgress::ParenOpen => {
                    if c == ')' {
                        progress = WalkerProgress::ParenClose;
                    } else {
                        condition_str.push(c);
                    }
                }
                WalkerProgress::ParenClose => {
                    if c == '?' {
                        progress = WalkerProgress::Question;
                    }
                }
                WalkerProgress::Question => {
                    if c == ':' {
                        progress = WalkerProgress::Colon;
                    } else {
                        truthy_str.push(c);
                    }
                }
                WalkerProgress::Colon => {
                    if c == ';' {
                        break;
                    }
                    falsey_str.push(c);
                }
            }
        }

        let walk_ok = progress == WalkerProgress::Colon && !falsey_str.is_empty();

        if walk_ok {
            let condition: Expression = condition_str.trim().try_into()?;
            let true_value: Expression = truthy_str.trim().try_into()?;
            let false_value: Expression = falsey_str.trim().try_into()?;

            Ok(Self {
                condition,
                true_value,
                false_value,
            })
        } else {
            Err(DebugAccessParseError::MissingAttribute(
                "conditional syntax: expected '(condition) ? truthy : falsy'".to_string(),
            ))
        }
    }
}

impl fmt::Display for Conditional {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "({}) ? {} : {}",
            self.condition, self.true_value, self.false_value
        )
    }
}

#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
/// A predefined [PDSC debug access function](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/debug_description.html#DebugFunctions).
///
/// Unknown function names are a parse error — if the spec adds new functions they will surface as panics.
pub enum DebugFunction {
    // Memory access
    /// Read 8-bit value from target memory
    Read8 { addr: Expression },
    /// Read 16-bit value from target memory
    Read16 { addr: Expression },
    /// Read 32-bit value from target memory
    Read32 { addr: Expression },
    /// Read 64-bit value from target memory
    Read64 { addr: Expression },
    /// Write 8-bit value to target memory
    Write8 { addr: Expression, val: Expression },
    /// Write 16-bit value to target memory
    Write16 { addr: Expression, val: Expression },
    /// Write 32-bit value to target memory
    Write32 { addr: Expression, val: Expression },
    /// Write 64-bit value to target memory
    Write64 { addr: Expression, val: Expression },

    // Register access
    /// Read access port register
    ReadAP { addr: Expression },
    /// Write access port register
    WriteAP { addr: Expression, val: Expression },
    /// Read debug port register
    ReadDP { addr: Expression },
    /// Write debug port register
    WriteDP { addr: Expression, val: Expression },
    /// APv2/ADIv6 access port read
    ReadAccessAP { addr: Expression },
    /// APv2/ADIv6 access port write
    WriteAccessAP { addr: Expression, val: Expression },

    // Debug port / probe
    /// Wait for a specific delay (microseconds)
    DapDelay { delay: Expression },
    /// Write abort request to CoreSight register
    DapWriteAbort { value: Expression },
    /// Monitor and control debugger I/O pins
    DapSwjPins {
        pinout: Expression,
        pinselect: Expression,
        pinwait: Expression,
    },
    /// Set JTAG/SWD clock frequency (Hz)
    DapSwjClock { val: Expression },
    /// Generate SWJ sequences
    DapSwjSequence { cnt: Expression, val: Expression },
    /// Generate JTAG sequences
    DapJtagSequence {
        cnt: Expression,
        tms: Expression,
        tdi: Expression,
    },

    // Sequence control
    /// Execute a debug access sequence by name
    Sequence { name: Expression },
    /// Prompt user for confirmation or selection
    Query {
        query_type: Expression,
        message: Expression,
        default: Expression,
    },
    /// Query an input value from the user
    QueryValue {
        message: Expression,
        default: Expression,
    },
    /// Output a formatted message to the debug log (variadic: `msg_type`, `format`, then optional extra args)
    Message {
        msg_type: Expression,
        format: Expression,
        args: Vec<Expression>,
    },

    // Flash operations
    /// Write flash buffer contents into target memory
    FlashWriteBuffer {
        addr: Expression,
        offs: Expression,
        len: Expression,
        mode: Expression,
    },
    /// Select FLM flash algorithm for operations
    FlashLoadAlgorithm {
        algo_path: Expression,
        ram_start: Expression,
        ram_size: Expression,
    },

    // Buffer management
    /// Fill buffer with a value pattern
    BufferSet {
        buff_id: Expression,
        buff_offset: Expression,
        count: Expression,
        size: Expression,
        value: Expression,
    },
    /// Retrieve an item from a buffer
    BufferGet {
        buff_id: Expression,
        buff_offset: Expression,
        size: Expression,
    },
    /// Get current buffer size in bytes
    BufferSize { buff_id: Expression },
    /// Read target data into a buffer
    BufferRead {
        buff_id: Expression,
        buff_offset: Expression,
        addr: Expression,
        length: Expression,
        mode: Expression,
    },
    /// Transfer buffer data to target
    BufferWrite {
        buff_id: Expression,
        buff_offset: Expression,
        addr: Expression,
        length: Expression,
        mode: Expression,
    },

    // External tool integration
    /// Stream data from an external source into a buffer
    BufferStreamIn {
        buff_id: Expression,
        buff_offset: Expression,
        length: Expression,
        path: Expression,
        mode: Expression,
        timeout: Expression,
    },
    /// Transfer buffer data to an external sink
    BufferStreamOut {
        buff_id: Expression,
        buff_offset: Expression,
        length: Expression,
        dest_path: Expression,
        dest_mode: Expression,
        timeout: Expression,
    },
    /// Execute an external application
    RunApplication {
        app_path: Expression,
        arguments: Expression,
        work_directory: Expression,
        timeout: Expression,
    },
    /// Run a Python script on the host system
    RunPythonScript {
        script_path: Expression,
        arguments: Expression,
        work_directory: Expression,
        timeout: Expression,
    },
    /// Check if a path exists on the host filesystem
    FilePathExists {
        path: Expression,
        timeout: Expression,
    },
    /// Load DWARF debug information
    LoadDebugInfo { file: Expression },
}

fn fmt_debug_function(f: &mut fmt::Formatter<'_>, name: &str, args: &[&Expression]) -> fmt::Result {
    write!(f, "{name}(")?;
    for (index, arg) in args.iter().enumerate() {
        if index != 0 {
            f.write_str(", ")?;
        }
        fmt::Display::fmt(*arg, f)?;
    }
    f.write_str(")")
}

impl fmt::Display for DebugFunction {
    #[allow(clippy::too_many_lines)]
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Read8 { addr } => fmt_debug_function(f, "Read8", &[addr]),
            Self::Read16 { addr } => fmt_debug_function(f, "Read16", &[addr]),
            Self::Read32 { addr } => fmt_debug_function(f, "Read32", &[addr]),
            Self::Read64 { addr } => fmt_debug_function(f, "Read64", &[addr]),
            Self::Write8 { addr, val } => fmt_debug_function(f, "Write8", &[addr, val]),
            Self::Write16 { addr, val } => fmt_debug_function(f, "Write16", &[addr, val]),
            Self::Write32 { addr, val } => fmt_debug_function(f, "Write32", &[addr, val]),
            Self::Write64 { addr, val } => fmt_debug_function(f, "Write64", &[addr, val]),
            Self::ReadAP { addr } => fmt_debug_function(f, "ReadAP", &[addr]),
            Self::WriteAP { addr, val } => fmt_debug_function(f, "WriteAP", &[addr, val]),
            Self::ReadDP { addr } => fmt_debug_function(f, "ReadDP", &[addr]),
            Self::WriteDP { addr, val } => fmt_debug_function(f, "WriteDP", &[addr, val]),
            Self::ReadAccessAP { addr } => fmt_debug_function(f, "ReadAccessAP", &[addr]),
            Self::WriteAccessAP { addr, val } => {
                fmt_debug_function(f, "WriteAccessAP", &[addr, val])
            }
            Self::DapDelay { delay } => fmt_debug_function(f, "DAP_Delay", &[delay]),
            Self::DapWriteAbort { value } => fmt_debug_function(f, "DAP_WriteABORT", &[value]),
            Self::DapSwjPins {
                pinout,
                pinselect,
                pinwait,
            } => fmt_debug_function(f, "DAP_SWJ_Pins", &[pinout, pinselect, pinwait]),
            Self::DapSwjClock { val } => fmt_debug_function(f, "DAP_SWJ_Clock", &[val]),
            Self::DapSwjSequence { cnt, val } => {
                fmt_debug_function(f, "DAP_SWJ_Sequence", &[cnt, val])
            }
            Self::DapJtagSequence { cnt, tms, tdi } => {
                fmt_debug_function(f, "DAP_JTAG_Sequence", &[cnt, tms, tdi])
            }
            Self::Sequence { name } => fmt_debug_function(f, "Sequence", &[name]),
            Self::Query {
                query_type,
                message,
                default,
            } => fmt_debug_function(f, "Query", &[query_type, message, default]),
            Self::QueryValue { message, default } => {
                fmt_debug_function(f, "QueryValue", &[message, default])
            }
            Self::Message {
                msg_type,
                format,
                args,
            } => {
                let mut all_args = Vec::with_capacity(args.len().saturating_add(2));
                all_args.push(msg_type);
                all_args.push(format);
                all_args.extend(args);
                fmt_debug_function(f, "Message", &all_args)
            }
            Self::FlashWriteBuffer {
                addr,
                offs,
                len,
                mode,
            } => fmt_debug_function(f, "FlashWriteBuffer", &[addr, offs, len, mode]),
            Self::FlashLoadAlgorithm {
                algo_path,
                ram_start,
                ram_size,
            } => fmt_debug_function(f, "FlashLoadAlgorithm", &[algo_path, ram_start, ram_size]),
            Self::BufferSet {
                buff_id,
                buff_offset,
                count,
                size,
                value,
            } => fmt_debug_function(f, "BufferSet", &[buff_id, buff_offset, count, size, value]),
            Self::BufferGet {
                buff_id,
                buff_offset,
                size,
            } => fmt_debug_function(f, "BufferGet", &[buff_id, buff_offset, size]),
            Self::BufferSize { buff_id } => fmt_debug_function(f, "BufferSize", &[buff_id]),
            Self::BufferRead {
                buff_id,
                buff_offset,
                addr,
                length,
                mode,
            } => fmt_debug_function(f, "BufferRead", &[buff_id, buff_offset, addr, length, mode]),
            Self::BufferWrite {
                buff_id,
                buff_offset,
                addr,
                length,
                mode,
            } => fmt_debug_function(
                f,
                "BufferWrite",
                &[buff_id, buff_offset, addr, length, mode],
            ),
            Self::BufferStreamIn {
                buff_id,
                buff_offset,
                length,
                path,
                mode,
                timeout,
            } => fmt_debug_function(
                f,
                "BufferStreamIn",
                &[buff_id, buff_offset, length, path, mode, timeout],
            ),
            Self::BufferStreamOut {
                buff_id,
                buff_offset,
                length,
                dest_path,
                dest_mode,
                timeout,
            } => fmt_debug_function(
                f,
                "BufferStreamOut",
                &[buff_id, buff_offset, length, dest_path, dest_mode, timeout],
            ),
            Self::RunApplication {
                app_path,
                arguments,
                work_directory,
                timeout,
            } => fmt_debug_function(
                f,
                "RunApplication",
                &[app_path, arguments, work_directory, timeout],
            ),
            Self::RunPythonScript {
                script_path,
                arguments,
                work_directory,
                timeout,
            } => fmt_debug_function(
                f,
                "RunPythonScript",
                &[script_path, arguments, work_directory, timeout],
            ),
            Self::FilePathExists { path, timeout } => {
                fmt_debug_function(f, "FilePathExists", &[path, timeout])
            }
            Self::LoadDebugInfo { file } => fmt_debug_function(f, "LoadDebugInfo", &[file]),
        }
    }
}

impl Default for DebugFunction {
    fn default() -> Self {
        Self::DapDelay {
            delay: Expression::Normal("0".to_string()),
        }
    }
}

impl TryFrom<(String, Vec<Expression>)> for DebugFunction {
    type Error = DebugAccessParseError;

    /// Parses a debug access function by name and argument list.
    ///
    /// Returns [Err] if the function name is not in the CMSIS-Pack spec or the argument count is wrong.
    #[allow(clippy::too_many_lines)]
    fn try_from((name, args): (String, Vec<Expression>)) -> Result<Self, Self::Error> {
        match name.as_str() {
            // Memory — 1 arg (addr)
            "Read8" => match <[Expression; 1]>::try_from(args) {
                Ok([addr]) => Ok(Self::Read8 { addr }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Read8 expects 1 argument, got {}",
                    v.len()
                ))),
            },
            "Read16" => match <[Expression; 1]>::try_from(args) {
                Ok([addr]) => Ok(Self::Read16 { addr }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Read16 expects 1 argument, got {}",
                    v.len()
                ))),
            },
            "Read32" => match <[Expression; 1]>::try_from(args) {
                Ok([addr]) => Ok(Self::Read32 { addr }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Read32 expects 1 argument, got {}",
                    v.len()
                ))),
            },
            "Read64" => match <[Expression; 1]>::try_from(args) {
                Ok([addr]) => Ok(Self::Read64 { addr }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Read64 expects 1 argument, got {}",
                    v.len()
                ))),
            },
            // Memory — 2 args (addr, val)
            "Write8" => match <[Expression; 2]>::try_from(args) {
                Ok([addr, val]) => Ok(Self::Write8 { addr, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Write8 expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            "Write16" => match <[Expression; 2]>::try_from(args) {
                Ok([addr, val]) => Ok(Self::Write16 { addr, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Write16 expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            "Write32" => match <[Expression; 2]>::try_from(args) {
                Ok([addr, val]) => Ok(Self::Write32 { addr, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Write32 expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            "Write64" => match <[Expression; 2]>::try_from(args) {
                Ok([addr, val]) => Ok(Self::Write64 { addr, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Write64 expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            // Register — 1 arg (addr)
            "ReadAP" => match <[Expression; 1]>::try_from(args) {
                Ok([addr]) => Ok(Self::ReadAP { addr }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "ReadAP expects 1 argument, got {}",
                    v.len()
                ))),
            },
            "ReadDP" => match <[Expression; 1]>::try_from(args) {
                Ok([addr]) => Ok(Self::ReadDP { addr }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "ReadDP expects 1 argument, got {}",
                    v.len()
                ))),
            },
            "ReadAccessAP" => match <[Expression; 1]>::try_from(args) {
                Ok([addr]) => Ok(Self::ReadAccessAP { addr }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "ReadAccessAP expects 1 argument, got {}",
                    v.len()
                ))),
            },
            // Register — 2 args (addr, val)
            "WriteAP" => match <[Expression; 2]>::try_from(args) {
                Ok([addr, val]) => Ok(Self::WriteAP { addr, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "WriteAP expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            "WriteDP" => match <[Expression; 2]>::try_from(args) {
                Ok([addr, val]) => Ok(Self::WriteDP { addr, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "WriteDP expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            "WriteAccessAP" => match <[Expression; 2]>::try_from(args) {
                Ok([addr, val]) => Ok(Self::WriteAccessAP { addr, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "WriteAccessAP expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            // Debug port — 1 arg
            "DAP_Delay" => match <[Expression; 1]>::try_from(args) {
                Ok([delay]) => Ok(Self::DapDelay { delay }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "DAP_Delay expects 1 argument, got {}",
                    v.len()
                ))),
            },
            "DAP_WriteABORT" => match <[Expression; 1]>::try_from(args) {
                Ok([value]) => Ok(Self::DapWriteAbort { value }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "DAP_WriteABORT expects 1 argument, got {}",
                    v.len()
                ))),
            },
            "DAP_SWJ_Clock" => match <[Expression; 1]>::try_from(args) {
                Ok([val]) => Ok(Self::DapSwjClock { val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "DAP_SWJ_Clock expects 1 argument, got {}",
                    v.len()
                ))),
            },
            // Debug port — 2 args
            "DAP_SWJ_Sequence" => match <[Expression; 2]>::try_from(args) {
                Ok([cnt, val]) => Ok(Self::DapSwjSequence { cnt, val }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "DAP_SWJ_Sequence expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            // Debug port — 3 args
            "DAP_SWJ_Pins" => match <[Expression; 3]>::try_from(args) {
                Ok([pinout, pinselect, pinwait]) => Ok(Self::DapSwjPins {
                    pinout,
                    pinselect,
                    pinwait,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "DAP_SWJ_Pins expects 3 arguments, got {}",
                    v.len()
                ))),
            },
            "DAP_JTAG_Sequence" => match <[Expression; 3]>::try_from(args) {
                Ok([cnt, tms, tdi]) => Ok(Self::DapJtagSequence { cnt, tms, tdi }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "DAP_JTAG_Sequence expects 3 arguments, got {}",
                    v.len()
                ))),
            },
            // Sequence control — 1 arg
            "Sequence" => match <[Expression; 1]>::try_from(args) {
                Ok([name]) => Ok(Self::Sequence { name }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Sequence expects 1 argument, got {}",
                    v.len()
                ))),
            },
            // Sequence control — 2 args
            "QueryValue" => match <[Expression; 2]>::try_from(args) {
                Ok([message, default]) => Ok(Self::QueryValue { message, default }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "QueryValue expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            // Sequence control — 3 args
            "Query" => match <[Expression; 3]>::try_from(args) {
                Ok([query_type, message, default]) => Ok(Self::Query {
                    query_type,
                    message,
                    default,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "Query expects 3 arguments, got {}",
                    v.len()
                ))),
            },
            // Sequence control — variadic (2+ args)
            "Message" => {
                let mut it = args.into_iter();
                let msg_type = it.next().ok_or_else(|| {
                    DebugAccessParseError::MissingAttribute(
                        "Message expects at least 2 arguments, got 0".to_string(),
                    )
                })?;
                let format_expr = it.next().ok_or_else(|| {
                    DebugAccessParseError::MissingAttribute(
                        "Message expects at least 2 arguments, got 1".to_string(),
                    )
                })?;
                Ok(Self::Message {
                    msg_type,
                    format: format_expr,
                    args: it.collect(),
                })
            }
            // Flash — 3 args
            "FlashLoadAlgorithm" => match <[Expression; 3]>::try_from(args) {
                Ok([algo_path, ram_start, ram_size]) => Ok(Self::FlashLoadAlgorithm {
                    algo_path,
                    ram_start,
                    ram_size,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "FlashLoadAlgorithm expects 3 arguments, got {}",
                    v.len()
                ))),
            },
            // Flash — 4 args
            "FlashWriteBuffer" => match <[Expression; 4]>::try_from(args) {
                Ok([addr, offs, len, mode]) => Ok(Self::FlashWriteBuffer {
                    addr,
                    offs,
                    len,
                    mode,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "FlashWriteBuffer expects 4 arguments, got {}",
                    v.len()
                ))),
            },
            // Buffer — 1 arg
            "BufferSize" => match <[Expression; 1]>::try_from(args) {
                Ok([buff_id]) => Ok(Self::BufferSize { buff_id }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "BufferSize expects 1 argument, got {}",
                    v.len()
                ))),
            },
            // Buffer — 3 args
            "BufferGet" => match <[Expression; 3]>::try_from(args) {
                Ok([buff_id, buff_offset, size]) => Ok(Self::BufferGet {
                    buff_id,
                    buff_offset,
                    size,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "BufferGet expects 3 arguments, got {}",
                    v.len()
                ))),
            },
            // Buffer — 5 args
            "BufferSet" => match <[Expression; 5]>::try_from(args) {
                Ok([buff_id, buff_offset, count, size, value]) => Ok(Self::BufferSet {
                    buff_id,
                    buff_offset,
                    count,
                    size,
                    value,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "BufferSet expects 5 arguments, got {}",
                    v.len()
                ))),
            },
            "BufferRead" => match <[Expression; 5]>::try_from(args) {
                Ok([buff_id, buff_offset, addr, length, mode]) => Ok(Self::BufferRead {
                    buff_id,
                    buff_offset,
                    addr,
                    length,
                    mode,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "BufferRead expects 5 arguments, got {}",
                    v.len()
                ))),
            },
            "BufferWrite" => match <[Expression; 5]>::try_from(args) {
                Ok([buff_id, buff_offset, addr, length, mode]) => Ok(Self::BufferWrite {
                    buff_id,
                    buff_offset,
                    addr,
                    length,
                    mode,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "BufferWrite expects 5 arguments, got {}",
                    v.len()
                ))),
            },
            // External — 1 arg
            "LoadDebugInfo" => match <[Expression; 1]>::try_from(args) {
                Ok([file]) => Ok(Self::LoadDebugInfo { file }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "LoadDebugInfo expects 1 argument, got {}",
                    v.len()
                ))),
            },
            // External — 2 args
            "FilePathExists" => match <[Expression; 2]>::try_from(args) {
                Ok([path, timeout]) => Ok(Self::FilePathExists { path, timeout }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "FilePathExists expects 2 arguments, got {}",
                    v.len()
                ))),
            },
            // External — 4 args
            "RunApplication" => match <[Expression; 4]>::try_from(args) {
                Ok([app_path, arguments, work_directory, timeout]) => Ok(Self::RunApplication {
                    app_path,
                    arguments,
                    work_directory,
                    timeout,
                }),
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "RunApplication expects 4 arguments, got {}",
                    v.len()
                ))),
            },
            "RunPythonScript" => match <[Expression; 4]>::try_from(args) {
                Ok([script_path, arguments, work_directory, timeout]) => {
                    Ok(Self::RunPythonScript {
                        script_path,
                        arguments,
                        work_directory,
                        timeout,
                    })
                }
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "RunPythonScript expects 4 arguments, got {}",
                    v.len()
                ))),
            },
            // External — 6 args
            "BufferStreamIn" => match <[Expression; 6]>::try_from(args) {
                Ok([buff_id, buff_offset, length, path, mode, timeout]) => {
                    Ok(Self::BufferStreamIn {
                        buff_id,
                        buff_offset,
                        length,
                        path,
                        mode,
                        timeout,
                    })
                }
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "BufferStreamIn expects 6 arguments, got {}",
                    v.len()
                ))),
            },
            "BufferStreamOut" => match <[Expression; 6]>::try_from(args) {
                Ok([buff_id, buff_offset, length, dest_path, dest_mode, timeout]) => {
                    Ok(Self::BufferStreamOut {
                        buff_id,
                        buff_offset,
                        length,
                        dest_path,
                        dest_mode,
                        timeout,
                    })
                }
                Err(v) => Err(DebugAccessParseError::MissingAttribute(format!(
                    "BufferStreamOut expects 6 arguments, got {}",
                    v.len()
                ))),
            },
            _ => Err(DebugAccessParseError::UnknownStatement(name)),
        }
    }
}

/// Returns `Some((name, args_str))` if `s` matches `identifier(...)`, otherwise `None`.
///
/// `name` is the function name; `args_str` is the raw content between the outer parentheses.
fn detect_function_call(s: &str) -> Option<(&str, &str)> {
    if !s.ends_with(')') {
        return None;
    }

    let paren_pos = s.find('(')?;
    #[allow(clippy::string_slice)]
    // Safety:
    //   This is known to have a lot of false positives, and is OK if
    //   given a valid position, which `find` should return.
    let name = &s[..paren_pos];

    // Validate name is a non-empty identifier [A-Za-z_][A-Za-z0-9_]*
    let mut name_chars = name.chars();
    let first = name_chars.next()?;
    if !first.is_alphabetic() && first != '_' {
        return None;
    }
    if !name_chars.all(|c| c.is_alphanumeric() || c == '_') {
        return None;
    }

    #[allow(clippy::arithmetic_side_effects)]
    // Safety:
    //   While in theory `paren_pos + 1` could overflow it is
    //   extremely unlikely, if so `s.len()` would also have
    //   problems.
    #[allow(clippy::string_slice)]
    // Safety:
    //   This is known to have a lot of false positives, and is OK if
    //   given a valid position, which `find` should return. The end
    //   of the string should also always be a valid position.
    let args_str = &s[paren_pos + 1..s.len() - 1];
    Some((name, args_str))
}

/// Splits a comma-separated argument string into trimmed segments, respecting nested parentheses.
///
/// e.g. `"addr, Read32(base)"` → `["addr", "Read32(base)"]`
fn split_args(args_str: &str) -> Vec<&str> {
    if args_str.trim().is_empty() {
        return Vec::new();
    }

    let mut result = Vec::new();
    let mut depth: u32 = 0u32;
    let mut start: usize = 0;

    #[allow(clippy::arithmetic_side_effects)]
    // Safety:
    //   If you have nested to `u32::MAX` I will be thoroughly impressed
    for (i, c) in args_str.char_indices() {
        match c {
            '(' => depth += 1,
            ')' => depth -= 1,
            ',' if depth == 0 => {
                #[allow(clippy::string_slice)]
                // Safety:
                //   We are iterating over char indices which is
                //   explicitly used as a false positive in the clippy
                //   documentation.
                result.push(args_str[start..i].trim());
                start = i + 1;
            }
            _ => {}
        }
    }

    #[allow(clippy::string_slice)]
    // Safety:
    //   `start` value was obtained via `char_indices`
    let last = args_str[start..].trim();
    if !last.is_empty() {
        result.push(last);
    }

    result
}

#[cfg(test)]
mod tests {
    use crate::debug_access::{
        Assignment, Conditional, DebugAccessParseError, DebugFunction, Expression, Statement,
    };

    #[test]
    fn parse_comment() {
        let line = "// This is a comment!".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Comment("// This is a comment!".to_string())
        );
    }

    #[test]
    fn semicolon_handling() {
        let line1 = "Read32(0x10)".to_string();
        let line2 = "Read32(0x10);".to_string();

        let statement1: Statement = line1.try_into().unwrap();
        let statement2: Statement = line2.try_into().unwrap();

        assert_eq!(statement1, statement2);
    }

    #[test]
    fn parse_expression_normal() {
        let line = "addr + offset;".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::Normal("addr + offset".to_string()))
        );
    }

    #[test]
    fn parse_expression_normal_variable() {
        let line = "doIfBlock".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::Normal("doIfBlock".to_string()))
        );
    }

    #[test]
    fn parse_expression_conditional() {
        let line = "(x < y) ? a : b".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::Conditional(Box::new(Conditional {
                condition: Expression::Normal("x < y".to_string()),
                true_value: Expression::Normal("a".to_string()),
                false_value: Expression::Normal("b".to_string())
            })))
        );
    }

    #[test]
    fn parse_assignment_comparison() {
        let line = "thisValue = (readTheCoolRegister(0x248) == 5);".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Assignment(Assignment {
                variable: "thisValue".to_string(),
                expression: Expression::Normal("(readTheCoolRegister(0x248) == 5)".to_string())
            })
        );
    }

    #[test]
    fn parse_assignment() {
        let line = "variable = expression;".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Assignment(Assignment {
                expression: Expression::Normal("expression".to_string()),
                variable: "variable".to_string(),
            })
        )
    }

    #[test]
    fn parse_definition() {
        let line = "__var variable = 0;".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Definition(Assignment {
                expression: Expression::Normal("0".to_string()),
                variable: "variable".to_string(),
            })
        )
    }

    #[test]
    fn parse_function_call_single_arg() {
        let line = "Read32(0x40000000);".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::FunctionCall(Box::new(DebugFunction::Read32 {
                addr: Expression::Normal("0x40000000".to_string())
            })))
        );
    }

    #[test]
    fn parse_function_call_two_args() {
        let line = "Write32(addr, val);".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::FunctionCall(Box::new(DebugFunction::Write32 {
                addr: Expression::Normal("addr".to_string()),
                val: Expression::Normal("val".to_string()),
            })))
        );
    }

    #[test]
    fn parse_function_call_string_arg() {
        let line = "Sequence(\"ResetAndHalt\");".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::FunctionCall(Box::new(
                DebugFunction::Sequence {
                    name: Expression::Normal("\"ResetAndHalt\"".to_string())
                }
            )))
        );
    }

    #[test]
    fn parse_function_call_three_args() {
        let line = "DAP_SWJ_Pins(pinout, pinselect, pinwait);".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::FunctionCall(Box::new(
                DebugFunction::DapSwjPins {
                    pinout: Expression::Normal("pinout".to_string()),
                    pinselect: Expression::Normal("pinselect".to_string()),
                    pinwait: Expression::Normal("pinwait".to_string()),
                }
            )))
        );
    }

    #[test]
    fn parse_function_call_variadic() {
        let line = "Message(1, \"debug message\");".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::FunctionCall(Box::new(DebugFunction::Message {
                msg_type: Expression::Normal("1".to_string()),
                format: Expression::Normal("\"debug message\"".to_string()),
                args: vec![],
            })))
        );
    }

    #[test]
    fn parse_function_call_nested_arg() {
        // Read32(base) is an argument to Write32 — split_args must not split on the inner comma
        let line = "Write32(addr, Read32(base));".to_string();

        let statement: Statement = line.try_into().unwrap();

        assert_eq!(
            statement,
            Statement::Expression(Expression::FunctionCall(Box::new(DebugFunction::Write32 {
                addr: Expression::Normal("addr".to_string()),
                val: Expression::FunctionCall(Box::new(DebugFunction::Read32 {
                    addr: Expression::Normal("base".to_string()),
                })),
            })))
        );
    }

    #[test]
    #[should_panic(expected = "unknown statement: GetBase")]
    fn unknown_function_panics() {
        if let Err(e) = Expression::try_from("GetBase()") {
            panic!("{e}");
        }
    }

    #[test]
    fn conditional_missing_syntax() {
        let result = Conditional::try_from("no parentheses here");
        assert!(matches!(
            result,
            Err(DebugAccessParseError::MissingAttribute(_))
        ));
    }

    #[test]
    fn unknown_function_returns_unknown_statement() {
        let result = DebugFunction::try_from(("GetBase".to_string(), vec![]));
        assert_eq!(
            result.unwrap_err(),
            DebugAccessParseError::UnknownStatement("GetBase".to_string())
        );
    }

    fn normal(value: &str) -> Expression {
        Expression::Normal(value.to_string())
    }

    #[test]
    fn format_debug_functions_exhaustively() {
        let cases = vec![
            (DebugFunction::Read8 { addr: normal("a") }, "Read8(a)"),
            (DebugFunction::Read16 { addr: normal("a") }, "Read16(a)"),
            (DebugFunction::Read32 { addr: normal("a") }, "Read32(a)"),
            (DebugFunction::Read64 { addr: normal("a") }, "Read64(a)"),
            (
                DebugFunction::Write8 {
                    addr: normal("a"),
                    val: normal("v"),
                },
                "Write8(a, v)",
            ),
            (
                DebugFunction::Write16 {
                    addr: normal("a"),
                    val: normal("v"),
                },
                "Write16(a, v)",
            ),
            (
                DebugFunction::Write32 {
                    addr: normal("a"),
                    val: normal("v"),
                },
                "Write32(a, v)",
            ),
            (
                DebugFunction::Write64 {
                    addr: normal("a"),
                    val: normal("v"),
                },
                "Write64(a, v)",
            ),
            (DebugFunction::ReadAP { addr: normal("a") }, "ReadAP(a)"),
            (
                DebugFunction::WriteAP {
                    addr: normal("a"),
                    val: normal("v"),
                },
                "WriteAP(a, v)",
            ),
            (DebugFunction::ReadDP { addr: normal("a") }, "ReadDP(a)"),
            (
                DebugFunction::WriteDP {
                    addr: normal("a"),
                    val: normal("v"),
                },
                "WriteDP(a, v)",
            ),
            (
                DebugFunction::ReadAccessAP { addr: normal("a") },
                "ReadAccessAP(a)",
            ),
            (
                DebugFunction::WriteAccessAP {
                    addr: normal("a"),
                    val: normal("v"),
                },
                "WriteAccessAP(a, v)",
            ),
            (
                DebugFunction::DapDelay {
                    delay: normal("delay"),
                },
                "DAP_Delay(delay)",
            ),
            (
                DebugFunction::DapWriteAbort {
                    value: normal("value"),
                },
                "DAP_WriteABORT(value)",
            ),
            (
                DebugFunction::DapSwjPins {
                    pinout: normal("pinout"),
                    pinselect: normal("pinselect"),
                    pinwait: normal("pinwait"),
                },
                "DAP_SWJ_Pins(pinout, pinselect, pinwait)",
            ),
            (
                DebugFunction::DapSwjClock { val: normal("val") },
                "DAP_SWJ_Clock(val)",
            ),
            (
                DebugFunction::DapSwjSequence {
                    cnt: normal("cnt"),
                    val: normal("val"),
                },
                "DAP_SWJ_Sequence(cnt, val)",
            ),
            (
                DebugFunction::DapJtagSequence {
                    cnt: normal("cnt"),
                    tms: normal("tms"),
                    tdi: normal("tdi"),
                },
                "DAP_JTAG_Sequence(cnt, tms, tdi)",
            ),
            (
                DebugFunction::Sequence {
                    name: normal("name"),
                },
                "Sequence(name)",
            ),
            (
                DebugFunction::Query {
                    query_type: normal("query_type"),
                    message: normal("message"),
                    default: normal("default"),
                },
                "Query(query_type, message, default)",
            ),
            (
                DebugFunction::QueryValue {
                    message: normal("message"),
                    default: normal("default"),
                },
                "QueryValue(message, default)",
            ),
            (
                DebugFunction::Message {
                    msg_type: normal("msg_type"),
                    format: normal("format"),
                    args: vec![],
                },
                "Message(msg_type, format)",
            ),
            (
                DebugFunction::FlashWriteBuffer {
                    addr: normal("addr"),
                    offs: normal("offs"),
                    len: normal("len"),
                    mode: normal("mode"),
                },
                "FlashWriteBuffer(addr, offs, len, mode)",
            ),
            (
                DebugFunction::FlashLoadAlgorithm {
                    algo_path: normal("algo_path"),
                    ram_start: normal("ram_start"),
                    ram_size: normal("ram_size"),
                },
                "FlashLoadAlgorithm(algo_path, ram_start, ram_size)",
            ),
            (
                DebugFunction::BufferSet {
                    buff_id: normal("buff_id"),
                    buff_offset: normal("buff_offset"),
                    count: normal("count"),
                    size: normal("size"),
                    value: normal("value"),
                },
                "BufferSet(buff_id, buff_offset, count, size, value)",
            ),
            (
                DebugFunction::BufferGet {
                    buff_id: normal("buff_id"),
                    buff_offset: normal("buff_offset"),
                    size: normal("size"),
                },
                "BufferGet(buff_id, buff_offset, size)",
            ),
            (
                DebugFunction::BufferSize {
                    buff_id: normal("buff_id"),
                },
                "BufferSize(buff_id)",
            ),
            (
                DebugFunction::BufferRead {
                    buff_id: normal("buff_id"),
                    buff_offset: normal("buff_offset"),
                    addr: normal("addr"),
                    length: normal("length"),
                    mode: normal("mode"),
                },
                "BufferRead(buff_id, buff_offset, addr, length, mode)",
            ),
            (
                DebugFunction::BufferWrite {
                    buff_id: normal("buff_id"),
                    buff_offset: normal("buff_offset"),
                    addr: normal("addr"),
                    length: normal("length"),
                    mode: normal("mode"),
                },
                "BufferWrite(buff_id, buff_offset, addr, length, mode)",
            ),
            (
                DebugFunction::BufferStreamIn {
                    buff_id: normal("buff_id"),
                    buff_offset: normal("buff_offset"),
                    length: normal("length"),
                    path: normal("path"),
                    mode: normal("mode"),
                    timeout: normal("timeout"),
                },
                "BufferStreamIn(buff_id, buff_offset, length, path, mode, timeout)",
            ),
            (
                DebugFunction::BufferStreamOut {
                    buff_id: normal("buff_id"),
                    buff_offset: normal("buff_offset"),
                    length: normal("length"),
                    dest_path: normal("dest_path"),
                    dest_mode: normal("dest_mode"),
                    timeout: normal("timeout"),
                },
                "BufferStreamOut(buff_id, buff_offset, length, dest_path, dest_mode, timeout)",
            ),
            (
                DebugFunction::RunApplication {
                    app_path: normal("app_path"),
                    arguments: normal("arguments"),
                    work_directory: normal("work_directory"),
                    timeout: normal("timeout"),
                },
                "RunApplication(app_path, arguments, work_directory, timeout)",
            ),
            (
                DebugFunction::RunPythonScript {
                    script_path: normal("script_path"),
                    arguments: normal("arguments"),
                    work_directory: normal("work_directory"),
                    timeout: normal("timeout"),
                },
                "RunPythonScript(script_path, arguments, work_directory, timeout)",
            ),
            (
                DebugFunction::FilePathExists {
                    path: normal("path"),
                    timeout: normal("timeout"),
                },
                "FilePathExists(path, timeout)",
            ),
            (
                DebugFunction::LoadDebugInfo {
                    file: normal("file"),
                },
                "LoadDebugInfo(file)",
            ),
        ];

        for (function, expected) in cases {
            let actual = function.to_string();
            assert_eq!(actual, expected);
            assert!(!actual.contains(';'));
            assert!(!actual.contains(",  "));
        }

        assert_eq!(
            DebugFunction::Read8 {
                addr: normal("0x64FF")
            }
            .to_string(),
            "Read8(0x64FF)"
        );
    }

    #[test]
    fn format_expression_variants_recursively() {
        assert_eq!(
            normal("arbitrary text, unchanged").to_string(),
            "arbitrary text, unchanged"
        );
        assert_eq!(
            Expression::Conditional(Box::new(Conditional {
                condition: normal("x < y"),
                true_value: normal("a"),
                false_value: normal("b"),
            }))
            .to_string(),
            "(x < y) ? a : b"
        );

        let nested = Expression::Conditional(Box::new(Conditional {
            condition: Expression::FunctionCall(Box::new(DebugFunction::Read8 {
                addr: normal("condition_addr"),
            })),
            true_value: Expression::FunctionCall(Box::new(DebugFunction::Read16 {
                addr: normal("true_addr"),
            })),
            false_value: Expression::FunctionCall(Box::new(DebugFunction::Read32 {
                addr: normal("false_addr"),
            })),
        }));
        assert_eq!(
            nested.to_string(),
            "(Read8(condition_addr)) ? Read16(true_addr) : Read32(false_addr)"
        );
    }

    #[test]
    fn format_message_variadic_arguments() {
        let message = |args| DebugFunction::Message {
            msg_type: normal("1"),
            format: normal("\"message\""),
            args,
        };

        assert_eq!(message(vec![]).to_string(), "Message(1, \"message\")");
        assert_eq!(
            message(vec![normal("arg1")]).to_string(),
            "Message(1, \"message\", arg1)"
        );
        assert_eq!(
            message(vec![normal("arg1"), normal("arg2"), normal("arg3")]).to_string(),
            "Message(1, \"message\", arg1, arg2, arg3)"
        );
    }

    #[test]
    fn format_canonical_debug_names() {
        let cases = [
            ("DAP_Delay", DebugFunction::DapDelay { delay: normal("1") }),
            (
                "DAP_WriteABORT",
                DebugFunction::DapWriteAbort { value: normal("2") },
            ),
            (
                "DAP_SWJ_Pins",
                DebugFunction::DapSwjPins {
                    pinout: normal("3"),
                    pinselect: normal("4"),
                    pinwait: normal("5"),
                },
            ),
            (
                "DAP_SWJ_Clock",
                DebugFunction::DapSwjClock { val: normal("6") },
            ),
            (
                "DAP_SWJ_Sequence",
                DebugFunction::DapSwjSequence {
                    cnt: normal("7"),
                    val: normal("8"),
                },
            ),
            (
                "DAP_JTAG_Sequence",
                DebugFunction::DapJtagSequence {
                    cnt: normal("9"),
                    tms: normal("10"),
                    tdi: normal("11"),
                },
            ),
        ];

        for (name, function) in cases {
            assert!(function.to_string().starts_with(name));
        }
    }

    #[test]
    fn format_parsed_expressions_round_trip() {
        let cases = [
            ("Read8(0x64FF)", "Read8(0x64FF)"),
            ("Write32(addr, Read32(base))", "Write32(addr, Read32(base))"),
            (
                "(condition) ? Write8(addr, 1) : Read16(addr)",
                "(condition) ? Write8(addr, 1) : Read16(addr)",
            ),
            ("Sequence(\"ResetAndHalt\")", "Sequence(\"ResetAndHalt\")"),
            (
                "Message(1, \"value\", Read32(addr), extra)",
                "Message(1, \"value\", Read32(addr), extra)",
            ),
        ];

        for (source, expected) in cases {
            let expression = Expression::try_from(source).unwrap();
            assert_eq!(expression.to_string(), expected);
        }
    }
}