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
use std::{
borrow::Cow,
time::{Duration, SystemTime, UNIX_EPOCH},
};
use serde::{Deserialize, Serialize};
use crate::schema::Key;
#[derive(Serialize, Deserialize, Debug, Clone, Copy, Eq, PartialEq, PartialOrd, Ord)]
pub struct Timestamp {
pub seconds: u64,
pub nanos: u32,
}
impl Timestamp {
#[must_use]
pub fn now() -> Self {
Self::from(SystemTime::now())
}
}
impl From<SystemTime> for Timestamp {
fn from(time: SystemTime) -> Self {
let duration_since_epoch = time
.duration_since(UNIX_EPOCH)
.expect("unrealistic system time");
Self {
seconds: duration_since_epoch.as_secs(),
nanos: duration_since_epoch.subsec_nanos(),
}
}
}
impl From<Timestamp> for Duration {
fn from(t: Timestamp) -> Self {
Self::new(t.seconds, t.nanos)
}
}
impl std::ops::Sub for Timestamp {
type Output = Option<Duration>;
fn sub(self, rhs: Self) -> Self::Output {
Duration::from(self).checked_sub(Duration::from(rhs))
}
}
impl std::ops::Add<Duration> for Timestamp {
type Output = Self;
fn add(self, rhs: Duration) -> Self::Output {
let mut nanos = self.nanos + rhs.subsec_nanos();
let mut seconds = self.seconds + rhs.as_secs();
while nanos > 1_000_000_000 {
nanos -= 1_000_000_000;
seconds += 1;
}
Self { seconds, nanos }
}
}
impl Key for Timestamp {
fn as_big_endian_bytes(&self) -> anyhow::Result<std::borrow::Cow<'_, [u8]>> {
let seconds_bytes: &[u8] = &self.seconds.to_be_bytes();
let nanos_bytes = &self.nanos.to_be_bytes();
Ok(Cow::Owned([seconds_bytes, nanos_bytes].concat()))
}
fn from_big_endian_bytes(bytes: &[u8]) -> anyhow::Result<Self> {
if bytes.len() != 12 {
anyhow::bail!("invalid length of stored bytes for Timestamp");
}
Ok(Self {
seconds: u64::from_big_endian_bytes(&bytes[0..8])?,
nanos: u32::from_big_endian_bytes(&bytes[8..12])?,
})
}
}