123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443 |
- /*! Time structures.
- The `time` module contains structures used to represent both
- absolute and relative time.
- - [Instant] is used to represent absolute time.
- - [Duration] is used to represet relative time.
- [Instant]: struct.Instant.html
- [Duration]: struct.Duration.html
- */
- use core::{fmt, ops};
- /// A representation of an absolute time value.
- ///
- /// The `Instant` type is a wrapper around a `i64` value that
- /// represents a number of milliseconds, monotonically increasing
- /// since an arbitrary moment in time, such as system startup.
- ///
- /// * A value of `0` is inherently arbitrary.
- /// * A value less than `0` indicates a time before the starting
- /// point.
- #[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
- #[cfg_attr(feature = "defmt", derive(defmt::Format))]
- pub struct Instant {
- micros: i64,
- }
- impl Instant {
- /// Create a new `Instant` from a number of microseconds.
- pub fn from_micros<T: Into<i64>>(micros: T) -> Instant {
- Instant {
- micros: micros.into(),
- }
- }
- pub const fn from_micros_const(micros: i64) -> Instant {
- Instant { micros }
- }
- /// Create a new `Instant` from a number of milliseconds.
- pub fn from_millis<T: Into<i64>>(millis: T) -> Instant {
- Instant {
- micros: millis.into() * 1000,
- }
- }
- /// Create a new `Instant` from a number of milliseconds.
- pub const fn from_millis_const(millis: i64) -> Instant {
- Instant {
- micros: millis * 1000,
- }
- }
- /// Create a new `Instant` from a number of seconds.
- pub fn from_secs<T: Into<i64>>(secs: T) -> Instant {
- Instant {
- micros: secs.into() * 1000000,
- }
- }
- /// Create a new `Instant` from the current [std::time::SystemTime].
- ///
- /// See [std::time::SystemTime::now]
- ///
- /// [std::time::SystemTime]: https://doc.rust-lang.org/std/time/struct.SystemTime.html
- /// [std::time::SystemTime::now]: https://doc.rust-lang.org/std/time/struct.SystemTime.html#method.now
- #[cfg(feature = "std")]
- pub fn now() -> Instant {
- Self::from(::std::time::SystemTime::now())
- }
- /// The fractional number of milliseconds that have passed
- /// since the beginning of time.
- pub const fn millis(&self) -> i64 {
- self.micros % 1000000 / 1000
- }
- /// The fractional number of microseconds that have passed
- /// since the beginning of time.
- pub const fn micros(&self) -> i64 {
- self.micros % 1000000
- }
- /// The number of whole seconds that have passed since the
- /// beginning of time.
- pub const fn secs(&self) -> i64 {
- self.micros / 1000000
- }
- /// The total number of milliseconds that have passed since
- /// the beginning of time.
- pub const fn total_millis(&self) -> i64 {
- self.micros / 1000
- }
- /// The total number of milliseconds that have passed since
- /// the beginning of time.
- pub const fn total_micros(&self) -> i64 {
- self.micros
- }
- }
- #[cfg(feature = "std")]
- impl From<::std::time::Instant> for Instant {
- fn from(other: ::std::time::Instant) -> Instant {
- let elapsed = other.elapsed();
- Instant::from_micros((elapsed.as_secs() * 1_000000) as i64 + elapsed.subsec_micros() as i64)
- }
- }
- #[cfg(feature = "std")]
- impl From<::std::time::SystemTime> for Instant {
- fn from(other: ::std::time::SystemTime) -> Instant {
- let n = other
- .duration_since(::std::time::UNIX_EPOCH)
- .expect("start time must not be before the unix epoch");
- Self::from_micros(n.as_secs() as i64 * 1000000 + n.subsec_micros() as i64)
- }
- }
- #[cfg(feature = "std")]
- impl From<Instant> for ::std::time::SystemTime {
- fn from(val: Instant) -> Self {
- ::std::time::UNIX_EPOCH + ::std::time::Duration::from_micros(val.micros as u64)
- }
- }
- impl fmt::Display for Instant {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- write!(f, "{}.{}s", self.secs(), self.millis())
- }
- }
- impl ops::Add<Duration> for Instant {
- type Output = Instant;
- fn add(self, rhs: Duration) -> Instant {
- Instant::from_micros(self.micros + rhs.total_micros() as i64)
- }
- }
- impl ops::AddAssign<Duration> for Instant {
- fn add_assign(&mut self, rhs: Duration) {
- self.micros += rhs.total_micros() as i64;
- }
- }
- impl ops::Sub<Duration> for Instant {
- type Output = Instant;
- fn sub(self, rhs: Duration) -> Instant {
- Instant::from_micros(self.micros - rhs.total_micros() as i64)
- }
- }
- impl ops::SubAssign<Duration> for Instant {
- fn sub_assign(&mut self, rhs: Duration) {
- self.micros -= rhs.total_micros() as i64;
- }
- }
- impl ops::Sub<Instant> for Instant {
- type Output = Duration;
- fn sub(self, rhs: Instant) -> Duration {
- Duration::from_micros((self.micros - rhs.micros).abs() as u64)
- }
- }
- /// A relative amount of time.
- #[derive(Debug, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
- #[cfg_attr(feature = "defmt", derive(defmt::Format))]
- pub struct Duration {
- micros: u64,
- }
- impl Duration {
- pub const ZERO: Duration = Duration::from_micros(0);
- /// Create a new `Duration` from a number of microeconds.
- pub const fn from_micros(micros: u64) -> Duration {
- Duration { micros }
- }
- /// Create a new `Duration` from a number of milliseconds.
- pub const fn from_millis(millis: u64) -> Duration {
- Duration {
- micros: millis * 1000,
- }
- }
- /// Create a new `Instant` from a number of seconds.
- pub const fn from_secs(secs: u64) -> Duration {
- Duration {
- micros: secs * 1000000,
- }
- }
- /// The fractional number of milliseconds in this `Duration`.
- pub const fn millis(&self) -> u64 {
- self.micros / 1000 % 1000
- }
- /// The fractional number of milliseconds in this `Duration`.
- pub const fn micros(&self) -> u64 {
- self.micros % 1000000
- }
- /// The number of whole seconds in this `Duration`.
- pub const fn secs(&self) -> u64 {
- self.micros / 1000000
- }
- /// The total number of milliseconds in this `Duration`.
- pub const fn total_millis(&self) -> u64 {
- self.micros / 1000
- }
- /// The total number of microseconds in this `Duration`.
- pub const fn total_micros(&self) -> u64 {
- self.micros
- }
- }
- impl fmt::Display for Duration {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- write!(f, "{}.{:03}s", self.secs(), self.millis())
- }
- }
- impl ops::Add<Duration> for Duration {
- type Output = Duration;
- fn add(self, rhs: Duration) -> Duration {
- Duration::from_micros(self.micros + rhs.total_micros())
- }
- }
- impl ops::AddAssign<Duration> for Duration {
- fn add_assign(&mut self, rhs: Duration) {
- self.micros += rhs.total_micros();
- }
- }
- impl ops::Sub<Duration> for Duration {
- type Output = Duration;
- fn sub(self, rhs: Duration) -> Duration {
- Duration::from_micros(
- self.micros
- .checked_sub(rhs.total_micros())
- .expect("overflow when subtracting durations"),
- )
- }
- }
- impl ops::SubAssign<Duration> for Duration {
- fn sub_assign(&mut self, rhs: Duration) {
- self.micros = self
- .micros
- .checked_sub(rhs.total_micros())
- .expect("overflow when subtracting durations");
- }
- }
- impl ops::Mul<u32> for Duration {
- type Output = Duration;
- fn mul(self, rhs: u32) -> Duration {
- Duration::from_micros(self.micros * rhs as u64)
- }
- }
- impl ops::MulAssign<u32> for Duration {
- fn mul_assign(&mut self, rhs: u32) {
- self.micros *= rhs as u64;
- }
- }
- impl ops::Div<u32> for Duration {
- type Output = Duration;
- fn div(self, rhs: u32) -> Duration {
- Duration::from_micros(self.micros / rhs as u64)
- }
- }
- impl ops::DivAssign<u32> for Duration {
- fn div_assign(&mut self, rhs: u32) {
- self.micros /= rhs as u64;
- }
- }
- impl ops::Shl<u32> for Duration {
- type Output = Duration;
- fn shl(self, rhs: u32) -> Duration {
- Duration::from_micros(self.micros << rhs)
- }
- }
- impl ops::ShlAssign<u32> for Duration {
- fn shl_assign(&mut self, rhs: u32) {
- self.micros <<= rhs;
- }
- }
- impl ops::Shr<u32> for Duration {
- type Output = Duration;
- fn shr(self, rhs: u32) -> Duration {
- Duration::from_micros(self.micros >> rhs)
- }
- }
- impl ops::ShrAssign<u32> for Duration {
- fn shr_assign(&mut self, rhs: u32) {
- self.micros >>= rhs;
- }
- }
- impl From<::core::time::Duration> for Duration {
- fn from(other: ::core::time::Duration) -> Duration {
- Duration::from_micros(other.as_secs() * 1000000 + other.subsec_micros() as u64)
- }
- }
- impl From<Duration> for ::core::time::Duration {
- fn from(val: Duration) -> Self {
- ::core::time::Duration::from_micros(val.total_micros())
- }
- }
- #[cfg(test)]
- mod test {
- use super::*;
- #[test]
- fn test_instant_ops() {
- // std::ops::Add
- assert_eq!(
- Instant::from_millis(4) + Duration::from_millis(6),
- Instant::from_millis(10)
- );
- // std::ops::Sub
- assert_eq!(
- Instant::from_millis(7) - Duration::from_millis(5),
- Instant::from_millis(2)
- );
- }
- #[test]
- fn test_instant_getters() {
- let instant = Instant::from_millis(5674);
- assert_eq!(instant.secs(), 5);
- assert_eq!(instant.millis(), 674);
- assert_eq!(instant.total_millis(), 5674);
- }
- #[test]
- fn test_instant_display() {
- assert_eq!(format!("{}", Instant::from_millis(5674)), "5.674s");
- assert_eq!(format!("{}", Instant::from_millis(5000)), "5.0s");
- }
- #[test]
- #[cfg(feature = "std")]
- fn test_instant_conversions() {
- let mut epoc: ::std::time::SystemTime = Instant::from_millis(0).into();
- assert_eq!(
- Instant::from(::std::time::UNIX_EPOCH),
- Instant::from_millis(0)
- );
- assert_eq!(epoc, ::std::time::UNIX_EPOCH);
- epoc = Instant::from_millis(2085955200i64 * 1000).into();
- assert_eq!(
- epoc,
- ::std::time::UNIX_EPOCH + ::std::time::Duration::from_secs(2085955200)
- );
- }
- #[test]
- fn test_duration_ops() {
- // std::ops::Add
- assert_eq!(
- Duration::from_millis(40) + Duration::from_millis(2),
- Duration::from_millis(42)
- );
- // std::ops::Sub
- assert_eq!(
- Duration::from_millis(555) - Duration::from_millis(42),
- Duration::from_millis(513)
- );
- // std::ops::Mul
- assert_eq!(Duration::from_millis(13) * 22, Duration::from_millis(286));
- // std::ops::Div
- assert_eq!(Duration::from_millis(53) / 4, Duration::from_micros(13250));
- }
- #[test]
- fn test_duration_assign_ops() {
- let mut duration = Duration::from_millis(4735);
- duration += Duration::from_millis(1733);
- assert_eq!(duration, Duration::from_millis(6468));
- duration -= Duration::from_millis(1234);
- assert_eq!(duration, Duration::from_millis(5234));
- duration *= 4;
- assert_eq!(duration, Duration::from_millis(20936));
- duration /= 5;
- assert_eq!(duration, Duration::from_micros(4187200));
- }
- #[test]
- #[should_panic(expected = "overflow when subtracting durations")]
- fn test_sub_from_zero_overflow() {
- let _ = Duration::from_millis(0) - Duration::from_millis(1);
- }
- #[test]
- #[should_panic(expected = "attempt to divide by zero")]
- fn test_div_by_zero() {
- let _ = Duration::from_millis(4) / 0;
- }
- #[test]
- fn test_duration_getters() {
- let instant = Duration::from_millis(4934);
- assert_eq!(instant.secs(), 4);
- assert_eq!(instant.millis(), 934);
- assert_eq!(instant.total_millis(), 4934);
- }
- #[test]
- fn test_duration_conversions() {
- let mut std_duration = ::core::time::Duration::from_millis(4934);
- let duration: Duration = std_duration.into();
- assert_eq!(duration, Duration::from_millis(4934));
- assert_eq!(Duration::from(std_duration), Duration::from_millis(4934));
- std_duration = duration.into();
- assert_eq!(std_duration, ::core::time::Duration::from_millis(4934));
- }
- }
|