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
use std::{
borrow::Cow,
time::{Duration, SystemTime, UNIX_EPOCH},
};
use serde::{Deserialize, Serialize};
use crate::schema::{view::IncorrectByteLength, Key};
#[derive(Serialize, Deserialize, Debug, Clone, Copy, Eq, PartialEq, PartialOrd, Ord, Default)]
pub struct Timestamp {
pub seconds: u64,
pub nanos: u32,
}
impl Timestamp {
#[must_use]
pub fn now() -> Self {
Self::from(SystemTime::now())
}
#[must_use]
pub const fn max() -> Self {
Self {
seconds: u64::MAX,
nanos: 999_999_999,
}
}
}
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.saturating_add(rhs.as_secs());
while nanos > 1_000_000_000 {
nanos -= 1_000_000_000;
seconds = seconds.saturating_add(1);
}
Self { seconds, nanos }
}
}
impl<'a> Key<'a> for Timestamp {
type Error = IncorrectByteLength;
const LENGTH: Option<usize> = Some(12);
fn as_big_endian_bytes(&'a self) -> Result<std::borrow::Cow<'a, [u8]>, Self::Error> {
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: &'a [u8]) -> Result<Self, Self::Error> {
if bytes.len() != 12 {
return Err(IncorrectByteLength);
}
Ok(Self {
seconds: u64::from_big_endian_bytes(&bytes[0..8])?,
nanos: u32::from_big_endian_bytes(&bytes[8..12])?,
})
}
}
#[test]
fn key_test() {
let original = Timestamp::now();
assert_eq!(
Timestamp::from_big_endian_bytes(&original.as_big_endian_bytes().unwrap()).unwrap(),
original
);
}