time.rs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. /*! Time structures.
  2. The `time` module contains structures used to represent both
  3. absolute and relative time.
  4. - [Instant] is used to represent absolute time.
  5. - [Duration] is used to represet relative time.
  6. [Instant]: struct.Instant.html
  7. [Duration]: struct.Duration.html
  8. */
  9. use core::{fmt, ops};
  10. /// A representation of an absolute time value.
  11. ///
  12. /// The `Instant` type is a wrapper around a `i64` value that
  13. /// represents a number of milliseconds, monotonically increasing
  14. /// since an arbitrary moment in time, such as system startup.
  15. ///
  16. /// * A value of `0` is inherently arbitrary.
  17. /// * A value less than `0` indicates a time before the starting
  18. /// point.
  19. #[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
  20. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  21. pub struct Instant {
  22. micros: i64,
  23. }
  24. impl Instant {
  25. /// Create a new `Instant` from a number of microseconds.
  26. pub fn from_micros<T: Into<i64>>(micros: T) -> Instant {
  27. Instant {
  28. micros: micros.into(),
  29. }
  30. }
  31. pub const fn from_micros_const(micros: i64) -> Instant {
  32. Instant { micros }
  33. }
  34. /// Create a new `Instant` from a number of milliseconds.
  35. pub fn from_millis<T: Into<i64>>(millis: T) -> Instant {
  36. Instant {
  37. micros: millis.into() * 1000,
  38. }
  39. }
  40. /// Create a new `Instant` from a number of milliseconds.
  41. pub const fn from_millis_const(millis: i64) -> Instant {
  42. Instant {
  43. micros: millis * 1000,
  44. }
  45. }
  46. /// Create a new `Instant` from a number of seconds.
  47. pub fn from_secs<T: Into<i64>>(secs: T) -> Instant {
  48. Instant {
  49. micros: secs.into() * 1000000,
  50. }
  51. }
  52. /// Create a new `Instant` from the current [std::time::SystemTime].
  53. ///
  54. /// See [std::time::SystemTime::now]
  55. ///
  56. /// [std::time::SystemTime]: https://doc.rust-lang.org/std/time/struct.SystemTime.html
  57. /// [std::time::SystemTime::now]: https://doc.rust-lang.org/std/time/struct.SystemTime.html#method.now
  58. #[cfg(feature = "std")]
  59. pub fn now() -> Instant {
  60. Self::from(::std::time::SystemTime::now())
  61. }
  62. /// The fractional number of milliseconds that have passed
  63. /// since the beginning of time.
  64. pub const fn millis(&self) -> i64 {
  65. self.micros % 1000000 / 1000
  66. }
  67. /// The fractional number of microseconds that have passed
  68. /// since the beginning of time.
  69. pub const fn micros(&self) -> i64 {
  70. self.micros % 1000000
  71. }
  72. /// The number of whole seconds that have passed since the
  73. /// beginning of time.
  74. pub const fn secs(&self) -> i64 {
  75. self.micros / 1000000
  76. }
  77. /// The total number of milliseconds that have passed since
  78. /// the beginning of time.
  79. pub const fn total_millis(&self) -> i64 {
  80. self.micros / 1000
  81. }
  82. /// The total number of milliseconds that have passed since
  83. /// the beginning of time.
  84. pub const fn total_micros(&self) -> i64 {
  85. self.micros
  86. }
  87. }
  88. #[cfg(feature = "std")]
  89. impl From<::std::time::Instant> for Instant {
  90. fn from(other: ::std::time::Instant) -> Instant {
  91. let elapsed = other.elapsed();
  92. Instant::from_micros((elapsed.as_secs() * 1_000000) as i64 + elapsed.subsec_micros() as i64)
  93. }
  94. }
  95. #[cfg(feature = "std")]
  96. impl From<::std::time::SystemTime> for Instant {
  97. fn from(other: ::std::time::SystemTime) -> Instant {
  98. let n = other
  99. .duration_since(::std::time::UNIX_EPOCH)
  100. .expect("start time must not be before the unix epoch");
  101. Self::from_micros(n.as_secs() as i64 * 1000000 + n.subsec_micros() as i64)
  102. }
  103. }
  104. #[cfg(feature = "std")]
  105. impl From<Instant> for ::std::time::SystemTime {
  106. fn from(val: Instant) -> Self {
  107. ::std::time::UNIX_EPOCH + ::std::time::Duration::from_micros(val.micros as u64)
  108. }
  109. }
  110. impl fmt::Display for Instant {
  111. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  112. write!(f, "{}.{}s", self.secs(), self.millis())
  113. }
  114. }
  115. impl ops::Add<Duration> for Instant {
  116. type Output = Instant;
  117. fn add(self, rhs: Duration) -> Instant {
  118. Instant::from_micros(self.micros + rhs.total_micros() as i64)
  119. }
  120. }
  121. impl ops::AddAssign<Duration> for Instant {
  122. fn add_assign(&mut self, rhs: Duration) {
  123. self.micros += rhs.total_micros() as i64;
  124. }
  125. }
  126. impl ops::Sub<Duration> for Instant {
  127. type Output = Instant;
  128. fn sub(self, rhs: Duration) -> Instant {
  129. Instant::from_micros(self.micros - rhs.total_micros() as i64)
  130. }
  131. }
  132. impl ops::SubAssign<Duration> for Instant {
  133. fn sub_assign(&mut self, rhs: Duration) {
  134. self.micros -= rhs.total_micros() as i64;
  135. }
  136. }
  137. impl ops::Sub<Instant> for Instant {
  138. type Output = Duration;
  139. fn sub(self, rhs: Instant) -> Duration {
  140. Duration::from_micros((self.micros - rhs.micros).abs() as u64)
  141. }
  142. }
  143. /// A relative amount of time.
  144. #[derive(Debug, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
  145. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  146. pub struct Duration {
  147. micros: u64,
  148. }
  149. impl Duration {
  150. pub const ZERO: Duration = Duration::from_micros(0);
  151. /// Create a new `Duration` from a number of microeconds.
  152. pub const fn from_micros(micros: u64) -> Duration {
  153. Duration { micros }
  154. }
  155. /// Create a new `Duration` from a number of milliseconds.
  156. pub const fn from_millis(millis: u64) -> Duration {
  157. Duration {
  158. micros: millis * 1000,
  159. }
  160. }
  161. /// Create a new `Instant` from a number of seconds.
  162. pub const fn from_secs(secs: u64) -> Duration {
  163. Duration {
  164. micros: secs * 1000000,
  165. }
  166. }
  167. /// The fractional number of milliseconds in this `Duration`.
  168. pub const fn millis(&self) -> u64 {
  169. self.micros / 1000 % 1000
  170. }
  171. /// The fractional number of milliseconds in this `Duration`.
  172. pub const fn micros(&self) -> u64 {
  173. self.micros % 1000000
  174. }
  175. /// The number of whole seconds in this `Duration`.
  176. pub const fn secs(&self) -> u64 {
  177. self.micros / 1000000
  178. }
  179. /// The total number of milliseconds in this `Duration`.
  180. pub const fn total_millis(&self) -> u64 {
  181. self.micros / 1000
  182. }
  183. /// The total number of microseconds in this `Duration`.
  184. pub const fn total_micros(&self) -> u64 {
  185. self.micros
  186. }
  187. }
  188. impl fmt::Display for Duration {
  189. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  190. write!(f, "{}.{:03}s", self.secs(), self.millis())
  191. }
  192. }
  193. impl ops::Add<Duration> for Duration {
  194. type Output = Duration;
  195. fn add(self, rhs: Duration) -> Duration {
  196. Duration::from_micros(self.micros + rhs.total_micros())
  197. }
  198. }
  199. impl ops::AddAssign<Duration> for Duration {
  200. fn add_assign(&mut self, rhs: Duration) {
  201. self.micros += rhs.total_micros();
  202. }
  203. }
  204. impl ops::Sub<Duration> for Duration {
  205. type Output = Duration;
  206. fn sub(self, rhs: Duration) -> Duration {
  207. Duration::from_micros(
  208. self.micros
  209. .checked_sub(rhs.total_micros())
  210. .expect("overflow when subtracting durations"),
  211. )
  212. }
  213. }
  214. impl ops::SubAssign<Duration> for Duration {
  215. fn sub_assign(&mut self, rhs: Duration) {
  216. self.micros = self
  217. .micros
  218. .checked_sub(rhs.total_micros())
  219. .expect("overflow when subtracting durations");
  220. }
  221. }
  222. impl ops::Mul<u32> for Duration {
  223. type Output = Duration;
  224. fn mul(self, rhs: u32) -> Duration {
  225. Duration::from_micros(self.micros * rhs as u64)
  226. }
  227. }
  228. impl ops::MulAssign<u32> for Duration {
  229. fn mul_assign(&mut self, rhs: u32) {
  230. self.micros *= rhs as u64;
  231. }
  232. }
  233. impl ops::Div<u32> for Duration {
  234. type Output = Duration;
  235. fn div(self, rhs: u32) -> Duration {
  236. Duration::from_micros(self.micros / rhs as u64)
  237. }
  238. }
  239. impl ops::DivAssign<u32> for Duration {
  240. fn div_assign(&mut self, rhs: u32) {
  241. self.micros /= rhs as u64;
  242. }
  243. }
  244. impl ops::Shl<u32> for Duration {
  245. type Output = Duration;
  246. fn shl(self, rhs: u32) -> Duration {
  247. Duration::from_micros(self.micros << rhs)
  248. }
  249. }
  250. impl ops::ShlAssign<u32> for Duration {
  251. fn shl_assign(&mut self, rhs: u32) {
  252. self.micros <<= rhs;
  253. }
  254. }
  255. impl ops::Shr<u32> for Duration {
  256. type Output = Duration;
  257. fn shr(self, rhs: u32) -> Duration {
  258. Duration::from_micros(self.micros >> rhs)
  259. }
  260. }
  261. impl ops::ShrAssign<u32> for Duration {
  262. fn shr_assign(&mut self, rhs: u32) {
  263. self.micros >>= rhs;
  264. }
  265. }
  266. impl From<::core::time::Duration> for Duration {
  267. fn from(other: ::core::time::Duration) -> Duration {
  268. Duration::from_micros(other.as_secs() * 1000000 + other.subsec_micros() as u64)
  269. }
  270. }
  271. impl From<Duration> for ::core::time::Duration {
  272. fn from(val: Duration) -> Self {
  273. ::core::time::Duration::from_micros(val.total_micros())
  274. }
  275. }
  276. #[cfg(test)]
  277. mod test {
  278. use super::*;
  279. #[test]
  280. fn test_instant_ops() {
  281. // std::ops::Add
  282. assert_eq!(
  283. Instant::from_millis(4) + Duration::from_millis(6),
  284. Instant::from_millis(10)
  285. );
  286. // std::ops::Sub
  287. assert_eq!(
  288. Instant::from_millis(7) - Duration::from_millis(5),
  289. Instant::from_millis(2)
  290. );
  291. }
  292. #[test]
  293. fn test_instant_getters() {
  294. let instant = Instant::from_millis(5674);
  295. assert_eq!(instant.secs(), 5);
  296. assert_eq!(instant.millis(), 674);
  297. assert_eq!(instant.total_millis(), 5674);
  298. }
  299. #[test]
  300. fn test_instant_display() {
  301. assert_eq!(format!("{}", Instant::from_millis(5674)), "5.674s");
  302. assert_eq!(format!("{}", Instant::from_millis(5000)), "5.0s");
  303. }
  304. #[test]
  305. #[cfg(feature = "std")]
  306. fn test_instant_conversions() {
  307. let mut epoc: ::std::time::SystemTime = Instant::from_millis(0).into();
  308. assert_eq!(
  309. Instant::from(::std::time::UNIX_EPOCH),
  310. Instant::from_millis(0)
  311. );
  312. assert_eq!(epoc, ::std::time::UNIX_EPOCH);
  313. epoc = Instant::from_millis(2085955200i64 * 1000).into();
  314. assert_eq!(
  315. epoc,
  316. ::std::time::UNIX_EPOCH + ::std::time::Duration::from_secs(2085955200)
  317. );
  318. }
  319. #[test]
  320. fn test_duration_ops() {
  321. // std::ops::Add
  322. assert_eq!(
  323. Duration::from_millis(40) + Duration::from_millis(2),
  324. Duration::from_millis(42)
  325. );
  326. // std::ops::Sub
  327. assert_eq!(
  328. Duration::from_millis(555) - Duration::from_millis(42),
  329. Duration::from_millis(513)
  330. );
  331. // std::ops::Mul
  332. assert_eq!(Duration::from_millis(13) * 22, Duration::from_millis(286));
  333. // std::ops::Div
  334. assert_eq!(Duration::from_millis(53) / 4, Duration::from_micros(13250));
  335. }
  336. #[test]
  337. fn test_duration_assign_ops() {
  338. let mut duration = Duration::from_millis(4735);
  339. duration += Duration::from_millis(1733);
  340. assert_eq!(duration, Duration::from_millis(6468));
  341. duration -= Duration::from_millis(1234);
  342. assert_eq!(duration, Duration::from_millis(5234));
  343. duration *= 4;
  344. assert_eq!(duration, Duration::from_millis(20936));
  345. duration /= 5;
  346. assert_eq!(duration, Duration::from_micros(4187200));
  347. }
  348. #[test]
  349. #[should_panic(expected = "overflow when subtracting durations")]
  350. fn test_sub_from_zero_overflow() {
  351. let _ = Duration::from_millis(0) - Duration::from_millis(1);
  352. }
  353. #[test]
  354. #[should_panic(expected = "attempt to divide by zero")]
  355. fn test_div_by_zero() {
  356. let _ = Duration::from_millis(4) / 0;
  357. }
  358. #[test]
  359. fn test_duration_getters() {
  360. let instant = Duration::from_millis(4934);
  361. assert_eq!(instant.secs(), 4);
  362. assert_eq!(instant.millis(), 934);
  363. assert_eq!(instant.total_millis(), 4934);
  364. }
  365. #[test]
  366. fn test_duration_conversions() {
  367. let mut std_duration = ::core::time::Duration::from_millis(4934);
  368. let duration: Duration = std_duration.into();
  369. assert_eq!(duration, Duration::from_millis(4934));
  370. assert_eq!(Duration::from(std_duration), Duration::from_millis(4934));
  371. std_duration = duration.into();
  372. assert_eq!(std_duration, ::core::time::Duration::from_millis(4934));
  373. }
  374. }