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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
// Copyright 2020 Quentin De Coninck
//
// Distributed under MIT license.
//! A minimal crate to play with Instant based on UNIX epoch.
//!
//! The standard library provides Instant and Duration structures to measure
//! elapsed time. This is fine for most use cases, but the Instant structure
//! voluntary hides its implementation to keep its semantics. This crate exposes
//! its time base to the UNIX Epoch (1st January 1970 at 0:00).
//!
//! The exposed API tries to mimic as much as possible the `std::time` one for
//! the related `Instant` structures, such that passing from these to the ones
//! of this crate would be as seamless as possible (as it actually uses
//! `std::time` under the hood).
//!
//! This crate should only be used to compute local time. It is thus not
//! appropriate for timezone computations, playing with dates,...

use std::time::SystemTime;
use std::time::Duration;
use std::ops::{Add, AddAssign, Sub, SubAssign};
use std::fmt;

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

/// An precise instant relative to the UNIX epoch, with nanosecond precision.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct Instant {
    secs: u64,
    nanos: u32,
}

impl Instant {
    /// Creates an `Instant` at the specified seconds and nanoseconds after the
    /// UNIX epoch.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_time::Instant;
    ///
    /// let instant = Instant::at(42, 182870024);
    /// assert_eq!(format!("{:?}", instant), "Instant { secs: 42, nanos: 182870024 }");
    /// ```
    pub fn at(secs: u64, nanos: u32) -> Self {
        Self { secs, nanos }
    }

    /// Returns an instant corresponding to "now".
    pub fn now() -> Self {
        let since_epoch = SystemTime::now()
            .duration_since(SystemTime::UNIX_EPOCH)
            .expect("SystemTime before UNIX epoch?!?");
        Self::at(since_epoch.as_secs(), since_epoch.subsec_nanos())
    }

    /// Returns the number of _whole_ seconds that spaces `self` from the UNIX
    /// epoch.
    ///
    /// The returned value does not include the fractional (nanosecond) part of
    /// the duration, which can be obtained using [`subsec_nanos`].
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_time::Instant;
    ///
    /// let duration = Instant::at(5, 730023852);
    /// assert_eq!(duration.secs(), 5);
    /// ```
    ///
    /// To determine the total number of seconds represented by the `Duration`,
    /// use `secs` in combination with [`subsec_nanos`]:
    ///
    /// ```
    /// use unix_time::Instant;
    ///
    /// let instant = Instant::at(5, 730023852);
    ///
    /// assert_eq!(5.730023852,
    ///            instant.secs() as f64
    ///            + instant.subsec_nanos() as f64 * 1e-9);
    /// ```
    ///
    /// [`subsec_nanos`]: Instant::subsec_nanos
    pub fn secs(&self) -> u64 {
        self.secs
    }

    /// Returns the fractional part that spaces `self` from the UNIX epoch in
    /// nanoseconds.
    ///
    /// This method does _not_ return the total duration since the UNIX epoch in
    /// nanoseconds. The returned number always represents a fractional portion
    /// of a second (i.e., it is less than one billion).
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_time::Instant;
    ///
    /// let instant = Instant::at(5, 10_000_000);
    /// assert_eq!(instant.secs(), 5);
    /// assert_eq!(instant.subsec_nanos(), 10_000_000);
    /// ```
    pub fn subsec_nanos(&self) -> u32 {
        self.nanos
    }

    /// Returns `Some(t)` where `t` is the time `self + duration` if `t` can be
    /// represented as `Instant` (which means it's inside the bounds of the
    /// underlying data structure), `None` otherwise.
    pub fn checked_add(&self, duration: Duration) -> Option<Instant> {
        let d: Duration = (*self).into();
        d.checked_add(duration).map(|x| x.into())
    }

    /// Returns `Some(t)` where `t` is the time `self - duration` if `t` can be
    /// represented as `Instant` (which means it's inside the bounds of the
    /// underlying data structure), `None` otherwise.
    pub fn checked_sub(&self, duration: Duration) -> Option<Instant> {
        let d: Duration = (*self).into();
        d.checked_sub(duration).map(|x| x.into())
    }

    /// Returns the amount of time elapsed from another instant to this one,
    /// or None if that instant is later than this one.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use unix_time::Instant;
    /// use std::time::Duration;
    /// use std::thread::sleep;
    ///
    /// let now = Instant::now();
    /// sleep(Duration::new(1, 0));
    /// let new_now = Instant::now();
    /// println!("{:?}", new_now.checked_duration_since(now));
    /// println!("{:?}", now.checked_duration_since(new_now)); // None
    /// ```
    pub fn checked_duration_since(&self, earlier: Instant) -> Option<Duration> {
        let d: Duration = (*self).into();
        d.checked_sub(earlier.into())
    }

    /// Returns the amount of time elapsed from another instant to this one.
    ///
    /// # Panics
    ///
    /// This function will panic if `earlier` is later than `self`.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use std::time::Duration;
    /// use unix_time::Instant;
    /// use std::thread::sleep;
    ///
    /// let now = Instant::now();
    /// sleep(Duration::new(1, 0).into());
    /// let new_now = Instant::now();
    /// println!("{:?}", new_now.duration_since(now));
    /// ```
    pub fn duration_since(&self, earlier: Instant) -> Duration {
        self.checked_duration_since(earlier).expect("supplied instant is later than self")
    }

    /// Returns the amount of time elapsed from another instant to this one,
    /// or zero duration if that instant is later than this one.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use std::time::Duration;
    /// use unix_time::Instant;
    /// use std::thread::sleep;
    ///
    /// let now = Instant::now();
    /// sleep(Duration::new(1, 0));
    /// let new_now = Instant::now();
    /// println!("{:?}", new_now.saturating_duration_since(now));
    /// println!("{:?}", now.saturating_duration_since(new_now)); // 0ns
    /// ```
    pub fn saturating_duration_since(&self, earlier: Instant) -> Duration {
        self.checked_duration_since(earlier).unwrap_or(Duration::new(0, 0))
    }

    /// Returns the amount of time elapsed since this instant was created.
    ///
    /// # Panics
    ///
    /// This function may panic if the current time is earlier than this
    /// instant, which is something that can happen if an `Instant` is
    /// produced synthetically.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use std::thread::sleep;
    /// use std::time::Duration;
    /// use unix_time::Instant;
    ///
    /// let instant = Instant::now();
    /// let three_secs = Duration::from_secs(3);
    /// sleep(three_secs);
    /// assert!(instant.elapsed() >= three_secs);
    /// ```
    pub fn elapsed(&self) -> Duration {
        Instant::now() - *self
    }
}

impl From<Instant> for Duration {
    fn from(i: Instant) -> Duration {
        Duration::new(i.secs, i.nanos)
    }
}

impl From<Duration> for Instant {
    fn from(d: Duration) -> Instant {
        Instant::at(d.as_secs(), d.subsec_nanos())
    }
}

impl Add<Duration> for Instant {
    type Output = Instant;

    /// # Panics
    ///
    /// This function may panic if the resulting point in time cannot be represented by the
    /// underlying data structure. See [`Instant::checked_add`] for a version without panic.
    fn add(self, other: Duration) -> Instant {
        self.checked_add(other).expect("overflow when adding duration to instant")
    }
}

impl AddAssign<Duration> for Instant {
    fn add_assign(&mut self, other: Duration) {
        *self = *self + other;
    }
}

impl Sub<Duration> for Instant {
    type Output = Instant;

    fn sub(self, other: Duration) -> Instant {
        self.checked_sub(other).expect("overflow when subtracting duration from instant")
    }
}

impl SubAssign<Duration> for Instant {
    fn sub_assign(&mut self, other: Duration) {
        *self = *self - other;
    }
}

impl Sub<Instant> for Instant {
    type Output = Duration;

    fn sub(self, other: Instant) -> Duration {
        self.duration_since(other)
    }
}

impl fmt::Debug for Instant {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "Instant {{ secs: {}, nanos: {} }}", self.secs, self.nanos)
    }
}