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
//! Unix 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::{Timeval, MicroSeconds};

/// A Unix timestamp
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub struct UnixTs(pub(crate) Timeval);

impl UnixTs {
    /// Current 'time of day'
    pub fn now() -> Self {
        let mut tv = Timeval::new_zero();
        unsafe { capi::pa_gettimeofday(&mut tv.0) };
        UnixTs(tv)
    }

    /// Calculate the difference between the two specified timestamps.
    pub fn diff(a: &Self, b: &Self) -> MicroSeconds {
        MicroSeconds(unsafe { capi::pa_timeval_diff(&(a.0).0, &(b.0).0) })
    }

    /// Return the time difference between now and self
    pub fn age(&self) -> MicroSeconds {
        MicroSeconds(unsafe { capi::pa_timeval_age(&(self.0).0) })
    }

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

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

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

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

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

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

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