2020-10-26 12:39:53 +01:00
|
|
|
use core::fmt;
|
2020-10-31 20:02:16 +01:00
|
|
|
use core::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Sub, SubAssign};
|
2020-10-19 21:15:24 +02:00
|
|
|
|
|
|
|
use super::TICKS_PER_SECOND;
|
|
|
|
|
2020-12-01 17:46:56 +01:00
|
|
|
#[derive(Debug, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
2021-03-22 01:01:52 +01:00
|
|
|
/// Represents the difference between [Instant::now()](struct.Instant.html#method.now) and some other Instant
|
2020-10-19 21:15:24 +02:00
|
|
|
pub struct Duration {
|
2020-10-26 12:39:53 +01:00
|
|
|
pub(crate) ticks: u64,
|
2020-10-19 21:15:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Duration {
|
2020-10-26 12:39:53 +01:00
|
|
|
pub const fn as_ticks(&self) -> u64 {
|
2020-10-19 21:15:24 +02:00
|
|
|
self.ticks
|
|
|
|
}
|
|
|
|
|
2020-10-26 12:39:53 +01:00
|
|
|
pub const fn as_secs(&self) -> u64 {
|
|
|
|
self.ticks / TICKS_PER_SECOND
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const fn as_millis(&self) -> u64 {
|
|
|
|
self.ticks * 1000 / TICKS_PER_SECOND
|
|
|
|
}
|
|
|
|
|
2021-03-01 18:59:40 +01:00
|
|
|
pub const fn as_micros(&self) -> u64 {
|
|
|
|
self.ticks * 1_000_000 / TICKS_PER_SECOND
|
|
|
|
}
|
|
|
|
|
2021-03-22 00:45:48 +01:00
|
|
|
/// Creates a duration from the specified number of clock ticks
|
2020-10-26 12:39:53 +01:00
|
|
|
pub const fn from_ticks(ticks: u64) -> Duration {
|
2020-10-19 21:15:24 +02:00
|
|
|
Duration { ticks }
|
|
|
|
}
|
|
|
|
|
2021-03-22 00:45:48 +01:00
|
|
|
/// Creates a duration from the specified number of seconds
|
2020-10-26 12:39:53 +01:00
|
|
|
pub const fn from_secs(secs: u64) -> Duration {
|
2020-10-19 21:15:24 +02:00
|
|
|
Duration {
|
|
|
|
ticks: secs * TICKS_PER_SECOND,
|
|
|
|
}
|
|
|
|
}
|
2021-03-22 01:01:13 +01:00
|
|
|
|
2021-03-22 00:45:48 +01:00
|
|
|
/// Creates a duration from the specified number of milliseconds
|
2020-10-26 12:39:53 +01:00
|
|
|
pub const fn from_millis(millis: u64) -> Duration {
|
2020-10-19 21:15:24 +02:00
|
|
|
Duration {
|
|
|
|
ticks: millis * TICKS_PER_SECOND / 1000,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 00:45:48 +01:00
|
|
|
/// Creates a duration from the specified number of microseconds
|
|
|
|
/// NOTE: Delays this small may be inaccurate.
|
2021-03-02 15:45:22 +01:00
|
|
|
pub const fn from_micros(micros: u64) -> Duration {
|
2021-03-01 18:47:55 +01:00
|
|
|
Duration {
|
2021-03-02 15:45:22 +01:00
|
|
|
ticks: micros * TICKS_PER_SECOND / 1_000_000,
|
2021-03-01 18:47:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 00:45:48 +01:00
|
|
|
/// Adds one Duration to another, returning a new Duration or None in the event of an overflow.
|
2020-10-19 21:15:24 +02:00
|
|
|
pub fn checked_add(self, rhs: Duration) -> Option<Duration> {
|
|
|
|
self.ticks
|
|
|
|
.checked_add(rhs.ticks)
|
|
|
|
.map(|ticks| Duration { ticks })
|
|
|
|
}
|
2021-03-22 01:01:13 +01:00
|
|
|
|
2021-03-22 00:45:48 +01:00
|
|
|
/// Subtracts one Duration to another, returning a new Duration or None in the event of an overflow.
|
2020-10-19 21:15:24 +02:00
|
|
|
pub fn checked_sub(self, rhs: Duration) -> Option<Duration> {
|
|
|
|
self.ticks
|
|
|
|
.checked_sub(rhs.ticks)
|
|
|
|
.map(|ticks| Duration { ticks })
|
|
|
|
}
|
|
|
|
|
2021-03-22 01:01:13 +01:00
|
|
|
/// Multiplies one Duration to another, returning a new Duration or None in the event of an overflow.
|
2020-10-19 21:15:24 +02:00
|
|
|
pub fn checked_mul(self, rhs: u32) -> Option<Duration> {
|
2020-10-31 20:02:16 +01:00
|
|
|
self.ticks
|
|
|
|
.checked_mul(rhs as _)
|
|
|
|
.map(|ticks| Duration { ticks })
|
2020-10-19 21:15:24 +02:00
|
|
|
}
|
2021-03-22 01:01:13 +01:00
|
|
|
|
2021-03-22 00:45:48 +01:00
|
|
|
/// Divides one Duration against another, returning a new Duration or None in the event of an overflow.
|
2020-10-19 21:15:24 +02:00
|
|
|
pub fn checked_div(self, rhs: u32) -> Option<Duration> {
|
2020-10-31 20:02:16 +01:00
|
|
|
self.ticks
|
|
|
|
.checked_div(rhs as _)
|
|
|
|
.map(|ticks| Duration { ticks })
|
2020-10-19 21:15:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Add for Duration {
|
|
|
|
type Output = Duration;
|
|
|
|
|
|
|
|
fn add(self, rhs: Duration) -> Duration {
|
|
|
|
self.checked_add(rhs)
|
|
|
|
.expect("overflow when adding durations")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AddAssign for Duration {
|
|
|
|
fn add_assign(&mut self, rhs: Duration) {
|
|
|
|
*self = *self + rhs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Sub for Duration {
|
|
|
|
type Output = Duration;
|
|
|
|
|
|
|
|
fn sub(self, rhs: Duration) -> Duration {
|
|
|
|
self.checked_sub(rhs)
|
|
|
|
.expect("overflow when subtracting durations")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SubAssign for Duration {
|
|
|
|
fn sub_assign(&mut self, rhs: Duration) {
|
|
|
|
*self = *self - rhs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Mul<u32> for Duration {
|
|
|
|
type Output = Duration;
|
|
|
|
|
|
|
|
fn mul(self, rhs: u32) -> Duration {
|
|
|
|
self.checked_mul(rhs)
|
|
|
|
.expect("overflow when multiplying duration by scalar")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Mul<Duration> for u32 {
|
|
|
|
type Output = Duration;
|
|
|
|
|
|
|
|
fn mul(self, rhs: Duration) -> Duration {
|
|
|
|
rhs * self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MulAssign<u32> for Duration {
|
|
|
|
fn mul_assign(&mut self, rhs: u32) {
|
|
|
|
*self = *self * rhs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Div<u32> for Duration {
|
|
|
|
type Output = Duration;
|
|
|
|
|
|
|
|
fn div(self, rhs: u32) -> Duration {
|
|
|
|
self.checked_div(rhs)
|
|
|
|
.expect("divide by zero error when dividing duration by scalar")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DivAssign<u32> for Duration {
|
|
|
|
fn div_assign(&mut self, rhs: u32) {
|
|
|
|
*self = *self / rhs;
|
|
|
|
}
|
|
|
|
}
|
2020-10-26 12:39:53 +01:00
|
|
|
|
|
|
|
impl<'a> fmt::Display for Duration {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{} ticks", self.ticks)
|
|
|
|
}
|
|
|
|
}
|