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
// Copyright (C) 2024 Intel Corporation
// SPDX-License-Identifier: Apache-2.0

#![allow(clippy::not_unsafe_ptr_arg_deref, clippy::too_many_arguments)]

//! Bindings for configuration objects

// NOTE: SIM_object_iterator removed in 7.9.0/6.0.194
#[cfg(any(
    simics_version = "6.0.163",
    simics_version = "6.0.164",
    simics_version = "6.0.165",
    simics_version = "6.0.166",
    simics_version = "6.0.167",
    simics_version = "6.0.168",
    simics_version = "6.0.169",
    simics_version = "6.0.170",
    simics_version = "6.0.171",
    simics_version = "6.0.172",
    simics_version = "6.0.173",
    simics_version = "6.0.174",
    simics_version = "6.0.175",
    simics_version = "6.0.176",
    simics_version = "6.0.177",
    simics_version = "6.0.178",
    simics_version = "6.0.179",
    simics_version = "6.0.180",
    simics_version = "6.0.181",
    simics_version = "6.0.182",
    simics_version = "6.0.183",
    simics_version = "6.0.184",
    simics_version = "6.0.185",
    simics_version = "6.0.186",
    simics_version = "6.0.187",
    simics_version = "6.0.188",
    simics_version = "6.0.189",
    simics_version = "6.0.190",
    simics_version = "6.0.191",
    simics_version = "6.0.192",
    simics_version = "6.0.193",
    simics_version = "6.0.194",
    simics_version = "7.0.0",
    simics_version = "7.1.0",
    simics_version = "7.2.0",
    simics_version = "7.3.0",
    simics_version = "7.4.0",
    simics_version = "7.5.0",
    simics_version = "7.6.0",
    simics_version = "7.7.0",
    simics_version = "7.8.0",
    simics_version = "7.9.0",
))]
use crate::sys::{SIM_object_iterator, SIM_shallow_object_iterator};

// NOTE: For any version other than those SIM_object_iterator is defined for,
// use VT_object_iterator and VT_shallow_object_iterator
#[cfg(not(any(
    simics_version = "6.0.163",
    simics_version = "6.0.164",
    simics_version = "6.0.165",
    simics_version = "6.0.166",
    simics_version = "6.0.167",
    simics_version = "6.0.168",
    simics_version = "6.0.169",
    simics_version = "6.0.170",
    simics_version = "6.0.171",
    simics_version = "6.0.172",
    simics_version = "6.0.173",
    simics_version = "6.0.174",
    simics_version = "6.0.175",
    simics_version = "6.0.176",
    simics_version = "6.0.177",
    simics_version = "6.0.178",
    simics_version = "6.0.179",
    simics_version = "6.0.180",
    simics_version = "6.0.181",
    simics_version = "6.0.182",
    simics_version = "6.0.183",
    simics_version = "6.0.184",
    simics_version = "6.0.185",
    simics_version = "6.0.186",
    simics_version = "6.0.187",
    simics_version = "6.0.188",
    simics_version = "6.0.189",
    simics_version = "6.0.190",
    simics_version = "6.0.191",
    simics_version = "6.0.192",
    simics_version = "6.0.193",
    simics_version = "6.0.194",
    simics_version = "7.0.0",
    simics_version = "7.1.0",
    simics_version = "7.2.0",
    simics_version = "7.3.0",
    simics_version = "7.4.0",
    simics_version = "7.5.0",
    simics_version = "7.6.0",
    simics_version = "7.7.0",
    simics_version = "7.8.0",
    simics_version = "7.9.0",
)))]
use crate::sys::{VT_object_iterator, VT_shallow_object_iterator};

use crate::{
    last_error, simics_exception,
    sys::{
        attr_attr_t, attr_value_t, class_data_t, class_info_t, class_kind_t, conf_class_t,
        conf_object_t, get_attr_t, get_class_attr_t, object_iter_t, set_attr_t, set_class_attr_t,
        set_error_t, SIM_attribute_error, SIM_copy_class, SIM_create_class, SIM_extend_class,
        SIM_extension_data, SIM_get_class_data, SIM_get_class_interface, SIM_get_class_name,
        SIM_get_interface, SIM_marked_for_deletion, SIM_object_data, SIM_object_descendant,
        SIM_object_id, SIM_object_is_configured, SIM_object_iterator_next, SIM_object_name,
        SIM_object_parent, SIM_register_attribute_with_user_data, SIM_register_class_alias,
        SIM_register_class_attribute_with_user_data, SIM_register_interface,
        SIM_register_typed_attribute, SIM_register_typed_class_attribute, SIM_require_object,
        SIM_set_class_data, SIM_set_object_configured,
    },
    AttrValue, Error, Interface, Result,
};
use raw_cstr::{raw_cstr, AsRawCstr};
use std::{
    ffi::{c_void, CStr},
    fmt::Display,
    ops::Range,
    ptr::null_mut,
};

/// Alias for `conf_object_t`
pub type ConfObject = conf_object_t;
/// Alias for `conf_class_t`
pub type ConfClass = conf_class_t;
/// Alias for `class_data_t`
pub type ClassData = class_data_t;
/// Alias for `class_info_t`
pub type ClassInfo = class_info_t;
/// Alias for `class_kind_t`
pub type ClassKind = class_kind_t;
/// Alias for `attr_attr_t`
pub type AttrAttr = attr_attr_t;
/// Alias for `object_iter_t`
pub type ObjectIter = object_iter_t;
/// Alias for `get_attr_t`
pub type GetAttr = get_attr_t;
/// Alias for `set_attr_t`
pub type SetAttr = set_attr_t;
/// Alias for `get_class_attr_t`
pub type GetClassAttr = get_class_attr_t;
/// Alias for `set_class_attr_t`
pub type SetClassAttr = set_class_attr_t;
/// Alias for `set_error_t`
pub type SetErr = set_error_t;

/// A type in a [`TypeStringType::List`]. See [`TypeStringType`] for a description of these
/// variants.
pub enum TypeStringListType {
    /// A single type
    Type(Box<TypeStringType>),
    /// A sequence of types with a range of possible lengths
    Range(Range<usize>, Box<TypeStringType>),
    /// A sequence of types with an exact length
    Exact(usize, Box<TypeStringType>),
    /// A sequence of zero or more occurrences of a type
    ZeroOrMore(Box<TypeStringType>),
    /// A sequence of one or more occurrences of a type
    OneOrMore(Box<TypeStringType>),
}

impl Display for TypeStringListType {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            TypeStringListType::Type(t) => write!(f, "{}", t),
            TypeStringListType::Range(r, t) => {
                write!(f, "{}{{{}:{}}}", t, r.start, r.end)
            }
            TypeStringListType::Exact(c, t) => write!(f, "{}{{{}}}", t, c),
            TypeStringListType::ZeroOrMore(t) => write!(f, "{}*", t),
            TypeStringListType::OneOrMore(t) => write!(f, "{}+", t),
        }
    }
}

/// A type in a python-like type string
///
/// The enumeration represents a type string
///
/// Most types are represented by a single letter:
///
/// | Letter | Type           |
/// | ------ | -------------- |
/// | i      | integer        |
/// | f      | floating-point |
/// | s      | string         |
/// | b      | boolean        |
/// | o      | object         |
/// | d      | data           |
/// | n      | nil            |
/// | D      | dictionary     |
/// | a      | any type       |
///
/// The | (vertical bar) operator specifies the union of two types; eg, s|o is the type
/// of a string or an object.  Lists are defined inside square brackets: []. There are
/// two kinds of list declarations:
///
/// A heterogeneous list of fixed length is defined by the types of its elements. For
/// example, [ios] specifies a 3-element list consisting of an integer, an object and a
/// string, in that order.
///
/// A homogeneous list of varying length is defined by a single type followed by a
/// length modifier:
///
/// | Modifier | Meaning                             |
/// | -------- | ----------------------------------- |
/// | {N:M}    | between N and M elements, inclusive |
/// | {N}      | exactly N elements                  |
/// | *        | zero or more elements               |
/// | +        | one or more elements                |
///
/// For example, [i{3,5}] specifies a list of 3, 4 or 5 integers.
///
/// Inside heterogeneous lists, | (union) has higher precedence than juxtaposition; ie,
/// [i|so|n] defines a list of two elements, the first being an integer or a string and
/// the second an object or NIL.
pub enum TypeStringType {
    /// An integer type
    Integer,
    /// A floating point type
    Float,
    /// A string type
    String,
    /// A boolean type
    Boolean,
    /// An object type, i.e. a pointer to a confobject
    Object,
    /// A data type, i.e. a void pointer
    Data,
    /// nil (i.e. None) type
    Nil,
    /// A dictionary or mapping type
    Dictionary,
    /// Any type
    Any,
    /// A list of types
    List(Vec<TypeStringListType>),
    /// An alternation, either the left or right type is permitted
    Or(Box<TypeStringType>, Box<TypeStringType>),
}

impl Display for TypeStringType {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            TypeStringType::Integer => write!(f, "i"),
            TypeStringType::Float => write!(f, "f"),
            TypeStringType::String => write!(f, "s"),
            TypeStringType::Boolean => write!(f, "b"),
            TypeStringType::Object => write!(f, "o"),
            TypeStringType::Data => write!(f, "d"),
            TypeStringType::Nil => write!(f, "n"),
            TypeStringType::Dictionary => write!(f, "D"),
            TypeStringType::Any => write!(f, "a"),
            TypeStringType::List(l) => write!(
                f,
                "[{}]",
                l.iter().map(|li| li.to_string()).collect::<String>()
            ),
            TypeStringType::Or(l, r) => write!(f, "{}|{}", l, r),
        }
    }
}

// NOTE: There is an old class creation method, but it is *actually* deprecated, so we do not
// include it with a #[deprecated] warning.

#[simics_exception]
/// Register an alias alias for the existing class class_name. Using aliases allows the
/// read-configuration command to read configuration files that define objects of type
/// alias, while the write-configuration command always uses class_name.
///
/// Aliases are used to support compatibility with old class names if a class is
/// renamed. They can also be used to allow different modules, which define different
/// specific implementations of the same generic base class, to read the same
/// configuration files.
///
/// # Arguments
///
/// * `alias` - The name to register as an alias for the class that is already registered for `name`
/// * `name` The name of the class to register an alias for
///
/// # Return value
///
/// Ok if the alias was registered successfully, or an error otherwise.
///
/// # Context
///
/// Global Context
pub fn register_class_alias<S>(alias: S, name: S) -> Result<()>
where
    S: AsRef<str>,
{
    unsafe { SIM_register_class_alias(raw_cstr(alias)?, raw_cstr(name)?) };
    Ok(())
}

#[simics_exception]
/// This function creates a new class that can be instantiated by calling the
/// SIM_create_object function. It is a replacement for SIM_register_class and should be
/// used in all new code.
///
/// The name can contain upper and lower case ASCII letters, hyphens, underscores, and
/// digits. It must not begin with a digit or a hyphen and must not end with a hyphen.
///
/// # Arguments
///
/// * `name` - The name to register the class for
/// * `class_info` - The description of the class
///
/// # Return Value
///
/// A pointer to the successfully registered class object, or an error if registration
/// is not successful
///
/// # Context
///
/// Global Context
pub fn create_class<S>(name: S, class_info: ClassInfo) -> Result<*mut ConfClass>
where
    S: AsRef<str>,
{
    let name_raw = raw_cstr(name.as_ref())?;

    // The reference can be dropped after the `SIM_create_class` function returns,
    // so this is safe to call this way
    let cls = unsafe { SIM_create_class(name_raw, &class_info as *const ClassInfo) };

    if cls.is_null() {
        Err(Error::CreateClass {
            name: name.as_ref().to_string(),
            message: last_error(),
        })
    } else {
        Ok(cls)
    }
}

#[simics_exception]
/// The function extends the class cls with attributes, interfaces, port objects and
/// port interfaces defined by the extension class ext.
///
/// The extension class must be of the type Sim_Class_Kind_Extension and must not define
/// any attributes or interfaces which have already been defined by the class being
/// augmented.
///
/// Besides normal object initialization, the init_object method for the extension
/// class, will be called when cls is instantiated. The pointer returned by init_object
/// can be retrieved using SIM_extension_data. The init_object method may return NULL if
/// no private data pointer is needed; this does not signify an error condition for
/// extension classes.
///
/// The finalize_instance method defined by the extension class will be called before
/// the finalize_instance method is called for the class being extended.
///
/// The SIM_extension_class function is intended to be used to extend a class with
/// generic functionality, common to multiple classes.
///
/// # Arguments
///
/// * `cls` - The class to extend
/// * `ext` - The extension class to extend the class with
///
/// # Context
///
/// Global Context
pub fn extend_class(cls: *mut ConfClass, ext: *mut ConfClass) {
    unsafe { SIM_extend_class(cls, ext) };
}

#[simics_exception]
/// This function creates a copy of the class src_class named name.  Additional
/// attributes and interfaces can be registered on the newly created class.
///
/// The new class is described by desc
///
/// # Arguments
///
/// * `name` - The name of the new class
/// * `src_cls` - The class to make a copy of
/// * `desc` - The description string of the new class
///
/// # Return Value
///
/// The new copied class
///
/// # Context
///
/// Global Context
pub fn copy_class<S>(name: S, src_cls: *mut ConfClass, desc: S) -> Result<*mut ConfClass>
where
    S: AsRef<str>,
{
    Ok(unsafe { SIM_copy_class(raw_cstr(name)?, src_cls, raw_cstr(desc)?) })
}

#[simics_exception]
/// Get the name of a class. The name is copied, which differs from the
/// C API.
///
/// # Arguments
///
/// * `cls` - The class to get the name of
///
/// # Return Value
///
/// The name of the class
///
/// # Context
///
/// Cell Context
pub fn get_class_name(cls: *mut ConfClass) -> Result<String> {
    Ok(unsafe { CStr::from_ptr(SIM_get_class_name(cls)) }
        .to_str()
        .map(|s| s.to_string())?)
}

#[simics_exception]
/// Set extra data for the specified class. This is particularly useful if the same class
/// methods are used for multiple distinct classes, for instance for generated classes.
/// The class data can be fetched at any time during the object initialisation, using
/// [`get_class_data`].
///
/// # Arguments
///
/// * `cls` - The class to set extra data for
/// * `data` - Extra data to store
///
/// # Context
///
/// Global Context
pub fn set_class_data<T>(cls: *mut ConfClass, data: T) {
    unsafe { SIM_set_class_data(cls, Box::into_raw(Box::new(data)) as *mut c_void) }
}

#[simics_exception]
/// Obtain the class data that was set using [`set_class_data`]. This can be called at
/// any time during the object initialisation process.
///
/// # Arguments
///
/// * `cls` - The class to retrieve data for.
///
/// # Return Value
///
/// The class data. Ownership of the data is not transferred to the caller. If `T`
/// implements `Clone`, clone the data to obtain an owned object.
///
/// # Context
///
/// Cell Context
pub fn get_class_data<'a, T>(cls: *mut ConfClass) -> &'a mut T {
    unsafe { Box::leak(Box::from_raw(SIM_get_class_data(cls) as *mut T)) }
}

#[simics_exception]
/// If obj has not yet been set as configured, then that object's finalize method
/// (post_init in DML) is run; otherwise, nothing happens. After completion of that
/// method, obj will be set as configured.
///
/// Each object will have its finalize method called automatically, usually in
/// hierarchical order, during object creation. Since it is only permitted to call
/// methods on objects that have been configured, [`require_object`] is a way to allow
/// such calls during finalisation by ensuring that those objects are correctly set up.
/// A better way to call methods on other objects during finalization is to defer such
/// calls to the objects_finalized method.
///
/// [`require_object`] may only be called from the finalize method of another object.
///
/// Finalisation cycles can occur if two or more objects call [`require_object`] on each
/// other. Such cycles are treated as errors. To avoid them, call
/// [`set_object_configured`] as soon as the object has reached a consistent state.
///
/// # Arguments
///
/// * `obj` - The object to require finalization for
///
/// # Context
///
/// Global Context
pub fn require_object(obj: *mut ConfObject) {
    unsafe { SIM_require_object(obj) };
}

#[simics_exception]
/// Returns the name of an object. This name identifies the object uniquely, but may
/// change if the object is moved to another hierarchical location.
///
/// The return value is a string, owned by obj, that should not be modified or freed by
/// the caller.
///
/// # Arguments
///
/// * `obj` - The object to get the name for
///
/// # Return Value
///
/// The unique name of the object
///
/// # Context
///
/// All Contexts
pub fn object_name(obj: *mut ConfObject) -> Result<String> {
    Ok(unsafe { CStr::from_ptr(SIM_object_name(obj)) }
        .to_str()
        .map(|s| s.to_string())?)
}

#[simics_exception]
/// Returns the unique identifier for an object. The identifier is a string that is
/// guaranteed to be unique and will never change, even if the object moves to another
/// hierarchical location.
///
/// The return value is a static string that should not be modified or freed by the
/// caller.
///
/// # Arguments
///
/// * `obj` - The object to get the id for
///
/// # Return Value
///
/// The unique id of the object
///
/// # Context
///
/// All Contexts
pub fn object_id(obj: *mut ConfObject) -> Result<String> {
    Ok(unsafe { CStr::from_ptr(SIM_object_id(obj)) }
        .to_str()
        .map(|s| s.to_string())?)
}

#[simics_exception]
/// [`object_is_configured`] indicates whether obj is configured.
///
/// An object is configured once its finalize_instance method (post_init in DML) has
/// completed, or [`set_object_configured`] has been called for it. Being configured
/// indicates that the object is in a consistent state and is ready to be used by other
/// objects.
///
/// # Arguments
///
/// * `obj` - The object to retrieve the configured status for
///
/// # Return Value
///
/// Whether the object is configured
///
/// # Context
///
/// All Contexts
pub fn object_is_configured(obj: *mut ConfObject) -> bool {
    unsafe { SIM_object_is_configured(obj) }
}

#[simics_exception]
/// [`set_object_configured`] sets the object as configured.
///
/// [`set_object_configured`] is used to avoid circular dependencies between objects. It
/// may only be called from the object's own finalize_instance method, when the object
/// is known to be in a consistent state.
///
/// # Arguments
///
/// * `obj` - The object to set as configured
///
/// # Context
///
/// Global Context
pub fn set_object_configured(obj: *mut ConfObject) {
    unsafe { SIM_set_object_configured(obj) }
}

#[simics_exception]
/// Returns the private data pointer of an object. This pointer is available to the
/// class for storing instance-specific state.  It is initialised to the return value of
/// the init (from class_info_t) method that is called during object creation. For
/// classes created using the legacy [`register_class`], the same functionality is
/// provided by the init_object method .
///
/// For classes implemented in Python, the data (which is then a Python value) can also
/// be accessed as obj.object_data.
///
/// For classes written in C, the preferred way to store instance-specific state is by
/// co-allocation with the object's conf_object_t structure instead of using
/// [`object_data`]. Such classes should define the alloc method in the class_info_t
/// passed to [`create_class`] for allocating its instance data. For classes using the
/// legacy [`register_class`] class registration function, they should define the
/// alloc_object method in the class_data_t data structure.
///
/// # Arguments
///
/// * `obj` - The object to retrieve extra data for
///
/// # Return value
///
/// A reference to the object's inner data
///
/// # Context
///
/// All Contexts
pub fn object_data<'a, T>(obj: *mut ConfObject) -> &'a mut T {
    unsafe { Box::leak(Box::from_raw(SIM_object_data(obj) as *mut T)) }
}

#[simics_exception]
/// Returns the private data pointer of an object associated with the extension class
/// ext_cls. The returned pointer is the value returned by the init_object method called
/// for the extension class ext_cls.
///
/// The object obj must be an instance of a class which has been extended with the
/// extension class ext_cls using the [`extend_class`] function.
///
/// # Arguments
///
/// * `obj` - An instance of a class which has been extended with `cls`
/// * `cls` - The class that extends the class `obj` is an instance of
///
/// # Return value
///
/// A reference to the object's inner data
///
/// # Context
///
/// Cell Context
pub fn extension_data<'a, T>(obj: *mut ConfObject, cls: *mut ConfClass) -> &'a mut T {
    unsafe { Box::leak(Box::from_raw(SIM_extension_data(obj, cls) as *mut T)) }
}

#[simics_exception]
/// Retrieve the parent object if there is one, or None otherwise.
///
/// # Arguments
///
/// * `obj` - The object to get a parent object for
///
/// # Return Value
///
/// A pointer to the parent object if there is one, or None otherwise
///
/// # Context
///
/// Unknown
pub fn object_parent(obj: *mut ConfObject) -> Option<*mut ConfObject> {
    let ptr = unsafe { SIM_object_parent(obj) };

    if ptr.is_null() {
        None
    } else {
        Some(ptr)
    }
}

#[simics_exception]
/// Retrieve an object's descendant with a name, if one exists.
///
/// # Arguments
///
/// * `obj` - The object to get descendants for
/// * `relname` - The name of the related descendant
///
/// # Return Value
///
/// The descendant of the object with a name, if one exists
///
/// # Context
///
/// Unknown
pub fn object_descendant<S>(obj: *mut ConfObject, relname: S) -> Result<Option<*mut ConfObject>>
where
    S: AsRef<str>,
{
    let ptr = unsafe { SIM_object_descendant(obj, raw_cstr(relname)?) };
    if ptr.is_null() {
        Ok(None)
    } else {
        Ok(Some(ptr))
    }
}

#[cfg(any(
    simics_version = "6.0.163",
    simics_version = "6.0.164",
    simics_version = "6.0.165",
    simics_version = "6.0.166",
    simics_version = "6.0.167",
    simics_version = "6.0.168",
    simics_version = "6.0.169",
    simics_version = "6.0.170",
    simics_version = "6.0.171",
    simics_version = "6.0.172",
    simics_version = "6.0.173",
    simics_version = "6.0.174",
    simics_version = "6.0.175",
    simics_version = "6.0.176",
    simics_version = "6.0.177",
    simics_version = "6.0.178",
    simics_version = "6.0.179",
    simics_version = "6.0.180",
    simics_version = "6.0.181",
    simics_version = "6.0.182",
    simics_version = "6.0.183",
    simics_version = "6.0.184",
    simics_version = "6.0.185",
    simics_version = "6.0.186",
    simics_version = "6.0.187",
    simics_version = "6.0.188",
    simics_version = "6.0.189",
    simics_version = "6.0.190",
    simics_version = "6.0.191",
    simics_version = "6.0.192",
    simics_version = "6.0.193",
    simics_version = "6.0.194",
    simics_version = "7.0.0",
    simics_version = "7.1.0",
    simics_version = "7.2.0",
    simics_version = "7.3.0",
    simics_version = "7.4.0",
    simics_version = "7.5.0",
    simics_version = "7.6.0",
    simics_version = "7.7.0",
    simics_version = "7.8.0",
    simics_version = "7.9.0",
))]
#[simics_exception]
/// Obtain an iterator over the child objects at all depths of a given object
///
/// # Argument
///
/// * `obj` - The object to get an iterator for
///
/// # Return Value
///
/// The iterator over the object's children
///
/// # Context
///
/// Unknown
pub fn object_iterator(obj: *mut ConfObject) -> ObjectIter {
    unsafe { SIM_object_iterator(obj) }
}

#[cfg(any(
    simics_version = "6.0.163",
    simics_version = "6.0.164",
    simics_version = "6.0.165",
    simics_version = "6.0.166",
    simics_version = "6.0.167",
    simics_version = "6.0.168",
    simics_version = "6.0.169",
    simics_version = "6.0.170",
    simics_version = "6.0.171",
    simics_version = "6.0.172",
    simics_version = "6.0.173",
    simics_version = "6.0.174",
    simics_version = "6.0.175",
    simics_version = "6.0.176",
    simics_version = "6.0.177",
    simics_version = "6.0.178",
    simics_version = "6.0.179",
    simics_version = "6.0.180",
    simics_version = "6.0.181",
    simics_version = "6.0.182",
    simics_version = "6.0.183",
    simics_version = "6.0.184",
    simics_version = "6.0.185",
    simics_version = "6.0.186",
    simics_version = "6.0.187",
    simics_version = "6.0.188",
    simics_version = "6.0.189",
    simics_version = "6.0.190",
    simics_version = "6.0.191",
    simics_version = "6.0.192",
    simics_version = "6.0.193",
    simics_version = "6.0.194",
    simics_version = "7.0.0",
    simics_version = "7.1.0",
    simics_version = "7.2.0",
    simics_version = "7.3.0",
    simics_version = "7.4.0",
    simics_version = "7.5.0",
    simics_version = "7.6.0",
    simics_version = "7.7.0",
    simics_version = "7.8.0",
    simics_version = "7.9.0",
))]
#[simics_exception]
/// Obtain an iterator over the child objects at depth 1 of a given object
///
/// # Arguments
///
/// * `obj` - The object to get an iterator for
///
/// # Return Value
///
/// An iterator over the object's children, non-recursively
///
/// # Context
///
/// Unknown
pub fn shallow_object_iterator(obj: *mut ConfObject) -> ObjectIter {
    unsafe { SIM_shallow_object_iterator(obj) }
}

#[cfg(not(any(
    simics_version = "6.0.163",
    simics_version = "6.0.164",
    simics_version = "6.0.165",
    simics_version = "6.0.166",
    simics_version = "6.0.167",
    simics_version = "6.0.168",
    simics_version = "6.0.169",
    simics_version = "6.0.170",
    simics_version = "6.0.171",
    simics_version = "6.0.172",
    simics_version = "6.0.173",
    simics_version = "6.0.174",
    simics_version = "6.0.175",
    simics_version = "6.0.176",
    simics_version = "6.0.177",
    simics_version = "6.0.178",
    simics_version = "6.0.179",
    simics_version = "6.0.180",
    simics_version = "6.0.181",
    simics_version = "6.0.182",
    simics_version = "6.0.183",
    simics_version = "6.0.184",
    simics_version = "6.0.185",
    simics_version = "6.0.186",
    simics_version = "6.0.187",
    simics_version = "6.0.188",
    simics_version = "6.0.189",
    simics_version = "6.0.190",
    simics_version = "6.0.191",
    simics_version = "6.0.192",
    simics_version = "6.0.193",
    simics_version = "6.0.194",
    simics_version = "7.0.0",
    simics_version = "7.1.0",
    simics_version = "7.2.0",
    simics_version = "7.3.0",
    simics_version = "7.4.0",
    simics_version = "7.5.0",
    simics_version = "7.6.0",
    simics_version = "7.7.0",
    simics_version = "7.8.0",
    simics_version = "7.9.0",
)))]
#[simics_exception]
/// Obtain an iterator over the child objects at all depths of a given object
///
/// # Argument
///
/// * `obj` - The object to get an iterator for
///
/// # Return Value
///
/// The iterator over the object's children
///
/// # Context
///
/// Unknown
pub fn object_iterator(obj: *mut ConfObject) -> ObjectIter {
    unsafe { VT_object_iterator(obj) }
}

#[cfg(not(any(
    simics_version = "6.0.163",
    simics_version = "6.0.164",
    simics_version = "6.0.165",
    simics_version = "6.0.166",
    simics_version = "6.0.167",
    simics_version = "6.0.168",
    simics_version = "6.0.169",
    simics_version = "6.0.170",
    simics_version = "6.0.171",
    simics_version = "6.0.172",
    simics_version = "6.0.173",
    simics_version = "6.0.174",
    simics_version = "6.0.175",
    simics_version = "6.0.176",
    simics_version = "6.0.177",
    simics_version = "6.0.178",
    simics_version = "6.0.179",
    simics_version = "6.0.180",
    simics_version = "6.0.181",
    simics_version = "6.0.182",
    simics_version = "6.0.183",
    simics_version = "6.0.184",
    simics_version = "6.0.185",
    simics_version = "6.0.186",
    simics_version = "6.0.187",
    simics_version = "6.0.188",
    simics_version = "6.0.189",
    simics_version = "6.0.190",
    simics_version = "6.0.191",
    simics_version = "6.0.192",
    simics_version = "6.0.193",
    simics_version = "6.0.194",
    simics_version = "7.0.0",
    simics_version = "7.1.0",
    simics_version = "7.2.0",
    simics_version = "7.3.0",
    simics_version = "7.4.0",
    simics_version = "7.5.0",
    simics_version = "7.6.0",
    simics_version = "7.7.0",
    simics_version = "7.8.0",
    simics_version = "7.9.0",
)))]
#[simics_exception]
/// Obtain an iterator over the child objects at depth 1 of a given object
///
/// # Arguments
///
/// * `obj` - The object to get an iterator for
///
/// # Return Value
///
/// An iterator over the object's children, non-recursively
///
/// # Context
///
/// Unknown
pub fn shallow_object_iterator(obj: *mut ConfObject) -> ObjectIter {
    unsafe { VT_shallow_object_iterator(obj) }
}

#[simics_exception]
/// Consume and return the next item of an object iterator, if one exists
///
/// # Arguments
///
/// * `iter` - The iterator obtained from [`object_iterator`] or
/// [`shallow_object_iterator`]
///
/// # Return Value
///
/// The next element in the iteration, or `None` if the iterator has been exhausted
///
/// # Context
///
/// Unknown
pub fn object_iterator_next(iter: *mut ObjectIter) -> Option<*mut ConfObject> {
    let obj = unsafe { SIM_object_iterator_next(iter) };

    if obj.is_null() {
        None
    } else {
        Some(obj)
    }
}

extern "C" fn get_typed_attr_handler<F>(
    cb: *mut c_void,
    obj: *mut ConfObject,
    idx: *mut attr_value_t,
) -> attr_value_t
where
    F: FnMut(*mut ConfObject, AttrValue) -> Result<AttrValue> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });
    let idx = unsafe { AttrValue::from_raw(idx) };

    closure(obj, idx)
        .expect("Error calling get_typed_attr_handler callback")
        .into_raw()
}

extern "C" fn set_typed_attr_handler<F>(
    cb: *mut c_void,
    obj: *mut ConfObject,
    val: *mut attr_value_t,
    idx: *mut attr_value_t,
) -> SetErr
where
    F: FnMut(*mut ConfObject, AttrValue, AttrValue) -> Result<SetErr> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });
    let val = unsafe { AttrValue::from_raw(val) };
    let idx = unsafe { AttrValue::from_raw(idx) };

    closure(obj, val, idx).expect("Error calling set_typed_attr_handler callback")
}

extern "C" fn get_typed_class_attr_handler<F>(
    cb: *mut c_void,
    cls: *mut ConfClass,
    idx: *mut attr_value_t,
) -> attr_value_t
where
    F: FnMut(*mut ConfClass, AttrValue) -> Result<AttrValue> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });
    let idx = unsafe { AttrValue::from_raw(idx) };

    closure(cls, idx)
        .expect("Error calling get_typed_class_attr_handler callback")
        .into_raw()
}

extern "C" fn set_typed_class_attr_handler<F>(
    cb: *mut c_void,
    cls: *mut ConfClass,
    val: *mut attr_value_t,
    idx: *mut attr_value_t,
) -> SetErr
where
    F: FnMut(*mut ConfClass, AttrValue, AttrValue) -> Result<SetErr> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });
    let val = unsafe { AttrValue::from_raw(val) };
    let idx = unsafe { AttrValue::from_raw(idx) };

    closure(cls, val, idx).expect("Error calling set_typed_class_attr_handler callback")
}

extern "C" fn get_attr_handler<F>(obj: *mut ConfObject, cb: *mut c_void) -> attr_value_t
where
    F: FnMut(*mut ConfObject) -> Result<AttrValue> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });

    closure(obj)
        .expect("Error calling get_attr_handler callback")
        .into_raw()
}

extern "C" fn set_attr_handler<F>(
    obj: *mut ConfObject,
    val: *mut attr_value_t,
    cb: *mut c_void,
) -> SetErr
where
    F: FnMut(*mut ConfObject, AttrValue) -> Result<SetErr> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });
    let val = unsafe { AttrValue::from_raw(val) };

    closure(obj, val).expect("Error calling set_attr_handler callback")
}

extern "C" fn get_class_attr_handler<F>(cls: *mut ConfClass, cb: *mut c_void) -> attr_value_t
where
    F: FnMut(*mut ConfClass) -> Result<AttrValue> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });

    closure(cls)
        .expect("Error calling get_class_attr_handler callback")
        .into_raw()
}

extern "C" fn set_class_attr_handler<F>(
    cls: *mut ConfClass,
    val: *mut attr_value_t,
    cb: *mut c_void,
) -> SetErr
where
    F: FnMut(*mut ConfClass, AttrValue) -> Result<SetErr> + 'static,
{
    let closure = Box::leak(unsafe { Box::from_raw(cb as *mut Box<F>) });
    let val = unsafe { AttrValue::from_raw(val) };

    closure(cls, val).expect("Error calling set_class_attr_handler callback")
}

#[simics_exception]
/// Add the attribute name to the set of attributes of the class cls. This attribute
/// will appear on all instances of the class.
///
/// The function `getter` is called with the object and the value from user_data_get as
/// arguments, and returns the current value of the attribute.
///
/// On error, get_attr should call [`attribute_error`]. The return value is then
/// ignored; typically, [`make_attr_invalid`] is used to generate an explicitly invalid
/// value.
///
/// If `getter` is `None`, the attribute will be write-only. The function `setter` is
/// called with the object and the value from `user_data_set` as arguments when the
/// attribute is initialised or changed. The argument value is owned by the caller, so
/// any data from it must be copied.
///
/// The set_attr method should return [`SetErr::Sim_Set_Ok`] if the new value could be
/// set. On error, it should return an appropriate error code (usually
/// [`SetErr::Sim_Set_Illegal_Value`]), and optionally call [`attribute_error`] with an
/// explanatory message.
///
/// If setter is `None`, the attribute will be read-only.  The attr parameter
/// is one of [`AttrAttr::Sim_Attr_Required`], [`AttrAttr::Sim_Attr_Optional`],
/// [`AttrAttr::Sim_Attr_Session`] or [`AttrAttr::Sim_Attr_Pseudo`].  Attributes marked
/// [`AttrAttr::Sim_Attr_Required`] or [`AttrAttr::Sim_Attr_Optional`] are saved in
/// checkpoints.  Both `setter` and `getter` must be provided for such attributes.  All
/// attributes that are marked [`AttrAttr::Sim_Attr_Required`] must be present in all
/// configurations.
///
/// The set of permitted values is encoded in the `attr_type` type, and in `idx_type`
/// for values during indexed access. A `None` value for either type string means that
/// values of any type are permitted.
///
/// # Arguments
///
/// * `cls` - The class to register an attribute on
/// * `name` - The name of the new attribute
/// * `getter` - A closure that takes an instance of the object described by `cls` and
/// the value to get
/// * `setter` - An optional closure that takes an instance of the object described by
/// `cls`, the value to set, and the value to set it to
/// * `attr` - The attributes of the attribute
/// * `attr_type` - The types allowed for the attribute
/// * `idx_type` - The types allowed to index the attribute
///
/// # Context
///
/// Global Context
pub fn register_typed_attribute<S, GF, SF>(
    cls: *mut ConfClass,
    name: S,
    getter: Option<GF>,
    setter: Option<SF>,
    attr: AttrAttr,
    attr_type: Option<TypeStringType>,
    idx_type: Option<TypeStringType>,
    desc: S,
) -> Result<()>
where
    S: AsRef<str>,
    GF: FnMut(*mut ConfObject, AttrValue) -> Result<AttrValue> + 'static,
    SF: FnMut(*mut ConfObject, AttrValue, AttrValue) -> Result<SetErr> + 'static,
{
    let attr_type = if let Some(attr_type) = attr_type {
        raw_cstr(attr_type.to_string())?
    } else {
        null_mut()
    };

    let idx_type = if let Some(idx_type) = idx_type {
        raw_cstr(idx_type.to_string())?
    } else {
        null_mut()
    };

    let (get_attr, getter_cb_raw) = if let Some(getter) = getter {
        let getter_cb = Box::new(getter);
        let getter_cb_box = Box::new(getter_cb);
        (
            Some(get_typed_attr_handler::<GF> as _),
            Box::into_raw(getter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    let (set_attr, setter_cb_raw) = if let Some(setter) = setter {
        let setter_cb = Box::new(setter);
        let setter_cb_box = Box::new(setter_cb);
        (
            Some(set_typed_attr_handler::<SF> as _),
            Box::into_raw(setter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    unsafe {
        SIM_register_typed_attribute(
            cls,
            raw_cstr(name)?,
            get_attr,
            getter_cb_raw as *mut c_void,
            set_attr,
            setter_cb_raw as *mut c_void,
            attr,
            attr_type,
            idx_type,
            raw_cstr(desc)?,
        )
    };

    Ok(())
}

#[simics_exception]
/// Register a typed attribute of a class. This attribute will appear on the class object itself
/// and is the same for all instances of the class.
///
/// Add the attribute name to the set of attributes of the class cls.
///
/// The function `getter` is called with the object and the value from user_data_get as
/// arguments, and returns the current value of the attribute.
///
/// On error, get_attr should call [`attribute_error`]. The return value is then
/// ignored; typically, [`make_attr_invalid`] is used to generate an explicitly invalid
/// value.
///
/// If `getter` is `None`, the attribute will be write-only. The function `setter` is
/// called with the object and the value from `user_data_set` as arguments when the
/// attribute is initialised or changed. The argument value is owned by the caller, so
/// any data from it must be copied.
///
/// The set_attr method should return [`SetErr::Sim_Set_Ok`] if the new value could be
/// set. On error, it should return an appropriate error code (usually
/// [`SetErr::Sim_Set_Illegal_Value`]), and optionally call [`attribute_error`] with an
/// explanatory message.
///
/// If setter is `None`, the attribute will be read-only.  The attr parameter
/// is one of [`AttrAttr::Sim_Attr_Required`], [`AttrAttr::Sim_Attr_Optional`],
/// [`AttrAttr::Sim_Attr_Session`] or [`AttrAttr::Sim_Attr_Pseudo`].  Attributes marked
/// [`AttrAttr::Sim_Attr_Required`] or [`AttrAttr::Sim_Attr_Optional`] are saved in
/// checkpoints.  Both `setter` and `getter` must be provided for such attributes.  All
/// attributes that are marked [`AttrAttr::Sim_Attr_Required`] must be present in all
/// configurations.
///
/// The set of permitted values is encoded in the `attr_type` type, and in `idx_type`
/// for values during indexed access. A `None` value for either type string means that
/// values of any type are permitted.
///
/// # Arguments
///
/// * `cls` - The class to register an attribute on
/// * `name` - The name of the new attribute
/// * `getter` - A closure that takes an instance of the object described by `cls` and
/// the value to get
/// * `setter` - An optional closure that takes an instance of the object described by
/// `cls`, the value to set, and the value to set it to
/// * `attr` - The attributes of the attribute
/// * `attr_type` - The types allowed for the attribute
/// * `idx_type` - The types allowed to index the attribute
///
/// # Context
///
/// Global Context
pub fn register_typed_class_attribute<S, GF, SF>(
    cls: *mut ConfClass,
    name: S,
    getter: Option<GF>,
    setter: Option<SF>,
    attr: AttrAttr,
    attr_type: Option<TypeStringType>,
    idx_type: Option<TypeStringType>,
    desc: S,
) -> Result<()>
where
    S: AsRef<str>,
    GF: FnMut(*mut ConfClass, AttrValue) -> Result<AttrValue> + 'static,
    SF: FnMut(*mut ConfClass, AttrValue, AttrValue) -> Result<SetErr> + 'static,
{
    let attr_type = if let Some(attr_type) = attr_type {
        raw_cstr(attr_type.to_string())?
    } else {
        null_mut()
    };

    let idx_type = if let Some(idx_type) = idx_type {
        raw_cstr(idx_type.to_string())?
    } else {
        null_mut()
    };

    let (get_attr, getter_cb_raw) = if let Some(getter) = getter {
        let getter_cb = Box::new(getter);
        let getter_cb_box = Box::new(getter_cb);
        (
            Some(get_typed_class_attr_handler::<GF> as _),
            Box::into_raw(getter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    let (set_attr, setter_cb_raw) = if let Some(setter) = setter {
        let setter_cb = Box::new(setter);
        let setter_cb_box = Box::new(setter_cb);
        (
            Some(set_typed_class_attr_handler::<SF> as _),
            Box::into_raw(setter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    unsafe {
        SIM_register_typed_class_attribute(
            cls,
            raw_cstr(name)?,
            get_attr,
            getter_cb_raw as *mut c_void,
            set_attr,
            setter_cb_raw as *mut c_void,
            attr,
            attr_type,
            idx_type,
            raw_cstr(desc)?,
        )
    };

    Ok(())
}

#[simics_exception]
/// Register a pseudo-untyped attribute of the instances of a class.
///
/// Add the attribute name to the set of attributes of the class cls.
///
/// The function `getter` is called with the object and the value from user_data_get as
/// arguments, and returns the current value of the attribute.
///
/// On error, get_attr should call [`attribute_error`]. The return value is then
/// ignored; typically, [`make_attr_invalid`] is used to generate an explicitly invalid
/// value.
///
/// If `getter` is `None`, the attribute will be write-only. The function `setter` is
/// called with the object and the value from `user_data_set` as arguments when the
/// attribute is initialised or changed. The argument value is owned by the caller, so
/// any data from it must be copied.
///
/// The set_attr method should return [`SetErr::Sim_Set_Ok`] if the new value could be
/// set. On error, it should return an appropriate error code (usually
/// [`SetErr::Sim_Set_Illegal_Value`]), and optionally call [`attribute_error`] with an
/// explanatory message.
///
/// If setter is `None`, the attribute will be read-only.  The attr parameter
/// is one of [`AttrAttr::Sim_Attr_Required`], [`AttrAttr::Sim_Attr_Optional`],
/// [`AttrAttr::Sim_Attr_Session`] or [`AttrAttr::Sim_Attr_Pseudo`].  Attributes marked
/// [`AttrAttr::Sim_Attr_Required`] or [`AttrAttr::Sim_Attr_Optional`] are saved in
/// checkpoints.  Both `setter` and `getter` must be provided for such attributes.  All
/// attributes that are marked [`AttrAttr::Sim_Attr_Required`] must be present in all
/// configurations.
///
/// The set of permitted values is encoded in the `attr_type` type, and in `idx_type`
/// for values during indexed access. A `None` value for either type string means that
/// values of any type are permitted.
///
/// # Arguments
///
/// * `cls` - The class to register an attribute on
/// * `name` - The name of the new attribute
/// * `getter` - A closure that takes an instance of the object described by `cls` and
/// the value to get
/// * `setter` - An optional closure that takes an instance of the object described by
/// `cls`, the value to set, and the value to set it to
/// * `attr` - The attributes of the attribute
/// * `attr_type` - The types allowed for the attribute
///
/// # Context
///
/// Global Context
pub fn register_attribute<S, GF, SF>(
    cls: *mut ConfClass,
    name: S,
    getter: Option<GF>,
    setter: Option<SF>,
    attr: AttrAttr,
    attr_type: Option<TypeStringType>,
    desc: S,
) -> Result<()>
where
    S: AsRef<str>,
    GF: FnMut(*mut ConfObject) -> Result<AttrValue> + 'static,
    SF: FnMut(*mut ConfObject, AttrValue) -> Result<SetErr> + 'static,
{
    let attr_type = if let Some(attr_type) = attr_type {
        raw_cstr(attr_type.to_string())?
    } else {
        null_mut()
    };

    let (get_attr, getter_cb_raw) = if let Some(getter) = getter {
        let getter_cb = Box::new(getter);
        let getter_cb_box = Box::new(getter_cb);
        (
            Some(get_attr_handler::<GF> as _),
            Box::into_raw(getter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    let (set_attr, setter_cb_raw) = if let Some(setter) = setter {
        let setter_cb = Box::new(setter);
        let setter_cb_box = Box::new(setter_cb);
        (
            Some(set_attr_handler::<SF> as _),
            Box::into_raw(setter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    unsafe {
        SIM_register_attribute_with_user_data(
            cls,
            raw_cstr(name)?,
            get_attr,
            getter_cb_raw as *mut c_void,
            set_attr,
            setter_cb_raw as *mut c_void,
            attr,
            attr_type,
            raw_cstr(desc)?,
        )
    };

    Ok(())
}

#[simics_exception]
/// Register a pseudo-untyped attribute on a class itself.
///
/// Add the attribute name to the set of attributes of the class cls.
///
/// The function `getter` is called with the object and the value from user_data_get as
/// arguments, and returns the current value of the attribute.
///
/// On error, get_attr should call [`attribute_error`]. The return value is then
/// ignored; typically, [`make_attr_invalid`] is used to generate an explicitly invalid
/// value.
///
/// If `getter` is `None`, the attribute will be write-only. The function `setter` is
/// called with the object and the value from `user_data_set` as arguments when the
/// attribute is initialised or changed. The argument value is owned by the caller, so
/// any data from it must be copied.
///
/// The set_attr method should return [`SetErr::Sim_Set_Ok`] if the new value could be
/// set. On error, it should return an appropriate error code (usually
/// [`SetErr::Sim_Set_Illegal_Value`]), and optionally call [`attribute_error`] with an
/// explanatory message.
///
/// If setter is `None`, the attribute will be read-only.  The attr parameter
/// is one of [`AttrAttr::Sim_Attr_Required`], [`AttrAttr::Sim_Attr_Optional`],
/// [`AttrAttr::Sim_Attr_Session`] or [`AttrAttr::Sim_Attr_Pseudo`].  Attributes marked
/// [`AttrAttr::Sim_Attr_Required`] or [`AttrAttr::Sim_Attr_Optional`] are saved in
/// checkpoints.  Both `setter` and `getter` must be provided for such attributes.  All
/// attributes that are marked [`AttrAttr::Sim_Attr_Required`] must be present in all
/// configurations.
///
/// The set of permitted values is encoded in the `attr_type` type, and in `idx_type`
/// for values during indexed access. A `None` value for either type string means that
/// values of any type are permitted.
///
/// # Arguments
///
/// * `cls` - The class to register an attribute on
/// * `name` - The name of the new attribute
/// * `getter` - A closure that takes an instance of the object described by `cls` and
/// the value to get
/// * `setter` - An optional closure that takes an instance of the object described by
/// `cls`, the value to set, and the value to set it to
/// * `attr` - The attributes of the attribute
/// * `attr_type` - The types allowed for the attribute
///
/// # Context
///
/// Global Context
pub fn register_class_attribute<S, GF, SF>(
    cls: *mut ConfClass,
    name: S,
    getter: Option<GF>,
    setter: Option<SF>,
    attr: AttrAttr,
    attr_type: Option<TypeStringType>,
    desc: S,
) -> Result<()>
where
    S: AsRef<str>,
    GF: FnMut(*mut ConfClass) -> Result<AttrValue> + 'static,
    SF: FnMut(*mut ConfClass, AttrValue) -> Result<SetErr> + 'static,
{
    let attr_type = if let Some(attr_type) = attr_type {
        raw_cstr(attr_type.to_string())?
    } else {
        null_mut()
    };

    let (get_attr, getter_cb_raw) = if let Some(getter) = getter {
        let getter_cb = Box::new(getter);
        let getter_cb_box = Box::new(getter_cb);
        (
            Some(get_class_attr_handler::<GF> as _),
            Box::into_raw(getter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    let (set_attr, setter_cb_raw) = if let Some(setter) = setter {
        let setter_cb = Box::new(setter);
        let setter_cb_box = Box::new(setter_cb);
        (
            Some(set_class_attr_handler::<SF> as _),
            Box::into_raw(setter_cb_box),
        )
    } else {
        (None, null_mut())
    };

    unsafe {
        SIM_register_class_attribute_with_user_data(
            cls,
            raw_cstr(name)?,
            get_attr,
            getter_cb_raw as *mut c_void,
            set_attr,
            setter_cb_raw as *mut c_void,
            attr,
            attr_type,
            raw_cstr(desc)?,
        )
    };

    Ok(())
}

// NOTE: We do not provide unuserdata untyped registration functions, we only want to register
// typed attributes, and we need userdata for our handlers

#[simics_exception]
/// When used inside an attribute set_attr/get_attr method, indicates why it failed to
/// set or retrieve the attribute. This function only serves to give an informative
/// message to the user. The object or attribute names need not be mentioned in the msg
/// argument; Simics will supply this automatically.
///
/// The error message supplied will be attached to any frontend exception generated by
/// the attribute access.
///
/// # Arguments
///
/// * `msg` - The message to set on an attribute error
///
/// # Context
///
/// Cell Context
pub fn attribute_error<S>(msg: S) -> Result<()>
where
    S: AsRef<str>,
{
    unsafe { SIM_attribute_error(raw_cstr(msg)?) };
    Ok(())
}

// NOTE: add_configuration not implemented, it is only to be used from Python

#[simics_exception]
/// Register that cls implements interface `I`. The interface itself should be
/// supplied in the iface argument.
///
/// The data iface points to must not be deallocated or overwritten by the caller.
/// Simics will use that data to store the interface structure. It will never be freed
/// or written to by Simics.
///
/// # Arguments
///
/// * `cls` - The class to register the interface for
///
/// # Return value
///
/// Non-zero on failure, 0 on success
///
/// # Exceptions
///
/// * [`SimException::SimExc_General`] Thrown if the interface name is illegal, or if
/// this interface has already been registered for this class.
///
/// # Context
///
/// Global Context
pub fn register_interface<I>(cls: *mut ConfClass) -> Result<i32>
where
    I: Interface,
{
    let name_raw = I::NAME.as_raw_cstr()?;
    let iface_box = Box::<I::InternalInterface>::default();
    // Note: This allocates and never frees. This is *required* by SIMICS and it is an error to
    // free this pointer
    let iface_raw = Box::into_raw(iface_box);

    debug_assert!(
        std::mem::size_of_val(&iface_raw) == std::mem::size_of::<*mut std::ffi::c_void>(),
        "Pointer is not convertible to *mut c_void"
    );

    Ok(unsafe { SIM_register_interface(cls, name_raw, iface_raw as *mut _) })
}

// TODO: Port & compatible interfaces

#[simics_exception]
/// Get an interface on an object
///
/// # Arguments
///
/// * `obj` - The object to get an interface on
///
/// # Return Value
///
/// The interface requested, or an error if invalid.
///
/// # Performance
///
/// * `SIM_get_interface` - Calls [`SIM_object_class`] which is extremely cheap ((&obj->sobj)->isa)
///   then canonicalizes (replace - with _) the interface name, then does a hashtable lookup with
///   the interface name. This shouldn't be called in an extreme tight loop (e.g. each instruction)
///   but is OK to call on rarer events (e.g. on magic instructions).
///
/// # Context
///
/// All Contexts
pub fn get_interface<I>(obj: *mut ConfObject) -> Result<I>
where
    I: Interface,
{
    Ok(I::new(obj, unsafe {
        SIM_get_interface(obj as *const ConfObject, I::NAME.as_raw_cstr()?)
            as *mut I::InternalInterface
    }))
}

#[simics_exception]
/// Get an interface of a class
///
/// # Arguments
///
/// * `obj` - The object to get an interface on
///
/// # Return Value
///
/// The interface requested, or an error if invalid.
///
/// # Context
///
/// All Contexts
pub fn get_class_interface<I>(cls: *mut ConfClass) -> Result<*mut I::InternalInterface>
where
    I: Interface,
{
    Ok(unsafe {
        SIM_get_class_interface(cls as *const ConfClass, I::NAME.as_raw_cstr()?)
            as *mut I::InternalInterface
    })
}

// TODO: Add Port Interfaces

#[simics_exception]
/// Indicates if the given object is being deleted. This information can be useful by
/// other objects that want to clean up their references.
///
/// # Return Value
///
/// Whether the object is being deleted
///
/// # Context
///
/// Global Context
pub fn marked_for_deletion(obj: *mut ConfObject) -> bool {
    unsafe { SIM_marked_for_deletion(obj) }
}