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
use std::{cmp, ops};
use anyhow::Result;
use ordered_float::NotNan;
use serde::{Deserialize, Serialize};
use crate::{deserialize_f64, serialize_f64, trim_f64, Duration};
#[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Serialize, Deserialize)]
pub struct Time(
#[serde(serialize_with = "serialize_f64", deserialize_with = "deserialize_f64")] f64,
);
impl Eq for Time {}
#[allow(clippy::derive_ord_xor_partial_ord)]
impl Ord for Time {
fn cmp(&self, other: &Time) -> cmp::Ordering {
self.partial_cmp(other).unwrap()
}
}
#[allow(clippy::derive_hash_xor_eq)]
impl std::hash::Hash for Time {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
NotNan::new(self.0).unwrap().hash(state);
}
}
impl Time {
pub const START_OF_DAY: Time = Time(0.0);
fn seconds_since_midnight(value: f64) -> Time {
if !value.is_finite() || value < 0.0 {
panic!("Bad Time {}", value);
}
Time(trim_f64(value))
}
fn get_parts(self) -> (usize, usize, usize, usize) {
let mut remainder = self.0;
let hours = (remainder / 3600.0).floor();
remainder -= hours * 3600.0;
let minutes = (remainder / 60.0).floor();
remainder -= minutes * 60.0;
let seconds = remainder.floor();
remainder -= seconds;
let centis = (remainder / 0.1).floor();
(
hours as usize,
minutes as usize,
seconds as usize,
centis as usize,
)
}
pub fn get_hours(self) -> usize {
self.get_parts().0
}
pub fn ampm_tostring(self) -> String {
let (mut hours, minutes, seconds, _) = self.get_parts();
let next_day = if hours >= 24 {
let days = hours / 24;
hours %= 24;
format!(" (+{} days)", days)
} else {
"".to_string()
};
let suffix = if hours < 12 { "AM" } else { "PM" };
if hours == 0 {
hours = 12;
} else if hours >= 24 {
hours -= 24;
} else if hours > 12 {
hours -= 12;
}
format!(
"{:02}:{:02}:{:02} {}{}",
hours, minutes, seconds, suffix, next_day
)
}
pub fn as_filename(self) -> String {
let (hours, minutes, seconds, remainder) = self.get_parts();
format!(
"{0:02}h{1:02}m{2:02}.{3:01}s",
hours, minutes, seconds, remainder
)
}
pub fn parse(string: &str) -> Result<Time> {
let parts: Vec<&str> = string.split(':').collect();
if parts.is_empty() {
bail!("Time {}: no :'s", string);
}
let mut seconds = parts.last().unwrap().parse::<f64>()?;
match parts.len() {
1 => Ok(Time::seconds_since_midnight(seconds)),
2 => {
seconds *= 60.0;
seconds += 3600.0 * parts[0].parse::<f64>()?;
Ok(Time::seconds_since_midnight(seconds))
}
3 => {
seconds += 60.0 * parts[1].parse::<f64>()?;
seconds += 3600.0 * parts[0].parse::<f64>()?;
Ok(Time::seconds_since_midnight(seconds))
}
_ => bail!("Time {}: weird number of parts", string),
}
}
pub fn percent_of(self, p: f64) -> Time {
if !(0.0..=1.0).contains(&p) {
panic!("Bad percent_of input: {}", p);
}
Time::seconds_since_midnight(self.0 * p)
}
pub fn to_percent(self, other: Time) -> f64 {
self.0 / other.0
}
pub fn inner_seconds(self) -> f64 {
self.0
}
pub fn clamped_sub(self, dt: Duration) -> Time {
Time::seconds_since_midnight((self.0 - dt.inner_seconds()).max(0.0))
}
pub fn round_seconds(self, s: f64) -> Time {
Time::seconds_since_midnight(s * (self.0 / s).round())
}
}
impl std::fmt::Display for Time {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let (hours, minutes, seconds, remainder) = self.get_parts();
write!(
f,
"{0:02}:{1:02}:{2:02}.{3:01}",
hours, minutes, seconds, remainder
)
}
}
impl ops::Add<Duration> for Time {
type Output = Time;
fn add(self, other: Duration) -> Time {
Time::seconds_since_midnight(self.0 + other.inner_seconds())
}
}
impl ops::AddAssign<Duration> for Time {
fn add_assign(&mut self, other: Duration) {
*self = *self + other;
}
}
impl ops::Sub<Duration> for Time {
type Output = Time;
fn sub(self, other: Duration) -> Time {
Time::seconds_since_midnight(self.0 - other.inner_seconds())
}
}
impl ops::Sub for Time {
type Output = Duration;
fn sub(self, other: Time) -> Duration {
Duration::seconds(self.0 - other.0)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse() {
assert_eq!(
Time::START_OF_DAY + Duration::seconds(42.3),
Time::parse("42.3").unwrap()
);
assert_eq!(
Time::START_OF_DAY + Duration::hours(7) + Duration::minutes(30),
Time::parse("07:30").unwrap()
);
assert_eq!(
Time::START_OF_DAY
+ Duration::hours(7)
+ Duration::minutes(30)
+ Duration::seconds(5.0),
Time::parse("07:30:05").unwrap()
);
}
#[test]
fn get_hours() {
assert_eq!((Time::START_OF_DAY + Duration::hours(6)).get_hours(), 6);
assert_eq!(
(Time::START_OF_DAY + Duration::hours(6) + Duration::seconds(1.0)).get_hours(),
6
);
assert_eq!(
(Time::START_OF_DAY + Duration::hours(6) + Duration::minutes(59)).get_hours(),
6
);
}
}