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
pub use parse_duration::parse::Error as ParseError;
use crate::math::AsPrimitive;
use crate::prelude::*;
use parse_duration::parse;
#[derive(Clone, Copy, Default, PartialEq, PartialOrd)]
pub struct Duration {
secs: f64,
}
impl Duration {
pub const INFINITE: Self = Self { secs: f64::INFINITY };
pub const ZERO: Self = Self { secs: 0.0 };
pub fn weeks(weeks: impl AsPrimitive<f64>) -> Self {
Self::secs(weeks.as_() * 7.0 * 24.0 * 60.0 * 60.0)
}
pub fn days(days: impl AsPrimitive<f64>) -> Self {
Self::secs(days.as_() * 24.0 * 60.0 * 60.0)
}
pub fn hours(hours: impl AsPrimitive<f64>) -> Self {
Self::secs(hours.as_() * 60.0 * 60.0)
}
pub fn mins(mins: impl AsPrimitive<f64>) -> Self {
Self::secs(mins.as_() * 60.0)
}
pub fn secs(secs: impl AsPrimitive<f64>) -> Self {
let secs = secs.as_();
assert!(!secs.is_nan(), "Duration cannot be NaN.");
Self { secs: secs.max(0.0) }
}
pub fn hz(hz: impl AsPrimitive<f64>) -> Self {
Self::secs(1.0 / hz.as_())
}
pub fn ms(ms: impl AsPrimitive<f64>) -> Duration {
Self::secs(ms.as_() / 1000.0)
}
pub fn as_weeks(self) -> f64 {
self.as_secs() / 7.0 / 24.0 / 60.0 / 60.0
}
pub fn as_days(self) -> f64 {
self.as_secs() / 24.0 / 60.0 / 60.0
}
pub fn as_hours(self) -> f64 {
self.as_secs() / 60.0 / 60.0
}
pub fn as_mins(self) -> f64 {
self.as_secs() / 60.0
}
pub const fn as_secs(self) -> f64 {
self.secs
}
pub fn as_hz(self) -> f64 {
1.0 / self.secs
}
pub fn as_ms(self) -> f64 {
self.secs * 1000.0
}
pub fn is_finite(&self) -> bool {
self.secs.is_finite()
}
pub fn is_infinite(&self) -> bool {
self.secs.is_infinite()
}
pub fn to_std(self) -> std::time::Duration {
const MAX_SAFE_INT: f64 = 9007199254740991f64;
std::time::Duration::from_secs_f64(self.secs.min(MAX_SAFE_INT))
}
}
impl Add<Self> for Duration {
type Output = Self;
fn add(mut self, rhs: Self) -> Self::Output {
self += rhs;
self
}
}
impl AddAssign<Self> for Duration {
fn add_assign(&mut self, rhs: Self) {
self.secs += rhs.secs;
}
}
impl Debug for Duration {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "\"{}\"", self)
}
}
impl Display for Duration {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if self.secs.is_infinite() {
write!(f, "forever")
} else if self.secs < 2.0 {
write!(f, "{} ms", self.as_ms().round_to_places(3))
} else if self.secs < 120.0 {
write!(f, "{} secs", self.as_secs().round_to_places(3))
} else if self.secs < 7_200.0 {
write!(f, "{} mins", self.as_mins().round_to_places(2))
} else if self.secs < 172_800.0 {
write!(f, "{} hours", self.as_hours().round_to_places(2))
} else if self.secs < 604_800.0 {
write!(f, "{} days", self.as_days().round_to_places(2))
} else if self.secs < 31_557_600.0 {
write!(f, "{} weeks", self.as_weeks().round_to_places(1))
} else {
write!(f, "{} years", (self.secs / 31_557_600.0).round_to_places(1))
}
}
}
impl<T> Div<T> for Duration
where
T: AsPrimitive<f64>,
{
type Output = Self;
fn div(mut self, rhs: T) -> Self::Output {
self /= rhs;
self
}
}
impl<T> DivAssign<T> for Duration
where
T: AsPrimitive<f64>,
{
fn div_assign(&mut self, rhs: T) {
self.secs = f64::max(self.secs / rhs.as_(), 0.0);
}
}
impl Eq for Duration {}
impl From<std::time::Duration> for Duration {
fn from(value: std::time::Duration) -> Self {
Self::secs(value.as_secs_f64())
}
}
impl From<chrono::Duration> for Duration {
fn from(value: chrono::Duration) -> Self {
value.to_std().unwrap_or_default().into()
}
}
impl From<Duration> for std::time::Duration {
fn from(value: Duration) -> Self {
value.to_std()
}
}
impl From<Duration> for chrono::Duration {
fn from(value: Duration) -> Self {
Self::from_std(value.to_std())
.expect("Failed to convert std::time::Duration to chrono::Duration")
}
}
impl FromStr for Duration {
type Err = ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
parse(s).map(From::from)
}
}
impl<T> Mul<T> for Duration
where
T: AsPrimitive<f64>,
{
type Output = Self;
fn mul(mut self, rhs: T) -> Self::Output {
self *= rhs;
self
}
}
impl<T> MulAssign<T> for Duration
where
T: AsPrimitive<f64>,
{
fn mul_assign(&mut self, rhs: T) {
self.secs = f64::max(self.secs * rhs.as_(), 0.0);
}
}
#[allow(clippy::derive_ord_xor_partial_ord)]
impl Ord for Duration {
fn cmp(&self, other: &Self) -> cmp::Ordering {
self.secs.partial_cmp(&other.secs).unwrap()
}
}
impl Sub<Self> for Duration {
type Output = Self;
fn sub(mut self, rhs: Self) -> Self::Output {
self -= rhs;
self
}
}
impl SubAssign<Self> for Duration {
fn sub_assign(&mut self, rhs: Self) {
self.secs = f64::max(self.secs - rhs.secs, 0.0);
}
}