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
//!
#![warn(missing_debug_implementations, rust_2018_idioms, missing_docs)]

use std::ffi::c_char;
use std::ffi::CStr;
use std::sync::Arc;
use std::sync::RwLock;

use eyre::eyre;
use eyre::Result;
use eyre::WrapErr;

use crate::QHYError::*;
#[macro_use]
extern crate educe;

#[cfg(test)]
pub mod mocks;

#[cfg(not(test))]
use libqhyccd_sys::{
    BeginQHYCCDLive, CancelQHYCCDExposing, CancelQHYCCDExposingAndReadout, CloseQHYCCD,
    ExpQHYCCDSingleFrame, GetQHYCCDChipInfo, GetQHYCCDEffectiveArea, GetQHYCCDExposureRemaining,
    GetQHYCCDFWVersion, GetQHYCCDId, GetQHYCCDLiveFrame, GetQHYCCDMemLength, GetQHYCCDModel,
    GetQHYCCDNumberOfReadModes, GetQHYCCDOverScanArea, GetQHYCCDParam, GetQHYCCDParamMinMaxStep,
    GetQHYCCDReadMode, GetQHYCCDReadModeName, GetQHYCCDReadModeResolution, GetQHYCCDSDKVersion,
    GetQHYCCDSingleFrame, GetQHYCCDType, InitQHYCCD, InitQHYCCDResource, IsQHYCCDCFWPlugged,
    IsQHYCCDControlAvailable, OpenQHYCCD, ReleaseQHYCCDResource, ScanQHYCCD, SetQHYCCDBinMode,
    SetQHYCCDBitsMode, SetQHYCCDDebayerOnOff, SetQHYCCDParam, SetQHYCCDReadMode,
    SetQHYCCDResolution, SetQHYCCDStreamMode, StopQHYCCDLive, QHYCCD_ERROR, QHYCCD_ERROR_F64,
    QHYCCD_SUCCESS,
};

#[cfg(test)]
use crate::mocks::mock_libqhyccd_sys::{
    BeginQHYCCDLive, CancelQHYCCDExposing, CancelQHYCCDExposingAndReadout, CloseQHYCCD,
    ExpQHYCCDSingleFrame, GetQHYCCDChipInfo, GetQHYCCDEffectiveArea, GetQHYCCDExposureRemaining,
    GetQHYCCDFWVersion, GetQHYCCDId, GetQHYCCDLiveFrame, GetQHYCCDMemLength, GetQHYCCDModel,
    GetQHYCCDNumberOfReadModes, GetQHYCCDOverScanArea, GetQHYCCDParam, GetQHYCCDParamMinMaxStep,
    GetQHYCCDReadMode, GetQHYCCDReadModeName, GetQHYCCDReadModeResolution, GetQHYCCDSDKVersion,
    GetQHYCCDSingleFrame, GetQHYCCDType, InitQHYCCD, InitQHYCCDResource, IsQHYCCDCFWPlugged,
    IsQHYCCDControlAvailable, OpenQHYCCD, ReleaseQHYCCDResource, ScanQHYCCD, SetQHYCCDBinMode,
    SetQHYCCDBitsMode, SetQHYCCDDebayerOnOff, SetQHYCCDParam, SetQHYCCDReadMode,
    SetQHYCCDResolution, SetQHYCCDStreamMode, StopQHYCCDLive, QHYCCD_ERROR, QHYCCD_ERROR_F64,
    QHYCCD_SUCCESS,
};

use thiserror::Error;

#[derive(Error, Debug)]
/// Errors that can occur when interacting with the QHYCCD SDK
/// most functions from the SDK return `u32::MAX` on error
/// where it is different, is is noted in the documentation
#[allow(missing_docs)]
pub enum QHYError {
    #[error("Error initializing QHYCCD SDK, error code {}", error_code)]
    InitSDKError { error_code: u32 },
    #[error("Error closing QHYCCD SDK, error code {}", error_code)]
    CloseSDKError { error_code: u32 },
    #[error("Error getting QHYCCD SDK version, error code {:?}", error_code)]
    GetSDKVersionError { error_code: u32 },
    #[error("Error scanning QHYCCD cameras")]
    ScanQHYCCDError,
    #[error("Error opening camera")]
    OpenCameraError,
    #[error("Error camera id, error code {:?}", error_code)]
    GetCameraIdError { error_code: u32 },
    #[error("Error getting firmware version, error code {:?}", error_code)]
    GetFirmwareVersionError { error_code: u32 },
    #[error("Error setting camera read mode, error code {:?}", error_code)]
    SetReadoutModeError { error_code: u32 },
    #[error("Error setting camera stream mode, error code {:?}", error_code)]
    SetStreamModeError { error_code: u32 },
    #[error("Error initializing camera {:?}", error_code)]
    InitCameraError { error_code: u32 },
    #[error("Error getting camera CCD info, error code {:?}", error_code)]
    GetCCDInfoError { error_code: u32 },
    #[error("Error setting camera bit mode, error code {:?}", error_code)]
    SetBitModeError { error_code: u32 },
    #[error("Error setting camera debayer on/off, error code {:?}", error_code)]
    SetDebayerError { error_code: u32 },
    #[error("Error setting camera bin mode, error code {:?}", error_code)]
    SetBinModeError { error_code: u32 },
    #[error("Error setting camera sub frame, error code {:?}", error_code)]
    SetRoiError { error_code: u32 },
    #[error("Error getting camera parameter, error code {:?}", control)]
    GetParameterError {
        /// here the control field has the `Control` enum variant we tried to get the value for
        control: Control,
    },
    #[error("Error setting camera parameter, error code {:?}", error_code)]
    SetParameterError { error_code: u32 },
    #[error("Error starting camera live mode, error code {:?}", error_code)]
    BeginLiveError { error_code: u32 },
    #[error("Error stopping camera live mode, error code {:?}", error_code)]
    EndLiveError { error_code: u32 },
    #[error("Error getting image size, error code")]
    GetImageSizeError,
    #[error("Error getting camera live frame, error code {:?}", error_code)]
    GetLiveFrameError { error_code: u32 },
    #[error("Error getting camera single frame, error code {:?}", error_code)]
    GetSingleFrameError { error_code: u32 },
    #[error("Error closing camera, error code {:?}", error_code)]
    CloseCameraError { error_code: u32 },
    #[error("Error getting camera overscan area, error code {:?}", error_code)]
    GetOverscanAreaError { error_code: u32 },
    #[error("Error getting camera effective area, error code {:?}", error_code)]
    GetEffectiveAreaError { error_code: u32 },
    #[error("Error getting determining support for camera feature {:?}", control)]
    IsControlAvailableError { control: Control },
    #[error("Error starting single frame exposure, error code {:?}", error_code)]
    StartSingleFrameExposureError { error_code: u32 },
    #[error("Error getting camera number of read modes")]
    GetNumberOfReadoutModesError,
    #[error("Error getting camera read mode name")]
    GetReadoutModeNameError,
    #[error("Error getting camera read mode resolution")]
    GetReadoutModeResolutionError,
    #[error("Error getting camera readout mode")]
    GetReadoutModeError,
    #[error("Error getting model of camera {:?}", error_code)]
    GetCameraModelError { error_code: u32 },
    #[error("Error getting type of camera")]
    GetCameraTypeError,
    #[error("Error getting remaining exposure time")]
    GetExposureRemainingError,
    #[error("Error stopping exposure {:?}", error_code)]
    StopExposureError { error_code: u32 },
    #[error("Error canceling exposure and readout {:?}", error_code)]
    AbortExposureAndReadoutError { error_code: u32 },
    #[error("Error getting camera CFW plugged status")]
    IsCfwPluggedInError,
    #[error("Error camera is not open")]
    CameraNotOpenError,
    #[error(
        "Error getting camera min, max, step for parameter, error code {:?}",
        control
    )]
    GetMinMaxStepError {
        /// here the control field has the `Control` enum variant we tried to get the value for
        control: Control,
    },
}

#[derive(Debug, PartialEq, Clone, Copy)]
/// Controls used in `is_control_available` and `set_parameter` nad `get_parameter`
/// documentation is taken from the QHYCCD SDK
/// here <https://www.qhyccd.cn/file/repository/publish/SDK/code/QHYCCD%20SDK_API_EN_V2.3.pdf>
pub enum Control {
    /// Check if support brightness
    Brightness = 0,
    /// Check if support contrast
    Contrast = 1,
    /// Check if support red balance
    Wbr = 2,
    /// Check if support blue balance
    Wbb = 3,
    /// Check if support green balance
    Wbg = 4,
    /// Check if support gamma
    Gamma = 5,
    /// Check if support gain
    Gain = 6,
    /// Check if support offset
    Offset = 7,
    /// Used to set exposure time in microseconds
    Exposure = 8,
    /// Check if support speed
    Speed = 9,
    /// Check if support bits setting
    TransferBit = 10,
    /// Check if support get channels number(Discontinued)
    Channels = 11,
    /// Check if support traffic
    UsbTraffic = 12,
    /// Check if support row denoise
    RowDeNoise = 13,
    /// Check if support get current temperature
    CurTemp = 14,
    /// Check if support get current PWM
    CurPWM = 15,
    /// Check if support manual cool mode
    ManualPWM = 16,
    /// Check if support CFW - Color Filter Wheel
    CfwPort = 17,
    /// Check if support auto cool mode
    Cooler = 18,
    /// Check if support ST4 port
    St4Port = 19,
    /// Check if support get bayer matrix - clashes with `CamIsColor`, but use this one here
    CamColor = 20,
    /// Check if support 1X1 bin mode
    CamBin1x1mode = 21,
    /// Check if support 2X2 bin mode
    CamBin2x2mode = 22,
    /// Check if support 3X3 bin mode
    CamBin3x3mode = 23,
    /// Check if support 4X4 bin mode
    CamBin4x4mode = 24,
    /// Check if support machine shutter
    CamMechanicalShutter = 25,
    /// Check if support trigger mode
    CamTrigerInterface = 26,
    /// Check if support temperature over protect,this
    /// function will limit cooler max PWM be 70%(Disabled)
    CamTecoverprotectInterface = 27,
    /// Check whether the camera supports the
    /// SINGNALCLAMP function, which is a unique feature
    /// of CCD cameras for dark bands behind bright stars
    CamSignalClampInterface = 28,
    /// Check whether the camera supports fine tuning,
    /// which is used for CCD cameras to optimize the noise
    /// characteristics of the camera by fine-tuning the CCD
    /// drive and sampling timing
    CamFinetoneInterface = 29,
    /// Check whether the camera supports shutter motor
    /// heating
    CamShutterMotorHeatingInterface = 30,
    /// Check whether the camera supports FPN calibration,
    /// which reduces FPN noise such as vertical stripes
    CamCalibrateFpnInterface = 31,
    /// Check whether the camera supports an on-chip
    /// temperature sensor
    CamChipTemperatureSensorInterface = 32,
    /// Check whether the camera supports the USB
    /// minimum speed readout function (this function
    /// duplicates the CONTROL_SPEED function and is no
    /// longer in use)
    CamUsbReadoutSlowestInterface = 33,
    /// Check whether the camera supports 8-bit image data
    /// output
    Cam8bits = 34,
    /// Check whether the camera supports 16-bit image
    /// data output
    Cam16bits = 35,
    /// Check whether the camera supports GPS
    CamGps = 36,
    /// Check whether the camera supports the function of
    /// overscanning area calibration
    CamIgnoreOverscanInterface = 37,
    // Check whether the camera supports automatic white
    // balance
    //Qhyccd3aAutoWhiteBalance = 38,
    /// Check whether the camera supports auto exposure
    Qhyccd3aAutoexposure = 39,
    /// Check whether the camera supports autofocus
    Qhyccd3aAutofocus = 40,
    /// Check whether the camera supports glow
    /// suppression
    Ampv = 41,
    /// Check whether the camera supports WDM broadcast
    Vcam = 42,
    /// Check whether preview mode is supported (not
    /// enabled)
    CamViewMode = 43,
    /// Check whether the camera can obtain the number of
    /// filter wheel holes
    CfwSlotsNum = 44,
    /// Check whether the camera is exposed (not enabled)
    IsExposingDone = 45,
    /// Check whether the camera can be stretched Black
    /// gray scale
    ScreenStretchB = 46,
    /// Check whether the camera can White grayscale
    /// stretching
    ScreenStretchW = 47,
    /// Check whether the camera supports DDR
    DDR = 48,
    /// Check whether the camera supports the high-low
    /// gain switching function
    CamLightPerformanceMode = 49,
    ///C heck if the camera is a 5II series camera that
    /// supports guide mode
    CamQhy5IIGuideMode = 50,
    /// Check whether the camera can get the current
    /// amount of DDR buffer data
    DDRBufferCapacity = 51,
    /// Check whether the camera can get the buffer read
    /// threshold
    DDRBufferReadThreshold = 52,
    /// Check whether the camera can obtain the default
    /// gain recommendation
    DefaultGain = 53,
    /// Check whether the camera can obtain the default
    /// bias recommendation
    DefaultOffset = 54,
    /// Check whether the camera can get the actual bits of
    /// output data
    OutputDataActualBits = 55,
    /// Check whether the camera supports getting output
    /// data alignment formats
    OutputDataAlignment = 56,
    /// Check whether the camera supports single frame
    /// mode
    CamSingleFrameMode = 57,
    /// Check whether the camera supports live frame mode
    CamLiveVideoMode = 58,
    /// Check if the camera is color
    CamIsColor = 59,
    /// Check whether the camera supports hardware frame
    /// counting
    HasHardwareFrameCounter = 60,
    /// Get the maximum value of CONTROL_ID (deprecated)
    MaxIdError = 61,
    /// Check whether the camera supports a humidity
    /// sensor
    CamHumidity = 62,
    /// Check whether the camera supports pressure sensors
    CamPressure = 63,
    /// Check whether the camera supports vacuum pump
    VacuumPump = 64,
    /// Check that the camera supports internal circulation
    /// pumps
    SensorChamberCyclePump = 65,
    /// Check whether the camera supports 32-bit image
    /// data output
    Cam32bits = 66,
    /// Check whether the camera supports ULVO status
    /// detection
    CamSensorUlvoStatus = 67,
    /// Check whether the camera supports phase
    /// adjustment, which handles image streaks due to
    /// phase
    CamSensorPhaseReTrain = 68,
    /// Check whether the camera supports Flash read and
    /// write Config
    CamInitConfigFromFlash = 69,
    /// Check whether the camera supports multiple trigger
    /// mode Settings
    CamTriggerMode = 70,
    /// Check whether the camera supports trigger output
    CamTriggerOut = 71,
    /// Check whether the camera supports Burst mode
    CamBurstMode = 72,
    /// Check whether the camera supports the signal lamp
    /// function (currently only for customized models
    CamSpeakerLedAlarm = 73,
    /// Check whether camera FPGA supports watchdog
    /// processing function (currently only for customized
    /// models)
    CamWatchDogFpga = 74,
    /// Check whether the camera supports 6X6 BIN
    CamBin6x6mode = 75,
    /// Check whether the camera supports 8X8 BIN
    CamBin8x8mode = 76,
    /// Check whether the camera sensor supports global
    /// LED calibration lights
    CamGlobalSensorGpsLED = 77,
    /// Check whether the camera supports image
    /// processing
    ImgProc = 78,
    /// not documented
    RemoveRbi = 79,
    /// not documented
    GlobalReset = 80,
    /// not documented
    FrameDetect = 81,
    /// not documented
    CamGainDbConversion = 82,
    /// not documented
    CamCurveSystemGain = 83,
    /// not documented
    CamCurveFullWell = 84,
    /// not documented
    CamCurveReadoutNoise = 85,
    /// not documented
    MaxId = 86,
    /// not documented - see missing value 38
    Autowhitebalance = 1024,
    /// not documented
    Autoexposure = 1025,
    /// not documented
    AutoexpMessureValue = 1026,
    /// not documented
    AutoexpMessureMethod = 1027,
    /// not documented
    ImageStabilization = 1028,
    /// not documented
    GaindB = 1029,
}

#[derive(Debug, PartialEq)]
/// Stream mode used in `set_stream_mode`
pub enum StreamMode {
    /// Long exposure mode
    SingleFrameMode = 0,
    /// Live video mode
    LiveMode = 1,
}

#[derive(Debug, PartialEq, Clone, Copy)]
/// Camera sensor info
pub struct CCDChipInfo {
    /// chip width in um
    pub chip_width: f64,
    /// chip height in um
    pub chip_height: f64,
    /// number of horizontal pixels
    pub image_width: u32,
    /// number of vertical pixels
    pub image_height: u32,
    /// pixel width in um
    pub pixel_width: f64,
    /// pixel height in um
    pub pixel_height: f64,
    /// maximum bit depth for transfer
    pub bits_per_pixel: u32,
}

#[derive(Debug, PartialEq)]
/// the image data coming from the camera in `get_live_frame` and `get_single_frame`
pub struct ImageData {
    /// the image data
    pub data: Vec<u8>,
    /// the width of the image in pixels
    pub width: u32,
    /// the height of the image in pixels
    pub height: u32,
    /// the number of bits per pixel
    pub bits_per_pixel: u32,
    /// the number of channels 1 or 4 most of the time
    pub channels: u32,
}

#[derive(Debug, PartialEq, Clone, Copy)]
/// this struct is used in `get_overscan_area`, `get_effective_area`, `set_roi` and `get_roi`
pub struct CCDChipArea {
    /// the x coordinate of the top left corner of the area
    pub start_x: u32,
    /// the y coordinate of the top left corner of the area
    pub start_y: u32,
    /// the width of the area in pixels
    pub width: u32,
    /// the height of the area in pixels
    pub height: u32,
}

#[derive(Debug, PartialEq)]
#[allow(missing_docs)]
/// this struct is returned from `is_control_available` when used with `Control::CamColor`
pub enum BayerMode {
    GBRG = 1,
    GRBG = 2,
    BGGR = 3,
    RGGB = 4,
}

impl TryFrom<u32> for BayerMode {
    type Error = ();

    fn try_from(value: u32) -> Result<Self, Self::Error> {
        match value {
            x if x == BayerMode::GBRG as u32 => Ok(BayerMode::GBRG),
            x if x == BayerMode::GRBG as u32 => Ok(BayerMode::GRBG),
            x if x == BayerMode::BGGR as u32 => Ok(BayerMode::BGGR),
            x if x == BayerMode::RGGB as u32 => Ok(BayerMode::RGGB),
            _ => Err(()),
        }
    }
}

#[derive(Debug, PartialEq)]
/// used to store readout mode numbers and their descriptions coming from `get_readout_mode_name`
pub struct ReadoutMode {
    /// the number of the mode staring with 0
    pub id: u32,
    /// the name of the mode e.g., `"STANDARD MODE"`
    pub name: String,
}

#[derive(Debug, PartialEq)]
/// returned from `SDK::version`
pub struct SDKVersion {
    /// the year of the SDK version
    pub year: u32,
    /// the month of the SDK version
    pub month: u32,
    /// the day of the SDK version
    pub day: u32,
    /// the subday of the SDK version
    pub subday: u32,
}
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq)]
/// The representation of the SDK. It automatically allocates the SDK when constructed
/// and automatically frees resource when deconstructed.
///
/// # Example
/// ```no_run
/// use qhyccd_rs::Sdk;
///
/// let sdk = Sdk::new().expect("SDK::new failed");
/// let sdk_version = sdk.version().expect("get_sdk_version failed");
/// println!("SDK version: {:?}", sdk_version);
/// let camera = sdk.cameras().last().expect("no camera found");
/// println!("Camera: {:?}", camera);
/// let sdk = Sdk::new().expect("SDK::new failed");
/// println!("{} filter wheels connected.", sdk.filter_wheels().count());
/// ```
pub struct Sdk {
    cameras: Vec<Camera>,
    filter_wheels: Vec<Camera>,
}

#[allow(unused_unsafe)]
impl Sdk {
    /// Creates a new instance of the SDK
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new();
    /// assert!(sdk.is_ok());
    /// ```
    pub fn new() -> Result<Self> {
        match unsafe { InitQHYCCDResource() } {
            QHYCCD_SUCCESS => {
                let num_cameras = match unsafe { ScanQHYCCD() } {
                    QHYCCD_ERROR => {
                        let error = ScanQHYCCDError;
                        tracing::error!(error = ?error);
                        Err(eyre!(error))
                    }
                    num => Ok(num),
                }?;

                let mut cameras = Vec::with_capacity(num_cameras as usize);
                let mut filter_wheels = Vec::with_capacity(num_cameras as usize);
                for index in 0..num_cameras {
                    let id = {
                        let mut c_id: [c_char; 32] = [0; 32];
                        unsafe {
                            match GetQHYCCDId(index, c_id.as_mut_ptr()) {
                                QHYCCD_SUCCESS => {
                                    let id = match CStr::from_ptr(c_id.as_ptr()).to_str() {
                                        Ok(id) => id,
                                        Err(error) => {
                                            tracing::error!(error = ?error);
                                            return Err(eyre!(error));
                                        }
                                    };
                                    Ok(id.to_owned())
                                }
                                error_code => {
                                    let error = GetCameraIdError { error_code };
                                    tracing::error!(error = ?error);
                                    Err(eyre!(error))
                                }
                            }
                        }
                    }?;
                    let camera = Camera::new(id.clone());
                    match camera.open() {
                        Ok(_) => (),
                        Err(error) => {
                            tracing::error!(error = ?error);
                            continue;
                        }
                    }
                    match camera.is_cfw_plugged_in() {
                        Ok(true) => {
                            filter_wheels.push(camera.clone());
                        }
                        Ok(false) => (),
                        Err(error) => {
                            tracing::error!(error = ?error);
                        }
                    }
                    match camera.close() {
                        Ok(_) => (),
                        Err(error) => {
                            tracing::error!(error = ?error);
                        }
                    };
                    cameras.push(camera);
                }

                Ok(Sdk {
                    cameras,
                    filter_wheels,
                })
            }
            error_code => {
                let error = InitSDKError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }
    /// Returns an iterator over all cameras found by the SDK
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// for camera in sdk.cameras() {
    ///    println!("Camera: {:?}", camera);
    /// }
    /// ```
    pub fn cameras(&self) -> impl Iterator<Item = &Camera> {
        self.cameras.iter()
    }

    /// Returns an iterator over all filter wheels found by the SDK
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// println!("{} filter wheels connected.", sdk.filter_wheels().count());
    /// ```
    pub fn filter_wheels(&self) -> impl Iterator<Item = &impl FilterWheel> {
        self.filter_wheels.iter()
    }

    /// Returns the version of the SDK
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let sdk_version = sdk.version().expect("get_sdk_version failed");
    /// println!("SDK version: {:?}", sdk_version);
    /// ```
    pub fn version(&self) -> Result<SDKVersion> {
        let mut year: u32 = 0;
        let mut month: u32 = 0;
        let mut day: u32 = 0;
        let mut subday: u32 = 0;
        match unsafe { GetQHYCCDSDKVersion(&mut year, &mut month, &mut day, &mut subday) } {
            QHYCCD_SUCCESS => Ok(SDKVersion {
                year,
                month,
                day,
                subday,
            }),
            error_code => {
                let error = GetSDKVersionError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }
}

#[allow(unused_unsafe)]
impl Drop for Sdk {
    fn drop(&mut self) {
        match unsafe { ReleaseQHYCCDResource() } {
            QHYCCD_SUCCESS => (),
            error_code => {
                let error = CloseSDKError { error_code };
                tracing::error!(error = ?error);
            }
        }
    }
}

#[derive(Debug, PartialEq, Copy, Clone)]
struct QHYCCDHandle {
    pub ptr: *const std::ffi::c_void,
}

//Safety: QHYCCDHandle is only used in Camera and Camera is Send and Sync
unsafe impl Send for QHYCCDHandle {}
unsafe impl Sync for QHYCCDHandle {}

#[derive(Educe)]
#[educe(Debug, Clone, PartialEq)]
/// The representation of a camera. It is constructed by the SDK and can be used to
/// interact with the camera.
pub struct Camera {
    id: String,
    #[educe(PartialEq(ignore))]
    handle: Arc<RwLock<Option<QHYCCDHandle>>>,
}

macro_rules! read_lock {
    ($var:expr, $wrap:expr) => {
        $var.read().map_err(|err| {
            tracing::error!(error=?err);
            eyre!("Could not acquire read lock on camera handle")
        }).and_then(|lock|{match *lock {
            Some(handle) => Ok(handle.ptr),
            None => {
                tracing::error!(error = ?CameraNotOpenError);
                Err(eyre!(CameraNotOpenError))
            }
        }}).wrap_err($wrap)
    }
}

#[allow(unused_unsafe)]
impl Camera {
    /// Creates a new instance of the camera. The Sdk automatically finds all cameras and provides them in it's cameras() iterator. Creating
    /// a camera manually should only be needed for rare cases.
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk, Camera};
    /// let camera = Camera::new("camera id from sdk".to_string());
    /// println!("Camera: {:?}", camera);
    /// ```
    pub fn new(id: String) -> Self {
        Self {
            id: id.clone(),
            handle: Arc::new(RwLock::new(None)),
        }
    }

    /// Returns the id of the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// println!("Camera id: {}", camera.id());
    /// ```
    pub fn id(&self) -> &str {
        self.id.as_str()
    }

    /// Sets the stream mode of the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk, StreamMode};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::LiveMode).expect("set_stream_mode failed");
    /// ```
    pub fn set_stream_mode(&self, mode: StreamMode) -> Result<()> {
        let handle = read_lock!(self.handle, SetStreamModeError { error_code: 0 })?;
        match unsafe { SetQHYCCDStreamMode(handle, mode as u8) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = SetStreamModeError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Sets the readout mode of the camera with the id of the `ReadoutMode` between 0 and the value
    /// returned by `get_number_of_readout_modes`
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_readout_mode(0).expect("set_readout_mode failed");
    /// ```
    pub fn set_readout_mode(&self, mode: u32) -> Result<()> {
        let handle = read_lock!(self.handle, SetReadoutModeError { error_code: 0 })?;
        match unsafe { SetQHYCCDReadMode(handle, mode) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = SetReadoutModeError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// retunrs the model or short description of the camera - this does not work for all cameras
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let model = camera.get_model().expect("get_model failed");
    /// println!("Camera model: {}", model);
    /// ```
    pub fn get_model(&self) -> Result<String> {
        let handle = read_lock!(self.handle, GetCameraModelError { error_code: 0 })?;
        let mut model: [c_char; 80] = [0; 80];
        match unsafe { GetQHYCCDModel(handle, model.as_mut_ptr()) } {
            QHYCCD_SUCCESS => {
                let model = match unsafe { CStr::from_ptr(model.as_ptr()) }.to_str() {
                    Ok(model) => model,
                    Err(error) => {
                        tracing::error!(error = ?error);
                        return Err(eyre!(error));
                    }
                };
                Ok(model.to_string())
            }
            error_code => {
                let error = GetCameraModelError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// initializes the camera to a new session - use this to change from LiveMode to SingleFrameMode for instance
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk, StreamMode};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::LiveMode).expect("set_stream_mode failed");
    /// camera.init().expect("init failed");
    /// ```
    pub fn init(&self) -> Result<()> {
        let handle = read_lock!(self.handle, InitCameraError { error_code: 0 })?;

        match unsafe { InitQHYCCD(handle) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = InitCameraError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// returns the firmware version of the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let firmware_version = camera.get_firmware_version().expect("get_firmware_version failed");
    /// println!("Firmware version: {}", firmware_version);
    /// ```
    pub fn get_firmware_version(&self) -> Result<String> {
        let handle = read_lock!(self.handle, GetFirmwareVersionError { error_code: 0 })?;
        let mut version = [0u8; 32];
        match unsafe { GetQHYCCDFWVersion(handle, version.as_mut_ptr()) } {
            QHYCCD_SUCCESS => {
                if version[0] >> 4 <= 9 {
                    Ok(format!(
                        "Firmware version: 20{}_{}_{}",
                        (((version[0] >> 4) + 0x10) as u32),
                        version[0] & 0x0F,
                        version[1]
                    ))
                } else {
                    Ok(format!(
                        "Firmware version: 20{}_{}_{}",
                        ((version[0] >> 4) as u32),
                        version[0] & 0x0F,
                        version[1]
                    ))
                }
            }
            error_code => {
                let error = GetFirmwareVersionError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Returns the number of readout modes of the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let num_readout_modes = camera.get_number_of_readout_modes().expect("get_number_of_readout_modes failed");
    /// println!("Number of readout modes: {}", num_readout_modes);
    /// ```
    pub fn get_number_of_readout_modes(&self) -> Result<u32> {
        let handle = read_lock!(self.handle, GetNumberOfReadoutModesError)?;

        let mut num: u32 = 0;
        match unsafe { GetQHYCCDNumberOfReadModes(handle, &mut num as *mut u32) } {
            QHYCCD_ERROR => {
                let error = GetNumberOfReadoutModesError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
            _ => Ok(num),
        }
    }

    /// Returns the readout mode name with the given index. Make sure to check the number of readout modes.
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let num_readout_modes = camera.get_number_of_readout_modes().expect("get_number_of_readout_modes failed");
    /// for index in 0..num_readout_modes {
    ///    let readout_mode_name = camera.get_readout_mode_name(index).expect("get_readout_mode_name failed");
    ///   println!("Readout mode {}: {}", index, readout_mode_name);
    /// }
    /// ```
    pub fn get_readout_mode_name(&self, index: u32) -> Result<String> {
        let handle = read_lock!(self.handle, GetReadoutModeNameError)?;
        let mut name: [c_char; 80] = [0; 80];
        match unsafe { GetQHYCCDReadModeName(handle, index, name.as_mut_ptr()) } {
            QHYCCD_ERROR => {
                let error = GetReadoutModeNameError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
            _ => {
                let name = match unsafe { CStr::from_ptr(name.as_ptr()) }.to_str() {
                    Ok(name) => name,
                    Err(error) => {
                        tracing::error!(error = ?error);
                        return Err(eyre!(error));
                    }
                };
                Ok(name.to_string())
            }
        }
    }

    /// Returns the resolution of the readout mode with the given index. Make sure to check the number of readout modes.
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let num_readout_modes = camera.get_number_of_readout_modes().expect("get_number_of_readout_modes failed");
    /// for index in 0..num_readout_modes {
    ///   let readout_mode_resolution = camera.get_readout_mode_resolution(index).expect("get_readout_mode_resolution failed");
    ///  println!("Readout mode {}: {:?}", index, readout_mode_resolution);
    /// }
    /// ```
    pub fn get_readout_mode_resolution(&self, index: u32) -> Result<(u32, u32)> {
        let handle = read_lock!(self.handle, GetReadoutModeResolutionError)?;

        let mut width: u32 = 0;
        let mut height: u32 = 0;
        match unsafe {
            GetQHYCCDReadModeResolution(
                handle,
                index,
                &mut width as *mut u32,
                &mut height as *mut u32,
            )
        } {
            QHYCCD_SUCCESS => Ok((width, height)),
            _ => {
                let error = GetReadoutModeResolutionError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Returns the current readout mode of the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// use qhyccd_rs::Camera;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let readout_mode = camera.get_readout_mode().expect("get_readout_mode failed");
    /// println!("Readout mode: {}", readout_mode);
    /// ```
    pub fn get_readout_mode(&self) -> Result<u32> {
        let handle = read_lock!(self.handle, GetReadoutModeError)?;
        let mut mode: u32 = 0;
        match unsafe { GetQHYCCDReadMode(handle, &mut mode as *mut u32) } {
            QHYCCD_SUCCESS => Ok(mode),
            _ => {
                let error = GetReadoutModeError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Not sure what this does, for a QHY178M Cool it returns 4010
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// use qhyccd_rs::Camera;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let tipe = camera.get_type().expect("get_type failed");
    /// println!("Type: {}", tipe);
    /// ```
    pub fn get_type(&self) -> Result<u32> {
        let handle = read_lock!(self.handle, GetCameraTypeError)?;
        match unsafe { GetQHYCCDType(handle) } {
            QHYCCD_ERROR => {
                let error = GetCameraTypeError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
            camera_type => Ok(camera_type),
        }
    }

    /// Sets the binning mode of the camera
    /// Only symmetric binnings are supported
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// use qhyccd_rs::Camera;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_bin_mode(2, 2).expect("set_bin_mode failed");
    /// ```
    pub fn set_bin_mode(&self, bin_x: u32, bin_y: u32) -> Result<()> {
        let handle = read_lock!(self.handle, SetBinModeError { error_code: 0 })?;
        match unsafe { SetQHYCCDBinMode(handle, bin_x, bin_y) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = SetBinModeError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// According to c-cod ethis does not work for all cameras
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// use qhyccd_rs::Camera;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_debayer(false).expect("set_debayer failed");
    ///```
    pub fn set_debayer(&self, on: bool) -> Result<()> {
        let handle = read_lock!(self.handle, SetDebayerError { error_code: 0 })?;
        match unsafe { SetQHYCCDDebayerOnOff(handle, on) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = SetDebayerError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Sets the Region of interest of the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::Sdk;
    /// use qhyccd_rs::Camera;
    /// use qhyccd_rs::CCDChipArea;
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let roi = CCDChipArea {
    ///     start_x: 0,
    ///     start_y: 0,
    ///     width: 1000,
    ///     height: 1000,
    /// };
    /// camera.set_roi(roi).expect("set_roi failed");
    /// ```
    pub fn set_roi(&self, roi: CCDChipArea) -> Result<()> {
        let handle = read_lock!(self.handle, SetRoiError { error_code: 0 })?;
        match unsafe {
            SetQHYCCDResolution(handle, roi.start_x, roi.start_y, roi.width, roi.height)
        } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = SetRoiError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Starts Live Video Mode on the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,StreamMode};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::LiveMode).expect("set_stream_mode failed");
    /// camera.init().expect("init failed");
    /// camera.begin_live().expect("begin_live failed");
    /// ```
    pub fn begin_live(&self) -> Result<()> {
        let handle = read_lock!(self.handle, BeginLiveError { error_code: 0 })?;
        match unsafe { BeginQHYCCDLive(handle) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = BeginLiveError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Stops Live Video Mode on the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,StreamMode};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::LiveMode).expect("set_stream_mode failed");
    /// camera.init().expect("init failed");
    /// camera.begin_live().expect("begin_live failed");
    /// /* Download images in between */
    /// camera.end_live().expect("end_live failed");
    /// ```
    pub fn end_live(&self) -> Result<()> {
        let handle = read_lock!(self.handle, EndLiveError { error_code: 0 })?;
        match unsafe { StopQHYCCDLive(handle) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = EndLiveError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Returns the number of bytes needed to retrieve the image stored in the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,StreamMode,Control, ImageData};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::SingleFrameMode).expect("set_stream_mode failed");
    /// camera.init().expect("init failed");
    /// camera.set_parameter(Control::Exposure, 2000000.0).expect("set_param failed"); // this is in micro seconds
    /// camera.start_single_frame_exposure().expect("start_single_frame_exposure failed");
    /// // wait for exposure to finish
    /// let buffer_size = camera.get_image_size().expect("get_camera_image_size failed");
    /// let image = camera.get_single_frame(buffer_size).expect("get_camera_single_frame failed");
    /// ```
    pub fn get_image_size(&self) -> Result<usize> {
        let handle = read_lock!(self.handle, GetImageSizeError)?;
        match unsafe { GetQHYCCDMemLength(handle) } {
            QHYCCD_ERROR => {
                let error = GetImageSizeError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
            size => Ok(size as usize),
        }
    }

    /// Returns the image stored in the camera as `ImageData` struct if the camera is in Live Video Mode
    /// # Example
    /// ```no_run
    /// use std::{thread, time::Duration};
    /// use qhyccd_rs::{Sdk,Camera,StreamMode,Control, ImageData};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::LiveMode).expect("set_stream_mode failed");
    /// camera.init().expect("init failed");
    /// camera.set_parameter(Control::Exposure, 10000.0).expect("set_param failed"); // this is in micro seconds
    /// camera.begin_live().expect("begin_live failed");
    /// let size = camera.get_image_size().expect("get_camera_image_size failed");
    /// for _ in 0..1000 {
    ///     let result = camera.get_live_frame(size);
    ///     if result.is_err() {
    ///         thread::sleep(Duration::from_millis(100));
    ///         continue;
    ///     }
    ///     let image = result.unwrap();
    ///    /* Do something with the image */
    ///     break;
    /// }
    /// camera.end_live().expect("end_camera_live failed");
    /// ```
    pub fn get_live_frame(&self, buffer_size: usize) -> Result<ImageData> {
        let handle = read_lock!(self.handle, GetLiveFrameError { error_code: 0 })?;
        let mut width: u32 = 0;
        let mut height: u32 = 0;
        let mut bpp: u32 = 0;
        let mut channels: u32 = 0;
        let mut buffer = vec![0u8; buffer_size];
        match unsafe {
            GetQHYCCDLiveFrame(
                handle,
                &mut width as *mut u32,
                &mut height as *mut u32,
                &mut bpp as *mut u32,
                &mut channels as *mut u32,
                buffer.as_mut_ptr(),
            )
        } {
            QHYCCD_SUCCESS => Ok(ImageData {
                data: buffer,
                width,
                height,
                bits_per_pixel: bpp,
                channels,
            }),
            error_code => {
                let error = GetLiveFrameError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Returns the image stored in the camera as `ImageData` struct if the camera is in Single Frame Mode
    /// # Example
    ///
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,StreamMode,Control, ImageData};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::SingleFrameMode).expect("set_stream_mode failed");
    /// camera.init().expect("init failed");
    /// camera.set_parameter(Control::Exposure, 10000.0).expect("set_param failed"); // this is in micro seconds
    /// camera.start_single_frame_exposure().expect("start_camera_single_frame_exposure failed");
    /// let buffer_size = camera.get_image_size().expect("get_camera_image_size failed");
    /// let image = camera.get_single_frame(buffer_size).expect("get_camera_single_frame failed");
    /// ```
    pub fn get_single_frame(&self, buffer_size: usize) -> Result<ImageData> {
        let handle = read_lock!(self.handle, GetSingleFrameError { error_code: 0 })?;
        let mut width: u32 = 0;
        let mut height: u32 = 0;
        let mut bpp: u32 = 0;
        let mut channels: u32 = 0;
        let mut buffer = vec![0u8; buffer_size];
        match unsafe {
            GetQHYCCDSingleFrame(
                handle,
                &mut width as *mut u32,
                &mut height as *mut u32,
                &mut bpp as *mut u32,
                &mut channels as *mut u32,
                buffer.as_mut_ptr(),
            )
        } {
            QHYCCD_SUCCESS => Ok(ImageData {
                data: buffer,
                width,
                height,
                bits_per_pixel: bpp,
                channels,
            }),
            error_code => {
                let error = GetSingleFrameError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Get the chip area including overscan area
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,CCDChipArea};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let chip_area = camera.get_overscan_area().expect("get_overscan_area failed");
    /// println!("Chip area: {:?}", chip_area);
    /// ```
    pub fn get_overscan_area(&self) -> Result<CCDChipArea> {
        let handle = read_lock!(self.handle, GetOverscanAreaError { error_code: 0 })?;
        let mut start_x: u32 = 0;
        let mut start_y: u32 = 0;
        let mut width: u32 = 0;
        let mut height: u32 = 0;
        match unsafe {
            GetQHYCCDOverScanArea(
                handle,
                &mut start_x as *mut u32,
                &mut start_y as *mut u32,
                &mut width as *mut u32,
                &mut height as *mut u32,
            )
        } {
            QHYCCD_SUCCESS => Ok(CCDChipArea {
                start_x,
                start_y,
                width,
                height,
            }),
            error_code => {
                let error = GetOverscanAreaError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Get the effective imaging chip area
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,CCDChipArea};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let chip_area = camera.get_effective_area().expect("get_overscan_area failed");
    /// println!("Chip area: {:?}", chip_area);
    /// ```
    pub fn get_effective_area(&self) -> Result<CCDChipArea> {
        let handle = read_lock!(self.handle, GetEffectiveAreaError { error_code: 0 })?;
        let mut start_x: u32 = 0;
        let mut start_y: u32 = 0;
        let mut width: u32 = 0;
        let mut height: u32 = 0;
        match unsafe {
            GetQHYCCDEffectiveArea(
                handle,
                &mut start_x as *mut u32,
                &mut start_y as *mut u32,
                &mut width as *mut u32,
                &mut height as *mut u32,
            )
        } {
            QHYCCD_SUCCESS => Ok(CCDChipArea {
                start_x,
                start_y,
                width,
                height,
            }),
            error_code => {
                let error = GetEffectiveAreaError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Start a long exposure
    /// Make sure to set the exposure time before calling this function
    /// this function blocks the current thread and only returns when the exposure is finished
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,StreamMode,Control, ImageData};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_stream_mode(StreamMode::SingleFrameMode).expect("set_stream_mode failed");
    /// camera.init().expect("init failed");
    /// camera.set_parameter(Control::Exposure, 2000000.0).expect("set_param failed"); // this is in micro seconds
    /// camera.start_single_frame_exposure().expect("start_single_frame_exposure failed");
    /// ```
    pub fn start_single_frame_exposure(&self) -> Result<()> {
        let handle = read_lock!(self.handle, StartSingleFrameExposureError { error_code: 0 })?;
        match unsafe { ExpQHYCCDSingleFrame(handle) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = StartSingleFrameExposureError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Gets the remaining exposure time
    /// it needs to be called from a different thread than the one that called `start_single_frame_exposure`
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// /* start exposure on a different thread*/
    /// let remaining_exposure = camera.get_remaining_exposure_us().expect("get_remaining_exposure_us failed");
    /// println!("Remaining exposure: {}", remaining_exposure);
    /// ```
    pub fn get_remaining_exposure_us(&self) -> Result<u32> {
        let handle = read_lock!(self.handle, GetExposureRemainingError)?;
        match unsafe { GetQHYCCDExposureRemaining(handle) } {
            QHYCCD_ERROR => {
                let error = GetExposureRemainingError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
            remaining if { remaining <= 100 } => Ok(0),
            remaining => Ok(remaining),
        }
    }

    /// Stops the current exposure
    /// the image data stays in the camera and must be retrieved with `get_single_frame`
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// /* start exposure on a different thread*/
    /// camera.stop_exposure().expect("stop_exposure failed");
    /// /* retrieve image data */
    /// ```
    pub fn stop_exposure(&self) -> Result<()> {
        let handle = read_lock!(self.handle, StopExposureError { error_code: 0 })?;
        match unsafe { CancelQHYCCDExposing(handle) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = StopExposureError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Stops the current exposure and discards the image data in the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// /* start exposure on a different thread*/
    /// camera.abort_exposure_and_readout().expect("abort_exposure failed");
    /// ```
    pub fn abort_exposure_and_readout(&self) -> Result<()> {
        let handle = read_lock!(self.handle, AbortExposureAndReadoutError { error_code: 0 })?;
        match unsafe { CancelQHYCCDExposingAndReadout(handle) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = AbortExposureAndReadoutError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Returns information about the control given to the function
    /// # Returns
    /// `Err` if the control is not available
    /// `Ok(info: u32)` if the control is available. Info here is different for controls that have non boolean answers
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,Control};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// if camera.is_control_available(Control::CamLiveVideoMode).is_none()
    /// {
    ///    println!("Control::CamLiveVideoMode is not supported");
    /// }
    /// let camera_is_color = camera.is_control_available(Control::CamColor).is_some(); //this returns a `BayerID` if it is a color camera
    /// ```
    pub fn is_control_available(&self, control: Control) -> Option<u32> {
        let handle = match read_lock!(self.handle, IsControlAvailableError { control }) {
            Ok(handle) => handle,
            Err(_) => return None,
        };
        match unsafe { IsQHYCCDControlAvailable(handle, control as u32) } {
            QHYCCD_ERROR => {
                let error = IsControlAvailableError { control };
                tracing::debug!(control = ?error);
                None
            }
            is_supported => Some(is_supported),
        }
    }

    /// Returns information about the chip in the camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,CCDChipInfo};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let chip_info = camera.get_ccd_info().expect("get_ccd_info failed");
    /// println!("Chip info: {:?}", chip_info);
    /// ```
    pub fn get_ccd_info(&self) -> Result<CCDChipInfo> {
        let handle = read_lock!(self.handle, GetCCDInfoError { error_code: 0 })?;
        let mut chipw: f64 = 0.0;
        let mut chiph: f64 = 0.0;
        let mut imagew: u32 = 0;
        let mut imageh: u32 = 0;
        let mut pixelw: f64 = 0.0;
        let mut pixelh: f64 = 0.0;
        let mut bpp: u32 = 0;
        match unsafe {
            GetQHYCCDChipInfo(
                handle,
                &mut chipw as *mut f64,
                &mut chiph as *mut f64,
                &mut imagew as *mut u32,
                &mut imageh as *mut u32,
                &mut pixelw as *mut f64,
                &mut pixelh as *mut f64,
                &mut bpp as *mut u32,
            )
        } {
            QHYCCD_SUCCESS => Ok(CCDChipInfo {
                chip_width: chipw,
                chip_height: chiph,
                image_width: imagew,
                image_height: imageh,
                pixel_width: pixelw,
                pixel_height: pixelh,
                bits_per_pixel: bpp,
            }),
            error_code => {
                let error = GetCCDInfoError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Sets the USB transfer mode to either 8 or 16 bit
    ///
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_bit_mode(8).expect("set_bit_mode failed");
    /// ```
    pub fn set_bit_mode(&self, mode: u32) -> Result<()> {
        let handle = read_lock!(self.handle, SetBitModeError { error_code: 0 })?;
        match unsafe { SetQHYCCDBitsMode(handle, mode) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = SetBitModeError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Returns the value for a given control
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,Control};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let number_of_filter_wheel_positions = match camera.is_control_available(Control::CfwSlotsNum).is_some() {
    ///     true => camera.get_parameter(Control::CfwSlotsNum).unwrap_or_default() as u32,
    ///     false => 0,
    /// };
    /// ```
    pub fn get_parameter(&self, control: Control) -> Result<f64> {
        let handle = read_lock!(self.handle, GetParameterError { control })?;
        let res = unsafe { GetQHYCCDParam(handle, control as u32) };
        if (res - QHYCCD_ERROR_F64).abs() < f64::EPSILON {
            let error = GetParameterError { control };
            tracing::error!(error = ?error);
            Err(eyre!(error))
        } else {
            Ok(res)
        }
    }

    /// Returns the min, max and step value for a given control
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,Control};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let (min_exposure, max_exposure, exposure_resolution) = camera.get_parameter_min_max_step(Control::Exposure).expect("getting min,max,step failed");
    /// ```
    pub fn get_parameter_min_max_step(&self, control: Control) -> Result<(f64, f64, f64)> {
        let handle = read_lock!(self.handle, GetMinMaxStepError { control })?;
        let mut min: f64 = 0.0;
        let mut max: f64 = 0.0;
        let mut step: f64 = 0.0;
        match unsafe {
            GetQHYCCDParamMinMaxStep(
                handle,
                control as u32,
                &mut min as *mut f64,
                &mut max as *mut f64,
                &mut step as *mut f64,
            )
        } {
            QHYCCD_SUCCESS => Ok((min, max, step)),
            _ => {
                let error = GetMinMaxStepError { control };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Sets the value for a given control
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,Control};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_parameter(Control::Exposure, 2000000.0).expect("set_parameter failed");
    /// ```
    pub fn set_parameter(&self, control: Control, value: f64) -> Result<()> {
        let handle = read_lock!(self.handle, SetParameterError { error_code: 0 })?;
        match unsafe { SetQHYCCDParam(handle, control as u32, value) } {
            QHYCCD_SUCCESS => Ok(()),
            error_code => {
                let error = SetParameterError { error_code };
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Convinience function that sets the value for a given control if it is available
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,Control};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.set_if_available(Control::TransferBit, 16.0).expect("failed to set usb transfer mode");
    /// ```
    pub fn set_if_available(&self, control: Control, value: f64) -> Result<()> {
        match self.is_control_available(control) {
            Some(_) => self.set_parameter(control, value),
            None => Err(eyre!(IsControlAvailableError { control })),
        }
    }

    /// Returns `true` if a filter wheel is plugged into the given camera
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera,Control};
    ///
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// let is_cfw_plugged_in = camera.is_cfw_plugged_in().expect("is_cfw_plugged_in failed");
    /// println!("Is filter wheel plugged in: {}", is_cfw_plugged_in);
    /// ```
    pub fn is_cfw_plugged_in(&self) -> Result<bool> {
        let handle = read_lock!(self.handle, IsCfwPluggedInError)?;
        match unsafe { IsQHYCCDCFWPlugged(handle) } {
            QHYCCD_SUCCESS => Ok(true),
            QHYCCD_ERROR => Ok(false),
            _ => {
                let error = IsCfwPluggedInError;
                tracing::error!(error = ?error);
                Err(eyre!(error))
            }
        }
    }

    /// Opens a camera with the given id. The SDK automatically finds all connected cameras upon initialization
    /// but does not call open on the cameras. You have to call open on the camera you want to use. Calling open
    /// on a camera that is already open does not do anything.
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// ```
    pub fn open(&self) -> Result<()> {
        if self.is_open()? {
            return Ok(());
        }
        // read and see if the handle is already Some(_)
        let mut lock = self.handle.write().map_err(|err| {
            tracing::error!(error=?err);
            eyre!("Could not acquire write lock on camera handle")
        })?;
        unsafe {
            match std::ffi::CString::new(self.id.clone()) {
                Ok(c_id) => {
                    let handle = OpenQHYCCD(c_id.as_ptr());
                    if handle.is_null() {
                        let error = OpenCameraError;
                        tracing::error!(error = ?error);
                        return Err(eyre!(error));
                    }
                    *lock = Some(QHYCCDHandle { ptr: handle });
                    Ok(())
                }
                Err(error) => {
                    tracing::error!(error = ?error);
                    Err(eyre!(error))
                }
            }
        }
    }

    /// Closes the camera. If you have to call this function, you can then open the camera again by
    /// calling `open`. Calling close on a camera that is not open does not do anything.
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found");
    /// camera.open().expect("open failed");
    /// camera.close().expect("close failed");
    /// ```
    pub fn close(&self) -> Result<()> {
        if !self.is_open()? {
            return Ok(());
        }
        let mut lock = self.handle.write().map_err(|err| {
            tracing::error!(error=?err);
            eyre!("Could not acquire write lock on camera handle")
        })?;

        match *lock {
            Some(handle) => match unsafe { CloseQHYCCD(handle.ptr) } {
                QHYCCD_SUCCESS => {
                    lock.take();
                    Ok(())
                }
                error_code => {
                    let error = CloseCameraError { error_code };
                    tracing::error!(error = ?error);
                    Err(eyre!(error))
                }
            },
            None => Ok(()),
        }
    }

    /// Returns `true` if the camera is open
    /// # Example
    /// ```no_run
    /// use qhyccd_rs::{Sdk,Camera};
    /// let sdk = Sdk::new().expect("SDK::new failed");
    /// let camera = sdk.cameras().last().expect("no camera found"); // this does not open the camera
    /// camera.open().expect("open failed");
    /// let is_open = camera.is_open();
    /// println!("Is camera open: {:?}", is_open);
    /// ```
    pub fn is_open(&self) -> Result<bool> {
        let lock = self.handle.read().map_err(|err| {
            tracing::error!(error=?err);
            eyre!("Could not acquire read lock on camera handle")
        })?;
        Ok((*lock).is_some())
    }
}

unsafe impl Send for Camera {}
unsafe impl Sync for Camera {}

/// Filter wheels are directly connected to the QHY camera and can be controlled through the camera
pub trait FilterWheel {
    /// Returns the number of filter positions of the filter wheel
    fn positions(&self) -> u32;
}

impl FilterWheel for Camera {
    fn positions(&self) -> u32 {
        match self.is_control_available(Control::CfwSlotsNum) {
            Some(_) => self.get_parameter(Control::CfwSlotsNum).unwrap_or_default() as u32,
            None => 0,
        }
    }
}

#[cfg(test)]
mod test_camera;
#[cfg(test)]
mod test_sdk;