maitake/time/timer.rs
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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
//! A [`Timer`] tracks the current time, and notifies [`Sleep`] and [`Timeout`]
//! [future]s when they complete.
//!
//! See the [`Timer`] type's documentation for details.
//!
//! [`Sleep`]: crate::time::Sleep
//! [`Timeout`]: crate::time::Timeout
//! [future]: core::future::Future
use crate::{
loom::sync::{
atomic::{AtomicUsize, Ordering::*},
spin::{Mutex, MutexGuard},
},
util::expect_display,
};
use core::time::Duration;
use mycelium_util::fmt;
#[cfg(test)]
mod tests;
pub(super) mod global;
pub(super) mod sleep;
mod wheel;
pub use self::global::{set_global_timer, AlreadyInitialized};
use self::sleep::Sleep;
/// A `Timer` tracks the current time, and notifies [`Sleep`] and [`Timeout`]
/// [future]s when they complete.
///
/// This timer implementation uses a [hierarchical timer wheel][wheel] to track
/// large numbers of `Sleep` futures efficiently.
///
/// # Creating Futures
///
/// A `Timer` instance is necessary to create [`Sleep`] and [`Timeout`] futures.
/// Once a [`Sleep`] or [`Timeout`] future is created by a `Timer`, they are
/// *bound* to that `Timer` instance, and will be woken by the `Timer` once it
/// advances past the deadline for that future.
///
/// The [`Timer::sleep`] and [`Timer::timeout`] methods create [`Sleep`] and
/// [`Timeout`] futures, respectively. In addition, fallible
/// [`Timer::try_sleep`] and [`Timer::try_timeout`] methods are available, which
/// do not panic on invalid durations. These methods may be used in systems
/// where panicking must be avoided.
///
/// ### Setting a Global Timer
///
/// In addition to creating [`Sleep`] and [`Timeout`] futures using methods on a
/// `Timer` instance, a timer may also be set as a [global default timer]. This
/// allows the use of the free functions [`sleep`], [`timeout`],
/// [`try_sleep`], and [`try_timeout`], which do not require a reference to a
/// `Timer` to be passed in. See [the documentation on global timers][global]
/// for details.
///
/// # Driving Timers
///
/// ⚠️ *A timer wheel at rest will remain at rest unless acted
/// upon by an outside force!*
///
/// Since `maitake` is intended for bare-metal platforms without an operating
/// system, a `Timer` instance cannot automatically advance time. Instead, it
/// must be driven by a *time source*, which calls the [`Timer::advance`] method
/// and/or the [`Timer::pend_duration`] and [`Timer::force_advance`] methods.
///
/// Depending on the hardware platform, a time source may be a timer interrupt
/// that fires on a known interval[^1], or a timestamp that's read by reading
/// from a special register[^2], a memory-mapped IO location, or by executing a
/// special instruction[^3]. A combination of multiple time sources can also be
/// used.
///
/// In any case, the timer must be advanced periodically by the time source.
///
/// [^1]: Such as the [8253 PIT interrupt] on most x86 systems.
///
/// [^2]: Such as the [`CCNT` register] on ARMv7.
///
/// [^3]: Such as the [`rdtsc` instruction] on x86_64.
///
/// ### Interrupt-Driven Timers
///
/// When the timer is interrupt-driven, the interrupt handler for the timer
/// interrupt should call either the [`Timer::pend_duration`] or
/// [`Timer::advance`] methods.
///
/// [`Timer::advance`] will attempt to optimistically acquire a spinlock, and
/// advance the timer if it is acquired, or add to the pending tick counter if
/// the timer wheel is currently locked. Therefore, it is safe to call in an
/// interrupt handler, as it and cannot cause a deadlock.
///
/// However, if interrupt handlers must be extremely short, the
/// [`Timer::pend_duration`] method can be used, instead. This method will
/// *never* acquire a lock, and does not actually turn the timer wheel. Instead,
/// it always performs only a single atomic add. If the time source is an
/// interrupt handler which calls [`Timer::pend_duration`], though, the timer
/// wheel must be turned externally. This can be done by calling the
/// [`Timer::force_advance_ticks`] method periodically outside of the interrupt
/// handler, with a duration of 0 ticks. In general, this should be done as some
/// form of runtime bookkeeping action. For example, the timer can be advanced
/// in a system's run loop every time the [`Scheduler::tick`] method completes.
///
/// ### Periodic and One-Shot Timer Interrupts
///
/// Generally, hardware timer interrupts operate in one of two modes: _periodic_
/// timers, which fire on a regular interval, and _one-shot_ timers, where the
/// timer counts down to a particular time, fires the interrupt, and then stops
/// until it is reset by software. Depending on the particular hardware
/// platform, one or both of these timer modes may be available.
///
/// Using a periodic timer with the `maitake` timer wheel is quite simple:
/// construct the timer wheel with the minimum [granularity](#timer-granularity)
/// set to the period of the timer interrupt, and call
/// [`Timer::advance_ticks`]`(1)` or [`Timer::pend_ticks`]`(1)` in the interrupt
/// handler, as discused [above](#interrupt-driven-timers).
///
/// However, if the hardware platform provides a way to put the processor in a
/// low-power state while waiting for an interrupt, it may be desirable to
/// instead use a one-shot timer mode. When a timer wheel is advanced, it
/// returns a [`Turn`] structure describing what happened while advancing the
/// wheel. Among other things, this includes [the duration until the next
/// scheduled timer expires](Turn::time_to_next_deadline). If the timer is
/// advanced when the system has no other work to perform, and no new work was
/// scheduled as a result of advancing the timer wheel to the current time, the
/// system can then instruct the one-shot timer to fire in
/// [`Turn::time_to_next_deadline`], and put the processor in a low-power state
/// to wait for that interrupt. This allows the system to idle more efficiently
/// than if it was woken repeatedly by a periodic timer interrupt.
///
/// ### Timestamp-Driven Timers
///
/// When the timer is advanced by reading from a time source, the
/// [`Timer::advance`] method should generally be used to drive the timer. Prior
/// to calling [`Timer::advance`], the time source is read to determine the
/// duration that has elapsed since the last time [`Timer::advance`] was called,
/// and that duration is provided when calling `advance`.
///
/// This should occur periodically as part of a runtime loop (as discussed in
/// the previous section), such as every time [the scheduler is
/// ticked][`Scheduler::tick`]. Advancing the timer more frequently will result
/// in [`Sleep`] futures firing with a higher resolution, while less frequent
/// calls to [`Timer::advance`] will result in more noise in when [`Sleep`]
/// futures actually complete.
///
/// # Timer Granularity
///
/// Within the timer wheel, the duration of a [`Sleep`] future is represented as
/// a number of abstract "timer ticks". The actual duration in real life time
/// that's represented by a number of ticks depends on the timer's _granularity.
///
/// When constructing a `Timer` (e.g. by calling [`Timer::new`]), the minimum
/// granularity of the timer is selected by providing the [`Duration`]
/// represented by a single timer tick. The selected tick duration influences
/// both the resolution of the timer (i.e. the minimum difference in duration
/// between two `Sleep` futures that can be distinguished by the timer), and
/// the maximum duration that can be represented by a `Sleep` future (which is
/// limited by the size of a 64-bit integer).
///
/// A longer tick duration will allow represented longer sleeps, as the maximum
/// allowable sleep is the timer's granularity multiplied by [`u64::MAX`]. A
/// shorter tick duration will allow for more precise sleeps at the expense of
/// reducing the maximum allowed sleep.
///
/// When using an [interrupt-driven time source](#interrupt-driven-timers), the
/// tick duration should generally be the interval that the timer interrupt
/// fires at. A finer resolution won't have any benefit, as the timer only fires
/// at that frequency, and all sleeps that complete between two timer interrupts
/// will be woken at the same time anyway.
///
/// When using a [timestamp-driven time source](#timestamp-driven-timers),
/// selecting the resolution of the timestamp counter as the timer's tick
/// duration is probably a good choice.
///
/// [`Sleep`]: crate::time::Sleep
/// [`Timeout`]: crate::time::Timeout
/// [future]: core::future::Future
/// [wheel]: http://www.cs.columbia.edu/~nahum/w6998/papers/sosp87-timing-wheels.pdf
/// [8253 PIT interrupt]: https://en.wikipedia.org/wiki/Intel_8253#IBM_PC_programming_tips_and_hints
/// [`CCNT` register]: https://developer.arm.com/documentation/ddi0211/h/system-control-coprocessor/system-control-processor-register-descriptions/c15--cycle-counter-register--ccnt-
/// [`rdtsc` instruction]: https://www.felixcloutier.com/x86/rdtsc
/// [`Scheduler::tick`]: crate::scheduler::Scheduler::tick
/// [`sleep`]: crate::time::sleep()
/// [`timeout`]: crate::time::timeout()
/// [`try_sleep`]: crate::time::try_sleep()
/// [`try_timeout`]: crate::time::try_timeout()
/// [global]: crate::time#global-timers
pub struct Timer {
/// The duration represented by one tick of this timer.
///
/// This represents the timer's finest granularity; durations shorter than
/// this are rounded up to one tick.
tick_duration: Duration,
/// A count of how many timer ticks have elapsed since the last time the
/// timer's [`Core`] was updated.
///
/// The timer's [`advance`] method may be called in an interrupt
/// handler, so it cannot spin to lock the `Core` if it is busy. Instead, it
/// tries to acquire the [`Core`] lock, and if it can't, it increments
/// `pending_ticks`. The count of pending ticks is then consumed the next
/// time the timer interrupt is able to lock the [`Core`].
///
/// This strategy may result in some additional noise in when exactly a
/// sleep will fire, but it allows us to avoid potential deadlocks when the
/// timer is advanced from an interrupt handler.
///
/// [`Core`]: wheel::Core
/// [`advance`]: Timer::advance
pending_ticks: AtomicUsize,
/// The hierarchical timer wheel.
///
/// This is stored inside a [`Mutex`], which must be locked in order to
/// register a new [`Sleep`] future, cancel a [`Sleep`] that is currently
/// registered, and turn the timer wheel. `pending_ticks` is outside this
/// lock, in order to allow incrementing the time that has advanced in an
/// ISR without locking. Pending ticks are then consumed by locking the
/// wheel and advancing the current time, which can be done either
/// optimistically (*try* to consume any pending ticks when the lock is not
/// busy), or forcefully (spin to acquire the lock and then ensure all
/// pending ticks are *definitely* consumed).
///
/// XXX(eliza): would be nice if the "elapsed" counter could be moved
/// outside the lock so we can have a global `Instant::now()` without
/// locking...but that's hard to do without 64-bit atomics...
///
/// Also, we could consider trying to make locking more granular here so
/// that we lock individual wheels in order to register a sleep, but that
/// would be Complicated...and then we'd need some way to tell a sleep
/// future "you are on a different wheel now, so here is what you would have
/// to lock if you need to cancel yourself"...
core: Mutex<wheel::Core>,
}
/// Represents a single turn of the timer wheel.
#[derive(Debug)]
pub struct Turn {
/// The total number of ticks elapsed since the first time this timer wheel was
/// advanced.
pub now: Ticks,
/// The tick at which the next deadline in the timer wheel expires.
///
/// If this is `None`, there are currently no scheduled [`Sleep`] futures in the
/// wheel.
next_deadline_ticks: Option<Ticks>,
/// The number of [`Sleep`] futures that were woken up by this turn of the
/// timer wheel.
pub expired: usize,
/// The timer's tick duration (granularity); used for converting `now_ticks`
/// and `next_deadline_ticks` into [`Duration`].
tick_duration: Duration,
}
/// Timer ticks are always counted by a 64-bit unsigned integer.
pub type Ticks = u64;
/// Errors returned by [`Timer::try_sleep`], [`Timer::try_timeout`], and the
/// global [`try_sleep`] and [`try_timeout`] functions.
///
/// [`try_sleep`]: super::try_sleep
/// [`try_timeout`]: super::try_timeout
#[derive(Debug, Eq, PartialEq)]
#[non_exhaustive]
pub enum TimerError {
/// No [global default timer][global] has been set.
///
/// This error is returned by the [`try_sleep`] and [`try_timeout`]
/// functions only.
///
/// [global]: super#global-timers
/// [`try_sleep`]: super::try_sleep
/// [`try_timeout`]: super::try_timeout
NoGlobalTimer,
/// The requested [`Duration`] exceeds the [timer's maximum duration][max].
///
/// This error is returned by [`Timer::try_sleep`], [`Timer::try_timeout`],
/// and the global [`try_sleep`] and [`try_timeout`] functions.
///
/// [`try_sleep`]: super::try_sleep
/// [`try_timeout`]: super::try_timeout
/// [max]: Timer::max_duration
DurationTooLong {
/// The duration that was requested for a [`Sleep`] or [`Timeout`]
/// future.
///
/// [`Timeout`]: crate::time::Timeout
requested: Duration,
/// The [maximum duration][max] supported by this [`Timer`] instance.
///
/// [max]: Timer::max_duration
max: Duration,
},
}
// === impl Timer ===
impl Timer {
loom_const_fn! {
/// Returns a new `Timer` with the specified `tick_duration` for a single timer
/// tick.
#[must_use]
pub fn new(tick_duration: Duration) -> Self {
Self {
tick_duration,
pending_ticks: AtomicUsize::new(0),
core: Mutex::new(wheel::Core::new()),
}
}
}
/// Returns the maximum duration of [`Sleep`] futures driven by this timer.
pub fn max_duration(&self) -> Duration {
ticks_to_dur(self.tick_duration, u64::MAX)
}
/// Returns a [`Future`] that will complete in `duration`.
///
/// # Returns
///
/// The returned [`Sleep`] future will be driven by this timer, and will
/// complete once this timer has advanced by at least `duration`.
///
/// # Panics
///
/// This method panics if the provided duration exceeds the [maximum sleep
/// duration][max] allowed by this timer.
///
/// For a version of this function that does not panic, see
/// [`Timer::try_sleep`].
///
/// [global]: #global-timers
/// [max]: Timer::max_duration
/// [`Future`]: core::future::Future
#[track_caller]
pub fn sleep(&self, duration: Duration) -> Sleep<'_> {
expect_display(self.try_sleep(duration), "cannot create `Sleep` future")
}
/// Returns a [`Future`] that will complete in `duration`.
///
/// # Returns
///
/// - [`Ok`]`(`[`Sleep`]`)` if a new [`Sleep`] future was created
/// successfully.
/// - [`Err`]`(`[`TimerError::DurationTooLong`]`)` if the requested sleep
/// duration exceeds this timer's [maximum sleep
/// duration](Timer::max_duration`).
///
/// The returned [`Sleep`] future will be driven by this timer, and will
/// complete once this timer has advanced by at least `duration`.
///
/// # Panics
///
/// This method does not panic. For a version of this method that panics
/// rather than returning an error, see [`Timer::sleep`].
///
/// [`Future`]: core::future::Future
pub fn try_sleep(&self, duration: Duration) -> Result<Sleep<'_>, TimerError> {
let ticks = self.dur_to_ticks(duration)?;
Ok(self.sleep_ticks(ticks))
}
/// Returns a [`Future`] that will complete in `ticks` timer ticks.
///
/// # Returns
///
/// The returned [`Sleep`] future will be driven by this timer, and will
/// complete once this timer has advanced by at least `ticks` timer ticks.
///
/// [`Future`]: core::future::Future
#[track_caller]
pub fn sleep_ticks(&self, ticks: Ticks) -> Sleep<'_> {
Sleep::new(self, ticks)
}
/// Add pending time to the timer *without* turning the wheel.
///
/// This function will *never* acquire a lock, and will *never* notify any
/// waiting [`Sleep`] futures. It can be called in an interrupt handler that
/// cannot perform significant amounts of work.
///
/// However, if this method is used, then [`Timer::force_advance`] must be
/// called frequently from outside of the interrupt handler.
#[inline(always)]
pub fn pend_duration(&self, duration: Duration) {
let ticks = expect_display(
self.dur_to_ticks(duration),
"cannot add to pending duration",
);
self.pend_ticks(ticks)
}
/// Add pending ticks to the timer *without* turning the wheel.
///
/// This function will *never* acquire a lock, and will *never* notify any
/// waiting [`Sleep`] futures. It can be called in an interrupt handler that
/// cannot perform significant amounts of work.
///
/// However, if this method is used, then [`Timer::force_advance`] must be
/// called frequently from outside of the interrupt handler.
#[inline(always)]
#[track_caller]
pub fn pend_ticks(&self, ticks: Ticks) {
debug_assert!(
ticks < usize::MAX as u64,
"cannot pend more than `usize::MAX` ticks at once!"
);
self.pending_ticks.fetch_add(ticks as usize, Release);
}
/// Advance the timer by `duration`, potentially waking any [`Sleep`] futures
/// that have completed.
///
/// # Returns
///
/// - [`Some`]`(`[`Turn`]`)` if the lock was acquired and the wheel was
/// advanced. A [`Turn`] structure describes what occurred during this
/// turn of the wheel, including the [current time][elapsed] and the
/// [deadline of the next expiring timer][next], if one exists.
/// - [`None`] if the wheel was not advanced because the lock was already
/// held.
///
/// [elapsed]: Turn::elapsed
/// [next]: Turn::time_to_next_deadline
///
/// # Interrupt Safety
///
/// This method will *never* spin if the timer wheel lock is held; instead,
/// it will add any new ticks to a counter of "pending" ticks and return
/// immediately. Therefore, it is safe to call this method in an interrupt
/// handler, as it will never acquire a lock that may already be locked.
///
/// The [`force_advance`] method will spin to lock the timer wheel lock if
/// it is currently held, *ensuring* that any pending wakeups are processed.
/// That method should never be called in an interrupt handler.
///
/// If a timer is driven primarily by calling `advance` in an interrupt
/// handler, it may be desirable to occasionally call [`force_advance`]
/// *outside* of an interrupt handler (i.e., as as part of an occasional
/// runtime bookkeeping process). This ensures that any pending ticks are
/// observed by the timer in a relatively timely manner.
///
/// [`force_advance`]: Timer::force_advance
#[inline]
pub fn advance(&self, duration: Duration) {
let ticks = expect_display(self.dur_to_ticks(duration), "cannot advance timer");
self.advance_ticks(ticks)
}
/// Advance the timer by `ticks` timer ticks, potentially waking any [`Sleep`]
/// futures that have completed.
///
/// # Returns
///
/// - [`Some`]`(`[`Turn`]`)` if the lock was acquired and the wheel was
/// advanced. A [`Turn`] structure describes what occurred during this
/// turn of the wheel, including the [current time][elapsed] and the
/// [deadline of the next expiring timer][next], if one exists.
/// - [`None`] if the wheel was not advanced because the lock was already
/// held.
///
/// [elapsed]: Turn::elapsed
/// [next]: Turn::time_to_next_deadline
///
/// # Interrupt Safety
///
/// This method will *never* spin if the timer wheel lock is held; instead,
/// it will add any new ticks to a counter of "pending" ticks and return
/// immediately. Therefore, it is safe to call this method in an interrupt
/// handler, as it will never acquire a lock that may already be locked.
///
/// The [`force_advance_ticks`] method will spin to lock the timer wheel lock if
/// it is currently held, *ensuring* that any pending wakeups are processed.
/// That method should never be called in an interrupt handler.
///
/// If a timer is driven primarily by calling `advance` in an interrupt
/// handler, it may be desirable to occasionally call [`force_advance_ticks`]
/// *outside* of an interrupt handler (i.e., as as part of an occasional
/// runtime bookkeeping process). This ensures that any pending ticks are
/// observed by the timer in a relatively timely manner.
///
/// [`force_advance_ticks`]: Timer::force_advance_ticks
#[inline]
pub fn advance_ticks(&self, ticks: Ticks) {
// `advance` may be called in an ISR, so it can never actually spin.
// instead, if the timer wheel is busy (e.g. the timer ISR was called on
// another core, or if a `Sleep` future is currently canceling itself),
// we just add to a counter of pending ticks, and bail.
if let Some(core) = self.core.try_lock() {
trace!(ticks, "locked timer wheel; advancing");
self.advance_locked(core, ticks);
} else {
trace!(ticks, "could not lock timer wheel; pending");
// if the core of the timer wheel is already locked, add to the pending
// tick count, which we will then advance the wheel by when it becomes
// available.
// TODO(eliza): if pending ticks overflows that's probably Bad News
self.pend_ticks(ticks)
}
}
/// Advance the timer by `duration`, ensuring any `Sleep` futures that have
/// completed are woken, even if a lock must be acquired.
///
/// # Returns
///
/// A [`Turn`] structure describing what occurred during this turn of the
/// wheel, including including the [current time][elapsed] and the [deadline
/// of the next expiring timer][next], if one exists.
///
/// [elapsed]: Turn::elapsed
/// [next]: Turn::time_to_next_deadline
///
/// # Interrupt Safety
///
/// This method will spin to acquire the timer wheel lock if it is currently
/// held elsewhere. Therefore, this method must *NEVER* be called in an
/// interrupt handler!
///
/// If a timer is advanced inside an interrupt handler, use the [`advance`]
/// method instead. If a timer is advanced primarily by calls to
/// [`advance`], it may be desirable to occasionally call `force_advance`
/// outside an interrupt handler, to ensure that pending ticks are drained
/// frequently.
///
/// [`advance`]: Timer::advance
#[inline]
pub fn force_advance(&self, duration: Duration) -> Turn {
let ticks = expect_display(self.dur_to_ticks(duration), "cannot advance timer");
self.force_advance_ticks(ticks)
}
/// Advance the timer by `ticks` timer ticks, ensuring any `Sleep` futures
/// that have completed are woken, even if a lock must be acquired.
///
/// # Returns
///
/// A [`Turn`] structure describing what occurred during this turn of the
/// wheel, including including the [current time][elapsed] and the [deadline
/// of the next expiring timer][next], if one exists.
///
/// [elapsed]: Turn::elapsed
/// [next]: Turn::time_to_next_deadline
///
/// # Interrupt Safety
///
/// This method will spin to acquire the timer wheel lock if it is currently
/// held elsewhere. Therefore, this method must *NEVER* be called in an
/// interrupt handler!
///
/// If a timer is advanced inside an interrupt handler, use the [`advance_ticks`]
/// method instead. If a timer is advanced primarily by calls to
/// [`advance_ticks`], it may be desirable to occasionally call `force_advance`
/// outside an interrupt handler, to ensure that pending ticks are drained
/// frequently.
///
/// [`advance_ticks`]: Timer::advance_ticks
#[inline]
pub fn force_advance_ticks(&self, ticks: Ticks) -> Turn {
self.advance_locked(self.core.lock(), ticks)
}
fn advance_locked(&self, mut core: MutexGuard<'_, wheel::Core>, ticks: Ticks) -> Turn {
// take any pending ticks.
let pending_ticks = self.pending_ticks.swap(0, AcqRel) as Ticks;
// we do two separate `advance` calls here instead of advancing once
// with the sum, because `ticks` + `pending_ticks` could overflow.
let mut pend_exp = 0;
if pending_ticks > 0 {
let (expired, _next_deadline) = core.advance(pending_ticks);
pend_exp = expired;
}
let (expired, next_deadline) = core.advance(ticks);
Turn {
expired: expired.saturating_add(pend_exp),
next_deadline_ticks: next_deadline.map(|d| d.ticks),
now: core.now(),
tick_duration: self.tick_duration,
}
}
fn core(&self) -> MutexGuard<'_, wheel::Core> {
self.core.lock()
}
#[track_caller]
fn dur_to_ticks(&self, dur: Duration) -> Result<Ticks, TimerError> {
(dur.as_nanos() / self.tick_duration.as_nanos())
.try_into()
.map_err(|_| TimerError::DurationTooLong {
requested: dur,
max: self.max_duration(),
})
}
#[cfg(all(test, not(loom)))]
fn reset(&self) {
let mut core = self.core();
*core = wheel::Core::new();
self.pending_ticks.store(0, Release);
}
}
impl fmt::Debug for Timer {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Timer")
.field("tick_duration", &self.tick_duration)
.field("pending_ticks", &self.pending_ticks.load(Acquire))
.field("core", &fmt::opt(&self.core.try_lock()).or_else("<locked>"))
.finish()
}
}
// === impl Turn ===
impl Turn {
/// Returns the number of ticks until the deadline at which the next
/// [`Sleep`] future expires, or [`None`] if no sleep futures are currently
/// scheduled.
#[inline]
#[must_use]
pub fn ticks_to_next_deadline(&self) -> Option<Ticks> {
self.next_deadline_ticks.map(|deadline| deadline - self.now)
}
/// Returns the [`Duration`] from the current time to the deadline of the
/// next [`Sleep`] future, or [`None`] if no sleep futures are currently
/// scheduled.
#[inline]
#[must_use]
pub fn time_to_next_deadline(&self) -> Option<Duration> {
self.ticks_to_next_deadline().map(|deadline| ticks_to_dur(self.tick_duration, deadline))
}
/// Returns the total elapsed time since this timer wheel started running.
#[inline]
#[must_use]
pub fn elapsed(&self) -> Duration {
ticks_to_dur(self.tick_duration, self.now)
}
/// Returns `true` if there are currently pending [`Sleep`] futures
/// scheduled in this timer wheel.
#[inline]
#[must_use]
pub fn has_remaining(&self) -> bool {
self.next_deadline_ticks.is_some()
}
}
#[track_caller]
#[inline]
#[must_use]
fn ticks_to_dur(tick_duration: Duration, ticks: Ticks) -> Duration {
let nanos = tick_duration.subsec_nanos() as u64 * ticks;
let secs = tick_duration.as_secs() * ticks;
Duration::new(secs, nanos as u32)
}
// === impl TimerError ====
impl fmt::Display for TimerError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
TimerError::NoGlobalTimer => f.pad(
"no global timer has been initialized! \
`set_global_timer` must be called before calling \
this function.",
),
TimerError::DurationTooLong { requested, max } => write!(
f,
"requested duration {requested:?} exceeds this timer's \
maximum duration ({max:?}."
),
}
}
}
feature! {
#![feature = "core-error"]
impl core::error::Error for TimerError {}
}