2019-10-06 15:26:14 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2024-01-11 20:16:09 +01:00
|
|
|
use super::abi;
|
|
|
|
use super::abi::timespec;
|
|
|
|
use super::abi::{CLOCK_MONOTONIC, CLOCK_REALTIME, NSEC_PER_SEC};
|
2019-10-06 15:26:14 +00:00
|
|
|
use crate::cmp::Ordering;
|
2022-12-06 20:31:43 +01:00
|
|
|
use crate::ops::{Add, AddAssign, Sub, SubAssign};
|
2019-10-06 15:26:14 +00:00
|
|
|
use crate::time::Duration;
|
|
|
|
use core::hash::{Hash, Hasher};
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
struct Timespec {
|
|
|
|
t: timespec,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Timespec {
|
|
|
|
const fn zero() -> Timespec {
|
|
|
|
Timespec { t: timespec { tv_sec: 0, tv_nsec: 0 } }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn sub_timespec(&self, other: &Timespec) -> Result<Duration, Duration> {
|
|
|
|
if self >= other {
|
|
|
|
Ok(if self.t.tv_nsec >= other.t.tv_nsec {
|
|
|
|
Duration::new(
|
|
|
|
(self.t.tv_sec - other.t.tv_sec) as u64,
|
|
|
|
(self.t.tv_nsec - other.t.tv_nsec) as u32,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
Duration::new(
|
|
|
|
(self.t.tv_sec - 1 - other.t.tv_sec) as u64,
|
|
|
|
self.t.tv_nsec as u32 + (NSEC_PER_SEC as u32) - other.t.tv_nsec as u32,
|
|
|
|
)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
match other.sub_timespec(self) {
|
|
|
|
Ok(d) => Err(d),
|
|
|
|
Err(d) => Ok(d),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn checked_add_duration(&self, other: &Duration) -> Option<Timespec> {
|
2023-07-03 07:35:46 +02:00
|
|
|
let mut secs = self.t.tv_sec.checked_add_unsigned(other.as_secs())?;
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
// Nano calculations can't overflow because nanos are <1B which fit
|
|
|
|
// in a u32.
|
|
|
|
let mut nsec = other.subsec_nanos() + self.t.tv_nsec as u32;
|
|
|
|
if nsec >= NSEC_PER_SEC as u32 {
|
|
|
|
nsec -= NSEC_PER_SEC as u32;
|
|
|
|
secs = secs.checked_add(1)?;
|
|
|
|
}
|
|
|
|
Some(Timespec { t: timespec { tv_sec: secs, tv_nsec: nsec as _ } })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn checked_sub_duration(&self, other: &Duration) -> Option<Timespec> {
|
2023-07-03 07:35:46 +02:00
|
|
|
let mut secs = self.t.tv_sec.checked_sub_unsigned(other.as_secs())?;
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
// Similar to above, nanos can't overflow.
|
|
|
|
let mut nsec = self.t.tv_nsec as i32 - other.subsec_nanos() as i32;
|
|
|
|
if nsec < 0 {
|
|
|
|
nsec += NSEC_PER_SEC as i32;
|
|
|
|
secs = secs.checked_sub(1)?;
|
|
|
|
}
|
|
|
|
Some(Timespec { t: timespec { tv_sec: secs, tv_nsec: nsec as _ } })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for Timespec {
|
|
|
|
fn eq(&self, other: &Timespec) -> bool {
|
|
|
|
self.t.tv_sec == other.t.tv_sec && self.t.tv_nsec == other.t.tv_nsec
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for Timespec {}
|
|
|
|
|
|
|
|
impl PartialOrd for Timespec {
|
|
|
|
fn partial_cmp(&self, other: &Timespec) -> Option<Ordering> {
|
|
|
|
Some(self.cmp(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ord for Timespec {
|
|
|
|
fn cmp(&self, other: &Timespec) -> Ordering {
|
|
|
|
let me = (self.t.tv_sec, self.t.tv_nsec);
|
|
|
|
let other = (other.t.tv_sec, other.t.tv_nsec);
|
|
|
|
me.cmp(&other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Hash for Timespec {
|
|
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
|
|
self.t.tv_sec.hash(state);
|
|
|
|
self.t.tv_nsec.hash(state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)]
|
2022-12-06 20:31:43 +01:00
|
|
|
pub struct Instant(Timespec);
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
impl Instant {
|
|
|
|
pub fn now() -> Instant {
|
|
|
|
let mut time: Timespec = Timespec::zero();
|
2024-02-24 16:02:17 +03:00
|
|
|
let _ = unsafe { abi::clock_gettime(CLOCK_MONOTONIC, core::ptr::addr_of_mut!(time.t)) };
|
2019-10-06 15:26:14 +00:00
|
|
|
|
2022-12-06 20:31:43 +01:00
|
|
|
Instant(time)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "time2", since = "1.8.0")]
|
|
|
|
pub fn elapsed(&self) -> Duration {
|
|
|
|
Instant::now() - *self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn duration_since(&self, earlier: Instant) -> Duration {
|
|
|
|
self.checked_duration_since(earlier).unwrap_or_default()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_duration_since(&self, earlier: Instant) -> Option<Duration> {
|
|
|
|
self.checked_sub_instant(&earlier)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_sub_instant(&self, other: &Instant) -> Option<Duration> {
|
2022-12-06 20:31:43 +01:00
|
|
|
self.0.sub_timespec(&other.0).ok()
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_add_duration(&self, other: &Duration) -> Option<Instant> {
|
2022-12-06 20:31:43 +01:00
|
|
|
Some(Instant(self.0.checked_add_duration(other)?))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_sub_duration(&self, other: &Duration) -> Option<Instant> {
|
2022-12-06 20:31:43 +01:00
|
|
|
Some(Instant(self.0.checked_sub_duration(other)?))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_add(&self, duration: Duration) -> Option<Instant> {
|
|
|
|
self.0.checked_add_duration(&duration).map(Instant)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_sub(&self, duration: Duration) -> Option<Instant> {
|
|
|
|
self.0.checked_sub_duration(&duration).map(Instant)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-06 20:31:43 +01:00
|
|
|
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")
|
|
|
|
}
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
2022-12-06 20:31:43 +01:00
|
|
|
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;
|
|
|
|
|
|
|
|
/// Returns the amount of time elapsed from another instant to this one,
|
|
|
|
/// or zero duration if that instant is later than this one.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
2024-03-06 20:21:00 +01:00
|
|
|
/// Previous Rust versions panicked when `other` was later than `self`. Currently this
|
2022-12-06 20:31:43 +01:00
|
|
|
/// method saturates. Future versions may reintroduce the panic in some circumstances.
|
|
|
|
/// See [Monotonicity].
|
|
|
|
///
|
|
|
|
/// [Monotonicity]: Instant#monotonicity
|
|
|
|
fn sub(self, other: Instant) -> Duration {
|
|
|
|
self.duration_since(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
|
|
|
|
pub struct SystemTime(Timespec);
|
|
|
|
|
|
|
|
pub const UNIX_EPOCH: SystemTime = SystemTime(Timespec::zero());
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
impl SystemTime {
|
|
|
|
pub fn now() -> SystemTime {
|
|
|
|
let mut time: Timespec = Timespec::zero();
|
2024-02-24 16:02:17 +03:00
|
|
|
let _ = unsafe { abi::clock_gettime(CLOCK_REALTIME, core::ptr::addr_of_mut!(time.t)) };
|
2019-10-06 15:26:14 +00:00
|
|
|
|
2022-12-06 20:31:43 +01:00
|
|
|
SystemTime(time)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sub_time(&self, other: &SystemTime) -> Result<Duration, Duration> {
|
2022-12-06 20:31:43 +01:00
|
|
|
self.0.sub_timespec(&other.0)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_add_duration(&self, other: &Duration) -> Option<SystemTime> {
|
2022-12-06 20:31:43 +01:00
|
|
|
Some(SystemTime(self.0.checked_add_duration(other)?))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn checked_sub_duration(&self, other: &Duration) -> Option<SystemTime> {
|
2022-12-06 20:31:43 +01:00
|
|
|
Some(SystemTime(self.0.checked_sub_duration(other)?))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
}
|