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
use std::convert::TryInto;
use std::io;
use std::ops::Sub;
use crate::Time;
#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]
#[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))]
#[allow(missing_docs)]
pub enum Sign {
Plus,
Minus,
}
impl From<i32> for Sign {
fn from(v: i32) -> Self {
if v < 0 {
Sign::Minus
} else {
Sign::Plus
}
}
}
impl Default for Time {
fn default() -> Self {
Time {
seconds_since_unix_epoch: 0,
offset_in_seconds: 0,
sign: Sign::Plus,
}
}
}
impl Time {
pub fn new(seconds_since_unix_epoch: u32, offset_in_seconds: i32) -> Self {
Time {
seconds_since_unix_epoch,
offset_in_seconds,
sign: offset_in_seconds.into(),
}
}
pub fn now_utc() -> Self {
let seconds_since_unix_epoch = time::OffsetDateTime::now_utc()
.sub(std::time::SystemTime::UNIX_EPOCH)
.whole_seconds()
.try_into()
.expect("this is not year 2038");
Self {
seconds_since_unix_epoch,
offset_in_seconds: 0,
sign: Sign::Plus,
}
}
pub fn now_local() -> Option<Self> {
let now = time::OffsetDateTime::now_utc();
let seconds_since_unix_epoch = now
.sub(std::time::SystemTime::UNIX_EPOCH)
.whole_seconds()
.try_into()
.expect("this is not year 2038");
let offset = time::UtcOffset::local_offset_at(now).ok()?;
Self {
seconds_since_unix_epoch,
offset_in_seconds: offset.whole_seconds(),
sign: Sign::Plus,
}
.into()
}
pub fn now_local_or_utc() -> Self {
let now = time::OffsetDateTime::now_utc();
let seconds_since_unix_epoch = now
.sub(std::time::SystemTime::UNIX_EPOCH)
.whole_seconds()
.try_into()
.expect("this is not year 2038");
let offset_in_seconds = time::UtcOffset::local_offset_at(now)
.map(|ofs| ofs.whole_seconds())
.unwrap_or(0);
Self {
seconds_since_unix_epoch,
offset_in_seconds,
sign: Sign::Plus,
}
}
}
impl Time {
pub fn is_set(&self) -> bool {
*self != Self::default()
}
pub fn seconds(&self) -> u32 {
self.seconds_since_unix_epoch
}
pub fn write_to(&self, mut out: impl io::Write) -> io::Result<()> {
let mut itoa = itoa::Buffer::new();
out.write_all(itoa.format(self.seconds_since_unix_epoch).as_bytes())?;
out.write_all(b" ")?;
out.write_all(match self.sign {
Sign::Plus => b"+",
Sign::Minus => b"-",
})?;
const ZERO: &[u8; 1] = b"0";
const SECONDS_PER_HOUR: i32 = 60 * 60;
let offset = self.offset_in_seconds.abs();
let hours = offset / SECONDS_PER_HOUR;
assert!(hours < 25, "offset is more than a day: {}", hours);
let minutes = (offset - (hours * SECONDS_PER_HOUR)) / 60;
if hours < 10 {
out.write_all(ZERO)?;
}
out.write_all(itoa.format(hours).as_bytes())?;
if minutes < 10 {
out.write_all(ZERO)?;
}
out.write_all(itoa.format(minutes).as_bytes()).map(|_| ())
}
pub fn size(&self) -> usize {
(if self.seconds_since_unix_epoch >= 1_000_000_000 {
10
} else if self.seconds_since_unix_epoch >= 100_000_000 {
9
} else if self.seconds_since_unix_epoch >= 10_000_000 {
8
} else if self.seconds_since_unix_epoch >= 1_000_000 {
7
} else if self.seconds_since_unix_epoch >= 100_000 {
6
} else if self.seconds_since_unix_epoch >= 10_000 {
5
} else if self.seconds_since_unix_epoch >= 1_000 {
4
} else if self.seconds_since_unix_epoch >= 100 {
3
} else if self.seconds_since_unix_epoch >= 10 {
2
} else {
1
}) + 2 + 2 + 2
}
}