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
//! Work with durations of time-sampled data, like digital audio.
//!
//! The `sampled_data_duration` crate provides two stucts:
//! `ConstantRateDuration` and `MixedRateDuration`.
//!
//! A `ConstantRateDuraiton` can be used to represents the duration of
//! any data-set which has been sampled at a constant frequency, a
//! prime example might be an audio file sampled at 44.1kHz.
//!
//! A `MixedRateDuration` can be used to represent the duration of a
//! collection of data-sets which have different sampling
//! frequencies. A typical example might be a playlist of audio files
//! where some have been sampled at 44.1kHz, and others at 48kHz or
//! 96kHz, etc.
//!
//! # Example
//!
//! ```
//! use sampled_data_duration::ConstantRateDuration;
//! use sampled_data_duration::MixedRateDuration;
//!
//! // Consider an audio file which consists of `12_345_678` samples per
//! // channel recorded at a sampling rate of 44.1kHz.
//! let crd = ConstantRateDuration::new(12_345_678, 44100);
//!
//! // The default string representation is of the form
//! // `hh:mm:ss;samples`
//! assert_eq!(crd.to_string(), "00:04:39;41778");
//!
//! // Get the duration in various different time-units
//! assert_eq!(crd.as_hours(), 0);
//! assert_eq!(crd.as_mins(), 4);
//! assert_eq!(crd.submin_secs(), 39);
//! assert_eq!(crd.as_secs(), 4 * 60 + 39);
//! assert_eq!(crd.subsec_samples(), 41778);
//! assert_eq!(crd.subsec_secs(), 0.9473469387755102);
//!
//! // Consider and audio playlist which already consists of a file
//! // recorded at 96kHz.
//! let mut mrd = MixedRateDuration::from(ConstantRateDuration::new(87654321, 96000));
//!
//! // The default string representation of the a MixedRateDuration
//! // which consits of only one entry is of the form `hh:mm:ss;samples`
//! assert_eq!(mrd.to_string(), "00:15:13;6321");
//!
//! // However if we add-assign `crd` to `mrd`
//! mrd += crd;
//!
//! // Then we have a duration which is made up of different sampling
//! // rates and the default string representation changes to be of the
//! // form `hh:mm:ss.s`
//! assert_eq!(mrd.to_string(), "00:19:53.013190688");
//!```
//!
//! An attempt has been made to follow the naming conventions defined
//! by [`std::time::Duration`].

// Uncomment to get pedantic warnings when linting with `cargo clippy`.
// #![warn(clippy::pedantic)]

use std::collections::HashMap;
use std::fmt;
use std::ops::Add;
use std::ops::AddAssign;
use std::ops::Div;
use std::ops::DivAssign;
use std::ops::Mul;
use std::ops::MulAssign;
use std::ops::Sub;
use std::ops::SubAssign;
use std::time::Duration;

// Various constants for converting between different units of time
const NANOS_PER_SEC: f64 = 1_000_000_000.0;
const SECS_PER_MIN: u64 = 60;
const SECS_PER_HOUR: u64 = 3600;
const SECS_PER_DAY: u64 = 86400;
const SECS_PER_WEEK: u64 = 604_800;
const DAYS_PER_WEEK: u64 = 7;
const HOURS_PER_DAY: u64 = 24;
const MINS_PER_HOUR: u64 = 60;

/// Represents the duration of a dataset which has been sampled at a
/// constant rate.
///
/// # Examples
///
/// Consider an audio file which consists of `8_394_223` samples per
/// channel recorded with a 48kHz sampling frequency. We can see what
/// the duration of this is by using the default implementation of
/// `std::fmt::Display` for a `ConstantRateDuration` which outputs the
/// duration in the form `hh:mm:ss;samples`.
///
/// ```
/// use sampled_data_duration::ConstantRateDuration;
///
/// let crd = ConstantRateDuration::new(8_394_223, 48000);
/// assert_eq!(crd.to_string(), "00:02:54;42223");
///```
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct ConstantRateDuration {
    count: u64,
    rate: u64,
}
impl ConstantRateDuration {
    /// Construct a new `ConstantRateDuration`, where `count`
    /// corresponds to the number of samples and `rate` is the
    /// sampling rate in Hertz.
    #[must_use]
    pub fn new(count: u64, rate: u64) -> ConstantRateDuration {
        ConstantRateDuration { count, rate }
    }

    /// Returns the number of _whole_ seconds contained by this `ConstantRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration which can be obtained with [`subsec_secs`].
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 62 + 123, 48000);
    /// assert_eq!(crd.to_string(), "00:01:02;123");
    /// assert_eq!(crd.as_secs(), 62);
    /// ```
    /// [`subsec_secs`]: ConstantRateDuration::subsec_secs
    #[must_use]
    pub fn as_secs(&self) -> u64 {
        self.count / self.rate
    }

    /// Returns the number of _whole_ minutes contained by this `ConstantRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration, and can be a value greater than 59.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 60 * 91, 48000);
    /// assert_eq!(crd.to_string(), "01:31:00;0");
    /// assert_eq!(crd.as_mins(), 91);
    /// ```
    #[must_use]
    pub fn as_mins(&self) -> u64 {
        self.as_secs() / SECS_PER_MIN
    }

    /// Returns the number of _whole_ hours contained by this `ConstantRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration, and can be a value greater than 23.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 60 * 60 * 48 + 12345, 48000);
    /// assert_eq!(crd.to_string(), "48:00:00;12345");
    /// assert_eq!(crd.as_hours(), 48);
    /// ```
    #[must_use]
    pub fn as_hours(&self) -> u64 {
        self.as_secs() / SECS_PER_HOUR
    }

    /// Returns the number of _whole_ days contained by this `ConstantRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration, and can be a value greater than 6.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 60 * 60 * 48 + 12345, 48000);
    /// assert_eq!(crd.to_string(), "48:00:00;12345");
    /// assert_eq!(crd.as_days(), 2);
    /// ```
    #[must_use]
    pub fn as_days(&self) -> u64 {
        self.as_secs() / SECS_PER_DAY
    }

    /// Returns the number of _whole_ weeks contained by this `ConstantRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 60 * 60 * 24 * 21 + 12345, 48000);
    /// assert_eq!(crd.to_string(), "504:00:00;12345");
    /// assert_eq!(crd.as_weeks(), 3);
    /// ```
    #[must_use]
    pub fn as_weeks(&self) -> u64 {
        self.as_secs() / SECS_PER_WEEK
    }

    /// Returns the number of samples in the sub-second part of this
    /// `ConstantRateDuration`.
    ///
    /// The returned value will always be less than the sampling rate.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 + 12345, 48000);
    /// assert_eq!(crd.to_string(), "00:00:01;12345");
    /// assert_eq!(crd.subsec_samples(), 12345);
    /// ```
    #[must_use]
    pub fn subsec_samples(&self) -> u64 {
        self.count % self.rate
    }

    /// Returns the _whole_ number of nanoseconds in the fractional
    /// part of this `ConstantRateDuration`.
    ///
    /// The returned value will always be less than one second i.e. >
    /// `1_000_000_000` nanoseconds.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 + 24000, 48000);
    /// assert_eq!(crd.to_string(), "00:00:01;24000");
    /// assert_eq!(crd.subsec_nanos(), 500_000_000);
    /// ```
    #[must_use]
    pub fn subsec_nanos(&self) -> u32 {
        let nanos_as_f64 = self.subsec_secs() * NANOS_PER_SEC;

        nanos_as_f64 as u32
    }

    /// Return the sub-second part of this duration in seconds.
    ///
    /// This will return a value in the range `0.0 <= subsec_secs < 1.0`.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 + 24000, 48000);
    /// assert_eq!(crd.to_string(), "00:00:01;24000");
    /// assert_eq!(crd.subsec_secs(), 0.5);
    /// ```
    #[must_use]
    pub fn subsec_secs(&self) -> f64 {
        self.subsec_samples() as f64 / self.rate as f64
    }

    /// Returns the _whole_ number of seconds left over when this duration is measured in minutes.
    ///
    /// The returned value will always be 0 <= `submin_secs` <= 59.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 65 + 32000, 48000);
    /// assert_eq!(crd.to_string(), "00:01:05;32000");
    /// assert_eq!(crd.submin_secs(), 5);
    /// ```
    #[must_use]
    pub fn submin_secs(&self) -> u64 {
        self.as_secs() % SECS_PER_MIN
    }

    /// Returns the _whole_ number of minutes left over when this duration is measured in hours.
    ///
    /// The returned value will always be 0 <= `subhour_mins` <= 59.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 60 * 68, 48000);
    /// assert_eq!(crd.to_string(), "01:08:00;0");
    /// assert_eq!(crd.subhour_mins(), 8);
    /// ```
    #[must_use]
    pub fn subhour_mins(&self) -> u64 {
        self.as_mins() % MINS_PER_HOUR
    }

    /// Returns the _whole_ number of hours left over when this duration is measured in days.
    ///
    /// The returned value will always be 0 <= `subday_hours` <= 23.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 60 * 60 * 25, 48000);
    /// assert_eq!(crd.to_string(), "25:00:00;0");
    /// assert_eq!(crd.subday_hours(), 1);
    /// ```
    #[must_use]
    pub fn subday_hours(&self) -> u64 {
        self.as_hours() % HOURS_PER_DAY
    }

    /// Returns the _whole_ number of days left over when this duration is measured in weeks.
    ///
    /// The returned value will always be 0 <= `subweek_days` <= 6.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 60 * 60 * 24 * 9, 48000);
    /// assert_eq!(crd.to_string(), "216:00:00;0");
    /// assert_eq!(crd.subweek_days(), 2);
    /// ```
    #[must_use]
    pub fn subweek_days(&self) -> u64 {
        self.as_days() % DAYS_PER_WEEK
    }

    /// Returns this `ConstantRateDuration` as a `std::time::Duration`.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    ///
    /// let crd = ConstantRateDuration::new(48000 * 42, 48000);
    /// assert_eq!(crd.to_string(), "00:00:42;0");
    /// assert_eq!(crd.to_duration().as_secs_f64(), 42.0);
    /// ```
    #[must_use]
    pub fn to_duration(&self) -> Duration {
        Duration::new(self.as_secs(), self.subsec_nanos())
    }

    /// Computes `self + other` returning `Ok(ConstantRateDuration)`
    /// if the sampling rates of `self` and `other` are the same, or
    /// `Err(MixedRateDuration)` if they are not.
    ///
    /// If the sample count of the new duration exceeds the maximum
    /// capacity of a `u64` then this method will panic with the error
    /// message `"overflow when adding ConstantRateDurations"`.
    ///
    /// # Examples
    ///
    /// ```
    /// use sampled_data_duration::*;
    ///
    /// let a = ConstantRateDuration::new(48000, 48000);
    /// let b = ConstantRateDuration::new(48000 * 2, 48000);
    ///
    /// if let Ok(c) = a.try_add(b) {
    ///   assert_eq!(c.as_secs(), 3);
    /// } else {
    ///   assert!(false);
    /// }
    ///```
    ///
    /// # Errors
    ///
    /// Will return a `Err(MixedRateDuration)` if the provided
    /// `ConstantRateDurations` have incommensurate sampling rates.
    pub fn try_add(
        self,
        other: ConstantRateDuration,
    ) -> Result<ConstantRateDuration, MixedRateDuration> {
        if self.rate == other.rate {
            return Ok(ConstantRateDuration::new(
                self.count
                    .checked_add(other.count)
                    .expect("overflow when adding ConstantRateDurations"),
                self.rate,
            ));
        }

        let mut map: HashMap<u64, u64> = HashMap::with_capacity(2);
        map.insert(self.rate, self.count);
        map.insert(other.rate, other.count);
        let mut mrd = MixedRateDuration {
            duration: Duration::new(0, 0),
            map,
        };
        mrd.update_duration();

        Err(mrd)
    }

    /// Add-assigns `crd` to this `ConstantRateDuration` returning
    /// `Ok(())` if the sampling rates of `self` and `other` are the
    /// same, or `Err(MixedRateDuration)` if they are not.
    ///
    /// If the sample count of updated duration exceeds the maximum
    /// capacity of a `u64` then this method will panic with the error
    /// message `"overflow when add-assigning ConstantRateDurations"`.
    ///
    /// # Examples
    ///
    /// ```
    /// use sampled_data_duration::*;
    ///
    /// let mut a = ConstantRateDuration::new(48000, 48000);
    /// let b = ConstantRateDuration::new(48000 * 2, 48000);
    ///
    /// if let Ok(()) = a.try_add_assign(b) {
    ///   assert_eq!(a.as_secs(), 3);
    /// } else {
    ///   assert!(false);
    /// }
    ///```
    ///
    /// # Errors
    ///
    /// Will return a `Err(MixedRateDuration)` if the provided
    /// `ConstantRateDurations` have incommensurate sampling rates.
    pub fn try_add_assign(&mut self, crd: ConstantRateDuration) -> Result<(), MixedRateDuration> {
        if self.rate == crd.rate {
            self.count = self
                .count
                .checked_add(crd.count)
                .expect("overflow when add-assigning ConstantRateDurations");
            return Ok(());
        }

        let mut map: HashMap<u64, u64> = HashMap::with_capacity(2);
        map.insert(self.rate, self.count);
        map.insert(crd.rate, crd.count);

        let mut mixed_rate_duration = MixedRateDuration {
            duration: Duration::new(0, 0),
            map,
        };
        mixed_rate_duration.update_duration();

        Err(mixed_rate_duration)
    }

    /// Computes `self - other` returning `Ok(ConstantRateDuration)`
    /// if the sampling rates of `self` and `other` are the same, or
    /// `Err(())` if they are not.
    ///
    /// If the sample count of the new duration would be less than 0
    /// then then returned `ConstantRateDuraiton` will have 0 duration
    /// — this is a what is meant by saturating..
    ///
    /// # Examples
    ///
    /// ```
    /// use sampled_data_duration::*;
    ///
    /// let a = ConstantRateDuration::new(48001, 48000);
    /// let b = ConstantRateDuration::new(48000, 48000);
    ///
    /// assert_eq!(a.try_saturating_sub(b), Ok(ConstantRateDuration::new(1, 48000)));
    ///
    /// let c = ConstantRateDuration::new(48001, 48000);
    /// let d = ConstantRateDuration::new(48000, 48000);    
    /// assert_eq!(d.try_saturating_sub(c), Ok(ConstantRateDuration::new(0, 48000)));
    ///
    /// let e = ConstantRateDuration::new(96000, 96000);
    /// let f = ConstantRateDuration::new(48000, 48000);
    /// assert_eq!(e.try_saturating_sub(f), Err(Error::IncommensurateRates));
    ///```
    ///
    /// # Errors
    ///
    /// Will return an `Error::IncommensurateRates` if the provided
    /// `ConstantRateDurations` have incommensurate sampling rates.
    pub fn try_saturating_sub(
        self,
        other: ConstantRateDuration,
    ) -> Result<ConstantRateDuration, Error> {
        if self.rate == other.rate {
            return Ok(ConstantRateDuration::new(
                self.count.saturating_sub(other.count),
                self.rate,
            ));
        }

        Err(Error::IncommensurateRates)
    }

    /// Sub-assigns `crd` from this `ConstantRateDuration` returning
    /// `Ok(())` if the sampling rates of `self` and `other` are the
    /// same, or `Err(())` if they are not.
    ///
    /// If the sample count of updated duration would be negative then
    /// it "saturates" and becomes zero.
    ///
    /// # Examples
    ///
    /// ```
    /// use sampled_data_duration::*;
    ///
    /// let mut a = ConstantRateDuration::new(10, 48000);
    /// let b = ConstantRateDuration::new(2, 48000);
    ///
    /// if let Ok(()) = a.try_saturating_sub_assign(b) {
    ///   assert_eq!(a.subsec_samples(), 8);
    /// } else {
    ///   assert!(false);
    /// }
    ///
    /// let mut c = ConstantRateDuration::new(1, 48000);
    /// let d = ConstantRateDuration::new(5, 48000);
    ///
    /// if let Ok(()) = c.try_saturating_sub_assign(d) {
    ///   assert_eq!(c.subsec_samples(), 0);
    /// } else {
    ///   assert!(false);
    /// }
    ///
    /// let mut e = ConstantRateDuration::new(96000, 96000);
    /// let f = ConstantRateDuration::new(48000, 48000);
    /// assert!(e.try_saturating_sub(f).is_err());
    ///```
    ///
    /// # Errors
    ///
    /// Will return an `Error::IncommensurateRates` if the provided
    /// `ConstantRateDurations` have incommensurate sampling rates.
    pub fn try_saturating_sub_assign(&mut self, crd: ConstantRateDuration) -> Result<(), Error> {
        if self.rate == crd.rate {
            self.count = self.count.saturating_sub(crd.count);
            return Ok(());
        }

        Err(Error::IncommensurateRates)
    }
}
impl fmt::Display for ConstantRateDuration {
    /// Display this `ConstantRateDuration` in the form `hh:mm:ss;samples`.
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let hours = self.as_hours();

        if hours < 10 {
            return write!(
                f,
                "{:02}:{:02}:{:02};{}",
                hours,
                self.subhour_mins(),
                self.submin_secs(),
                self.subsec_samples()
            );
        }

        write!(
            f,
            "{}:{:02}:{:02};{}",
            hours,
            self.subhour_mins(),
            self.submin_secs(),
            self.subsec_samples()
        )
    }
}
impl Div<u64> for ConstantRateDuration {
    type Output = Self;

    /// Divide a `ConstantRateDuration` by a `u64` returning a new
    /// `ConstantRateDuration`.
    fn div(self, rhs: u64) -> Self {
        ConstantRateDuration::new(
            self.count
                .checked_div(rhs)
                .expect("divide by zero when dividing a ConstantRateDuration"),
            self.rate,
        )
    }
}
impl DivAssign<u64> for ConstantRateDuration {
    /// Divide-assign a `ConstantRateDuration` by a `u64`.
    fn div_assign(&mut self, rhs: u64) {
        self.count = self
            .count
            .checked_div(rhs)
            .expect("divide by zero when divide-assigning a ConstantRateDuration");
    }
}
impl Mul<u64> for ConstantRateDuration {
    type Output = Self;

    /// Multiply a `ConstantRateDuration` by a `u64` returning a new
    /// `ConstantRateDuration`.
    fn mul(self, rhs: u64) -> Self {
        ConstantRateDuration::new(
            self.count
                .checked_mul(rhs)
                .expect("overflow when multiplying ConstantRateDuration"),
            self.rate,
        )
    }
}
impl MulAssign<u64> for ConstantRateDuration {
    /// Multiply-assign a `ConstantRateDuration` by a `u64`.
    fn mul_assign(&mut self, rhs: u64) {
        self.count = self
            .count
            .checked_mul(rhs)
            .expect("overflow when multiply-assigning a ConstantRateDuration");
    }
}

#[cfg(test)]
mod constant_rate_duration {
    use super::*;

    #[test]
    fn new() {
        let count: u64 = 15_345_873;
        let rate: u64 = 44100;
        let mut crd: ConstantRateDuration = ConstantRateDuration::new(count, rate);

        assert_eq!(crd.count, count);
        assert_eq!(crd.rate, rate);

        let updated_count: u64 = 26_326_888;
        crd.count = updated_count;
        assert_eq!(crd.count, updated_count);

        let updated_rate: u64 = 48000;
        crd.rate = updated_rate;
        assert_eq!(crd.rate, updated_rate);
    }

    #[test]
    fn as_and_sub_time_unit_methods() {
        let subsec_samples: u64 = 24_000;
        let submin_secs: u64 = 32;
        let subhour_mins: u64 = 23;
        let subday_hours: u64 = 19;
        let subweek_days: u64 = 4;
        let weeks: u64 = 1;
        let rate: u64 = 48_000;

        let as_days = weeks * DAYS_PER_WEEK + subweek_days;
        let as_hours = as_days * HOURS_PER_DAY + subday_hours;
        let as_mins = as_hours * MINS_PER_HOUR + subhour_mins;
        let as_secs = as_mins * SECS_PER_MIN + submin_secs;

        let total_secs: u64 = weeks * SECS_PER_WEEK
            + subweek_days * SECS_PER_DAY
            + subday_hours * SECS_PER_HOUR
            + subhour_mins * SECS_PER_MIN
            + submin_secs;
        let count: u64 = total_secs * rate + subsec_samples;
        let crd: ConstantRateDuration = ConstantRateDuration::new(count, rate);

        assert_eq!(crd.count, count);
        assert_eq!(crd.rate, rate);
        assert_eq!(crd.as_secs(), as_secs);
        assert_eq!(crd.as_mins(), as_mins);
        assert_eq!(crd.as_hours(), as_hours);
        assert_eq!(crd.as_days(), as_days);
        assert_eq!(crd.as_weeks(), weeks);
        assert_eq!(crd.subsec_samples(), subsec_samples);
        assert_eq!(crd.subsec_nanos(), 500_000_000);
        assert_eq!(crd.subsec_secs(), 0.5);
        assert_eq!(crd.submin_secs(), submin_secs);
        assert_eq!(crd.subhour_mins(), subhour_mins);
        assert_eq!(crd.subday_hours(), subday_hours);
        assert_eq!(crd.subweek_days(), subweek_days);

        // Check sample roll-over to seconds
        let mut crd: ConstantRateDuration = ConstantRateDuration::new(47999, 48000);
        assert_eq!(crd.as_secs(), 0);
        assert_eq!(crd.subsec_samples(), 47999);
        assert_eq!(crd.subsec_nanos(), 1_000_000_000 - 20834);

        crd.count += 1;
        assert_eq!(crd.as_secs(), 1);
        assert_eq!(crd.subsec_samples(), 0);
        assert_eq!(crd.subsec_nanos(), 0);

        crd.count += 1;
        assert_eq!(crd.as_secs(), 1);
        assert_eq!(crd.subsec_samples(), 1);
        assert_eq!(crd.subsec_nanos(), 20833);
    }

    #[test]
    fn to_duration() {
        let crd = ConstantRateDuration::new(48000, 48000);
        assert_eq!(crd.to_duration(), Duration::new(1, 0));

        let crd = ConstantRateDuration::new(48001, 48000);
        assert_eq!(crd.to_duration(), Duration::new(1, 20833));
    }

    #[test]
    fn try_add() {
        // Add ConstantRateDurations with the same sample rate
        let a = ConstantRateDuration::new(48000, 48000);
        assert_eq!(a.as_secs(), 1);
        assert_eq!(a.subsec_samples(), 0);

        let b = ConstantRateDuration::new(1, 48000);
        assert_eq!(b.as_secs(), 0);
        assert_eq!(b.subsec_samples(), 1);

        let result = a.try_add(b);
        assert!(result.is_ok());
        let c = result.unwrap();
        assert_eq!(c.as_secs(), 1);
        assert_eq!(c.subsec_samples(), 1);

        // Add ConstantRateDurations with different sample rates
        let a = ConstantRateDuration::new(48000, 48000);
        assert_eq!(a.as_secs(), 1);
        assert_eq!(a.subsec_samples(), 0);

        let b = ConstantRateDuration::new(96000, 96000);
        assert_eq!(b.as_secs(), 1);
        assert_eq!(b.subsec_samples(), 0);

        let result = a.try_add(b);
        assert!(result.is_err());
        let c = result.unwrap_err();
        assert_eq!(c.as_secs(), 2);
    }

    #[test]
    #[should_panic(expected = "overflow when adding ConstantRateDurations")]
    fn try_add_overflow() {
        // Add ConstantRateDurations which overflow
        let a = ConstantRateDuration::new(u64::MAX, 48000);
        let b = ConstantRateDuration::new(1, 48000);
        let _c = a.try_add(b);
    }

    #[test]
    fn try_add_assign() {
        // Add-assign ConstantRateDurations with the same sampling rate
        let mut a = ConstantRateDuration::new(48000, 48000);
        let b = ConstantRateDuration::new(48000, 48000);
        assert_eq!(a.as_secs(), 1);
        assert_eq!(a.subsec_samples(), 0);
        assert_eq!(b.as_secs(), 1);
        assert_eq!(b.subsec_samples(), 0);
        assert!(a.try_add_assign(b).is_ok());
        assert_eq!(a.as_secs(), 2);
        assert_eq!(a.subsec_samples(), 0);

        // Add-assign ConstantRateDurations with different sampling rates
        let mut a = ConstantRateDuration::new(48000, 48000);
        let b = ConstantRateDuration::new(96000, 96000);
        assert_eq!(a.as_secs(), 1);
        assert_eq!(a.subsec_samples(), 0);
        assert_eq!(b.as_secs(), 1);
        assert_eq!(b.subsec_samples(), 0);

        let result = a.try_add_assign(b);
        assert!(result.is_err());
        let c = result.unwrap_err();
        assert_eq!(c.as_secs(), 2);
    }

    #[test]
    #[should_panic(expected = "overflow when add-assigning ConstantRateDurations")]
    fn try_add_assign_overflow() {
        // Add-assign ConstantRateDurations which overflow
        let mut a = ConstantRateDuration::new(u64::MAX, 48000);
        let b = ConstantRateDuration::new(1, 48000);
        let _c = a.try_add_assign(b);
    }

    #[test]
    fn display() {
        let crd = ConstantRateDuration::new(48000 + 12345, 48000);
        assert_eq!(crd.to_string(), "00:00:01;12345");
    }

    #[test]
    fn div() {
        let a = ConstantRateDuration::new(96002, 48000);
        assert_eq!(a.as_secs(), 2);
        assert_eq!(a.subsec_samples(), 2);

        let b = a / 2;
        assert_eq!(b.as_secs(), 1);
        assert_eq!(b.subsec_samples(), 1);
    }

    #[test]
    #[should_panic(expected = "divide by zero when dividing a ConstantRateDuration")]
    fn div_by_zero() {
        // Divide a ConstantRateDurations by zero
        let a = ConstantRateDuration::new(48000, 48000);
        let _ = a / 0;
    }

    #[test]
    fn div_assign() {
        let mut a = ConstantRateDuration::new(96002, 48000);
        assert_eq!(a.as_secs(), 2);
        assert_eq!(a.subsec_samples(), 2);

        a /= 2;
        assert_eq!(a.as_secs(), 1);
        assert_eq!(a.subsec_samples(), 1);
    }

    #[test]
    #[should_panic(expected = "divide by zero when divide-assigning a ConstantRateDuration")]
    fn div_assign_by_zero() {
        // Divide-assign a ConstantRateDurations by zero
        let mut a = ConstantRateDuration::new(48000, 48000);
        a /= 0;
    }

    #[test]
    fn mul() {
        let a = ConstantRateDuration::new(48001, 48000);
        assert_eq!(a.as_secs(), 1);
        assert_eq!(a.subsec_samples(), 1);

        let b = a * 2;
        assert_eq!(b.as_secs(), 2);
        assert_eq!(b.subsec_samples(), 2);
    }

    #[test]
    #[should_panic(expected = "overflow when multiplying ConstantRateDuration")]
    fn mul_overflow() {
        // Multiply a ConstantRateDurations to overflow
        let a = ConstantRateDuration::new(u64::MAX, 48000);
        let _ = a * 2;
    }

    #[test]
    fn mul_assign() {
        let mut a = ConstantRateDuration::new(48001, 48000);
        assert_eq!(a.as_secs(), 1);
        assert_eq!(a.subsec_samples(), 1);

        a *= 2;
        assert_eq!(a.as_secs(), 2);
        assert_eq!(a.subsec_samples(), 2);
    }

    #[test]
    #[should_panic(expected = "overflow when multiply-assigning a ConstantRateDuration")]
    fn mul_assign_overflow() {
        // Multiply-assign a ConstantRateDurations to overflow
        let mut a = ConstantRateDuration::new(u64::MAX, 48000);
        a *= 2;
    }

    #[test]
    fn try_saturating_sub() {
        let a = ConstantRateDuration::new(2, 48000);
        let b = ConstantRateDuration::new(1, 48000);

        assert_eq!(
            a.try_saturating_sub(b),
            Ok(ConstantRateDuration::new(1, 48000))
        );

        let a = ConstantRateDuration::new(10, 48000);
        let b = ConstantRateDuration::new(1, 48000);
        assert_eq!(
            b.try_saturating_sub(a),
            Ok(ConstantRateDuration::new(0, 48000))
        );

        let a = ConstantRateDuration::new(96000, 96000);
        let b = ConstantRateDuration::new(48000, 48000);
        assert_eq!(a.try_saturating_sub(b), Err(Error::IncommensurateRates));
    }

    #[test]
    fn try_saturating_sub_assign() {
        let mut a = ConstantRateDuration::new(10, 48000);
        let b = ConstantRateDuration::new(2, 48000);

        assert!(a.try_saturating_sub_assign(b).is_ok());
        assert_eq!(a.subsec_samples(), 8);

        let mut a = ConstantRateDuration::new(1, 48000);
        let b = ConstantRateDuration::new(5, 48000);

        assert!(a.try_saturating_sub_assign(b).is_ok());
        assert_eq!(a.subsec_samples(), 0);

        let a = ConstantRateDuration::new(96000, 96000);
        let b = ConstantRateDuration::new(48000, 48000);
        assert!(a.try_saturating_sub(b).is_err());
    }
}

/// Represents a duration of a collection of datasets which may have
/// been sampled at different rates.
///
/// # Examples
///
/// Consider an audio playlist which at first consists of a single
/// audio file of `12_345_678` samples per channel recorded with at
/// 44.1kHz sampling frequency. We then add another audio file to this
/// playlist which is recorded at 96kHz.
///
/// ```
/// use sampled_data_duration::ConstantRateDuration;
/// use sampled_data_duration::MixedRateDuration;
///
/// let mut mrd = MixedRateDuration::from(ConstantRateDuration::new(12_345_678, 48000));
///
/// // Note that the default string representation when there is only
/// // a single sampling rate is of the form `hh:mm:ss;samples`.
/// assert_eq!(mrd.to_string(), "00:04:17;9678");
///
/// // Now we add a 96kHz file
/// let crd = ConstantRateDuration::new(31_415_926, 96000);
/// assert_eq!(crd.to_string(), "00:05:27;23926");
///
/// mrd += crd;
///
/// // Note that the default string representation when there are
/// // multiple sampling rates is of the form `hh:mm:ss.s`.
/// assert_eq!(mrd.to_string(), "00:09:44.450854166");
///```
#[derive(Clone, Debug, PartialEq)]
pub struct MixedRateDuration {
    duration: Duration,
    map: HashMap<u64, u64>,
}
impl MixedRateDuration {
    /// Construct an empty `MixedRateDuration`.
    ///
    /// # Examples
    ///
    /// ```
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mut mrd = MixedRateDuration::new();
    ///
    /// assert_eq!(mrd.to_string(), "00:00:00");
    ///```
    #[must_use]
    pub fn new() -> MixedRateDuration {
        MixedRateDuration {
            duration: Duration::new(0, 0),
            map: HashMap::new(),
        }
    }

    /// Returns the number of _whole_ seconds contained by this
    /// `MixedRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration which can be obtained with [`subsec_secs`].
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 62 + 123, 48000));
    /// assert_eq!(mrd.to_string(), "00:01:02;123");
    /// assert_eq!(mrd.as_secs(), 62);
    /// ```
    /// [`subsec_secs`]: MixedRateDuration::subsec_secs
    #[must_use]
    pub fn as_secs(&self) -> u64 {
        self.duration.as_secs()
    }

    /// Returns the number of _whole_ minutes contained by this `MixedRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration, and can be a value greater than 59.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 60 * 91, 48000));
    /// assert_eq!(mrd.to_string(), "01:31:00;0");
    /// assert_eq!(mrd.as_mins(), 91);
    /// ```
    #[must_use]
    pub fn as_mins(&self) -> u64 {
        self.as_secs() / SECS_PER_MIN
    }

    /// Returns the number of _whole_ hours contained by this `MixedRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration, and can be a value greater than 23.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 60 * 60 * 48 + 12345, 48000));
    /// assert_eq!(mrd.to_string(), "48:00:00;12345");
    /// assert_eq!(mrd.as_hours(), 48);
    /// ```
    #[must_use]
    pub fn as_hours(&self) -> u64 {
        self.as_secs() / SECS_PER_HOUR
    }

    /// Returns the number of _whole_ days contained by this `MixedRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration, and can be a value greater than 6.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 60 * 60 * 48 + 12345, 48000));
    /// assert_eq!(mrd.to_string(), "48:00:00;12345");
    /// assert_eq!(mrd.as_days(), 2);
    /// ```
    #[must_use]
    pub fn as_days(&self) -> u64 {
        self.as_secs() / SECS_PER_DAY
    }

    /// Returns the number of _whole_ weeks contained by this `MixedRateDuration`.
    ///
    /// The returned value does not include the fractional part of the
    /// duration.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 60 * 60 * 24 * 21 + 12345, 48000));
    /// assert_eq!(mrd.to_string(), "504:00:00;12345");
    /// assert_eq!(mrd.as_weeks(), 3);
    /// ```
    #[must_use]
    pub fn as_weeks(&self) -> u64 {
        self.as_secs() / SECS_PER_WEEK
    }

    /// Return the number of different sampling rates used in this
    /// `MixedRateDuration`.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mut mrd = MixedRateDuration::from(ConstantRateDuration::new(1, 44100));
    /// assert_eq!(mrd.num_rates(), 1);
    ///
    /// mrd += ConstantRateDuration::new(1, 48000);
    /// assert_eq!(mrd.num_rates(), 2);
    ///
    /// mrd += ConstantRateDuration::new(1, 96000);
    /// assert_eq!(mrd.num_rates(), 3);
    ///
    /// mrd += ConstantRateDuration::new(2, 44100);
    /// assert_eq!(mrd.num_rates(), 3);
    /// ```
    #[must_use]
    pub fn num_rates(&self) -> usize {
        self.map.len()
    }

    /// Returns the _whole_ number of nanoseconds in the fractional part of this `MixedRateDuration`.
    ///
    /// The returned value will always be less than one second i.e. >
    /// `1_000_000_000` nanoseconds.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 + 24000, 48000));
    /// assert_eq!(mrd.to_string(), "00:00:01;24000");
    /// assert_eq!(mrd.subsec_nanos(), 500_000_000);
    /// ```
    #[must_use]
    pub fn subsec_nanos(&self) -> u32 {
        let nanos_as_f64 = self.subsec_secs() * NANOS_PER_SEC;

        nanos_as_f64 as u32
    }

    /// Returns the _whole_ number of seconds in the fractional part of this `MixedRateDuration`.
    ///
    /// The returned value will always be less than one second
    /// i.e. 0.0 <= `subsec_secs` < 1.0.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 + 24000, 48000));
    /// assert_eq!(mrd.to_string(), "00:00:01;24000");
    /// assert_eq!(mrd.subsec_secs(), 0.5);
    /// ```
    #[must_use]
    pub fn subsec_secs(&self) -> f64 {
        f64::from(self.duration.subsec_nanos()) / NANOS_PER_SEC
    }

    /// Returns the _whole_ number of seconds left over when this
    /// duration is measured in minutes.
    ///
    /// The returned value will always be 0 <= `submin_secs` <= 59.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 65 + 32000, 48000));
    /// assert_eq!(mrd.to_string(), "00:01:05;32000");
    /// assert_eq!(mrd.submin_secs(), 5);
    /// ```
    #[must_use]
    pub fn submin_secs(&self) -> u64 {
        self.as_secs() % SECS_PER_MIN
    }

    /// Returns the _whole_ number of minutes left over when this duration is measured in hours.
    ///
    /// The returned value will always be 0 <= `subhour_mins` <= 59.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 60 * 68, 48000));
    /// assert_eq!(mrd.to_string(), "01:08:00;0");
    /// assert_eq!(mrd.subhour_mins(), 8);
    /// ```
    #[must_use]
    pub fn subhour_mins(&self) -> u64 {
        self.as_mins() % MINS_PER_HOUR
    }

    /// Returns the _whole_ number of hours left over when this duration is measured in days.
    ///
    /// The returned value will always be 0 <= `subday_hours` <= 23.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 60 * 60 * 25, 48000));
    /// assert_eq!(mrd.to_string(), "25:00:00;0");
    /// assert_eq!(mrd.subday_hours(), 1);
    /// ```
    #[must_use]
    pub fn subday_hours(&self) -> u64 {
        self.as_hours() % HOURS_PER_DAY
    }

    /// Returns the _whole_ number of days left over when this duration is measured in weeks.
    ///
    /// The returned value will always be 0 <= `subweek_days` <= 6.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 60 * 60 * 24 * 9, 48000));
    /// assert_eq!(mrd.to_string(), "216:00:00;0");
    /// assert_eq!(mrd.subweek_days(), 2);
    /// ```
    #[must_use]
    pub fn subweek_days(&self) -> u64 {
        self.as_days() % DAYS_PER_WEEK
    }

    /// Return this `MixedRateDuration` as a `std::time::Duration`.
    ///
    /// # Example
    ///
    /// ```
    /// use sampled_data_duration::ConstantRateDuration;
    /// use sampled_data_duration::MixedRateDuration;
    ///
    /// let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 * 42, 48000));
    /// assert_eq!(mrd.to_string(), "00:00:42;0");
    /// assert_eq!(mrd.to_duration().as_secs_f64(), 42.0);
    /// ```
    #[must_use]
    pub fn to_duration(&self) -> Duration {
        self.duration
    }

    /// Update this `MixedRateDuration`'s duration field by summing
    /// over all enteries in the internal `HashMap`.
    fn update_duration(&mut self) {
        let mut duration = Duration::new(0, 0);

        for (rate, count) in &self.map {
            let crd = ConstantRateDuration::new(*count, *rate);
            duration += crd.to_duration();
        }

        self.duration = duration;
    }
}
impl Default for MixedRateDuration {
    fn default() -> Self {
        MixedRateDuration::new()
    }
}
impl From<ConstantRateDuration> for MixedRateDuration {
    /// Construct a `MixedRateDuration` from a `ConstantRateDuration`.
    fn from(crd: ConstantRateDuration) -> Self {
        let mut map: HashMap<u64, u64> = HashMap::with_capacity(1);
        map.insert(crd.rate, crd.count);

        MixedRateDuration {
            duration: crd.to_duration(),
            map,
        }
    }
}
impl fmt::Display for MixedRateDuration {
    /// Display this `MixedRateDuration` in the form
    /// `hh:mm:ss;samples` if there is only one sampling rate used,
    /// otherwise display in the form `hh:mm:ss.s`.
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        if self.num_rates() == 1 {
            if let Some((rate, count)) = self.map.iter().next() {
                let crd = ConstantRateDuration::new(*count, *rate);
                return write!(
                    f,
                    "{:02}:{:02}:{:02};{}",
                    crd.as_hours(),
                    crd.subhour_mins(),
                    crd.submin_secs(),
                    crd.subsec_samples()
                );
            }
        }

        if self.submin_secs() < 10 {
            return write!(
                f,
                "{:02}:{:02}:0{}",
                self.as_hours(),
                self.subhour_mins(),
                self.submin_secs() as f64 + self.subsec_secs(),
            );
        }

        return write!(
            f,
            "{:02}:{:02}:{:2.}",
            self.as_hours(),
            self.subhour_mins(),
            self.submin_secs() as f64 + self.subsec_secs(),
        );
    }
}
impl Add<ConstantRateDuration> for MixedRateDuration {
    type Output = MixedRateDuration;

    /// Add a `ConstantRateDuration` to this `MixedRateDuration`
    /// returning a new `MixedRateDuration`.
    fn add(self, crd: ConstantRateDuration) -> MixedRateDuration {
        let mut result_map = self.map;

        if let Some(current_count) = result_map.get_mut(&crd.rate) {
            *current_count = current_count
                .checked_add(crd.count)
                .expect("overflow when adding a ConstantRateDuration to a MixedRateDuration");
        } else {
            result_map.insert(crd.rate, crd.count);
        }

        let mut result_mrd = MixedRateDuration {
            duration: Duration::new(0, 0),
            map: result_map,
        };
        result_mrd.update_duration();

        result_mrd
    }
}
impl Add<MixedRateDuration> for MixedRateDuration {
    type Output = MixedRateDuration;

    /// Add a `MixedRateDuration` to this `MixedRateDuration`
    /// returning a new `MixedRateDuration`.
    fn add(self, mrd: MixedRateDuration) -> MixedRateDuration {
        let mut result_map = self.map;

        for (rate, count) in &mrd.map {
            if let Some(current_count) = result_map.get_mut(rate) {
                *current_count = current_count
                    .checked_add(*count)
                    .expect("overflow when adding a ConstantRateDuration to a MixedRateDuration");
            } else {
                result_map.insert(*rate, *count);
            }
        }

        let mut result_mrd = MixedRateDuration {
            duration: Duration::new(0, 0),
            map: result_map,
        };
        result_mrd.update_duration();

        result_mrd
    }
}
impl AddAssign<ConstantRateDuration> for MixedRateDuration {
    /// Add a `ConstantRateDuration` to this `MixedRateDuration`.
    fn add_assign(&mut self, crd: ConstantRateDuration) {
        if let Some(current_count) = self.map.get_mut(&crd.rate) {
            *current_count = current_count.checked_add(crd.count).expect(
                "overflow when add-assigning a ConstantRateDuration to a MixedRateDuration",
            );
        } else {
            self.map.insert(crd.rate, crd.count);
        }

        self.update_duration();
    }
}
impl AddAssign<MixedRateDuration> for MixedRateDuration {
    /// Add a `MixedRateDuration` to this `MixedRateDuration`.
    fn add_assign(&mut self, rhs: MixedRateDuration) {
        for (rhs_rate, rhs_count) in &rhs.map {
            if let Some(lhs_count) = self.map.get_mut(rhs_rate) {
                *lhs_count = lhs_count
                    .checked_add(*rhs_count)
                    .expect("overflow when add-assigning MixedRateDurations");
            } else {
                self.map.insert(*rhs_rate, *rhs_count);
            }
        }

        self.update_duration();
    }
}
impl Div<u64> for MixedRateDuration {
    type Output = Self;

    /// Divide a `MixedRateDuration` by a `u64` returning a new
    /// `MixedRateDuration`.
    fn div(self, rhs: u64) -> Self {
        let mut result_map: HashMap<u64, u64> = HashMap::with_capacity(self.map.len());

        for (rate, count) in &self.map {
            result_map.insert(
                *rate,
                count
                    .checked_div(rhs)
                    .expect("divide by zero when dividing a MixedRateDuration"),
            );
        }

        let mut result_mrd = MixedRateDuration {
            duration: Duration::new(0, 0),
            map: result_map,
        };
        result_mrd.update_duration();

        result_mrd
    }
}
impl DivAssign<u64> for MixedRateDuration {
    /// Divide-assign a `MixedRateDuration` by a `u64`.
    fn div_assign(&mut self, rhs: u64) {
        for count in self.map.values_mut() {
            *count = count
                .checked_div(rhs)
                .expect("divide by zero when divide-assigning a MixedRateDuration");
        }

        self.update_duration();
    }
}
impl Mul<u64> for MixedRateDuration {
    type Output = Self;

    /// Multiply a `MixedRateDuration` by a `u64` returning a new
    /// `MixedRateDuration`.
    fn mul(self, rhs: u64) -> Self {
        let mut result_map: HashMap<u64, u64> = HashMap::with_capacity(self.map.len());

        for (rate, count) in &self.map {
            result_map.insert(
                *rate,
                count
                    .checked_mul(rhs)
                    .expect("overflow when multiplying a MixedRateDuration"),
            );
        }

        let mut result_mrd = MixedRateDuration {
            duration: Duration::new(0, 0),
            map: result_map,
        };
        result_mrd.update_duration();

        result_mrd
    }
}
impl MulAssign<u64> for MixedRateDuration {
    /// Multiply-assign a `MixedRateDuration` by a `u64`.
    fn mul_assign(&mut self, rhs: u64) {
        for count in self.map.values_mut() {
            *count = count
                .checked_mul(rhs)
                .expect("overflow when multiply-assigning a MixedRateDuration");
        }

        self.update_duration();
    }
}
impl Sub<ConstantRateDuration> for MixedRateDuration {
    type Output = MixedRateDuration;

    /// Perform a saturating subtraction of a `ConstantRateDuration`
    /// from this `MixedRateDuration` returning a new
    /// `MixedRateDuration`.
    fn sub(self, crd: ConstantRateDuration) -> MixedRateDuration {
        let mut result_map = self.map;

        if let Some(current_count) = result_map.get_mut(&crd.rate) {
            *current_count = current_count.saturating_sub(crd.count);
        }

        let mut result_mrd = MixedRateDuration {
            duration: Duration::new(0, 0),
            map: result_map,
        };
        result_mrd.update_duration();

        result_mrd
    }
}
impl Sub<MixedRateDuration> for MixedRateDuration {
    type Output = MixedRateDuration;

    /// Perform a saturating subtraction of a `MixedRateDuration` from
    /// this `MixedRateDuration` returning a new `MixedRateDuration`.
    fn sub(self, mrd: MixedRateDuration) -> MixedRateDuration {
        let mut result_map = self.map;

        for (rate, count) in &mrd.map {
            if let Some(current_count) = result_map.get_mut(rate) {
                *current_count = current_count.saturating_sub(*count);
            }
        }

        let mut result_mrd = MixedRateDuration {
            duration: Duration::new(0, 0),
            map: result_map,
        };
        result_mrd.update_duration();

        result_mrd
    }
}
impl SubAssign<ConstantRateDuration> for MixedRateDuration {
    /// Perform a saturating subtraction of a `ConstantRateDuration`
    /// from this `MixedRateDuration`.
    fn sub_assign(&mut self, crd: ConstantRateDuration) {
        if let Some(current_count) = self.map.get_mut(&crd.rate) {
            *current_count = current_count.saturating_sub(crd.count);
            self.update_duration();
        }
    }
}
impl SubAssign<MixedRateDuration> for MixedRateDuration {
    /// Perform a saturating subtraction of a `MixedRateDuration` from
    /// this `MixedRateDuration`.
    fn sub_assign(&mut self, rhs: MixedRateDuration) {
        for (rhs_rate, rhs_count) in &rhs.map {
            if let Some(lhs_count) = self.map.get_mut(rhs_rate) {
                *lhs_count = lhs_count.saturating_sub(*rhs_count);
            }
        }

        self.update_duration();
    }
}

#[cfg(test)]
mod mixed_rate_duration {
    use super::*;

    #[test]
    fn new() {
        let count: u64 = 12345;
        let rate: u64 = 48000;
        let mrd = MixedRateDuration::from(ConstantRateDuration::new(count, rate));

        assert_eq!(mrd.map.len(), 1);
        assert!(mrd.map.contains_key(&rate));
        assert_eq!(mrd.map.get(&rate), Some(&count));
    }

    #[test]
    fn as_and_sub_time_unit_methods() {
        let subsec_samples: u64 = 24_000;
        let submin_secs: u64 = 32;
        let subhour_mins: u64 = 23;
        let subday_hours: u64 = 19;
        let subweek_days: u64 = 4;
        let weeks: u64 = 1;
        let rate: u64 = 48_000;

        let as_days = weeks * DAYS_PER_WEEK + subweek_days;
        let as_hours = as_days * HOURS_PER_DAY + subday_hours;
        let as_mins = as_hours * MINS_PER_HOUR + subhour_mins;
        let as_secs = as_mins * SECS_PER_MIN + submin_secs;

        let total_secs: u64 = weeks * SECS_PER_WEEK
            + subweek_days * SECS_PER_DAY
            + subday_hours * SECS_PER_HOUR
            + subhour_mins * SECS_PER_MIN
            + submin_secs;
        let count: u64 = total_secs * rate + subsec_samples;
        let mrd = MixedRateDuration::from(ConstantRateDuration::new(count, rate));

        assert_eq!(mrd.as_secs(), as_secs);
        assert_eq!(mrd.as_mins(), as_mins);
        assert_eq!(mrd.as_hours(), as_hours);
        assert_eq!(mrd.as_days(), as_days);
        assert_eq!(mrd.as_weeks(), weeks);
        assert_eq!(mrd.subsec_nanos(), 500_000_000);
        assert_eq!(mrd.subsec_secs(), 0.5);
        assert_eq!(mrd.submin_secs(), submin_secs);
        assert_eq!(mrd.subhour_mins(), subhour_mins);
        assert_eq!(mrd.subday_hours(), subday_hours);
        assert_eq!(mrd.subweek_days(), subweek_days);

        // Check multiple rates
        let mut mrd = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        assert_eq!(mrd.as_secs(), 1);
        assert_eq!(mrd.subsec_nanos(), 0);

        // Manually add 1.5 seconds of 96kHz samples
        mrd += ConstantRateDuration::new(96000 + 48000, 96000);
        assert_eq!(mrd.map.len(), 2);
        assert_eq!(mrd.as_secs(), 2);
        assert_eq!(mrd.subsec_nanos(), 500_000_000);
    }

    #[test]
    fn to_duration() {
        let mrd = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        assert_eq!(mrd.to_duration(), Duration::new(1, 0));

        //TODO more tests
    }

    #[test]
    fn display() {
        let mut mrd = MixedRateDuration::from(ConstantRateDuration::new(48000 + 24000, 48000));
        assert_eq!(mrd.to_string(), "00:00:01;24000");

        // Add 1 second of 96kHz samples
        mrd += ConstantRateDuration::new(96000, 96000);
        assert_eq!(mrd.map.len(), 2);
        assert_eq!(mrd.as_secs(), 2);
        assert_eq!(mrd.subsec_nanos(), 500_000_000);
        assert_eq!(mrd.to_string(), "00:00:02.5");

        // Manually add 10 seconds of 44.1kHz samples
        mrd += ConstantRateDuration::new(441_000, 44100);
        assert_eq!(mrd.map.len(), 3);
        assert_eq!(mrd.as_secs(), 12);
        assert_eq!(mrd.subsec_nanos(), 500_000_000);
        assert_eq!(mrd.to_string(), "00:00:12.5");
    }

    #[test]
    fn add() {
        // Add a ConstantRateDuration
        let a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let b = ConstantRateDuration::new(48000, 48000);
        let c = a + b;
        assert_eq!(c.to_string(), "00:00:02;0");

        // Add a MixedRateDuraiton
        let a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let b = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let c = a + b;
        assert_eq!(c.to_string(), "00:00:02;0");

        // Add a MixedRateDuraiton with different rates
        let a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let b = MixedRateDuration::from(ConstantRateDuration::new(96000 + 48000, 96000));
        let c = a + b;
        assert_eq!(c.to_string(), "00:00:02.5");
    }

    #[test]
    fn add_assign() {
        // Add-assign a ConstantRateDuration
        let mut a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let b = ConstantRateDuration::new(48000, 48000);
        a += b;
        assert_eq!(a.to_string(), "00:00:02;0");

        // Add-assign a MixedRateDuraiton
        let c = MixedRateDuration::from(ConstantRateDuration::new(96000 + 48000, 96000));
        a += c;
        assert_eq!(a.to_string(), "00:00:03.5");
    }

    #[test]
    fn div() {
        let a = MixedRateDuration::from(ConstantRateDuration::new(96002, 48000));
        assert_eq!(
            a / 2,
            MixedRateDuration::from(ConstantRateDuration::new(48001, 48000))
        );
    }

    #[test]
    #[should_panic(expected = "divide by zero when dividing a MixedRateDuration")]
    fn div_by_zero() {
        let a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let b = a / 0;

        unreachable!(
            "The above line should have caused a divide by zero error and b={} should be NaN.",
            b
        );
    }

    #[test]
    fn div_assign() {
        let mut a = MixedRateDuration::from(ConstantRateDuration::new(96002, 48000));
        a /= 2;
        assert_eq!(
            a,
            MixedRateDuration::from(ConstantRateDuration::new(48001, 48000))
        );
    }

    #[test]
    #[should_panic(expected = "divide by zero when divide-assigning a MixedRateDuration")]
    fn div_assign_by_zero() {
        let mut a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        a /= 0;
    }

    #[test]
    fn mul() {
        // Multiply a MixedRateDuration
        let a = MixedRateDuration::from(ConstantRateDuration::new(1, 48000));
        let b = a * 2;
        assert_eq!(
            b,
            MixedRateDuration::from(ConstantRateDuration::new(2, 48000))
        );

        // Multiply a MixedRateDuraiton with multiple enteries.
        let a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let b = MixedRateDuration::from(ConstantRateDuration::new(48000, 96000));
        let c = (a + b) * 2;
        assert_eq!(c.to_string(), "00:00:03");
    }

    #[test]
    #[should_panic(expected = "overflow when multiplying a MixedRateDuration")]
    fn mul_overflow() {
        // Multiply MixedRateDurations which overflows
        let a = MixedRateDuration::from(ConstantRateDuration::new(u64::MAX, 48000));
        let b = a * 2;

        unreachable!(
            "The above line should have caused an overflow and b={} should have overflown.",
            b
        );
    }

    #[test]
    fn mul_assign() {
        // Multiply a MixedRateDuration
        let mut a = MixedRateDuration::from(ConstantRateDuration::new(1, 48000));
        a *= 2;
        assert_eq!(
            a,
            MixedRateDuration::from(ConstantRateDuration::new(2, 48000))
        );

        // Multiply a MixedRateDuraiton with multiple enteries.
        let a = MixedRateDuration::from(ConstantRateDuration::new(48000, 48000));
        let b = MixedRateDuration::from(ConstantRateDuration::new(48000, 96000));
        let mut c = a + b;
        c *= 2;
        assert_eq!(c.to_string(), "00:00:03");
    }

    #[test]
    #[should_panic(expected = "overflow when multiply-assigning a MixedRateDuration")]
    fn mul_assign_overflow() {
        // Multiply-assign MixedRateDurations which overflows
        let mut a = MixedRateDuration::from(ConstantRateDuration::new(u64::MAX, 48000));
        a *= 2;
    }

    #[test]
    fn sub() {
        // Subtract a ConstantRateDuration
        let a = MixedRateDuration::from(ConstantRateDuration::new(100, 48000));
        let b = ConstantRateDuration::new(25, 48000);
        let c = a - b;
        assert_eq!(
            c,
            MixedRateDuration::from(ConstantRateDuration::new(75, 48000))
        );

        // Subtract a MixedRateDuraiton
        let a = MixedRateDuration::from(ConstantRateDuration::new(100, 48000));
        let b = MixedRateDuration::from(ConstantRateDuration::new(25, 48000));
        let c = a - b;
        assert_eq!(
            c,
            MixedRateDuration::from(ConstantRateDuration::new(75, 48000))
        );

        // Subtract a MixedRateDuraiton with different rates
        let mut a = MixedRateDuration::from(ConstantRateDuration::new(100, 48000));
        a += ConstantRateDuration::new(42, 96000);

        let mut b = MixedRateDuration::from(ConstantRateDuration::new(25, 48000));
        b += ConstantRateDuration::new(123, 44100);

        let c = a - b;
        let mut expected_c = MixedRateDuration::from(ConstantRateDuration::new(75, 48000));
        expected_c += ConstantRateDuration::new(42, 96000);
        assert_eq!(c, expected_c);
    }

    #[test]
    fn sub_assign() {
        // Sub-assign a ConstantRateDuration
        let mut a = MixedRateDuration::from(ConstantRateDuration::new(10, 48000));
        let b = ConstantRateDuration::new(1, 48000);
        a -= b;
        assert_eq!(
            a,
            MixedRateDuration::from(ConstantRateDuration::new(9, 48000))
        );

        // Sub-assign a MixedRateDuraiton
        let mut c = MixedRateDuration::from(ConstantRateDuration::new(1, 96000));
        c += ConstantRateDuration::new(2, 48000);

        a -= c;
        assert_eq!(
            a,
            MixedRateDuration::from(ConstantRateDuration::new(7, 48000))
        );
    }
}

#[derive(Debug, PartialEq)]
pub enum Error {
    IncommensurateRates,
}
impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "Incommensurate sampling rates, the sampling rates must be equal."
        )
    }
}
impl std::error::Error for Error {}