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
//! Monotonic timestamps.

// This file is part of the PulseAudio Rust language binding.
//
// Copyright (c) 2018 Lyndon Brown
//
// This library is free software; you can redistribute it and/or modify it under the terms of the
// GNU Lesser General Public License as published by the Free Software Foundation; either version
// 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
// even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License along with this library;
// if not, see <http://www.gnu.org/licenses/>.

use std;
use capi;
use std::ops::{Add, AddAssign, Sub, SubAssign};
use super::MicroSeconds;

/// A monotonic timestamp
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, Ord, PartialOrd)]
pub struct MonotonicTs(pub(crate) MicroSeconds);

impl MonotonicTs {
    /// Return the current monotonic system time in microseconds.
    ///
    /// Note, if such a clock is not available then this will actually fall back to the wallclock
    /// time instead. No indication is available for whether or not this is the case, and the
    /// return value is still a `MonotonicTs` type.
    pub fn now() -> Self {
        MonotonicTs(MicroSeconds(unsafe { capi::pa_rtclock_now() }))
    }

    pub fn is_valid(&self) -> bool {
        self.0.is_valid()
    }

    pub fn checked_add(self, other: MicroSeconds) -> Option<Self> {
        self.0.checked_add(other).and_then(|us| Some(MonotonicTs(us)))
    }

    pub fn checked_sub(self, other: MicroSeconds) -> Option<Self> {
        self.0.checked_sub(other).and_then(|us| Some(MonotonicTs(us)))
    }
}

impl Add<MicroSeconds> for MonotonicTs {
    type Output = Self;

    fn add(self, other: MicroSeconds) -> Self {
        MonotonicTs(self.0 + other)
    }
}
impl AddAssign<MicroSeconds> for MonotonicTs {
    fn add_assign(&mut self, rhs: MicroSeconds) {
        *self = *self + rhs;
    }
}

impl Sub<MicroSeconds> for MonotonicTs {
    type Output = Self;

    fn sub(self, other: MicroSeconds) -> Self {
        MonotonicTs(self.0 - other)
    }
}
impl SubAssign<MicroSeconds> for MonotonicTs {
    fn sub_assign(&mut self, rhs: MicroSeconds) {
        *self = *self - rhs;
    }
}

impl std::fmt::Display for MonotonicTs {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "{}", self.0)
    }
}