altium-format 0.1.7

Core altium-cli library for reading and writing Altium Designer files.
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
//! PcbDoc reader/writer for Altium PCB document files.
//!
//! Supports reading and writing of PCB documents including board data,
//! components, primitives, nets, and design rules.

use cfb::CompoundFile;
use std::fs::File;
use std::io::{Cursor, Read, Seek, SeekFrom, Write};
use std::path::Path;

use crate::dump::{DumpTree, TreeBuilder};
use crate::error::{AltiumError, Result};
use crate::io::reader::{read_block, read_parameters_block};
use crate::io::writer::write_parameters_block;
use crate::records::pcb::{
    PcbAdvancedPlacerOptions, PcbArc, PcbClass, PcbDrcOptions, PcbFill, PcbObjectId,
    PcbPinSwapOptions, PcbPolygon, PcbRecord, PcbRegion, PcbRule, PcbText, PcbTrack, PcbVia,
};
use crate::traits::FromBinary;
use crate::types::ParameterCollection;

/// A PCB document containing board data.
#[derive(Debug, Default)]
pub struct PcbDoc {
    /// Board header parameters.
    pub board_params: ParameterCollection,
    /// Components placed on the board.
    pub components: Vec<PcbDocComponent>,
    /// Board primitives (not associated with components).
    pub primitives: Vec<PcbRecord>,
    /// Nets in the design.
    pub nets: Vec<String>,
    /// Design rules.
    pub rules: Vec<PcbRule>,
    /// Object classes (net classes, component classes, etc.).
    pub classes: Vec<PcbClass>,
    /// Advanced placer options.
    pub placer_options: Option<PcbAdvancedPlacerOptions>,
    /// Design rule checker options.
    pub drc_options: Option<PcbDrcOptions>,
    /// Pin swap options.
    pub pin_swap_options: Option<PcbPinSwapOptions>,
}

/// A component placed on the board.
#[derive(Debug, Default)]
pub struct PcbDocComponent {
    /// Component designator (e.g., "R1", "U1").
    pub designator: String,
    /// Footprint pattern name.
    pub pattern: String,
    /// Component comment/value.
    pub comment: String,
    /// Component parameters.
    pub params: ParameterCollection,
    /// Primitives belonging to this component.
    pub primitives: Vec<PcbRecord>,
}

impl PcbDoc {
    /// Open and read a PcbDoc file.
    pub fn open<R: Read + Seek>(reader: R) -> Result<Self> {
        let mut pcbdoc = PcbDoc::default();
        let mut cf = CompoundFile::open(reader).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                e.to_string(),
            ))
        })?;

        // Read board header/parameters
        pcbdoc.read_board(&mut cf)?;

        // Read components
        pcbdoc.read_components(&mut cf)?;

        // Read board primitives
        pcbdoc.read_primitives(&mut cf)?;

        // Read nets
        pcbdoc.read_nets(&mut cf)?;

        // Read design rules
        pcbdoc.read_rules(&mut cf)?;

        // Read classes
        pcbdoc.read_classes(&mut cf)?;

        // Read options
        pcbdoc.read_options(&mut cf)?;

        Ok(pcbdoc)
    }

    /// Open and read a PcbDoc file from a path.
    pub fn open_file<P: AsRef<Path>>(path: P) -> Result<Self> {
        let file = File::open(path)?;
        Self::open(file)
    }

    /// Read the Board storage.
    fn read_board<R: Read + Seek>(&mut self, cf: &mut CompoundFile<R>) -> Result<()> {
        let data_path = "/Board6/Data";

        if cf.entry(data_path).is_err() {
            // Try alternate path
            return Ok(());
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        let mut data = Vec::new();
        stream.read_to_end(&mut data)?;

        if data.is_empty() {
            return Ok(());
        }

        let mut cursor = Cursor::new(&data);

        // Read board parameters
        self.board_params = read_parameters_block(&mut cursor)?;

        Ok(())
    }

    /// Read the Components storage.
    fn read_components<R: Read + Seek>(&mut self, cf: &mut CompoundFile<R>) -> Result<()> {
        let data_path = "/Components6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        let mut data = Vec::new();
        stream.read_to_end(&mut data)?;

        if data.is_empty() {
            return Ok(());
        }

        let mut cursor = Cursor::new(&data);

        // Read components
        while (cursor.position() as usize) < data.len() {
            match self.read_component_record(&mut cursor) {
                Ok(comp) => self.components.push(comp),
                Err(_) => break,
            }
        }

        Ok(())
    }

    /// Read a single component record.
    fn read_component_record<R: Read>(&self, reader: &mut R) -> Result<PcbDocComponent> {
        let params = read_parameters_block(reader)?;

        Ok(PcbDocComponent {
            // PcbDoc uses SOURCEDESIGNATOR for the placed component's designator
            designator: params
                .get("SOURCEDESIGNATOR")
                .or_else(|| params.get("DESIGNATOR"))
                .map(|v| v.as_str().to_string())
                .unwrap_or_default(),
            pattern: params
                .get("PATTERN")
                .map(|v| v.as_str().to_string())
                .unwrap_or_default(),
            comment: params
                .get("COMMENT")
                .map(|v| v.as_str().to_string())
                .unwrap_or_default(),
            params,
            primitives: Vec::new(),
        })
    }

    /// Read board primitives (tracks, arcs, vias, etc.).
    fn read_primitives<R: Read + Seek>(&mut self, cf: &mut CompoundFile<R>) -> Result<()> {
        use byteorder::ReadBytesExt;

        // Try to read from various primitive storages
        self.read_primitive_storage(cf, "/Tracks6/Data", |cursor, _| {
            let record_id = cursor.read_u8()?;
            if record_id != PcbObjectId::Track.to_byte() {
                return Err(AltiumError::InvalidRecord(format!(
                    "Expected Track record ID (4), got {}",
                    record_id
                )));
            }
            let block = read_block(cursor)?;
            let mut block_cursor = Cursor::new(&block);
            <PcbTrack as FromBinary>::read_from(&mut block_cursor).map(PcbRecord::Track)
        })?;

        self.read_primitive_storage(cf, "/Arcs6/Data", |cursor, _| {
            let record_id = cursor.read_u8()?;
            if record_id != PcbObjectId::Arc.to_byte() {
                return Err(AltiumError::InvalidRecord(format!(
                    "Expected Arc record ID (1), got {}",
                    record_id
                )));
            }
            let block = read_block(cursor)?;
            let mut block_cursor = Cursor::new(&block);
            <PcbArc as FromBinary>::read_from(&mut block_cursor).map(PcbRecord::Arc)
        })?;

        self.read_primitive_storage(cf, "/Vias6/Data", |cursor, _| {
            let record_id = cursor.read_u8()?;
            if record_id != PcbObjectId::Via.to_byte() {
                return Err(AltiumError::InvalidRecord(format!(
                    "Expected Via record ID (3), got {}",
                    record_id
                )));
            }
            let block = read_block(cursor)?;
            let mut block_cursor = Cursor::new(&block);
            <PcbVia as FromBinary>::read_from(&mut block_cursor).map(PcbRecord::Via)
        })?;

        self.read_primitive_storage(cf, "/Fills6/Data", |cursor, _| {
            let record_id = cursor.read_u8()?;
            if record_id != PcbObjectId::Fill.to_byte() {
                return Err(AltiumError::InvalidRecord(format!(
                    "Expected Fill record ID (6), got {}",
                    record_id
                )));
            }
            let block = read_block(cursor)?;
            let mut block_cursor = Cursor::new(&block);
            <PcbFill as FromBinary>::read_from(&mut block_cursor).map(PcbRecord::Fill)
        })?;

        self.read_primitive_storage(cf, "/Regions6/Data", |cursor, _| {
            let record_id = cursor.read_u8()?;
            if record_id != PcbObjectId::Region.to_byte() {
                return Err(AltiumError::InvalidRecord(format!(
                    "Expected Region record ID (11), got {}",
                    record_id
                )));
            }
            let block = read_block(cursor)?;
            let mut block_cursor = Cursor::new(&block);
            <PcbRegion as FromBinary>::read_from(&mut block_cursor).map(PcbRecord::Region)
        })?;

        // Read polygons (copper pours)
        self.read_primitive_storage(cf, "/Polygons6/Data", |cursor, _| {
            let record_id = cursor.read_u8()?;
            if record_id != PcbObjectId::Polygon.to_byte() {
                return Err(AltiumError::InvalidRecord(format!(
                    "Expected Polygon record ID (10), got {}",
                    record_id
                )));
            }
            let params = read_parameters_block(cursor)?;
            Ok(PcbRecord::Polygon(PcbPolygon::from_params(&params)))
        })?;

        // Read texts
        self.read_primitive_storage(cf, "/Texts6/Data", |cursor, _| {
            let record_id = cursor.read_u8()?;
            if record_id != PcbObjectId::Text.to_byte() {
                return Err(AltiumError::InvalidRecord(format!(
                    "Expected Text record ID (5), got {}",
                    record_id
                )));
            }
            let block = read_block(cursor)?;
            let mut block_cursor = Cursor::new(&block);
            <PcbText as FromBinary>::read_from(&mut block_cursor).map(PcbRecord::Text)
        })?;

        Ok(())
    }

    /// Read a primitive storage stream.
    fn read_primitive_storage<R, F>(
        &mut self,
        cf: &mut CompoundFile<R>,
        path: &str,
        reader_fn: F,
    ) -> Result<()>
    where
        R: Read + Seek,
        F: Fn(&mut Cursor<&Vec<u8>>, usize) -> Result<PcbRecord>,
    {
        if cf.entry(path).is_err() {
            return Ok(());
        }

        let mut stream = cf.open_stream(path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        let mut data = Vec::new();
        stream.read_to_end(&mut data)?;

        if data.is_empty() {
            return Ok(());
        }

        let mut cursor = Cursor::new(&data);
        let mut index = 0;

        while (cursor.position() as usize) < data.len() {
            match reader_fn(&mut cursor, index) {
                Ok(record) => self.primitives.push(record),
                Err(_) => break,
            }
            index += 1;
        }

        Ok(())
    }

    /// Read the Nets storage.
    fn read_nets<R: Read + Seek>(&mut self, cf: &mut CompoundFile<R>) -> Result<()> {
        let data_path = "/Nets6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        let mut data = Vec::new();
        stream.read_to_end(&mut data)?;

        if data.is_empty() {
            return Ok(());
        }

        let mut cursor = Cursor::new(&data);

        while (cursor.position() as usize) < data.len() {
            match read_parameters_block(&mut cursor) {
                Ok(params) => {
                    if let Some(name) = params.get("NAME") {
                        self.nets.push(name.as_str().to_string());
                    }
                }
                Err(_) => break,
            }
        }

        Ok(())
    }

    /// Read the Rules storage.
    fn read_rules<R: Read + Seek>(&mut self, cf: &mut CompoundFile<R>) -> Result<()> {
        let data_path = "/Rules6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        let mut data = Vec::new();
        stream.read_to_end(&mut data)?;

        if data.is_empty() {
            return Ok(());
        }

        let mut cursor = Cursor::new(&data);

        while (cursor.position() as usize) < data.len() {
            match PcbRule::read_from(&mut cursor) {
                Ok(rule) => self.rules.push(rule),
                Err(_) => break,
            }
        }

        Ok(())
    }

    /// Read the Classes storage.
    fn read_classes<R: Read + Seek>(&mut self, cf: &mut CompoundFile<R>) -> Result<()> {
        let data_path = "/Classes6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        let mut data = Vec::new();
        stream.read_to_end(&mut data)?;

        if data.is_empty() {
            return Ok(());
        }

        let mut cursor = Cursor::new(&data);

        while (cursor.position() as usize) < data.len() {
            match read_parameters_block(&mut cursor) {
                Ok(params) => {
                    let class = PcbClass::from_params(&params);
                    self.classes.push(class);
                }
                Err(_) => break,
            }
        }

        Ok(())
    }

    /// Read various options streams.
    fn read_options<R: Read + Seek>(&mut self, cf: &mut CompoundFile<R>) -> Result<()> {
        // Read Advanced Placer Options
        if let Ok(params) = Self::read_options_stream(cf, "/Advanced Placer Options6/Data") {
            self.placer_options = Some(PcbAdvancedPlacerOptions::from_params(&params));
        }

        // Read DRC Options
        if let Ok(params) = Self::read_options_stream(cf, "/Design Rule Checker Options6/Data") {
            self.drc_options = Some(PcbDrcOptions::from_params(&params));
        }

        // Read Pin Swap Options
        if let Ok(params) = Self::read_options_stream(cf, "/Pin Swap Options6/Data") {
            self.pin_swap_options = Some(PcbPinSwapOptions::from_params(&params));
        }

        Ok(())
    }

    /// Read a single options stream as parameters.
    fn read_options_stream<R: Read + Seek>(
        cf: &mut CompoundFile<R>,
        path: &str,
    ) -> Result<ParameterCollection> {
        if cf.entry(path).is_err() {
            return Err(AltiumError::Parse(format!("Stream not found: {}", path)));
        }

        let mut stream = cf.open_stream(path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        let mut data = Vec::new();
        stream.read_to_end(&mut data)?;

        if data.is_empty() {
            return Err(AltiumError::Parse("Empty stream".to_string()));
        }

        let mut cursor = Cursor::new(&data);
        read_parameters_block(&mut cursor)
    }

    /// Save the PcbDoc to a file path.
    ///
    /// This performs a read-modify-write operation: it reads the existing file,
    /// updates the rules stream, and writes back to the same path.
    pub fn save_to_file<P: AsRef<Path>>(&self, path: P) -> Result<()> {
        // Read the existing file
        let file = std::fs::OpenOptions::new()
            .read(true)
            .write(true)
            .open(path.as_ref())?;

        let mut cf = CompoundFile::open(file).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                e.to_string(),
            ))
        })?;

        // Write rules
        self.write_rules(&mut cf)?;

        cf.flush()
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write rules to the CFB file.
    fn write_rules<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        let data_path = "/Rules6/Data";

        // Serialize all rules to a buffer
        let mut buffer = Vec::new();
        for rule in &self.rules {
            rule.write_to(&mut buffer)?;
        }

        // Check if stream exists, create if needed
        if cf.entry(data_path).is_err() {
            // For now, just fail if the stream doesn't exist
            // A full implementation would create the stream
            return Err(AltiumError::Parse(
                "Rules6/Data stream not found".to_string(),
            ));
        }

        // Open and truncate the stream
        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        // Seek to beginning and write
        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;

        // If new content is shorter, we need to truncate
        // cfb crate's stream should handle this, but let's be safe
        let new_len = buffer.len() as u64;
        stream
            .set_len(new_len)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Save board parameters to a file path.
    ///
    /// This performs a read-modify-write operation: it reads the existing file,
    /// updates the Board6/Data stream, and writes back.
    pub fn save_board_to_file<P: AsRef<Path>>(&self, path: P) -> Result<()> {
        let file = std::fs::OpenOptions::new()
            .read(true)
            .write(true)
            .open(path.as_ref())?;

        let mut cf = CompoundFile::open(file).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                e.to_string(),
            ))
        })?;

        self.write_board(&mut cf)?;

        cf.flush()
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write board data to the CFB file.
    fn write_board<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_parameters_block;

        let data_path = "/Board6/Data";

        // Check if stream exists
        if cf.entry(data_path).is_err() {
            return Err(AltiumError::Parse(
                "Board6/Data stream not found".to_string(),
            ));
        }

        // Serialize board params to a buffer
        let mut buffer = Vec::new();
        write_parameters_block(&mut buffer, &self.board_params)?;

        // Open and write the stream
        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;

        let new_len = buffer.len() as u64;
        stream
            .set_len(new_len)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Save regions (keepouts/cutouts) to a file path.
    ///
    /// This performs a read-modify-write operation.
    pub fn save_regions_to_file<P: AsRef<Path>>(&self, path: P) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;

        let file = std::fs::OpenOptions::new()
            .read(true)
            .write(true)
            .open(path.as_ref())?;

        let mut cf = CompoundFile::open(file).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                e.to_string(),
            ))
        })?;

        let data_path = "/Regions6/Data";

        // Check if stream exists
        if cf.entry(data_path).is_err() {
            return Err(AltiumError::Parse(
                "Regions6/Data stream not found".to_string(),
            ));
        }

        // Serialize all regions to a buffer
        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Region(r) = prim {
                let mut region_data = Vec::new();
                r.write_to(&mut region_data)?;
                write_block(&mut buffer, &region_data, 0)?;
            }
        }

        // Open and write the stream
        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;

        let new_len = buffer.len() as u64;
        stream
            .set_len(new_len)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        cf.flush()
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Save polygons (copper pours) to a file path.
    ///
    /// This performs a read-modify-write operation.
    pub fn save_polygons_to_file<P: AsRef<Path>>(&self, path: P) -> Result<()> {
        let file = std::fs::OpenOptions::new()
            .read(true)
            .write(true)
            .open(path.as_ref())?;

        let mut cf = CompoundFile::open(file).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                e.to_string(),
            ))
        })?;

        let data_path = "/Polygons6/Data";

        // Check if stream exists
        if cf.entry(data_path).is_err() {
            return Err(AltiumError::Parse(
                "Polygons6/Data stream not found".to_string(),
            ));
        }

        // Serialize all polygons to a buffer
        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Polygon(p) = prim {
                let params = p.to_params();
                write_parameters_block(&mut buffer, &params)?;
            }
        }

        // Open and write the stream
        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;

        let new_len = buffer.len() as u64;
        stream
            .set_len(new_len)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        cf.flush()
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Get the number of components.
    pub fn component_count(&self) -> usize {
        self.components.len()
    }

    /// Get the number of primitives.
    pub fn primitive_count(&self) -> usize {
        self.primitives.len()
    }

    /// Get the number of nets.
    pub fn net_count(&self) -> usize {
        self.nets.len()
    }

    /// Get the number of design rules.
    pub fn rule_count(&self) -> usize {
        self.rules.len()
    }

    /// Iterate over design rules.
    pub fn iter_rules(&self) -> impl Iterator<Item = &PcbRule> {
        self.rules.iter()
    }

    /// Iterate over design rules mutably.
    pub fn iter_rules_mut(&mut self) -> impl Iterator<Item = &mut PcbRule> {
        self.rules.iter_mut()
    }

    /// Add a design rule.
    pub fn add_rule(&mut self, rule: PcbRule) {
        self.rules.push(rule);
    }

    /// Find a rule by name.
    pub fn find_rule(&self, name: &str) -> Option<&PcbRule> {
        self.rules.iter().find(|r| r.name == name)
    }

    /// Find a rule by name mutably.
    pub fn find_rule_mut(&mut self, name: &str) -> Option<&mut PcbRule> {
        self.rules.iter_mut().find(|r| r.name == name)
    }

    /// Iterate over components.
    pub fn iter_components(&self) -> impl Iterator<Item = &PcbDocComponent> {
        self.components.iter()
    }

    /// Iterate over primitives.
    pub fn iter_primitives(&self) -> impl Iterator<Item = &PcbRecord> {
        self.primitives.iter()
    }

    /// Count tracks.
    pub fn track_count(&self) -> usize {
        self.primitives
            .iter()
            .filter(|p| matches!(p, PcbRecord::Track(_)))
            .count()
    }

    /// Count vias.
    pub fn via_count(&self) -> usize {
        self.primitives
            .iter()
            .filter(|p| matches!(p, PcbRecord::Via(_)))
            .count()
    }

    /// Count pads (from components).
    pub fn pad_count(&self) -> usize {
        self.components
            .iter()
            .flat_map(|c| &c.primitives)
            .filter(|p| matches!(p, PcbRecord::Pad(_)))
            .count()
    }

    /// Find a component by designator.
    pub fn find_component(&self, designator: &str) -> Option<&PcbDocComponent> {
        self.components
            .iter()
            .find(|c| c.designator.eq_ignore_ascii_case(designator))
    }

    /// Find a component by designator mutably.
    pub fn find_component_mut(&mut self, designator: &str) -> Option<&mut PcbDocComponent> {
        self.components
            .iter_mut()
            .find(|c| c.designator.eq_ignore_ascii_case(designator))
    }

    /// Iterate over components mutably.
    pub fn iter_components_mut(&mut self) -> impl Iterator<Item = &mut PcbDocComponent> {
        self.components.iter_mut()
    }

    /// Write components to the CFB file.
    fn write_components<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_parameters_block;

        let data_path = "/Components6/Data";

        // Check if stream exists
        if cf.entry(data_path).is_err() {
            return Err(AltiumError::Parse(
                "Components6/Data stream not found".to_string(),
            ));
        }

        // Serialize all components to a buffer
        let mut buffer = Vec::new();
        for component in &self.components {
            write_parameters_block(&mut buffer, &component.params)?;
        }

        // Open and truncate the stream
        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        // Seek to beginning and write
        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;

        // Truncate to new length
        let new_len = buffer.len() as u64;
        stream
            .set_len(new_len)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Save with component changes.
    pub fn save_with_components<P: AsRef<Path>>(&self, path: P) -> Result<()> {
        // Read the existing file
        let file = std::fs::OpenOptions::new()
            .read(true)
            .write(true)
            .open(path.as_ref())?;

        let mut cf = CompoundFile::open(file).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                e.to_string(),
            ))
        })?;

        // Write rules
        self.write_rules(&mut cf)?;

        // Write components
        self.write_components(&mut cf)?;

        cf.flush()
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Save all primitives to a file path.
    ///
    /// This comprehensive save method writes all primitive types:
    /// - Tracks
    /// - Vias
    /// - Arcs
    /// - Fills
    /// - Regions
    /// - Polygons
    /// - Components
    /// - Rules
    pub fn save_all_to_file<P: AsRef<Path>>(&self, path: P) -> Result<()> {
        let file = std::fs::OpenOptions::new()
            .read(true)
            .write(true)
            .open(path.as_ref())?;

        let mut cf = CompoundFile::open(file).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                e.to_string(),
            ))
        })?;

        // Write tracks
        self.write_tracks(&mut cf)?;

        // Write vias
        self.write_vias(&mut cf)?;

        // Write arcs
        self.write_arcs(&mut cf)?;

        // Write fills
        self.write_fills(&mut cf)?;

        // Write regions
        self.write_regions_internal(&mut cf)?;

        // Write polygons
        self.write_polygons_internal(&mut cf)?;

        // Write pads
        self.write_pads(&mut cf)?;

        // Write texts
        self.write_texts(&mut cf)?;

        // Write rules
        self.write_rules(&mut cf)?;

        // Write components
        self.write_components(&mut cf)?;

        cf.flush()
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write tracks to the CFB file.
    fn write_tracks<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;
        use byteorder::WriteBytesExt;

        let data_path = "/Tracks6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(()); // Stream doesn't exist, skip
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Track(track) = prim {
                // Write RecordID byte
                buffer.write_u8(PcbObjectId::Track.to_byte())?;
                // Write size and data
                let mut track_data = Vec::new();
                track.write_to(&mut track_data)?;
                write_block(&mut buffer, &track_data, 0)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write vias to the CFB file.
    fn write_vias<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;
        use byteorder::WriteBytesExt;

        let data_path = "/Vias6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Via(via) = prim {
                // Write RecordID byte
                buffer.write_u8(PcbObjectId::Via.to_byte())?;
                // Write size and data
                let mut via_data = Vec::new();
                via.write_to(&mut via_data)?;
                write_block(&mut buffer, &via_data, 0)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write arcs to the CFB file.
    fn write_arcs<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;
        use byteorder::WriteBytesExt;

        let data_path = "/Arcs6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Arc(arc) = prim {
                // Write RecordID byte
                buffer.write_u8(PcbObjectId::Arc.to_byte())?;
                // Write size and data
                let mut arc_data = Vec::new();
                arc.write_to(&mut arc_data)?;
                write_block(&mut buffer, &arc_data, 0)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write fills to the CFB file.
    fn write_fills<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;
        use byteorder::WriteBytesExt;

        let data_path = "/Fills6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Fill(fill) = prim {
                // Write RecordID byte
                buffer.write_u8(PcbObjectId::Fill.to_byte())?;
                // Write size and data
                let mut fill_data = Vec::new();
                fill.write_to(&mut fill_data)?;
                write_block(&mut buffer, &fill_data, 0)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write pads to the CFB file.
    fn write_pads<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;
        use byteorder::WriteBytesExt;

        let data_path = "/Pads6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Pad(pad) = prim {
                // Write RecordID byte
                buffer.write_u8(PcbObjectId::Pad.to_byte())?;
                // Write size and data
                let mut pad_data = Vec::new();
                pad.write_to(&mut pad_data)?;
                write_block(&mut buffer, &pad_data, 0)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write texts to the CFB file.
    fn write_texts<R: Read + Write + Seek>(&self, cf: &mut CompoundFile<R>) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;
        use byteorder::WriteBytesExt;

        let data_path = "/Texts6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Text(text) = prim {
                // Write RecordID byte
                buffer.write_u8(PcbObjectId::Text.to_byte())?;
                // Write size and data
                let mut text_data = Vec::new();
                text.write_to(&mut text_data)?;
                write_block(&mut buffer, &text_data, 0)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write regions to the CFB file (internal method).
    fn write_regions_internal<R: Read + Write + Seek>(
        &self,
        cf: &mut CompoundFile<R>,
    ) -> Result<()> {
        use crate::io::writer::write_block;
        use crate::traits::ToBinary;
        use byteorder::WriteBytesExt;

        let data_path = "/Regions6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Region(region) = prim {
                // Write RecordID byte
                buffer.write_u8(PcbObjectId::Region.to_byte())?;
                // Write size and data
                let mut region_data = Vec::new();
                region.write_to(&mut region_data)?;
                write_block(&mut buffer, &region_data, 0)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Write polygons to the CFB file (internal method).
    fn write_polygons_internal<R: Read + Write + Seek>(
        &self,
        cf: &mut CompoundFile<R>,
    ) -> Result<()> {
        let data_path = "/Polygons6/Data";

        if cf.entry(data_path).is_err() {
            return Ok(());
        }

        let mut buffer = Vec::new();
        for prim in &self.primitives {
            if let PcbRecord::Polygon(polygon) = prim {
                let params = polygon.to_params();
                write_parameters_block(&mut buffer, &params)?;
            }
        }

        let mut stream = cf.open_stream(data_path).map_err(|e| {
            AltiumError::Io(std::io::Error::new(
                std::io::ErrorKind::NotFound,
                e.to_string(),
            ))
        })?;

        stream.seek(SeekFrom::Start(0))?;
        stream.write_all(&buffer)?;
        stream
            .set_len(buffer.len() as u64)
            .map_err(|e| AltiumError::Io(std::io::Error::other(e.to_string())))?;

        Ok(())
    }

    /// Count arcs.
    pub fn arc_count(&self) -> usize {
        self.primitives
            .iter()
            .filter(|p| matches!(p, PcbRecord::Arc(_)))
            .count()
    }

    /// Count fills.
    pub fn fill_count(&self) -> usize {
        self.primitives
            .iter()
            .filter(|p| matches!(p, PcbRecord::Fill(_)))
            .count()
    }

    /// Count regions.
    pub fn region_count(&self) -> usize {
        self.primitives
            .iter()
            .filter(|p| matches!(p, PcbRecord::Region(_)))
            .count()
    }

    /// Count polygons.
    pub fn polygon_count(&self) -> usize {
        self.primitives
            .iter()
            .filter(|p| matches!(p, PcbRecord::Polygon(_)))
            .count()
    }

    /// Count text elements.
    pub fn text_count(&self) -> usize {
        self.primitives
            .iter()
            .filter(|p| matches!(p, PcbRecord::Text(_)))
            .count()
    }

    /// Add a track.
    pub fn add_track(&mut self, track: PcbTrack) {
        self.primitives.push(PcbRecord::Track(track));
    }

    /// Add a via.
    pub fn add_via(&mut self, via: PcbVia) {
        self.primitives.push(PcbRecord::Via(via));
    }

    /// Add an arc.
    pub fn add_arc(&mut self, arc: PcbArc) {
        self.primitives.push(PcbRecord::Arc(arc));
    }

    /// Add a fill.
    pub fn add_fill(&mut self, fill: PcbFill) {
        self.primitives.push(PcbRecord::Fill(fill));
    }

    /// Add a region.
    pub fn add_region(&mut self, region: PcbRegion) {
        self.primitives.push(PcbRecord::Region(region));
    }

    /// Add a polygon.
    pub fn add_polygon(&mut self, polygon: PcbPolygon) {
        self.primitives.push(PcbRecord::Polygon(polygon));
    }

    /// Remove primitive at index.
    pub fn remove_primitive(&mut self, index: usize) -> Option<PcbRecord> {
        if index < self.primitives.len() {
            Some(self.primitives.remove(index))
        } else {
            None
        }
    }

    /// Get primitive at index.
    pub fn get_primitive(&self, index: usize) -> Option<&PcbRecord> {
        self.primitives.get(index)
    }

    /// Get mutable primitive at index.
    pub fn get_primitive_mut(&mut self, index: usize) -> Option<&mut PcbRecord> {
        self.primitives.get_mut(index)
    }

    /// Iterate over tracks.
    pub fn iter_tracks(&self) -> impl Iterator<Item = &PcbTrack> {
        self.primitives.iter().filter_map(|p| {
            if let PcbRecord::Track(t) = p {
                Some(t)
            } else {
                None
            }
        })
    }

    /// Iterate over vias.
    pub fn iter_vias(&self) -> impl Iterator<Item = &PcbVia> {
        self.primitives.iter().filter_map(|p| {
            if let PcbRecord::Via(v) = p {
                Some(v)
            } else {
                None
            }
        })
    }

    /// Iterate over arcs.
    pub fn iter_arcs(&self) -> impl Iterator<Item = &PcbArc> {
        self.primitives.iter().filter_map(|p| {
            if let PcbRecord::Arc(a) = p {
                Some(a)
            } else {
                None
            }
        })
    }

    /// Iterate over fills.
    pub fn iter_fills(&self) -> impl Iterator<Item = &PcbFill> {
        self.primitives.iter().filter_map(|p| {
            if let PcbRecord::Fill(f) = p {
                Some(f)
            } else {
                None
            }
        })
    }

    /// Iterate over regions.
    pub fn iter_regions(&self) -> impl Iterator<Item = &PcbRegion> {
        self.primitives.iter().filter_map(|p| {
            if let PcbRecord::Region(r) = p {
                Some(r)
            } else {
                None
            }
        })
    }

    /// Iterate over polygons.
    pub fn iter_polygons(&self) -> impl Iterator<Item = &PcbPolygon> {
        self.primitives.iter().filter_map(|p| {
            if let PcbRecord::Polygon(pol) = p {
                Some(pol)
            } else {
                None
            }
        })
    }

    /// Iterate over texts.
    pub fn iter_texts(&self) -> impl Iterator<Item = &PcbText> {
        self.primitives.iter().filter_map(|p| {
            if let PcbRecord::Text(t) = p {
                Some(t)
            } else {
                None
            }
        })
    }

    /// Add a text annotation.
    pub fn add_text(&mut self, text: PcbText) {
        self.primitives.push(PcbRecord::Text(text));
    }
}

impl PcbDocComponent {
    /// Get the X position of the component.
    pub fn x(&self) -> Option<crate::types::Coord> {
        self.params
            .get("X")
            .map(|v| v.as_coord_or(crate::types::Coord::ZERO))
    }

    /// Get the Y position of the component.
    pub fn y(&self) -> Option<crate::types::Coord> {
        self.params
            .get("Y")
            .map(|v| v.as_coord_or(crate::types::Coord::ZERO))
    }

    /// Get the rotation angle in degrees.
    pub fn rotation(&self) -> f64 {
        self.params
            .get("ROTATION")
            .and_then(|v| v.as_str().trim().parse::<f64>().ok())
            .unwrap_or(0.0)
    }

    /// Get the layer.
    pub fn layer(&self) -> crate::types::Layer {
        self.params
            .get("LAYER")
            .and_then(|v| {
                let layer_str = v.as_str();
                // Try exact match first
                crate::types::Layer::from_name(layer_str).or_else(|| {
                    // Try common aliases
                    match layer_str.to_uppercase().as_str() {
                        "TOP" => Some(crate::types::Layer::TOP_LAYER),
                        "BOTTOM" => Some(crate::types::Layer::BOTTOM_LAYER),
                        "TOPOVERLAY" | "TOP_OVERLAY" => Some(crate::types::Layer::TOP_OVERLAY),
                        "BOTTOMOVERLAY" | "BOTTOM_OVERLAY" => {
                            Some(crate::types::Layer::BOTTOM_OVERLAY)
                        }
                        _ => None,
                    }
                })
            })
            .unwrap_or(crate::types::Layer::TOP_LAYER)
    }

    /// Set the X position of the component.
    pub fn set_x(&mut self, x: crate::types::Coord) {
        self.params.add_coord("X", x);
    }

    /// Set the Y position of the component.
    pub fn set_y(&mut self, y: crate::types::Coord) {
        self.params.add_coord("Y", y);
    }

    /// Set the position of the component.
    pub fn set_position(&mut self, x: crate::types::Coord, y: crate::types::Coord) {
        self.set_x(x);
        self.set_y(y);
    }

    /// Set the rotation angle in degrees.
    pub fn set_rotation(&mut self, rotation: f64) {
        // Format as scientific notation like Altium does
        self.params.add("ROTATION", &format!("{:.14E}", rotation));
    }

    /// Set the layer.
    pub fn set_layer(&mut self, layer: crate::types::Layer) {
        self.params.add("LAYER", layer.name());
    }
}

impl DumpTree for PcbDoc {
    fn dump(&self, tree: &mut TreeBuilder) {
        tree.root(&format!(
            "PcbDoc ({} components, {} primitives, {} rules)",
            self.components.len(),
            self.primitives.len(),
            self.rules.len()
        ));

        // Summary
        tree.push(
            !self.components.is_empty() || !self.primitives.is_empty() || !self.rules.is_empty(),
        );
        tree.add_leaf(
            "Summary",
            &[
                ("components", format!("{}", self.components.len())),
                ("tracks", format!("{}", self.track_count())),
                ("vias", format!("{}", self.via_count())),
                ("nets", format!("{}", self.nets.len())),
                ("rules", format!("{}", self.rules.len())),
                ("primitives", format!("{}", self.primitives.len())),
            ],
        );
        tree.pop();

        // Components
        if !self.components.is_empty() {
            tree.push(!self.primitives.is_empty());
            tree.begin_node(&format!("Components ({})", self.components.len()));
            for (i, comp) in self.components.iter().enumerate() {
                tree.push(i < self.components.len() - 1);
                comp.dump(tree);
                tree.pop();
            }
            tree.pop();
        }

        // Nets
        if !self.nets.is_empty() {
            tree.push(false);
            tree.add_leaf(
                &format!("Nets ({})", self.nets.len()),
                &[(
                    "first_few",
                    self.nets
                        .iter()
                        .take(5)
                        .cloned()
                        .collect::<Vec<_>>()
                        .join(", "),
                )],
            );
            tree.pop();
        }
    }
}

impl DumpTree for PcbDocComponent {
    fn dump(&self, tree: &mut TreeBuilder) {
        let mut props = vec![("designator", self.designator.clone())];
        if !self.pattern.is_empty() {
            props.push(("pattern", self.pattern.clone()));
        }
        if !self.comment.is_empty() {
            props.push(("comment", self.comment.clone()));
        }
        tree.add_leaf_with_params("Component", &props, Some(&self.params));
    }
}

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

    #[test]
    fn test_read_classes_and_options() {
        let data = std::fs::read("data/PCB1.PcbDoc").expect("Failed to read file");
        let pcbdoc = PcbDoc::open(Cursor::new(&data)).expect("Failed to parse PcbDoc");

        // Should have classes
        assert!(!pcbdoc.classes.is_empty(), "Should have parsed classes");
        println!("Classes: {}", pcbdoc.classes.len());
        for class in &pcbdoc.classes {
            println!("  - {} ({:?})", class.name, class.kind);
        }

        // Should have placer options
        assert!(
            pcbdoc.placer_options.is_some(),
            "Should have placer options"
        );
        let opts = pcbdoc.placer_options.as_ref().unwrap();
        assert!(opts.use_rotation); // Default is true

        // Should have DRC options
        assert!(pcbdoc.drc_options.is_some(), "Should have DRC options");

        // Should have pin swap options
        assert!(
            pcbdoc.pin_swap_options.is_some(),
            "Should have pin swap options"
        );

        // Should have rules
        assert!(!pcbdoc.rules.is_empty(), "Should have rules");
        println!("Rules: {}", pcbdoc.rules.len());
    }
}