tinytime/
lib.rs

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

//! ```
#[cfg(feature = "rand")]
pub mod rand;

use core::fmt;
use std::cmp::max;
use std::cmp::min;
use std::cmp::Ordering;
use std::error::Error;
use std::fmt::Debug;
use std::fmt::Display;
use std::fmt::Formatter;
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::str::FromStr;
use std::time::SystemTime;

use chrono::format::DelayedFormat;
use chrono::format::StrftimeItems;
use chrono::DateTime;
use derive_more::Deref;
use derive_more::From;
use derive_more::Into;
use derive_more::Neg;
use derive_more::Sum;
use lazy_static::lazy_static;
use regex::Regex;
use serde::de::Visitor;
use serde::Deserialize;
use serde::Serialize;
use thiserror::Error;

/// A point in time.
///
/// Low overhead time representation. Internally represented as milliseconds.
#[derive(
    Eq, PartialEq, Hash, Ord, PartialOrd, Copy, Clone, Default, Serialize, Deref, From, Into,
)]
pub struct Time(i64);

impl Time {
    pub const MAX: Self = Self(i64::MAX);
    pub const EPOCH: Self = Self(0);

    const SECOND: Time = Time(1000);
    const MINUTE: Time = Time(60 * Self::SECOND.0);
    const HOUR: Time = Time(60 * Self::MINUTE.0);

    #[must_use]
    pub const fn millis(millis: i64) -> Self {
        Time(millis)
    }

    #[must_use]
    pub const fn seconds(seconds: i64) -> Self {
        Time::millis(seconds * Self::SECOND.0)
    }

    #[must_use]
    pub const fn minutes(minutes: i64) -> Self {
        Time::millis(minutes * Self::MINUTE.0)
    }

    #[must_use]
    pub const fn hours(hours: i64) -> Self {
        Time::millis(hours * Self::HOUR.0)
    }

    /// Returns an RFC 3339 and ISO 8601 date and time string such as
    /// 1996-12-19T16:39:57+00:00.
    ///
    /// Values above ~240148-08-31, such as `Time::MAX` are formatted as "∞"
    ///
    /// # Example
    ///
    /// ```
    /// use tinytime::Time;
    /// assert_eq!("∞", Time::MAX.to_rfc3339());
    /// ```
    #[must_use]
    pub fn to_rfc3339(self) -> String {
        self.format("%Y-%m-%dT%H:%M:%S+00:00").to_string()
    }

    /// The function format string is forwarded to
    /// [`chrono::NaiveDateTime::format()`]
    ///
    /// Values above ~240148-08-31, such as `Time::MAX` are formatted as "∞"
    ///
    /// # Example
    ///
    /// ```
    /// use tinytime::Time;
    /// assert_eq!("∞", Time::MAX.format("whatever").to_string());
    /// ```
    #[must_use]
    pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>> {
        let secs = self.0 / 1000;
        let nanos = (self.0 % 1000) * 1_000_000;
        #[expect(
            clippy::cast_possible_truncation,
            reason = "casting to u32 is safe here because it is guaranteed that the value is in 0..1_000_000_000"
        )]
        let nanos = if nanos.is_negative() {
            1_000_000_000 - nanos.unsigned_abs()
        } else {
            nanos.unsigned_abs()
        } as u32;

        let t = DateTime::from_timestamp(secs, nanos);
        match t {
            None => DelayedFormat::new(None, None, StrftimeItems::new("∞")),
            Some(v) => v.format(fmt),
        }
    }

    /// Parses an RFC 3339 date and time string into a [Time] instance.
    ///
    /// The parsing is forwarded to [`chrono::DateTime::parse_from_rfc3339()`].
    /// Note that any time smaller than milliseconds is truncated.
    ///
    /// ## Example
    /// ```
    /// use tinytime::Duration;
    /// use tinytime::Time;
    /// assert_eq!(
    ///     Ok(Time::hours(2) + Duration::minutes(51) + Duration::seconds(7) + Duration::millis(123)),
    ///     Time::parse_from_rfc3339("1970-01-01T02:51:07.123999Z")
    /// );
    /// ```
    pub fn parse_from_rfc3339(s: &str) -> Result<Time, chrono::ParseError> {
        DateTime::parse_from_rfc3339(s)
            .map(|chrono_datetime| Time::millis(chrono_datetime.timestamp_millis()))
    }

    /// Returns the current time instance based on `SystemTime`
    ///
    /// Don't use this method to compare if the current time has passed a
    /// certain deadline.
    #[must_use]
    pub fn now() -> Time {
        Time::from(SystemTime::now())
    }

    /// Returns the number of whole seconds in the time.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tinytime::Time;
    /// assert_eq!(Time::minutes(1).as_seconds(), 60);
    /// ```
    #[must_use]
    pub const fn as_seconds(&self) -> i64 {
        self.0 / Self::SECOND.0
    }

    #[must_use]
    pub const fn as_millis(&self) -> i64 {
        self.0
    }

    /// Returns the number of subsecond millis converted to nanos.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tinytime::Time;
    /// assert_eq!(Time::millis(12345).as_subsecond_nanos(), 345_000_000);
    /// ```
    #[must_use]
    pub const fn as_subsecond_nanos(&self) -> i32 {
        (self.0 % Self::SECOND.0 * 1_000_000) as i32
    }

    /// Rounds time down to a step size
    ///
    /// # Examples
    ///
    /// ```
    /// # use tinytime::Duration;
    /// # use tinytime::Time;
    /// assert_eq!(
    ///     Time::minutes(7).round_down(Duration::minutes(5)),
    ///     Time::minutes(5)
    /// );
    /// assert_eq!(
    ///     Time::minutes(5).round_down(Duration::minutes(5)),
    ///     Time::minutes(5)
    /// );
    /// ```
    #[must_use]
    pub const fn round_down(&self, step_size: Duration) -> Time {
        let time_milli = self.as_millis();
        let part = time_milli % step_size.as_millis().abs();
        Time::millis(time_milli - part)
    }

    /// Rounds time up to a step size
    ///
    /// # Examples
    ///
    /// ```
    /// # use tinytime::Duration;
    /// # use tinytime::Time;
    /// assert_eq!(
    ///     Time::minutes(7).round_up(Duration::minutes(5)),
    ///     Time::minutes(10)
    /// );
    /// assert_eq!(
    ///     Time::minutes(5).round_up(Duration::minutes(5)),
    ///     Time::minutes(5)
    /// );
    /// ```
    #[must_use]
    pub const fn round_up(&self, step_size: Duration) -> Time {
        let time_milli = self.as_millis();
        let step_milli = step_size.as_millis().abs();
        let part = time_milli % step_milli;
        let remaining = (step_milli - part) % step_milli;
        Time::millis(time_milli + remaining)
    }

    /// Checked time duration substraction. Computes `self - rhs`, returning
    /// `None` if overflow occurred.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::Duration;
    /// # use tinytime::Time;
    /// assert_eq!(
    ///     Time::minutes(8).checked_sub(Duration::minutes(5)),
    ///     Some(Time::minutes(3))
    /// );
    /// assert_eq!(Time::minutes(3).checked_sub(Duration::minutes(5)), None);
    /// assert_eq!(
    ///     Time::minutes(2).checked_sub(Duration::minutes(2)),
    ///     Some(Time::EPOCH)
    /// );
    /// ```
    #[must_use]
    pub fn checked_sub(&self, rhs: Duration) -> Option<Self> {
        // check for overflow
        if Time::EPOCH + rhs > *self {
            None
        } else {
            Some(*self - rhs)
        }
    }

    #[must_use]
    pub const fn since_epoch(&self) -> Duration {
        Duration::millis(self.as_millis())
    }
}

impl Display for Time {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        let rfc3339_string = self.to_rfc3339();
        write!(f, "{rfc3339_string}")
    }
}

impl TryFrom<Duration> for Time {
    type Error = &'static str;
    fn try_from(duration: Duration) -> Result<Self, Self::Error> {
        if duration.is_non_negative() {
            Ok(Time::millis(duration.as_millis()))
        } else {
            Err("Duration cannot be negative.")
        }
    }
}

/// Allows deserializing from RFC 3339 strings and unsigned integers.
impl<'de> Deserialize<'de> for Time {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        deserializer.deserialize_any(TimeVisitor)
    }
}

struct TimeVisitor;

impl<'de> Visitor<'de> for TimeVisitor {
    type Value = Time;

    fn expecting(&self, formatter: &mut Formatter) -> std::fmt::Result {
        formatter.write_str("either a Time newtype, an RFC 3339 string, or an unsigned integer indicating epoch milliseconds")
    }

    fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
    where
        E: serde::de::Error,
    {
        Time::parse_from_rfc3339(v).map_err(|e| E::custom(e.to_string()))
    }

    fn visit_u64<E>(self, v: u64) -> Result<Self::Value, E>
    where
        E: serde::de::Error,
    {
        i64::try_from(v)
            .map_err(|e| E::custom(e.to_string()))
            .map(Time::millis)
    }

    fn visit_newtype_struct<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        // expecting an unsigned integer inside the newtype struct, but technically also
        // allowing strings
        deserializer.deserialize_newtype_struct("Time", Self)
    }
}

impl From<Time> for SystemTime {
    fn from(input: Time) -> Self {
        debug_assert!(
            input.0 >= 0,
            "cannot convert a negative Time instance {input:?} to std::time::SystemTime"
        );
        #[expect(
            clippy::cast_sign_loss,
            reason = "the debug_assert above should catch this case"
        )]
        {
            std::time::UNIX_EPOCH + std::time::Duration::from_millis(input.0 as u64)
        }
    }
}

impl From<SystemTime> for Time {
    fn from(input: SystemTime) -> Self {
        if input > SystemTime::UNIX_EPOCH {
            let std_dur = input.duration_since(SystemTime::UNIX_EPOCH).unwrap();
            Self::millis(Duration::from(std_dur).as_millis())
        } else {
            let std_dur = SystemTime::UNIX_EPOCH.duration_since(input).unwrap();
            Self::millis(-Duration::from(std_dur).as_millis())
        }
    }
}

impl Debug for Time {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        // This implementation is tailor-made, because NaiveDateTime does not support
        // the full range of Time. For some Time instances it wouldn't be
        // possible to reconstruct them based on the Debug-representation ('∞').
        let positive = self.0 >= 0;
        let mut total = self.0.unsigned_abs();
        let millis_part = total % 1000;
        total -= millis_part;
        let seconds_part = (total % (1000 * 60)) / 1000;
        total -= seconds_part;
        let minutes_part = (total % (1000 * 60 * 60)) / (1000 * 60);
        total -= minutes_part;
        let hours_part = total / (1000 * 60 * 60);
        if !positive {
            f.write_str("-")?;
        }
        write!(f, "{hours_part:02}:")?;
        write!(f, "{minutes_part:02}:")?;
        write!(f, "{seconds_part:02}")?;
        if millis_part > 0 {
            write!(f, ".{millis_part:03}")?;
        }
        Ok(())
    }
}

#[derive(Error, Debug, Eq, PartialEq, Clone, Copy)]
pub enum TimeWindowError {
    #[error("time window start is after end")]
    StartAfterEnd,
}

/// An interval or range of time: `[start,end)`.
/// Debug-asserts ensure that start <= end.
/// If compiled in release mode, the invariant of start <= end is maintained, by
/// correcting invalid use of the API (and setting end to start).
#[derive(Clone, Debug, Eq, PartialEq, Default, Copy, Serialize, Deserialize, From, Into, Hash)]
pub struct TimeWindow {
    start: Time,
    end: Time,
}

impl TimeWindow {
    /// Constructs a new [`TimeWindow`].
    /// `debug_asserts` that `start < end`. Sets end to `start` in release mode
    /// if `start > end`.
    #[must_use]
    pub fn new(start: Time, end: Time) -> Self {
        debug_assert!(start <= end);
        TimeWindow {
            start,
            end: end.max(start),
        }
    }

    /// Constructs a new [`TimeWindow`]. Validates that `start <= end` and
    /// returns an error if not.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// assert!(TimeWindow::new_checked(Time::hours(1), Time::hours(2)).is_ok());
    /// assert_eq!(
    ///     Err(TimeWindowError::StartAfterEnd),
    ///     TimeWindow::new_checked(Time::hours(2), Time::hours(1))
    /// );
    /// ```
    pub fn new_checked(start: Time, end: Time) -> Result<Self, TimeWindowError> {
        if start <= end {
            Ok(TimeWindow { start, end })
        } else {
            Err(TimeWindowError::StartAfterEnd)
        }
    }

    /// Returns [`TimeWindow`] with range [[`Time::EPOCH`], `end`)
    #[must_use]
    pub fn epoch_to(end: Time) -> Self {
        Self::new(Time::EPOCH, end)
    }

    #[must_use]
    pub fn from_minutes(a: i64, b: i64) -> Self {
        TimeWindow::new(Time::minutes(a), Time::minutes(b))
    }

    #[must_use]
    pub fn from_seconds(a: i64, b: i64) -> Self {
        TimeWindow::new(Time::seconds(a), Time::seconds(b))
    }

    /// Creates time window from start time and length.
    ///
    /// Negative lengths are treated as [`Duration::ZERO`].
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     TimeWindow::from_length_starting_at(Duration::seconds(2), Time::seconds(1))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 1),
    ///     TimeWindow::from_length_starting_at(Duration::seconds(-2), Time::seconds(1))
    /// );
    /// ```
    #[must_use]
    pub fn from_length_starting_at(length: Duration, start: Time) -> Self {
        TimeWindow::new(start, start.add(length.max(Duration::ZERO)))
    }

    /// Creates time window from length and end time.
    ///
    /// Negative lengths are treated as [`Duration::ZERO`].
    ///
    ///  # Examples
    /// ```
    /// # use tinytime::*;
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     TimeWindow::from_length_ending_at(Duration::seconds(2), Time::seconds(3))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(3, 3),
    ///     TimeWindow::from_length_ending_at(Duration::seconds(-2), Time::seconds(3))
    /// );
    /// ```
    #[must_use]
    pub fn from_length_ending_at(length: Duration, end: Time) -> Self {
        TimeWindow::new(end.sub(length.max(Duration::ZERO)), end)
    }

    #[must_use]
    pub const fn instant(time: Time) -> Self {
        TimeWindow {
            start: time,
            end: time,
        }
    }

    #[must_use]
    pub fn widest() -> Self {
        TimeWindow {
            start: Time::EPOCH,
            end: Time::EPOCH + Duration::MAX,
        }
    }

    #[must_use]
    pub fn instant_seconds(seconds: i64) -> Self {
        TimeWindow::from_seconds(seconds, seconds)
    }

    #[must_use]
    pub const fn start(&self) -> Time {
        self.start
    }

    #[must_use]
    pub const fn end(&self) -> Time {
        self.end
    }

    #[must_use]
    pub fn length(&self) -> Duration {
        self.end - self.start
    }

    /// Creates a new `TimeWindow` with `start` set to `new_start`. If
    /// `new_start` is greater than or equal to `end` the start will be set
    /// equal to `end`.
    #[must_use]
    pub fn with_start(&self, new_start: Time) -> Self {
        Self::new(new_start.min(self.end), self.end)
    }

    /// Creates a new `TimeWindow` with `end` set to `new_end`. If `new_end` is
    /// smaller or equal to `start`, the `end` will be set to `start.`
    #[must_use]
    pub fn with_end(&self, new_end: Time) -> Self {
        Self::new(self.start, new_end.max(self.start))
    }

    /// Creates a new `TimeWindow` with the `start` preponed to the given value.
    /// If `new_start` isn't earlier than the current time window start, a copy
    /// of `self` is returned.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let x = TimeWindow::from_seconds(4, 5);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(3, 5),
    ///     x.prepone_start_to(Time::seconds(3))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(4, 5),
    ///     x.prepone_start_to(Time::seconds(6))
    /// );
    /// ```
    #[must_use]
    pub fn prepone_start_to(&self, new_start: Time) -> Self {
        self.with_start(self.start.min(new_start))
    }

    /// Creates a new `TimeWindow` with the `start` preponed by the given
    /// duration.
    ///
    /// Negative durations are treated as [`Duration::ZERO`].
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(8, 9);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(5, 9),
    ///     tw.prepone_start_by(Duration::seconds(3))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(8, 9),
    ///     tw.prepone_start_by(Duration::seconds(-3))
    /// );
    /// ```
    #[must_use]
    pub fn prepone_start_by(&self, duration: Duration) -> Self {
        self.with_start(self.start - duration.max(Duration::ZERO))
    }

    /// Creates a new `TimeWindow` with the `start` preponed so that the new
    /// time window length matches the given value.
    ///
    /// Returns a copy of `self` if the new length is smaller than
    /// [`Self::length()`].
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 3);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.prepone_start_extend_to(Duration::seconds(-1))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.prepone_start_extend_to(Duration::seconds(0))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(-2, 3),
    ///     tw.prepone_start_extend_to(Duration::seconds(5))
    /// );
    /// ```
    #[must_use]
    pub fn prepone_start_extend_to(&self, new_length: Duration) -> Self {
        self.with_start(self.end - new_length.max(self.length()))
    }

    /// Creates a new `TimeWindow` with the `start` postponed to the given
    /// value.
    ///
    /// Returns a copy of `self` when the given value isn't later than the
    /// current time window start. Will never postpone the start past the
    /// end of the time window.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 3);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.postpone_start_to(Time::EPOCH)
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(2, 3),
    ///     tw.postpone_start_to(Time::seconds(2))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(3, 3),
    ///     tw.postpone_start_to(Time::seconds(3))
    /// );
    /// ```
    #[must_use]
    pub fn postpone_start_to(&self, new_start: Time) -> Self {
        self.with_start(self.start.max(new_start))
    }

    /// Creates a new `TimeWindow` with the `start` postponed by the given
    /// duration.
    ///
    /// Negative durations are treated as [`Duration::ZERO`]. Will not postpone
    /// `start` further than `end`.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 5);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(4, 5),
    ///     tw.postpone_start_by(Duration::seconds(3))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(5, 5),
    ///     tw.postpone_start_by(Duration::seconds(30))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 5),
    ///     tw.postpone_start_by(Duration::seconds(-3))
    /// );
    /// ```
    #[must_use]
    pub fn postpone_start_by(&self, duration: Duration) -> Self {
        self.with_start(self.start + duration.max(Duration::ZERO))
    }

    /// Creates a new `TimeWindow` with the `start` postponed so that the new
    /// time window length matches the given value.
    ///
    /// Returns a copy of `self` if the new length is smaller than the current
    /// one. Negative length will set the resulting time window length to zero.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 3);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(3, 3),
    ///     tw.postpone_start_shrink_to(Duration::seconds(-1))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(3, 3),
    ///     tw.postpone_start_shrink_to(Duration::seconds(0))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(2, 3),
    ///     tw.postpone_start_shrink_to(Duration::seconds(1))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.postpone_start_shrink_to(Duration::seconds(5))
    /// );
    /// ```
    #[must_use]
    pub fn postpone_start_shrink_to(&self, new_length: Duration) -> Self {
        let length = new_length
            .min(self.length()) // Resize only if new length is smaller than the current one
            .max(Duration::ZERO); // Make sure the new length is non-negative
        self.with_start(self.end - length)
    }

    /// Creates a new `TimeWindow` with the `end` preponed to the given value.
    ///
    /// Returns a copy of `self` when the given value isn't earlier than the
    /// current time window end. Will never prepone the end more than to the
    /// start of the time window.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 3);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.prepone_end_to(Time::seconds(4))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 2),
    ///     tw.prepone_end_to(Time::seconds(2))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 1),
    ///     tw.prepone_end_to(Time::EPOCH)
    /// );
    /// ```
    #[must_use]
    pub fn prepone_end_to(&self, new_end: Time) -> Self {
        self.with_end(self.end.min(new_end))
    }

    /// Creates a new `TimeWindow` with the `end` preponed by the given
    /// duration.
    ///
    /// Negative durations are treated as [`Duration::ZERO`]. Will not prepone
    /// `end` before `end`.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(4, 9);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(4, 6),
    ///     tw.prepone_end_by(Duration::seconds(3))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(4, 4),
    ///     tw.prepone_end_by(Duration::seconds(30))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(4, 9),
    ///     tw.prepone_end_by(Duration::seconds(-3))
    /// );
    /// ```
    #[must_use]
    pub fn prepone_end_by(&self, duration: Duration) -> Self {
        self.with_end(self.end - duration.max(Duration::ZERO))
    }

    /// Creates a new `TimeWindow` with the `end` preponed so that the new time
    /// window length matches the given value.
    ///
    /// Returns a copy of `self` if the new length is smaller than the current
    /// one. Negative length will set the resulting time window length to zero.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 3);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 1),
    ///     tw.prepone_end_shrink_to(Duration::seconds(-1))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 1),
    ///     tw.prepone_end_shrink_to(Duration::seconds(0))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 2),
    ///     tw.prepone_end_shrink_to(Duration::seconds(1))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.prepone_end_shrink_to(Duration::seconds(5))
    /// );
    /// ```
    #[must_use]
    pub fn prepone_end_shrink_to(&self, new_length: Duration) -> Self {
        let length = new_length
            .min(self.length()) // Resize only if new length is smaller than the current one
            .max(Duration::ZERO); // Make sure the new length is non-negative
        self.with_end(self.start + length)
    }

    /// Creates a new `TimeWindow` with the `end` postponed to the given value.
    /// If `new_end` isn't later than the current time window end, a copy of
    /// `self` is returned.
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let x = TimeWindow::from_seconds(1, 2);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     x.postpone_end_to(Time::seconds(3))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 2),
    ///     x.postpone_end_to(Time::EPOCH)
    /// );
    /// ```
    #[must_use]
    pub fn postpone_end_to(&self, new_end: Time) -> Self {
        self.with_end(self.end.max(new_end))
    }

    /// Creates a new `TimeWindow` with the `end` postponed by the given
    /// duration.
    ///
    /// Negative durations are treated as [`Duration::ZERO`].
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 2);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 5),
    ///     tw.postpone_end_by(Duration::seconds(3))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 2),
    ///     tw.postpone_end_by(Duration::seconds(-3))
    /// );
    /// ```
    #[must_use]
    pub fn postpone_end_by(&self, duration: Duration) -> Self {
        self.with_end(self.end + duration.max(Duration::ZERO))
    }

    /// Creates a new `TimeWindow` with the `end` postponed so that the new
    /// time window length matches the given value.
    ///
    /// Returns a copy of `self` if the new length is smaller than
    /// [`Self::length()`].
    ///
    /// # Examples
    /// ```
    /// # use tinytime::*;
    /// let tw = TimeWindow::from_seconds(1, 3);
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.postpone_end_extend_to(Duration::seconds(-1))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 3),
    ///     tw.postpone_end_extend_to(Duration::seconds(0))
    /// );
    /// assert_eq!(
    ///     TimeWindow::from_seconds(1, 6),
    ///     tw.postpone_end_extend_to(Duration::seconds(5))
    /// );
    /// ```
    #[must_use]
    pub fn postpone_end_extend_to(&self, new_length: Duration) -> Self {
        self.with_end(self.start + new_length.max(self.length()))
    }

    /// Returns true if this time window contains the given time.
    /// # Examples
    ///
    /// ```
    /// # use tinytime::{Time, TimeWindow};
    /// let mut x = TimeWindow::from_seconds(5, 10);
    /// assert!(!x.contains(Time::seconds(4)));
    /// assert!(x.contains(Time::seconds(5)));
    /// assert!(x.contains(Time::seconds(7)));
    /// assert!(x.contains(Time::seconds(10)));
    /// assert!(!x.contains(Time::seconds(11)));
    /// ```
    #[must_use]
    pub fn contains(&self, that: Time) -> bool {
        self.start <= that && that <= self.end
    }

    /// Returns true if this time window overlaps with another one
    /// # Examples
    ///
    /// ```
    /// # use tinytime::TimeWindow;
    /// let mut x = TimeWindow::from_seconds(5, 10);
    /// assert!(x.overlaps(&TimeWindow::from_seconds(5, 10)));
    /// assert!(x.overlaps(&TimeWindow::from_seconds(3, 12)));
    /// assert!(x.overlaps(&TimeWindow::from_seconds(6, 9)));
    /// assert!(x.overlaps(&TimeWindow::from_seconds(6, 12)));
    /// assert!(x.overlaps(&TimeWindow::from_seconds(3, 9)));
    /// assert!(!x.overlaps(&TimeWindow::from_seconds(1, 4)));
    /// assert!(!x.overlaps(&TimeWindow::from_seconds(1, 5)));
    /// assert!(!x.overlaps(&TimeWindow::from_seconds(10, 15)));
    /// assert!(!x.overlaps(&TimeWindow::from_seconds(11, 15)));
    /// ```
    #[must_use]
    pub fn overlaps(&self, that: &TimeWindow) -> bool {
        self.start < that.end && that.start < self.end
    }

    /// Returns time window that is an intersection between this time window and
    /// another one. Returns None if time windows don't overlap.
    /// # Examples
    ///
    /// ```
    /// # use tinytime::TimeWindow;
    /// let x = TimeWindow::from_seconds(5, 10);
    /// assert_eq!(
    ///     Some(TimeWindow::from_seconds(5, 10)),
    ///     x.intersect(&TimeWindow::from_seconds(5, 10)),
    ///     "time windows are equal"
    /// );
    /// assert_eq!(
    ///     Some(TimeWindow::from_seconds(5, 10)),
    ///     x.intersect(&TimeWindow::from_seconds(3, 12)),
    ///     "that contains x"
    /// );
    /// assert_eq!(
    ///     Some(TimeWindow::from_seconds(6, 9)),
    ///     x.intersect(&TimeWindow::from_seconds(6, 9)),
    ///     "x contains that"
    /// );
    /// assert_eq!(
    ///     Some(TimeWindow::from_seconds(6, 10)),
    ///     x.intersect(&TimeWindow::from_seconds(6, 12))
    /// );
    /// assert_eq!(
    ///     Some(TimeWindow::from_seconds(5, 9)),
    ///     x.intersect(&TimeWindow::from_seconds(3, 9))
    /// );
    /// assert_eq!(
    ///     None,
    ///     x.intersect(&TimeWindow::from_seconds(1, 4)),
    ///     "that is before x"
    /// );
    /// assert_eq!(
    ///     Some(TimeWindow::from_seconds(5, 5)),
    ///     x.intersect(&TimeWindow::from_seconds(1, 5)),
    ///     "single-point intersection"
    /// );
    /// assert_eq!(
    ///     Some(TimeWindow::from_seconds(10, 10)),
    ///     x.intersect(&TimeWindow::from_seconds(10, 15)),
    ///     "single-point intersection"
    /// );
    /// assert_eq!(
    ///     None,
    ///     x.intersect(&TimeWindow::from_seconds(11, 15)),
    ///     "that is after x"
    /// );
    /// ```
    #[must_use]
    pub fn intersect(&self, that: &TimeWindow) -> Option<TimeWindow> {
        let start = max(self.start, that.start);
        let end = min(self.end, that.end);
        (start <= end).then(|| TimeWindow::new(start, end))
    }

    /// Shifts this time window by `duration` into the future. Affects both
    /// `start` and `end` equally, leaving the length untouched.
    ///
    /// # Examples
    ///
    /// ```
    /// # use tinytime::TimeWindow;
    /// # use tinytime::Duration;
    /// # use tinytime::Time;
    /// let mut tw = TimeWindow::new(Time::EPOCH, Time::minutes(15));
    /// // shift to the future
    /// tw.shift(Duration::minutes(30));
    /// assert_eq!(TimeWindow::new(Time::minutes(30), Time::minutes(45)), tw);
    /// // shift into the past
    /// tw.shift(-Duration::minutes(15));
    /// assert_eq!(TimeWindow::new(Time::minutes(15), Time::minutes(30)), tw);
    /// ```
    pub fn shift(&mut self, duration: Duration) {
        self.start += duration;
        self.end += duration;
    }
}

impl Display for TimeWindow {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "[{}, {}]", self.start, self.end)
    }
}

/// A duration of time.
///
/// Duration can be negative. Internally duration is represented as
/// milliseconds.
#[derive(
    Eq,
    PartialEq,
    Ord,
    PartialOrd,
    Copy,
    Clone,
    Default,
    Hash,
    Serialize,
    Deref,
    From,
    Into,
    Sum,
    Neg,
)]
pub struct Duration(i64);

impl Duration {
    pub const ZERO: Self = Self(0_i64);
    pub const MAX: Self = Self(i64::MAX);

    const SECOND: Duration = Duration(1000);
    const MINUTE: Duration = Duration(60 * Self::SECOND.0);
    const HOUR: Duration = Duration(60 * Self::MINUTE.0);

    /// Create a duration instance from hours
    #[must_use]
    pub const fn hours(hours: i64) -> Self {
        Duration(hours * Self::HOUR.0)
    }

    /// Create a duration instance from minutes.
    #[must_use]
    pub const fn minutes(minutes: i64) -> Self {
        Duration(minutes * Self::MINUTE.0)
    }

    /// Create a duration instance from seconds.
    #[must_use]
    pub const fn seconds(seconds: i64) -> Self {
        Duration(seconds * Self::SECOND.0)
    }

    /// Create a duration instance from ms.
    #[must_use]
    pub const fn millis(ms: i64) -> Self {
        Duration(ms)
    }

    #[must_use]
    pub fn abs(&self) -> Self {
        if self >= &Duration::ZERO {
            *self
        } else {
            -*self
        }
    }
    /// Returns the number of whole milliseconds in the Duration instance.
    #[must_use]
    pub const fn as_millis(&self) -> i64 {
        self.0
    }

    /// Returns the number of non-negative whole milliseconds in the Duration
    /// instance.
    #[must_use]
    pub const fn as_millis_unsigned(&self) -> u64 {
        as_unsigned(self.0)
    }

    /// Returns the number of whole seconds in the Duration instance.
    #[must_use]
    pub const fn as_seconds(&self) -> i64 {
        self.0 / Self::SECOND.0
    }

    /// Returns the number of non-negative whole seconds in the Duration
    /// instance.
    #[must_use]
    pub const fn as_seconds_unsigned(&self) -> u64 {
        as_unsigned(self.0 / 1000)
    }

    /// Returns the number of whole minutes in the Duration instance.
    #[must_use]
    pub const fn as_minutes(&self) -> i64 {
        self.0 / Self::MINUTE.0
    }

    /// Returns true if duration is `>= 0`.
    #[must_use]
    pub const fn is_non_negative(&self) -> bool {
        self.0 >= 0
    }

    /// Returns true if duration is `> 0`.
    #[must_use]
    pub const fn is_positive(&self) -> bool {
        self.0 > 0
    }
}

/// Allows deserializing from strings, unsigned integers, and signed integers.
impl<'de> Deserialize<'de> for Duration {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        deserializer.deserialize_any(DurationVisitor)
    }
}

impl PartialEq<std::time::Duration> for Duration {
    fn eq(&self, other: &std::time::Duration) -> bool {
        (u128::from(self.as_millis_unsigned())).eq(&other.as_millis())
    }
}

impl PartialOrd<std::time::Duration> for Duration {
    fn partial_cmp(&self, other: &std::time::Duration) -> Option<Ordering> {
        (u128::from(self.as_millis_unsigned())).partial_cmp(&other.as_millis())
    }
}

struct DurationVisitor;

impl<'de> Visitor<'de> for DurationVisitor {
    type Value = Duration;

    fn expecting(&self, formatter: &mut Formatter) -> std::fmt::Result {
        formatter.write_str(
            "either a Duration newtype, an (signed or unsigned) integer indicating milliseconds, or a duration string",
        )
    }

    fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
    where
        E: serde::de::Error,
    {
        Duration::from_str(v).map_err(|e| E::custom(e.to_string()))
    }

    fn visit_u64<E>(self, v: u64) -> Result<Self::Value, E>
    where
        E: serde::de::Error,
    {
        i64::try_from(v)
            .map_err(|e| E::custom(e.to_string()))
            .map(Duration::millis)
    }

    fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E>
    where
        E: serde::de::Error,
    {
        Ok(Duration::millis(v))
    }

    fn visit_newtype_struct<D>(self, deserializer: D) -> Result<Self::Value, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        // expecting a signed integer inside the newtype struct, but technically also
        // allowing strings and signed integers
        deserializer.deserialize_newtype_struct("Duration", Self)
    }
}

impl Display for Duration {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        if self.0 == 0 {
            return write!(f, "0ms");
        }
        let mut string = String::new();
        if self.0 < 0 {
            string.push('-');
        }
        let abs = self.0.abs();
        let ms = abs % 1000;
        let s = (abs / 1000) % 60;
        let m = (abs / 60000) % 60;
        let h = abs / (60 * 60 * 1000);

        if h > 0 {
            string.push_str(&h.to_string());
            string.push('h');
        }
        if m > 0 {
            string.push_str(&m.to_string());
            string.push('m');
        }
        if s > 0 {
            string.push_str(&s.to_string());
            string.push('s');
        }
        if ms > 0 {
            string.push_str(&ms.to_string());
            string.push_str("ms");
        }

        write!(f, "{string}")
    }
}

impl Debug for Duration {
    fn fmt(&self, f: &mut Formatter) -> fmt::Result {
        Display::fmt(self, f)
    }
}

impl From<f64> for Duration {
    fn from(num: f64) -> Self {
        #[expect(clippy::cast_possible_truncation, reason = "expected behavior")]
        {
            Duration::millis(num.round() as i64)
        }
    }
}

impl From<Duration> for f64 {
    fn from(num: Duration) -> Self {
        num.0 as f64
    }
}

/////////////////////////////
// OPERATORS FOR TIME      //
/////////////////////////////

impl Sub<Time> for Time {
    type Output = Duration;

    fn sub(self, rhs: Time) -> Self::Output {
        debug_assert!(
            self.0.checked_sub(rhs.0).is_some(),
            "overflow detected: {self:?} - {rhs:?}"
        );
        Duration(self.0 - rhs.0)
    }
}

impl Add<Duration> for Time {
    type Output = Time;

    fn add(self, rhs: Duration) -> Self::Output {
        debug_assert!(
            self.0.checked_add(rhs.0).is_some(),
            "overflow detected: {self:?} + {rhs:?}"
        );
        Time(self.0 + rhs.0)
    }
}

impl AddAssign<Duration> for Time {
    fn add_assign(&mut self, rhs: Duration) {
        debug_assert!(
            self.0.checked_add(rhs.0).is_some(),
            "overflow detected: {self:?} += {rhs:?}"
        );
        self.0 += rhs.0;
    }
}

impl Sub<Duration> for Time {
    type Output = Time;

    fn sub(self, rhs: Duration) -> Self::Output {
        debug_assert!(
            self.0.checked_sub(rhs.0).is_some(),
            "overflow detected: {self:?} - {rhs:?}"
        );
        Time(self.0 - rhs.0)
    }
}

impl SubAssign<Duration> for Time {
    fn sub_assign(&mut self, rhs: Duration) {
        debug_assert!(
            self.0.checked_sub(rhs.0).is_some(),
            "overflow detected: {self:?} -= {rhs:?}"
        );
        self.0 -= rhs.0;
    }
}

/////////////////////////////
// OPERATORS FOR DURATION  //
/////////////////////////////

impl Add<Duration> for Duration {
    type Output = Duration;

    fn add(self, rhs: Duration) -> Self::Output {
        debug_assert!(
            self.0.checked_add(rhs.0).is_some(),
            "overflow detected: {self:?} + {rhs:?}"
        );
        Duration(self.0 + rhs.0)
    }
}

impl AddAssign<Duration> for Duration {
    fn add_assign(&mut self, rhs: Duration) {
        debug_assert!(
            self.0.checked_add(rhs.0).is_some(),
            "overflow detected: {self:?} += {rhs:?}"
        );
        self.0 += rhs.0;
    }
}

impl Sub<Duration> for Duration {
    type Output = Duration;

    fn sub(self, rhs: Duration) -> Self::Output {
        debug_assert!(
            self.0.checked_sub(rhs.0).is_some(),
            "overflow detected: {self:?} - {rhs:?}"
        );
        Duration(self.0 - rhs.0)
    }
}

impl SubAssign<Duration> for Duration {
    fn sub_assign(&mut self, rhs: Duration) {
        debug_assert!(
            self.0.checked_sub(rhs.0).is_some(),
            "overflow detected: {self:?} -= {rhs:?}"
        );
        self.0 -= rhs.0;
    }
}

impl Mul<f64> for Duration {
    type Output = Duration;

    fn mul(self, rhs: f64) -> Self::Output {
        #[expect(clippy::cast_possible_truncation, reason = "expected behavior")]
        {
            Duration((self.0 as f64 * rhs).round() as i64)
        }
    }
}

impl Mul<Duration> for f64 {
    type Output = Duration;

    fn mul(self, rhs: Duration) -> Self::Output {
        rhs * self
    }
}

impl MulAssign<f64> for Duration {
    fn mul_assign(&mut self, rhs: f64) {
        #[expect(clippy::cast_possible_truncation, reason = "expected behavior")]
        {
            self.0 = (self.0 as f64 * rhs).round() as i64;
        }
    }
}

// Returns rounded Duration
impl Div<f64> for Duration {
    type Output = Duration;

    fn div(self, rhs: f64) -> Self::Output {
        debug_assert!(
            rhs.abs() > f64::EPSILON,
            "Dividing by zero results in INF. This is probably not what you want."
        );
        #[expect(clippy::cast_possible_truncation, reason = "expected behavior")]
        {
            Duration((self.0 as f64 / rhs).round() as i64)
        }
    }
}

impl DivAssign<f64> for Duration {
    fn div_assign(&mut self, rhs: f64) {
        #[expect(clippy::cast_possible_truncation, reason = "expected behavior")]
        {
            self.0 = (self.0 as f64 / rhs).round() as i64;
        }
    }
}

impl Mul<i64> for Duration {
    type Output = Duration;

    fn mul(self, rhs: i64) -> Self::Output {
        debug_assert!(
            self.0.checked_mul(rhs).is_some(),
            "overflow detected: {self:?} * {rhs:?}"
        );
        Duration(self.0 * rhs)
    }
}

impl Mul<Duration> for i64 {
    type Output = Duration;

    fn mul(self, rhs: Duration) -> Self::Output {
        rhs * self
    }
}

impl MulAssign<i64> for Duration {
    fn mul_assign(&mut self, rhs: i64) {
        debug_assert!(
            self.0.checked_mul(rhs).is_some(),
            "overflow detected: {self:?} *= {rhs:?}"
        );
        self.0 *= rhs;
    }
}

impl Div<i64> for Duration {
    type Output = Duration;

    fn div(self, rhs: i64) -> Self::Output {
        // forward to the float implementation
        self / rhs as f64
    }
}

impl DivAssign<i64> for Duration {
    fn div_assign(&mut self, rhs: i64) {
        // forward to the float implementation
        self.div_assign(rhs as f64);
    }
}

impl Div<Duration> for Duration {
    type Output = f64;

    fn div(self, rhs: Duration) -> Self::Output {
        debug_assert_ne!(
            rhs,
            Duration::ZERO,
            "Dividing by zero results in INF. This is probably not what you want."
        );
        self.0 as f64 / rhs.0 as f64
    }
}

impl From<Duration> for std::time::Duration {
    fn from(input: Duration) -> Self {
        debug_assert!(
            input.is_non_negative(),
            "Negative Duration {input} cannot be converted to std::time::Duration"
        );
        #[expect(clippy::cast_sign_loss, reason = "caught by the debug_assert above")]
        let secs = (input.0 / 1000) as u64;
        #[expect(
            clippy::cast_possible_truncation,
            clippy::cast_sign_loss,
            reason = "casting to u32 is safe here because it is guaranteed that the value is in 0..1_000_000_000. The sign loss is caught by the debug_assert above."
        )]
        let nanos = ((input.0 % 1000) * 1_000_000) as u32;
        std::time::Duration::new(secs, nanos)
    }
}

impl From<std::time::Duration> for Duration {
    fn from(input: std::time::Duration) -> Self {
        debug_assert!(
            i64::try_from(input.as_millis()).is_ok(),
            "Input std::time::Duration ({input:?}) is too large to be converted to tinytime::Duration"
        );
        #[expect(clippy::cast_possible_truncation, reason = "expected behavior")]
        Duration::millis(input.as_millis() as i64)
    }
}

/// Parses Duration from str
///
/// # Example
/// ```
/// # use tinytime::Duration;
/// # use std::str::FromStr;
/// assert_eq!(Duration::millis(2), Duration::from_str("2ms").unwrap());
/// assert_eq!(Duration::seconds(3), Duration::from_str("3s").unwrap());
/// assert_eq!(Duration::minutes(4), Duration::from_str("4m").unwrap());
/// assert_eq!(Duration::hours(5), Duration::from_str("5h").unwrap());
///
/// assert_eq!(
///     Duration::hours(5) + Duration::minutes(2),
///     Duration::from_str("5h2m").unwrap()
/// );
/// assert_eq!(
///     Duration::hours(5) + Duration::minutes(2) + Duration::millis(1123),
///     Duration::from_str("5h2m1s123ms").unwrap()
/// );
/// assert_eq!(
///     Duration::seconds(5) - Duration::minutes(2),
///     Duration::from_str("-1m55s").unwrap()
/// );
/// ```
impl FromStr for Duration {
    type Err = DurationParseError;

    fn from_str(seconds: &str) -> Result<Self, Self::Err> {
        lazy_static! {
            static ref RE: Regex = Regex::new(REGEX).unwrap();
        }
        let captures = RE
            .captures(seconds)
            .ok_or(DurationParseError::UnrecognizedFormat)?;
        let mut duration = Duration::ZERO;
        if let Some(h) = captures.name("h") {
            duration += Duration::hours(h.as_str().parse::<i64>().unwrap());
        }
        if let Some(m) = captures.name("m") {
            duration += Duration::minutes(m.as_str().parse::<i64>().unwrap());
        }
        if let Some(s) = captures.name("s") {
            duration += Duration::seconds(s.as_str().parse::<i64>().unwrap());
        }
        if let Some(ms) = captures.name("ms") {
            duration += Duration::millis(ms.as_str().parse::<i64>().unwrap());
        }
        if captures.name("sign").is_some() {
            duration *= -1;
        }
        Ok(duration)
    }
}

#[derive(Debug, Clone, Copy)]
pub enum DurationParseError {
    UnrecognizedFormat,
}

impl Error for DurationParseError {}

impl Display for DurationParseError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "Unrecognized Duration format, valid examples are '2h3s', '1m', '1h3m5s700ms'"
        )
    }
}

/// Work-around for `max` in `std` not being const
const fn as_unsigned(x: i64) -> u64 {
    if x >= 0 {
        x as u64
    } else {
        0
    }
}

const REGEX: &str = r"^(?P<sign>-)?((?P<h>\d+)h)?((?P<m>\d+)m)?((?P<s>\d+)s)?((?P<ms>\d+)ms)?$";

#[cfg(test)]
mod time_test {
    use serde_test::assert_de_tokens;
    use serde_test::Token;

    use crate::Duration;
    use crate::Time;

    #[test]
    fn test_display() {
        struct TestCase {
            name: &'static str,
            input: Time,
            expected: String,
        }
        let tests = vec![
            TestCase {
                name: "EPOCH",
                input: Time::EPOCH,
                expected: "1970-01-01T00:00:00+00:00".to_string(),
            },
            TestCase {
                name: "i16::MAX + 1",
                input: Time::seconds(i64::from(i16::MAX) + 1),
                expected: "1970-01-01T09:06:08+00:00".to_string(),
            },
            TestCase {
                name: "i32::MAX + 1",
                input: Time::seconds(i64::from(i32::MAX) + 1),
                expected: "2038-01-19T03:14:08+00:00".to_string(),
            },
            TestCase {
                name: "u32::MAX + 1",
                input: Time::seconds(i64::from(u32::MAX) + 1),
                expected: "2106-02-07T06:28:16+00:00".to_string(),
            },
            TestCase {
                name: "very large",
                input: Time::seconds(i64::from(i32::MAX) * 3500),
                expected: "+240148-08-31T19:28:20+00:00".to_string(),
            },
            TestCase {
                name: "MAX",
                input: Time::MAX,
                expected: "∞".to_string(),
            },
            TestCase {
                name: "i16::MIN",
                input: Time::seconds(i64::from(i16::MIN)),
                expected: "1969-12-31T14:53:52+00:00".to_string(),
            },
            TestCase {
                name: "i64::MIN",
                input: Time::millis(i64::MIN),
                expected: "∞".to_string(),
            },
        ];
        for test in tests {
            assert_eq!(
                test.expected,
                test.input.to_rfc3339(),
                "to_rfc3339 failed for test '{}'",
                test.name
            );
            assert_eq!(
                test.expected,
                test.input.format("%Y-%m-%dT%H:%M:%S+00:00").to_string(),
                "format failed for test '{}'",
                test.name
            );
        }
    }

    #[test]
    fn test_debug() {
        struct TestCase {
            name: &'static str,
            input: Time,
            expected: String,
        }
        let tests = vec![
            TestCase {
                name: "EPOCH",
                input: Time::EPOCH,
                expected: "00:00:00".to_string(),
            },
            TestCase {
                name: "i16::MAX + 1",
                input: Time::seconds(i64::from(i16::MAX) + 1),
                expected: "09:06:08".to_string(),
            },
            TestCase {
                name: "i32::MAX + 1",
                input: Time::seconds(i64::from(i32::MAX) + 1),
                expected: "596523:14:08".to_string(),
            },
            TestCase {
                name: "u32::MAX + 1",
                input: Time::seconds(i64::from(u32::MAX) + 1),
                expected: "1193046:28:16".to_string(),
            },
            TestCase {
                name: "very large",
                input: Time::seconds(i64::from(i32::MAX) * 3500),
                expected: "2087831323:28:20".to_string(),
            },
            TestCase {
                name: "MAX",
                input: Time::MAX,
                expected: "2562047788015:12:55.807".to_string(),
            },
            TestCase {
                name: "i16::MIN",
                input: Time::seconds(i64::from(i16::MIN)),
                expected: "-09:06:08".to_string(),
            },
            TestCase {
                name: "i64::MIN",
                input: Time::millis(i64::MIN),
                expected: "-2562047788015:12:55.808".to_string(),
            },
            TestCase {
                name: "millis",
                input: Time::hours(3) + Duration::millis(42),
                expected: "03:00:00.042".to_string(),
            },
        ];
        for test in tests {
            assert_eq!(
                test.expected,
                format!("{:?}", test.input),
                "test '{}' failed",
                test.name
            );
        }
    }

    #[test]
    fn deserialize_time() {
        // strings
        assert_de_tokens(&Time::seconds(7), &[Token::Str("1970-01-01T00:00:07Z")]);
        assert_de_tokens(&Time::seconds(7), &[Token::String("1970-01-01T00:00:07Z")]);
        assert_de_tokens(
            &Time::seconds(7),
            &[Token::BorrowedStr("1970-01-01T00:00:07Z")],
        );

        // unsigned integers
        assert_de_tokens(&Time::millis(7), &[Token::U8(7)]);
        assert_de_tokens(&Time::millis(65_535), &[Token::U16(65_535)]);
        assert_de_tokens(&Time::hours(10), &[Token::U32(36_000_000)]);
        assert_de_tokens(&Time::hours(100), &[Token::U64(360_000_000)]);

        assert_de_tokens(
            &Time::hours(1),
            &[Token::NewtypeStruct { name: "Time" }, Token::U64(3_600_000)],
        );

        // unsigned integer
        assert_eq!(
            Time::EPOCH + Duration::millis(1000),
            serde_json::from_str("1000").unwrap()
        );

        // RFC 3339
        assert_eq!(
            Time::EPOCH + Duration::hours(12) + Duration::minutes(1),
            serde_json::from_str("\"1970-01-01T12:01:00Z\"").unwrap()
        );

        // ser-de
        let time = Time::EPOCH + Duration::hours(48) + Duration::minutes(7);
        let json = serde_json::to_string(&time).unwrap();
        assert_eq!(time, serde_json::from_str(json.as_str()).unwrap());
    }

    #[test]
    fn test_time_since_epoch() {
        let expected = Duration::seconds(3);
        let actual = Time::seconds(3).since_epoch();
        assert_eq!(expected, actual);
    }

    #[test]
    fn test_time_from_duration() {
        let duration_pos = Duration::seconds(3);
        assert_eq!(Ok(Time::seconds(3)), Time::try_from(duration_pos));

        let duration_neg = Duration::seconds(-3);
        assert_eq!(
            Err("Duration cannot be negative."),
            Time::try_from(duration_neg)
        );
    }
}

#[cfg(test)]
mod duration_test {
    use serde_test::assert_de_tokens;
    use serde_test::Token;

    use super::*;

    #[test]
    fn duration_display() {
        assert_eq!("1ms", Duration::millis(1).to_string());
        assert_eq!("2s", Duration::seconds(2).to_string());
        assert_eq!("3m", Duration::minutes(3).to_string());
        assert_eq!("4h", Duration::hours(4).to_string());

        assert_eq!("1m1s", Duration::seconds(61).to_string());
        assert_eq!(
            "2h3m4s5ms",
            (Duration::hours(2)
                + Duration::minutes(3)
                + Duration::seconds(4)
                + Duration::millis(5))
            .to_string()
        );

        assert_eq!("0ms", Duration::ZERO.to_string());
        assert_eq!("-1m1s", Duration::seconds(-61).to_string());
    }

    #[test]
    fn test_time_window_display() {
        assert_eq!(
            "[1970-01-01T00:00:00+00:00, ∞]",
            TimeWindow::new(Time::EPOCH, Time::MAX).to_string()
        );
        assert_eq!(
            "[1970-01-01T01:00:00+00:00, 2024-02-06T16:53:47+00:00]",
            TimeWindow::new(Time::hours(1), Time::millis(1_707_238_427_962)).to_string()
        );
    }

    #[test]
    fn test_duration_is_non_negative_returns_correctly() {
        struct TestCase {
            name: &'static str,
            input: i64,
            expected: bool,
        }

        let tests = vec![
            TestCase {
                name: "negative",
                input: -1,
                expected: false,
            },
            TestCase {
                name: "zero",
                input: 0,
                expected: true,
            },
            TestCase {
                name: "positive",
                input: 1,
                expected: true,
            },
        ];

        for t in tests {
            let actual = Duration(t.input).is_non_negative();
            assert_eq!(t.expected, actual, "failed '{}'", t.name);
        }
    }

    #[test]
    fn test_duration_abs_removes_sign() {
        struct TestCase {
            name: &'static str,
            input: Duration,
            expected: Duration,
        }

        let tests = vec![
            TestCase {
                name: "negative",
                input: Duration::hours(-1),
                expected: Duration::hours(1),
            },
            TestCase {
                name: "zero",
                input: Duration::ZERO,
                expected: Duration::ZERO,
            },
            TestCase {
                name: "positive",
                input: Duration::minutes(1),
                expected: Duration::minutes(1),
            },
        ];

        for t in tests {
            let actual = t.input.abs();
            assert_eq!(t.expected, actual, "failed '{}'", t.name);
        }
    }

    #[test]
    fn test_duration_is_positive_returns_correctly() {
        struct TestCase {
            name: &'static str,
            input: i64,
            expected: bool,
        }

        let tests = vec![
            TestCase {
                name: "negative",
                input: -1,
                expected: false,
            },
            TestCase {
                name: "zero",
                input: 0,
                expected: false,
            },
            TestCase {
                name: "positive",
                input: 1,
                expected: true,
            },
        ];

        for t in tests {
            let actual = Duration(t.input).is_positive();
            assert_eq!(t.expected, actual, "failed '{}'", t.name);
        }
    }

    #[test]
    fn time_add_duration() {
        let mut time = Time::millis(1);
        let expected_time = Time::millis(3);
        let duration = Duration::millis(2);
        //  add
        assert_eq!(expected_time, time + duration);
        // add assign
        time += duration;
        assert_eq!(expected_time, time);
    }

    #[test]
    fn time_sub_duration() {
        let mut time = Time::millis(10);
        let expected_time = Time::millis(3);
        let duration = Duration::millis(7);
        // small time: sub
        assert_eq!(expected_time, time - duration);
        // small time: sub assign
        time -= duration;
        assert_eq!(expected_time, time);
    }

    #[test]
    fn time_sub_time() {
        // small numbers
        let time = Time::minutes(7);
        let time2 = Time::minutes(3);
        assert_eq!(Duration::minutes(4), time - time2);
        assert_eq!(Duration::minutes(-4), time2 - time);
    }

    #[test]
    fn deserialize_duration() {
        // strings
        assert_de_tokens(&Duration::minutes(7), &[Token::Str("7m")]);
        assert_de_tokens(
            &(Duration::minutes(7) + Duration::seconds(8)),
            &[Token::BorrowedStr("7m8s")],
        );
        assert_de_tokens(&Duration::hours(9), &[Token::String("9h")]);

        // unsigned integers
        assert_de_tokens(&Duration::millis(7), &[Token::U8(7)]);
        assert_de_tokens(&Duration::millis(65_535), &[Token::U16(65_535)]);
        assert_de_tokens(&Duration::hours(10), &[Token::U32(36_000_000)]);
        assert_de_tokens(&Duration::hours(100), &[Token::U64(360_000_000)]);

        // signed integers
        assert_de_tokens(&Duration::millis(-7), &[Token::I8(-7)]);
        assert_de_tokens(&Duration::millis(32_767), &[Token::I16(32_767)]);
        assert_de_tokens(&Duration::hours(10), &[Token::I32(36_000_000)]);
        assert_de_tokens(&Duration::hours(100), &[Token::I64(360_000_000)]);

        // newtype
        assert_de_tokens(
            &Duration::hours(1),
            &[
                Token::NewtypeStruct { name: "Duration" },
                Token::U64(3_600_000),
            ],
        );

        // integer
        let duration: Duration = serde_json::from_str("2").unwrap();
        assert_eq!(Duration::millis(2), duration);

        // signed integer
        let duration: Duration = serde_json::from_str("-2").unwrap();
        assert_eq!(Duration::millis(-2), duration);

        // duration string
        let duration: Duration = serde_json::from_str("\"3m4s\"").unwrap();
        assert_eq!(Duration::minutes(3) + Duration::seconds(4), duration);

        // negative duration string
        let duration: Duration = serde_json::from_str("\"-3m4s\"").unwrap();
        assert_eq!(Duration::minutes(-3) + Duration::seconds(-4), duration);

        // ser-de
        let expected = Duration::millis(77777);
        let json = serde_json::to_string(&expected).unwrap();
        let actual: Duration = serde_json::from_str(json.as_str()).unwrap();
        assert_eq!(expected, actual);
    }
}