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
use std::ops::{Add, AddAssign, Sub, SubAssign};
use super::{Timeval, MicroSeconds, op_err};
#[repr(transparent)]
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub struct UnixTs(pub(crate) Timeval);
impl UnixTs {
pub fn now() -> Self {
let mut tv = Timeval::new_zero();
unsafe { capi::pa_gettimeofday(&mut tv.0) };
Self(tv)
}
#[inline]
pub fn diff(a: &Self, b: &Self) -> MicroSeconds {
MicroSeconds(unsafe { capi::pa_timeval_diff(&(a.0).0, &(b.0).0) })
}
#[inline]
pub fn age(&self) -> MicroSeconds {
MicroSeconds(unsafe { capi::pa_timeval_age(&(self.0).0) })
}
#[inline]
pub fn checked_add(self, rhs: MicroSeconds) -> Option<Self> {
self.0.checked_add_us(rhs).and_then(|us| Some(Self(us)))
}
#[inline]
pub fn checked_sub(self, rhs: MicroSeconds) -> Option<Self> {
self.0.checked_sub_us(rhs).and_then(|us| Some(Self(us)))
}
}
impl std::fmt::Display for UnixTs {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{:?}", self.0)
}
}
impl Add<MicroSeconds> for UnixTs {
type Output = Self;
#[track_caller]
#[inline]
fn add(self, rhs: MicroSeconds) -> Self {
self.checked_add(rhs).expect(op_err::ADD)
}
}
impl AddAssign<MicroSeconds> for UnixTs {
#[track_caller]
#[inline]
fn add_assign(&mut self, rhs: MicroSeconds) {
*self = self.add(rhs);
}
}
impl Sub<MicroSeconds> for UnixTs {
type Output = Self;
#[track_caller]
#[inline]
fn sub(self, rhs: MicroSeconds) -> Self {
self.checked_sub(rhs).expect(op_err::SUB)
}
}
impl SubAssign<MicroSeconds> for UnixTs {
#[track_caller]
#[inline]
fn sub_assign(&mut self, rhs: MicroSeconds) {
*self = self.sub(rhs);
}
}