mdflib-sys 0.2.2

Low-level FFI bindings for mdflib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
/*
 * Comprehensive C export wrapper for mdflib
 * Based on MdfExport.cpp from mdflib
 */

// #include "mdf_c_wrapper.h"

#include <mdf/canmessage.h>
#include <mdf/etag.h>
#include <mdf/iattachment.h>
#include <mdf/ichannel.h>
#include <mdf/ichannelarray.h>
#include <mdf/ichannelconversion.h>
#include <mdf/ichannelgroup.h>
#include <mdf/ichannelobserver.h>
#include <mdf/canbusobserver.h>
#include <mdf/idatagroup.h>
#include <mdf/ievent.h>
#include <mdf/ifilehistory.h>
#include <mdf/imetadata.h>
#include <mdf/isourceinformation.h>
#include <mdf/mdffactory.h>
#include <mdf/mdffile.h>
#include <mdf/mdfreader.h>
#include <mdf/mdfwriter.h>
#include <mdf/mdflogstream.h>

using namespace mdf;


// Export macros for different platforms
#if defined(_WIN32)
#define EXPORT __declspec(dllexport)
#elif defined(__linux__) || defined(__APPLE__) || defined(__CYGWIN__)
#define EXPORT __attribute__((visibility("default")))
#else
#define EXPORT
#endif

extern "C" {

// Global function pointers for C-style callbacks
typedef void (*MdfCLogFunction1)(MdfLogSeverity severity, const uint8_t* text);
typedef void (*MdfCLogFunction2)(MdfLogSeverity severity, const char* function, const uint8_t* text);
static MdfCLogFunction1 g_c_log_function1 = nullptr;
static MdfCLogFunction2 g_c_log_function2 = nullptr;

// C++ wrapper for the MdfLogFunction1 callback
void MdfLogWrapper1(const MdfLocation &location, MdfLogSeverity severity, const std::string& text) {
    if (g_c_log_function1) {
        MdfLocation c_location = {location.line, location.column, location.file.c_str(), location.function.c_str()};
        g_c_log_function1(static_cast<MdfLogSeverity>(severity), (const uint8_t*) text.c_str());
    }
}

// C++ wrapper for the MdfLogFunction2 callback
void MdfLogWrapper2(MdfLogSeverity severity, const std::string& function, const std::string& text) {
    if (g_c_log_function2) {
        g_c_log_function2(static_cast<MdfLogSeverity>(severity), function.c_str(), (const uint8_t*) text.c_str());
    }
}

// Function to set the C-style log function 1
EXPORT void MdfSetLogFunction1(MdfCLogFunction1 func) {
    g_c_log_function1 = func;
    if (func) {
        MdfLogStream::SetLogFunction1(MdfLogWrapper1);
    } else {
        MdfLogStream::SetLogFunction1(nullptr);
    }
}

// Function to set the C-style log function 2
EXPORT void MdfSetLogFunction2(MdfCLogFunction2 func) {
    g_c_log_function2 = func;
    if (func) {
        MdfLogStream::SetLogFunction2(MdfLogWrapper2);
    } else {
        MdfLogStream::SetLogFunction2(nullptr);
    }
}

// MdfReader functions
EXPORT MdfReader *MdfReaderInit(const char *filename) {
  return new MdfReader(filename);
}

EXPORT void MdfReaderUnInit(MdfReader *reader) { delete reader; }

EXPORT int64_t MdfReaderGetIndex(MdfReader *reader) { return reader->Index(); }

EXPORT bool MdfReaderIsOk(MdfReader *reader) { return reader->IsOk(); }

EXPORT bool MdfReaderIsFinalized(MdfReader *reader) {
  return reader->IsFinalized();
}

EXPORT const MdfFile *MdfReaderGetFile(MdfReader *reader) {
  return reader->GetFile();
}

EXPORT const IHeader *MdfReaderGetHeader(MdfReader *reader) {
  return reader->GetHeader();
}

EXPORT const IDataGroup *MdfReaderGetDataGroup(MdfReader *reader,
                                               size_t index) {
  return reader->GetDataGroup(index);
}

EXPORT size_t MdfReaderGetDataGroupCount(MdfReader *reader) {
  const auto *file = reader->GetFile();
  if (!file)
    return 0;
  DataGroupList groups;
  file->DataGroups(groups);
  return groups.size();
}

EXPORT bool MdfReaderOpen(MdfReader *reader) { return reader->Open(); }

EXPORT void MdfReaderClose(MdfReader *reader) { reader->Close(); }

EXPORT bool MdfReaderReadHeader(MdfReader *reader) {
  return reader->ReadHeader();
}

EXPORT bool MdfReaderReadMeasurementInfo(MdfReader *reader) {
  return reader->ReadMeasurementInfo();
}

EXPORT bool MdfReaderReadEverythingButData(MdfReader *reader) {
  return reader->ReadEverythingButData();
}

EXPORT bool MdfReaderReadData(MdfReader *reader, IDataGroup *group) {
  return reader->ReadData(*group);
}

// MdfWriter functions
EXPORT MdfWriter *MdfWriterInit(MdfWriterType type, const char *filename) {
  auto *writer = MdfFactory::CreateMdfWriterEx(type);
  if (!writer)
    return nullptr;
  writer->Init(filename);
  return writer;
}

EXPORT void MdfWriterUnInit(MdfWriter *writer) { delete writer; }

EXPORT MdfFile *MdfWriterGetFile(MdfWriter *writer) {
  return writer->GetFile();
}

EXPORT IHeader *MdfWriterGetHeader(MdfWriter *writer) {
  return writer->Header();
}

EXPORT bool MdfWriterIsFileNew(MdfWriter *writer) {
  return writer->IsFileNew();
}

EXPORT bool MdfWriterGetCompressData(MdfWriter *writer) {
  return writer->CompressData();
}

EXPORT void MdfWriterSetCompressData(MdfWriter *writer, bool compress) {
  writer->CompressData(compress);
}

EXPORT double MdfWriterGetPreTrigTime(MdfWriter *writer) {
  return writer->PreTrigTime();
}

EXPORT void MdfWriterSetPreTrigTime(MdfWriter *writer, double pre_trig_time) {
  writer->PreTrigTime(pre_trig_time);
}

EXPORT uint64_t MdfWriterGetStartTime(MdfWriter *writer) {
  return writer->StartTime();
}

EXPORT uint64_t MdfWriterGetStopTime(MdfWriter *writer) {
  return writer->StopTime();
}

EXPORT uint16_t MdfWriterGetBusType(MdfWriter *writer) {
  return writer->BusType();
}

EXPORT void MdfWriterSetBusType(MdfWriter *writer, uint16_t type) {
  writer->BusType(type);
}

EXPORT bool MdfWriterCreateBusLogConfiguration(MdfWriter *writer) {
  return writer->CreateBusLogConfiguration();
}

EXPORT IDataGroup *MdfWriterCreateDataGroup(MdfWriter *writer) {
  return writer->CreateDataGroup();
}

EXPORT bool MdfWriterInitMeasurement(MdfWriter *writer) {
  return writer->InitMeasurement();
}

EXPORT void MdfWriterSaveSample(MdfWriter *writer, const IChannelGroup *group,
                                uint64_t time) {
  writer->SaveSample(*group, time);
}

EXPORT void MdfWriterSaveCanMessage(MdfWriter *writer, const IChannelGroup *group,
                                    uint64_t time, const CanMessage *message) {
  writer->SaveCanMessage(*group, time, *message);
}

EXPORT void MdfWriterStartMeasurement(MdfWriter *writer, uint64_t start_time) {
  writer->StartMeasurement(start_time);
}

EXPORT void MdfWriterStopMeasurement(MdfWriter *writer, uint64_t stop_time) {
  writer->StopMeasurement(stop_time);
}

EXPORT bool MdfWriterFinalizeMeasurement(MdfWriter *writer) {
  return writer->FinalizeMeasurement();
}

// MdfFile functions
EXPORT size_t MdfFileGetName(const MdfFile *file, char *name,
                             size_t max_length) {
  const std::string &file_name = file->Name();
  size_t copy_length = std::min(file_name.length(), max_length - 1);
  if (name && max_length > 0) {
    std::memcpy(name, file_name.c_str(), copy_length);
    name[copy_length] = '\0';
  }
  return file_name.length();
}

EXPORT void MdfFileSetName(MdfFile *file, const char *name) {
  file->Name(name);
}

EXPORT size_t MdfFileGetFileName(const MdfFile *file, char *filename,
                                 size_t max_length) {
  const std::string &file_name = file->FileName();
  size_t copy_length = std::min(file_name.length(), max_length - 1);
  if (filename && max_length > 0) {
    std::memcpy(filename, file_name.c_str(), copy_length);
    filename[copy_length] = '\0';
  }
  return file_name.length();
}

EXPORT void MdfFileSetFileName(MdfFile *file, const char *filename) {
  file->FileName(filename);
}

EXPORT size_t MdfFileGetVersion(const MdfFile *file, char *version,
                                size_t max_length) {
  const std::string &ver = file->Version();
  size_t copy_length = std::min(ver.length(), max_length - 1);
  if (version && max_length > 0) {
    std::memcpy(version, ver.c_str(), copy_length);
    version[copy_length] = '\0';
  }
  return ver.length();
}

EXPORT int MdfFileGetMainVersion(const MdfFile *file) {
  return file->MainVersion();
}

EXPORT int MdfFileGetMinorVersion(const MdfFile *file) {
  return file->MinorVersion();
}

EXPORT void MdfFileSetMinorVersion(MdfFile *file, int minor) {
  file->MinorVersion(minor);
}

EXPORT void MdfFileSetProgramId(MdfFile *file, const char *program_id) {
  file->ProgramId(program_id);
}

EXPORT size_t MdfFileGetProgramId(const MdfFile *file, char *buffer,
                                       size_t max_length) {
  const std::string &program_id = file->ProgramId();
  size_t copy_length = std::min(program_id.length(), max_length - 1);
  if (buffer && max_length > 0) {
    std::memcpy(buffer, program_id.c_str(), copy_length);
    buffer[copy_length] = '\0';
  }
  return program_id.length();
}

// TODO these need file stream
// EXPORT void MdfFileReadHeader(MdfFile *file) {
//   file->ReadHeader();
// }
//
// EXPORT void MdfFileReadMeasurementInfo(MdfFile *file) {
//   file->ReadMeasurementInfo();
// }
//
// EXPORT bool MdfFileWrite(MdfFile *file) {
//   return file->Write();
// }
//
// EXPORT void MdfFileReadEverythingButData(MdfFile *file) {
//   file->ReadEverythingButData();
// }

EXPORT bool MdfFileIsFinalizedDone(const MdfFile *file) {
  return file->IsFinalizedDone();
}

EXPORT const IHeader *MdfFileGetHeader(const MdfFile *file) {
  return file->Header();
}

EXPORT bool MdfFileGetIsMdf4(const MdfFile *file) { return file->IsMdf4(); }

EXPORT size_t MdfFileGetDataGroupCount(const MdfFile *file) {
  DataGroupList groups;
  file->DataGroups(groups);
  return groups.size();
}

EXPORT IDataGroup *MdfFileGetDataGroupByIndex(const MdfFile *file,
                                                    size_t index) {
  DataGroupList groups;
  file->DataGroups(groups);
  if (index >= groups.size())
    return nullptr;
  return groups[index];
}

EXPORT IDataGroup *MdfFileCreateDataGroup(MdfFile *file) {
  return file->CreateDataGroup();
}

EXPORT size_t MdfFileGetDataGroups(const MdfFile *file,
                                    IDataGroup *dest[], size_t max_count) {
  if (!file || !dest)
    return 0;

  std::vector<IDataGroup *> temp_list;
  file->DataGroups(temp_list);

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    dest[i] = temp_list[i];
  }
  return temp_list.size();
}

EXPORT size_t MdfFileGetAttachments(const MdfFile *file,
                                    const IAttachment *attachments[],
                                    size_t max_count) {
  if (!file || !attachments)
    return 0;

  std::vector<const IAttachment *> temp_list;
  file->Attachments(temp_list);

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    attachments[i] = temp_list[i];
  }
  return temp_list.size();
}

EXPORT IAttachment *MdfFileCreateAttachment(MdfFile *file) {
  return file ? file->CreateAttachment() : nullptr;
}

EXPORT IDataGroup* MdfFileFindParentDataGroup(const MdfFile *file,
                                                    const IChannel &channel) {
  return file->FindParentDataGroup(channel);
}

// IDataGroup functions
EXPORT uint64_t DataGroupGetIndex(const IDataGroup *group) {
  return group->Index();
}

EXPORT size_t DataGroupGetDescription(const IDataGroup *group,
                                      char *description, size_t max_length) {
  const std::string &desc = group->Description();
  size_t copy_length = std::min(desc.length(), max_length - 1);
  if (description && max_length > 0) {
    std::memcpy(description, desc.c_str(), copy_length);
    description[copy_length] = '\0';
  }
  return desc.length();
}

EXPORT void DataGroupSetDescription(IDataGroup *group,
                                    const char *description) {
  group->Description(description);
}

EXPORT size_t DataGroupGetChannelGroupCount(const IDataGroup *group) {
  const auto &channel_groups = group->ChannelGroups();
  return channel_groups.size();
}

EXPORT IChannelGroup *
DataGroupGetChannelGroupByIndex(const IDataGroup *group, size_t index) {
  const auto &channel_groups = group->ChannelGroups();
  if (index >= channel_groups.size())
    return nullptr;
  return channel_groups[index];
}

EXPORT IChannelGroup *DataGroupGetChannelGroupByName(
    const IDataGroup *group, const char *name) {
  return group->GetChannelGroup(name);
}

EXPORT IChannelGroup *DataGroupCreateChannelGroup(IDataGroup *group) {
  return group->CreateChannelGroup();
}

EXPORT void DataGroupClearData(IDataGroup *group) {
  group->ClearData();
}

// IChannelGroup functions
EXPORT uint64_t ChannelGroupGetIndex(const IChannelGroup *group) {
  return group->Index();
}

EXPORT size_t ChannelGroupGetName(const IChannelGroup *group, char *name,
                                  size_t max_length) {
  const std::string &group_name = group->Name();
  size_t copy_length = std::min(group_name.length(), max_length - 1);
  if (name && max_length > 0) {
    std::memcpy(name, group_name.c_str(), copy_length);
    name[copy_length] = '\0';
  }
  return group_name.length();
}

EXPORT void ChannelGroupSetName(IChannelGroup *group, const char *name) {
  group->Name(name);
}

EXPORT size_t ChannelGroupGetDescription(const IChannelGroup *group,
                                         char *description, size_t max_length) {
  const std::string &desc = group->Description();
  size_t copy_length = std::min(desc.length(), max_length - 1);
  if (description && max_length > 0) {
    std::memcpy(description, desc.c_str(), copy_length);
    description[copy_length] = '\0';
  }
  return desc.length();
}

EXPORT void ChannelGroupSetDescription(IChannelGroup *group,
                                       const char *description) {
  group->Description(description);
}

EXPORT uint64_t ChannelGroupGetNofSamples(const IChannelGroup *group) {
  return group->NofSamples();
}

EXPORT void ChannelGroupSetNofSamples(IChannelGroup *group, uint64_t samples) {
  group->NofSamples(samples);
}

EXPORT size_t ChannelGroupGetChannelCount(const IChannelGroup *group) {
  const auto &channels = group->Channels();
  return channels.size();
}

EXPORT const IChannel *ChannelGroupGetChannelByIndex(const IChannelGroup *group,
                                                     size_t index) {
  const auto &channels = group->Channels();
  if (index >= channels.size())
    return nullptr;
  return channels[index];
}

EXPORT const IChannel *ChannelGroupGetChannelByName(
    const IChannelGroup *group, const char *name) {
  return group->GetChannel(name);
}

EXPORT IChannel *ChannelGroupCreateChannel(IChannelGroup *group) {
  return group->CreateChannel();
}

EXPORT const IMetaData *ChannelGroupGetMetaData(const IChannelGroup *group) {
  return group ? group->MetaData() : nullptr;
}

EXPORT IMetaData *ChannelGroupCreateMetaData(IChannelGroup *group) {
  return group ? group->CreateMetaData() : nullptr;
}

EXPORT const ISourceInformation *
ChannelGroupGetSourceInformation(const IChannelGroup *group) {
  return group ? group->SourceInformation() : nullptr;
}

EXPORT ISourceInformation *
ChannelGroupCreateSourceInformation(IChannelGroup *group) {
  return group ? group->CreateSourceInformation() : nullptr;
}

EXPORT uint8_t ChannelGroupGetBusType(const IChannelGroup *group) {
  return (uint8_t) group->GetBusType();
}

// IHeader functions
EXPORT size_t IHeaderGetMeasurementId(const IHeader *header, char *id,
                                      size_t max_length) {
  const std::string &measurement_id = header->MeasurementId();
  size_t copy_length = std::min(measurement_id.length(), max_length - 1);
  if (id && max_length > 0) {
    std::memcpy(id, measurement_id.c_str(), copy_length);
    id[copy_length] = '\0';
  }
  return measurement_id.length();
}

EXPORT void IHeaderSetMeasurementId(IHeader *header, const char *id) {
  header->MeasurementId(id);
}

EXPORT size_t IHeaderGetRecorderId(const IHeader *header, char *id,
                                   size_t max_length) {
  const std::string &recorder_id = header->RecorderId();
  size_t copy_length = std::min(recorder_id.length(), max_length - 1);
  if (id && max_length > 0) {
    std::memcpy(id, recorder_id.c_str(), copy_length);
    id[copy_length] = '\0';
  }
  return recorder_id.length();
}

EXPORT void IHeaderSetRecorderId(IHeader *header, const char *id) {
  header->RecorderId(id);
}

EXPORT int64_t IHeaderGetRecorderIndex(const IHeader *header) {
  return header->RecorderIndex();
}

EXPORT void IHeaderSetRecorderIndex(IHeader *header, int64_t index) {
  header->RecorderIndex(index);
}

EXPORT bool IHeaderGetStartAngle(const IHeader *header, double *angle) {
  if (header->StartAngle().has_value()) {
    *angle = header->StartAngle().value();
    return true;
  }
  return false;
}

EXPORT void IHeaderSetStartAngle(IHeader *header, double angle) {
  header->StartAngle(angle);
}

EXPORT bool IHeaderGetStartDistance(const IHeader *header, double *distance) {
  if (header->StartDistance().has_value()) {
    *distance = header->StartDistance().value();
    return true;
  }
  return false;
}

EXPORT void IHeaderSetStartDistance(IHeader *header, double distance) {
  header->StartDistance(distance);
}

EXPORT size_t IHeaderGetAuthor(const IHeader *header, char *author,
                               size_t max_length) {
  const std::string &val = header->Author();
  size_t copy_length = std::min(val.length(), max_length - 1);
  if (author && max_length > 0) {
    std::memcpy(author, val.c_str(), copy_length);
    author[copy_length] = '\0';
  }
  return val.length();
}

EXPORT void IHeaderSetAuthor(IHeader *header, const char *author) {
  header->Author(author);
}

EXPORT size_t IHeaderGetDepartment(const IHeader *header, char *department,
                                   size_t max_length) {
  const std::string &val = header->Department();
  size_t copy_length = std::min(val.length(), max_length - 1);
  if (department && max_length > 0) {
    std::memcpy(department, val.c_str(), copy_length);
    department[copy_length] = '\0';
  }
  return val.length();
}

EXPORT void IHeaderSetDepartment(IHeader *header, const char *department) {
  header->Department(department);
}

EXPORT size_t IHeaderGetProject(const IHeader *header, char *project,
                                size_t max_length) {
  const std::string &val = header->Project();
  size_t copy_length = std::min(val.length(), max_length - 1);
  if (project && max_length > 0) {
    std::memcpy(project, val.c_str(), copy_length);
    project[copy_length] = '\0';
  }
  return val.length();
}

EXPORT void IHeaderSetProject(IHeader *header, const char *project) {
  header->Project(project);
}

EXPORT size_t IHeaderGetSubject(const IHeader *header, char *subject,
                                size_t max_length) {
  const std::string &val = header->Subject();
  size_t copy_length = std::min(val.length(), max_length - 1);
  if (subject && max_length > 0) {
    std::memcpy(subject, val.c_str(), copy_length);
    subject[copy_length] = '\0';
  }
  return val.length();
}

EXPORT void IHeaderSetSubject(IHeader *header, const char *subject) {
  header->Subject(subject);
}

EXPORT size_t IHeaderGetDescription(const IHeader *header, char *description,
                                    size_t max_length) {
  const std::string &val = header->Description();
  size_t copy_length = std::min(val.length(), max_length - 1);
  if (description && max_length > 0) {
    std::memcpy(description, val.c_str(), copy_length);
    description[copy_length] = '\0';
  }
  return val.length();
}

EXPORT void IHeaderSetDescription(IHeader *header, const char *description) {
  header->Description(description);
}

EXPORT uint64_t IHeaderGetStartTime(const IHeader *header) {
  return header->StartTime();
}

EXPORT void IHeaderSetStartTime(IHeader *header, uint64_t start_time) {
  header->StartTime(start_time);
}

EXPORT const IMetaData *IHeaderGetMetaData(const IHeader *header) {
  return header ? header->MetaData() : nullptr;
}

EXPORT IMetaData *IHeaderCreateMetaData(IHeader *header) {
  return header ? header->CreateMetaData() : nullptr;
}

EXPORT size_t IHeaderGetAttachments(const IHeader *header,
                                    const IAttachment *attachments[],
                                    size_t max_count) {
  if (!header || !attachments)
    return 0;

  auto temp_list = header->Attachments();

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    attachments[i] = temp_list[i];
  }
  return temp_list.size();
}

EXPORT IAttachment *IHeaderCreateAttachment(IHeader *header) {
  return header ? header->CreateAttachment() : nullptr;
}

EXPORT size_t IHeaderGetFileHistories(const IHeader *header,
                                      const IFileHistory *histories[],
                                      size_t max_count) {
  if (!header || !histories)
    return 0;

  auto temp_list = header->FileHistories();

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    histories[i] = temp_list[i];
  }
  return temp_list.size();
}

EXPORT IFileHistory *IHeaderCreateFileHistory(IHeader *header) {
  return header ? header->CreateFileHistory() : nullptr;
}

EXPORT size_t IHeaderGetEvents(const IHeader *header, const IEvent *events[],
                               size_t max_count) {
  if (!header || !events)
    return 0;

  auto temp_list = header->Events();

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    events[i] = temp_list[i];
  }
  return temp_list.size();
}

EXPORT IEvent *IHeaderCreateEvent(IHeader *header) {
  return header ? header->CreateEvent() : nullptr;
}

EXPORT IDataGroup *IHeaderCreateDataGroup(IHeader *header) {
  return header->CreateDataGroup();
}

EXPORT IDataGroup *IHeaderLastDataGroup(IHeader *header) {
  return header ? header->LastDataGroup() : nullptr;
}

EXPORT size_t IHeaderGetDataGroupCount(const IHeader *header) {
  if (!header)
    return 0;

  auto temp_list = header->DataGroups();
  return temp_list.size();
}

EXPORT size_t IHeaderGetDataGroups(const IHeader *header,
                                    const IDataGroup *groups[],
                                    size_t max_count) {
  if (!header || !groups)
    return 0;

  // std::vector<const IDataGroup *> temp_list;
  auto temp_list = header->DataGroups();

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    groups[i] = temp_list[i];
  }
  return temp_list.size();
}

// IChannel functions
EXPORT uint64_t ChannelGetIndex(const IChannel *channel) {
  return channel->Index();
}

EXPORT size_t ChannelGetName(const IChannel *channel, char *name,
                             size_t max_length) {
  const std::string &channel_name = channel->Name();
  size_t copy_length = std::min(channel_name.length(), max_length - 1);
  if (name && max_length > 0) {
    std::memcpy(name, channel_name.c_str(), copy_length);
    name[copy_length] = '\0';
  }
  return channel_name.length();
}

EXPORT void ChannelSetName(IChannel *channel, const char *name) {
  channel->Name(name);
}

EXPORT size_t ChannelGetDisplayName(const IChannel *channel, char *display_name,
                                    size_t max_length) {
  const std::string &name = channel->DisplayName();
  size_t copy_length = std::min(name.length(), max_length - 1);
  if (display_name && max_length > 0) {
    std::memcpy(display_name, name.c_str(), copy_length);
    display_name[copy_length] = '\0';
  }
  return name.length();
}

EXPORT void ChannelSetDisplayName(IChannel *channel, const char *display_name) {
  channel->DisplayName(display_name);
}

EXPORT size_t ChannelGetDescription(const IChannel *channel, char *description,
                                    size_t max_length) {
  const std::string &desc = channel->Description();
  size_t copy_length = std::min(desc.length(), max_length - 1);
  if (description && max_length > 0) {
    std::memcpy(description, desc.c_str(), copy_length);
    description[copy_length] = '\0';
  }
  return desc.length();
}

EXPORT void ChannelSetDescription(IChannel *channel, const char *description) {
  channel->Description(description);
}

EXPORT size_t ChannelGetUnit(const IChannel *channel, char *unit,
                             size_t max_length) {
  const std::string &unit_str = channel->Unit();
  size_t copy_length = std::min(unit_str.length(), max_length - 1);
  if (unit && max_length > 0) {
    std::memcpy(unit, unit_str.c_str(), copy_length);
    unit[copy_length] = '\0';
  }
  return unit_str.length();
}

EXPORT void ChannelSetUnit(IChannel *channel, const char *unit) {
  channel->Unit(unit);
}

EXPORT uint8_t ChannelGetType(const IChannel *channel) {
  return static_cast<uint8_t>(channel->Type());
}

EXPORT void ChannelSetType(IChannel *channel, uint8_t type) {
  channel->Type(static_cast<ChannelType>(type));
}

EXPORT uint8_t ChannelGetDataType(const IChannel *channel) {
  return static_cast<uint8_t>(channel->DataType());
}

EXPORT void ChannelSetDataType(IChannel *channel, uint8_t data_type) {
  channel->DataType(static_cast<ChannelDataType>(data_type));
}

EXPORT uint64_t ChannelGetDataBytes(const IChannel *channel) {
  return channel->DataBytes();
}

EXPORT void ChannelSetDataBytes(IChannel *channel, uint64_t bytes) {
  channel->DataBytes(bytes);
}

EXPORT void ChannelSetChannelValue(IChannel *channel, uint32_t value,
                                   bool valid) {
  if (channel) {
    channel->SetChannelValue(value, valid);
  }
}

EXPORT const IMetaData *ChannelGetMetaData(const IChannel *channel) {
  return channel ? channel->MetaData() : nullptr;
}

EXPORT IMetaData *ChannelCreateMetaData(IChannel *channel) {
  return channel ? channel->CreateMetaData() : nullptr;
}

EXPORT const ISourceInformation *
ChannelGetSourceInformation(const IChannel *channel) {
  return channel ? channel->SourceInformation() : nullptr;
}

EXPORT ISourceInformation *ChannelCreateSourceInformation(IChannel *channel) {
  return channel ? channel->CreateSourceInformation() : nullptr;
}

EXPORT const IChannelConversion *
ChannelGetChannelConversion(const IChannel *channel) {
  return channel ? channel->ChannelConversion() : nullptr;
}

EXPORT IChannelConversion *ChannelCreateChannelConversion(IChannel *channel) {
  return channel ? channel->CreateChannelConversion() : nullptr;
}

EXPORT const IChannelArray *ChannelGetChannelArray(const IChannel *channel) {
  return channel ? channel->ChannelArray() : nullptr;
}

EXPORT IChannelArray *ChannelCreateChannelArray(IChannel *channel) {
  return channel ? channel->CreateChannelArray() : nullptr;
}

// CanMessage functions
EXPORT CanMessage *CanMessageInit() { return new CanMessage; }

EXPORT void CanMessageUnInit(CanMessage *can) { delete can; }

EXPORT uint32_t CanMessageGetMessageId(const CanMessage *can) {
  return can->MessageId();
}

EXPORT void CanMessageSetMessageId(CanMessage *can, uint32_t msgId) {
  can->MessageId(msgId);
}

EXPORT uint32_t CanMessageGetCanId(const CanMessage *can) { return can->CanId(); }

EXPORT bool CanMessageGetExtendedId(const CanMessage *can) {
  return can->ExtendedId();
}

EXPORT void CanMessageSetExtendedId(CanMessage *can, bool extendedId) {
  can->ExtendedId(extendedId);
}

EXPORT uint8_t CanMessageGetDlc(const CanMessage *can) { return can->Dlc(); }

EXPORT void CanMessageSetDlc(CanMessage *can, uint8_t dlc) { can->Dlc(dlc); }

EXPORT size_t CanMessageGetDataLength(const CanMessage *can) {
  return can->DataLength();
}

EXPORT void CanMessageSetDataLength(CanMessage *can, uint32_t dataLength) {
  can->DataLength(dataLength);
}

EXPORT size_t CanMessageGetDataBytes(const CanMessage *can, uint8_t *dataList,
                                          size_t max_length) {
  const auto &data = can->DataBytes();
  size_t copy_length = std::min(data.size(), max_length);
  if (dataList && max_length > 0) {
    std::memcpy(dataList, data.data(), copy_length);
  }
  return data.size();
}

EXPORT void CanMessageSetDataBytes(CanMessage *can, const uint8_t *dataList,
                                   size_t size) {
  std::vector<uint8_t> data(dataList, dataList + size);
  can->DataBytes(data);
}

EXPORT uint32_t CanMessageGetBusChannel(const CanMessage *can) {
  return can->BusChannel();
}

EXPORT void CanMessageSetBusChannel(CanMessage *can, uint32_t busChannel) {
  can->BusChannel(busChannel);
}

EXPORT double CanMessageGetTimestamp(const CanMessage *can) {
  return can->Timestamp();
}

EXPORT void CanMessageSetTimestamp(CanMessage *can, double timeStamp) {
  can->Timestamp(timeStamp);
}

EXPORT uint32_t CanMessageGetCrc(const CanMessage *can) {
  return can->Crc();
}

EXPORT void CanMessageSetCrc(CanMessage *can, uint32_t crc) {
  can->Crc(crc);
}

EXPORT void CanMessageSetTypeOfMessage(CanMessage *can,
                                       uint8_t typeOfMessage) {
  can->TypeOfMessage(static_cast<MessageType>(typeOfMessage));
}

EXPORT uint8_t CanMessageGetTypeOfMessage(const CanMessage *can) {
  return static_cast<uint8_t>(can->TypeOfMessage());
}

// ISourceInformation functions
EXPORT uint64_t SourceInformationGetIndex(const ISourceInformation *source) {
  return source->Index();
}

EXPORT size_t SourceInformationGetName(const ISourceInformation *source,
                                       char *name, size_t max_length) {
  const auto &str = source->Name();
  if (name && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(name, str.c_str(), copy_len);
    name[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void SourceInformationSetName(ISourceInformation *source,
                                     const char *name) {
  source->Name(name ? name : "");
}

EXPORT size_t SourceInformationGetDescription(const ISourceInformation *source,
                                              char *description,
                                              size_t max_length) {
  const auto &str = source->Description();
  if (description && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(description, str.c_str(), copy_len);
    description[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void SourceInformationSetDescription(ISourceInformation *source,
                                            const char *description) {
  source->Description(description ? description : "");
}

EXPORT size_t SourceInformationGetPath(const ISourceInformation *source,
                                       char *path, size_t max_length) {
  const auto &str = source->Path();
  if (path && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(path, str.c_str(), copy_len);
    path[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void SourceInformationSetPath(ISourceInformation *source,
                                     const char *path) {
  source->Path(path ? path : "");
}

EXPORT uint8_t SourceInformationGetType(const ISourceInformation *source) {
  return static_cast<uint8_t>(source->Type());
}

EXPORT void SourceInformationSetType(ISourceInformation *source, uint8_t type) {
  source->Type(static_cast<SourceType>(type));
}

EXPORT uint8_t SourceInformationGetBus(const ISourceInformation *source) {
  return static_cast<uint8_t>(source->Bus());
}

EXPORT void SourceInformationSetBus(ISourceInformation *source, uint8_t bus) {
  source->Bus(static_cast<BusType>(bus));
}

EXPORT uint8_t SourceInformationGetFlags(const ISourceInformation *source) {
  return source->Flags();
}

EXPORT void SourceInformationSetFlags(ISourceInformation *source,
                                      uint8_t flags) {
  source->Flags(flags);
}

EXPORT const IMetaData *
SourceInformationGetMetaData(const ISourceInformation *source) {
  return source->MetaData();
}

EXPORT IMetaData *SourceInformationCreateMetaData(ISourceInformation *source) {
  return source->CreateMetaData();
}

// IAttachment functions
EXPORT uint64_t AttachmentGetIndex(const IAttachment *attachment) {
  return attachment->Index();
}

EXPORT uint16_t AttachmentGetCreatorIndex(const IAttachment *attachment) {
  return attachment->CreatorIndex();
}

EXPORT void AttachmentSetCreatorIndex(IAttachment *attachment, uint16_t index) {
  attachment->CreatorIndex(index);
}

EXPORT bool AttachmentGetEmbedded(const IAttachment *attachment) {
  return attachment->IsEmbedded();
}

EXPORT void AttachmentSetEmbedded(IAttachment *attachment, bool embedded) {
  attachment->IsEmbedded(embedded);
}

EXPORT bool AttachmentGetCompressed(const IAttachment *attachment) {
  return attachment->IsCompressed();
}

EXPORT void AttachmentSetCompressed(IAttachment *attachment, bool compressed) {
  attachment->IsCompressed(compressed);
}

EXPORT bool AttachmentGetMd5(const IAttachment *attachment, char *md5,
                             size_t max_length) {
  auto md5_opt = attachment->Md5();
  if (md5_opt.has_value() && md5 && max_length > 0) {
    const auto &md5_str = md5_opt.value();
    size_t copy_len = std::min(md5_str.size(), max_length - 1);
    std::memcpy(md5, md5_str.c_str(), copy_len);
    md5[copy_len] = '\0';
    return true;
  }
  return false;
}

EXPORT size_t AttachmentGetFileName(const IAttachment *attachment, char *name,
                                    size_t max_length) {
  const auto &str = attachment->FileName();
  if (name && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(name, str.c_str(), copy_len);
    name[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void AttachmentSetFileName(IAttachment *attachment, const char *name) {
  attachment->FileName(name ? name : "");
}

EXPORT size_t AttachmentGetFileType(const IAttachment *attachment, char *type,
                                    size_t max_length) {
  const auto &str = attachment->FileType();
  if (type && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(type, str.c_str(), copy_len);
    type[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void AttachmentSetFileType(IAttachment *attachment, const char *type) {
  attachment->FileType(type ? type : "");
}

EXPORT const IMetaData *AttachmentGetMetaData(const IAttachment *attachment) {
  return attachment->MetaData();
}

EXPORT IMetaData *AttachmentCreateMetaData(IAttachment *attachment) {
  return attachment->CreateMetaData();
}

// IEvent functions
EXPORT uint64_t EventGetIndex(const IEvent *event) { return event->Index(); }

EXPORT size_t EventGetName(const IEvent *event, char *name, size_t max_length) {
  const auto &str = event->Name();
  if (name && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(name, str.c_str(), copy_len);
    name[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void EventSetName(IEvent *event, const char *name) {
  event->Name(name ? name : "");
}

EXPORT size_t EventGetDescription(const IEvent *event, char *description,
                                  size_t max_length) {
  const auto &str = event->Description();
  if (description && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(description, str.c_str(), copy_len);
    description[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void EventSetDescription(IEvent *event, const char *description) {
  event->Description(description ? description : "");
}

EXPORT size_t EventGetGroupName(const IEvent *event, char *group,
                                size_t max_length) {
  const auto &str = event->GroupName();
  if (group && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(group, str.c_str(), copy_len);
    group[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void EventSetGroupName(IEvent *event, const char *group) {
  event->GroupName(group ? group : "");
}

EXPORT uint8_t EventGetType(const IEvent *event) {
  return static_cast<uint8_t>(event->Type());
}

EXPORT void EventSetType(IEvent *event, uint8_t type) {
  event->Type(static_cast<EventType>(type));
}

EXPORT uint8_t EventGetSync(const IEvent *event) {
  return static_cast<uint8_t>(event->Sync());
}

EXPORT void EventSetSync(IEvent *event, uint8_t type) {
  event->Sync(static_cast<SyncType>(type));
}

EXPORT uint8_t EventGetRange(const IEvent *event) {
  return static_cast<uint8_t>(event->Range());
}

EXPORT void EventSetRange(IEvent *event, uint8_t type) {
  event->Range(static_cast<RangeType>(type));
}

EXPORT uint8_t EventGetCause(const IEvent *event) {
  return static_cast<uint8_t>(event->Cause());
}

EXPORT void EventSetCause(IEvent *event, uint8_t cause) {
  event->Cause(static_cast<EventCause>(cause));
}

EXPORT uint16_t EventGetCreatorIndex(const IEvent *event) {
  return event->CreatorIndex();
}

EXPORT void EventSetCreatorIndex(IEvent *event, uint16_t index) {
  event->CreatorIndex(index);
}

EXPORT int64_t EventGetSyncValue(const IEvent *event) {
  return event->SyncValue();
}

EXPORT void EventSetSyncValue(IEvent *event, int64_t value) {
  event->SyncValue(value);
}

EXPORT double EventGetSyncFactor(const IEvent *event) {
  return event->SyncFactor();
}

EXPORT void EventSetSyncFactor(IEvent *event, double factor) {
  event->SyncFactor(factor);
}

EXPORT double EventGetPreTrig(const IEvent *event) { return event->PreTrig(); }

EXPORT void EventSetPreTrig(IEvent *event, double time) {
  event->PreTrig(time);
}

EXPORT double EventGetPostTrig(const IEvent *event) {
  return event->PostTrig();
}

EXPORT void EventSetPostTrig(IEvent *event, double time) {
  event->PostTrig(time);
}

EXPORT const IMetaData *EventGetMetaData(const IEvent *event) {
  return event->MetaData();
}

// IFileHistory functions
EXPORT uint64_t FileHistoryGetIndex(const IFileHistory *file_history) {
  return file_history->Index();
}

EXPORT uint64_t FileHistoryGetTime(const IFileHistory *file_history) {
  return file_history->Time();
}

EXPORT void FileHistorySetTime(IFileHistory *file_history, uint64_t time) {
  file_history->Time(time);
}

EXPORT const IMetaData *
FileHistoryGetMetaData(const IFileHistory *file_history) {
  return file_history->MetaData();
}

EXPORT size_t FileHistoryGetDescription(const IFileHistory *file_history,
                                        char *desc, size_t max_length) {
  const auto &str = file_history->Description();
  if (desc && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(desc, str.c_str(), copy_len);
    desc[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void FileHistorySetDescription(IFileHistory *file_history,
                                      const char *desc) {
  file_history->Description(desc ? desc : "");
}

EXPORT size_t FileHistoryGetToolName(const IFileHistory *file_history,
                                     char *name, size_t max_length) {
  const auto &str = file_history->ToolName();
  if (name && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(name, str.c_str(), copy_len);
    name[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void FileHistorySetToolName(IFileHistory *file_history,
                                   const char *name) {
  file_history->ToolName(name ? name : "");
}

EXPORT size_t FileHistoryGetToolVendor(const IFileHistory *file_history,
                                       char *vendor, size_t max_length) {
  const auto &str = file_history->ToolVendor();
  if (vendor && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(vendor, str.c_str(), copy_len);
    vendor[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void FileHistorySetToolVendor(IFileHistory *file_history,
                                     const char *vendor) {
  file_history->ToolVendor(vendor ? vendor : "");
}

EXPORT size_t FileHistoryGetToolVersion(const IFileHistory *file_history,
                                        char *version, size_t max_length) {
  const auto &str = file_history->ToolVersion();
  if (version && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(version, str.c_str(), copy_len);
    version[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void FileHistorySetToolVersion(IFileHistory *file_history,
                                      const char *version) {
  file_history->ToolVersion(version ? version : "");
}

EXPORT size_t FileHistoryGetUserName(const IFileHistory *file_history,
                                     char *user, size_t max_length) {
  const auto &str = file_history->UserName();
  if (user && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(user, str.c_str(), copy_len);
    user[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void FileHistorySetUserName(IFileHistory *file_history,
                                   const char *user) {
  file_history->UserName(user ? user : "");
}

// IMetaData functions
EXPORT size_t MetaDataGetPropertyAsString(const IMetaData *metadata,
                                          const char *index, char *prop,
                                          size_t max_length) {
  std::string prop_str = metadata->StringProperty(index);
  if (prop && max_length > 0) {
    size_t copy_len = std::min(prop_str.size(), max_length - 1);
    std::memcpy(prop, prop_str.c_str(), copy_len);
    prop[copy_len] = '\0';
  }
  return prop_str.size();
}

EXPORT void MetaDataSetPropertyAsString(IMetaData *metadata, const char *index,
                                        const char *prop) {
  metadata->StringProperty(index, prop ? prop : "");
}

EXPORT double MetaDataGetPropertyAsFloat(const IMetaData *metadata,
                                         const char *index) {
  return metadata->FloatProperty(index);
}

EXPORT void MetaDataSetPropertyAsFloat(IMetaData *metadata, const char *index,
                                       double prop) {
  metadata->FloatProperty(index, prop);
}

EXPORT size_t MetaDataGetXmlSnippet(const IMetaData *metadata, char *xml,
                                    size_t max_length) {
  const auto &str = metadata->XmlSnippet();
  if (xml && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(xml, str.c_str(), copy_len);
    xml[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void MetaDataSetXmlSnippet(IMetaData *metadata, const char *xml) {
  metadata->XmlSnippet(xml ? xml : "");
}

EXPORT size_t MetaDataGetProperties(const IMetaData *metadata,
                                    ETag *properties[], size_t max_count) {
  if (!metadata || !properties)
    return 0;

  auto temp_list = metadata->Properties();

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    properties[i] = &temp_list[i];
  }
  return temp_list.size();
}

EXPORT size_t MetaDataGetCommonProperties(const IMetaData *metadata,
                                          ETag *properties[],
                                          size_t max_count) {
  if (!metadata || !properties)
    return 0;

  auto temp_list =
      metadata->Properties(); // Use the general Properties for reading

  size_t copy_count = std::min(temp_list.size(), max_count);
  for (size_t i = 0; i < copy_count; ++i) {
    properties[i] = &temp_list[i];
  }
  return temp_list.size();
}

EXPORT void MetaDataAddCommonProperty(IMetaData *metadata, ETag *tag) {
  if (metadata && tag) {
    std::vector<ETag> tag_list = {*tag};
    metadata->CommonProperties(tag_list);
  }
}

// ETag functions
EXPORT ETag *ETagInit() { return new ETag(); }

EXPORT void ETagUnInit(ETag *etag) { delete etag; }

EXPORT size_t ETagGetName(const ETag *etag, char *name, size_t max_length) {
  const auto &str = etag->Name();
  if (name && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(name, str.c_str(), copy_len);
    name[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ETagSetName(ETag *etag, const char *name) {
  etag->Name(name ? name : "");
}

EXPORT size_t ETagGetDescription(const ETag *etag, char *desc,
                                 size_t max_length) {
  const auto &str = etag->Description();
  if (desc && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(desc, str.c_str(), copy_len);
    desc[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ETagSetDescription(ETag *etag, const char *desc) {
  etag->Description(desc ? desc : "");
}

EXPORT size_t ETagGetUnit(const ETag *etag, char *unit, size_t max_length) {
  const auto &str = etag->Unit();
  if (unit && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(unit, str.c_str(), copy_len);
    unit[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ETagSetUnit(ETag *etag, const char *unit) {
  etag->Unit(unit ? unit : "");
}

EXPORT size_t ETagGetUnitRef(const ETag *etag, char *unit, size_t max_length) {
  const auto &str = etag->UnitRef();
  if (unit && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(unit, str.c_str(), copy_len);
    unit[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ETagSetUnitRef(ETag *etag, const char *unit) {
  etag->UnitRef(unit ? unit : "");
}

EXPORT size_t ETagGetType(const ETag *etag, char *type, size_t max_length) {
  const auto &str = etag->Type();
  if (type && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(type, str.c_str(), copy_len);
    type[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ETagSetType(ETag *etag, const char *type) {
  etag->Type(type ? type : "");
}

EXPORT uint8_t ETagGetDataType(const ETag *etag) {
  return static_cast<uint8_t>(etag->DataType());
}

EXPORT void ETagSetDataType(ETag *etag, uint8_t type) {
  etag->DataType(static_cast<ETagDataType>(type));
}

EXPORT size_t ETagGetLanguage(const ETag *etag, char *language,
                              size_t max_length) {
  const auto &str = etag->Language();
  if (language && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(language, str.c_str(), copy_len);
    language[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ETagSetLanguage(ETag *etag, const char *language) {
  etag->Language(language ? language : "");
}

EXPORT bool ETagGetReadOnly(const ETag *etag) { return etag->ReadOnly(); }

EXPORT void ETagSetReadOnly(ETag *etag, bool read_only) {
  etag->ReadOnly(read_only);
}

EXPORT size_t ETagGetValueAsString(const ETag *etag, char *value,
                                   size_t max_length) {
  const auto str = etag->Value<std::string>();
  if (value && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(value, str.c_str(), copy_len);
    value[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ETagSetValueAsString(ETag *etag, const char *value) {
  etag->Value(std::string(value ? value : ""));
}

EXPORT double ETagGetValueAsFloat(const ETag *etag) {
  return etag->Value<double>();
}

EXPORT void ETagSetValueAsFloat(ETag *etag, double value) {
  etag->Value(value);
}

EXPORT bool ETagGetValueAsBoolean(const ETag *etag) {
  return etag->Value<bool>();
}

EXPORT void ETagSetValueAsBoolean(ETag *etag, bool value) {
  etag->Value(value);
}

EXPORT int64_t ETagGetValueAsSigned(const ETag *etag) {
  return etag->Value<int64_t>();
}

EXPORT void ETagSetValueAsSigned(ETag *etag, int64_t value) {
  etag->Value(value);
}

EXPORT uint64_t ETagGetValueAsUnsigned(const ETag *etag) {
  return etag->Value<uint64_t>();
}

EXPORT void ETagSetValueAsUnsigned(ETag *etag, uint64_t value) {
  etag->Value(value);
}

// IChannelArray functions
EXPORT uint64_t ChannelArrayGetIndex(const IChannelArray *array) {
  return array->Index();
}

EXPORT uint8_t ChannelArrayGetType(const IChannelArray *array) {
  return static_cast<uint8_t>(array->Type());
}

EXPORT void ChannelArraySetType(IChannelArray *array, uint8_t type) {
  array->Type(static_cast<ArrayType>(type));
}

EXPORT uint8_t ChannelArrayGetStorage(const IChannelArray *array) {
  return static_cast<uint8_t>(array->Storage());
}

EXPORT void ChannelArraySetStorage(IChannelArray *array, uint8_t storage) {
  array->Storage(static_cast<ArrayStorage>(storage));
}

EXPORT uint32_t ChannelArrayGetFlags(const IChannelArray *array) {
  return array->Flags();
}

EXPORT void ChannelArraySetFlags(IChannelArray *array, uint32_t flags) {
  array->Flags(flags);
}

EXPORT uint64_t ChannelArrayGetNofElements(const IChannelArray *array) {
  return array->Dimensions();
}

// IChannelConversion functions
EXPORT uint64_t
ChannelConversionGetIndex(const IChannelConversion *conversion) {
  return conversion->Index();
}

EXPORT size_t ChannelConversionGetName(const IChannelConversion *conversion,
                                       char *name, size_t max_length) {
  const auto &str = conversion->Name();
  if (name && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(name, str.c_str(), copy_len);
    name[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ChannelConversionSetName(IChannelConversion *conversion,
                                     const char *name) {
  conversion->Name(name ? name : "");
}

EXPORT size_t ChannelConversionGetDescription(
    const IChannelConversion *conversion, char *desc, size_t max_length) {
  const auto &str = conversion->Description();
  if (desc && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(desc, str.c_str(), copy_len);
    desc[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ChannelConversionSetDescription(IChannelConversion *conversion,
                                            const char *desc) {
  conversion->Description(desc ? desc : "");
}

EXPORT size_t ChannelConversionGetUnit(const IChannelConversion *conversion,
                                       char *unit, size_t max_length) {
  const auto &str = conversion->Unit();
  if (unit && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(unit, str.c_str(), copy_len);
    unit[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ChannelConversionSetUnit(IChannelConversion *conversion,
                                     const char *unit) {
  conversion->Unit(unit ? unit : "");
}

EXPORT uint8_t ChannelConversionGetType(const IChannelConversion *conversion) {
  return static_cast<uint8_t>(conversion->Type());
}

EXPORT void ChannelConversionSetType(IChannelConversion *conversion,
                                     uint8_t type) {
  conversion->Type(static_cast<ConversionType>(type));
}

EXPORT bool
ChannelConversionIsPrecisionUsed(const IChannelConversion *conversion) {
  return conversion->IsDecimalUsed();
}

EXPORT uint8_t
ChannelConversionGetPrecision(const IChannelConversion *conversion) {
  return conversion->Decimals();
}

EXPORT bool ChannelConversionIsRangeUsed(const IChannelConversion *conversion) {
  auto range_opt = conversion->Range();
  return range_opt.has_value();
}

EXPORT double
ChannelConversionGetRangeMin(const IChannelConversion *conversion) {
  auto range_opt = conversion->Range();
  if (range_opt.has_value()) {
    return range_opt.value().first;
  }
  return 0.0;
}

EXPORT double
ChannelConversionGetRangeMax(const IChannelConversion *conversion) {
  auto range_opt = conversion->Range();
  if (range_opt.has_value()) {
    return range_opt.value().second;
  }
  return 0.0;
}

EXPORT void ChannelConversionSetRange(IChannelConversion *conversion,
                                      double min, double max) {
  conversion->Range(min, max);
}

EXPORT uint16_t
ChannelConversionGetFlags(const IChannelConversion *conversion) {
  return conversion->Flags();
}

EXPORT size_t ChannelConversionGetFormula(const IChannelConversion *conversion,
                                          char *formula, size_t max_length) {
  const auto &str = conversion->Formula();
  if (formula && max_length > 0) {
    size_t copy_len = std::min(str.size(), max_length - 1);
    std::memcpy(formula, str.c_str(), copy_len);
    formula[copy_len] = '\0';
  }
  return str.size();
}

EXPORT void ChannelConversionSetFormula(IChannelConversion *conversion,
                                        const char *formula) {
  conversion->Formula(formula ? formula : "");
}

EXPORT double
ChannelConversionGetParameterAsDouble(const IChannelConversion *conversion,
                                      uint16_t index) {
  return conversion->Parameter(index);
}

EXPORT void
ChannelConversionSetParameterAsDouble(IChannelConversion *conversion,
                                      uint16_t index, double parameter) {
  conversion->Parameter(index, parameter);
}

EXPORT uint64_t ChannelConversionGetParameterAsUInt64(
    const IChannelConversion *conversion, uint16_t index) {
  return static_cast<uint64_t>(conversion->Parameter(index));
}

EXPORT void
ChannelConversionSetParameterAsUInt64(IChannelConversion *conversion,
                                      uint16_t index, uint64_t parameter) {
  conversion->Parameter(index, parameter);
}

EXPORT const IMetaData *
ChannelConversionGetMetaData(const IChannelConversion *conversion) {
  return conversion->MetaData();
}

EXPORT IMetaData *
ChannelConversionCreateMetaData(IChannelConversion *conversion) {
  return conversion->CreateMetaData();
}

// IChannelObserver functions
EXPORT IChannelObserver* CreateChannelObserver(const IDataGroup* dataGroup, const IChannelGroup* channelGroup, const IChannel* channel) {
  if (!dataGroup || !channelGroup || !channel) {
    return nullptr;
  }
  auto observer_ptr = mdf::CreateChannelObserver(*dataGroup, *channelGroup, *channel);
  return observer_ptr.release();
}

EXPORT void ChannelObserverUnInit(IChannelObserver* observer) {
  delete observer;
}

EXPORT size_t ChannelObserverGetNofSamples(const IChannelObserver* observer) {
  return observer ? observer->NofSamples() : 0;
}

EXPORT bool ChannelObserverGetChannelValue(const IChannelObserver* observer, size_t sample, double* value) {
  if (!observer || !value) {
    return false;
  }
  return observer->GetChannelValue(sample, *value);
}

EXPORT bool ChannelObserverGetEngValue(const IChannelObserver* observer, size_t sample, double* value) {
  if (!observer || !value) {
    return false;
  }
  return observer->GetEngValue(sample, *value);
}

EXPORT bool ChannelObserverGetValid(const IChannelObserver* observer, size_t sample) {
  if (!observer) {
    return false;
  }
  const auto& valid_list = observer->GetValidList();
  return sample < valid_list.size() && valid_list[sample];
}

// CanBusObserver functions
EXPORT CanBusObserver* CreateCanBusObserver(const IDataGroup* dataGroup, const IChannelGroup* channelGroup) {
  if (!dataGroup || !channelGroup) {
    return nullptr;
  }
  try {
    return new CanBusObserver(*dataGroup, *channelGroup);
  } catch (const std::exception& e) {
    return nullptr;
  }
}

EXPORT void CanBusObserverUnInit(CanBusObserver* observer) {
  delete observer;
}

EXPORT size_t CanBusObserverGetName(const CanBusObserver* observer, char* name, size_t max_length) {
  if (!observer) {
    return 0;
  }
  const std::string observer_name = observer->Name();
  size_t copy_length = std::min(observer_name.length(), max_length - 1);
  if (name && max_length > 0) {
    std::memcpy(name, observer_name.c_str(), copy_length);
    name[copy_length] = '\0';
  }
  return observer_name.length();
}

EXPORT size_t CanBusObserverGetNofSamples(const CanBusObserver* observer) {
  return observer ? observer->NofSamples() : 0;
}

EXPORT const CanMessage* CanBusObserverGetCanMessage(CanBusObserver* observer, size_t sample) {
  if (!observer) {
    return nullptr;
  }
  return observer->GetCanMessage(sample);
}

} // extern "C"