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
//! A list of timed events that will be triggered sequentially when the timer
//! expires.
//!
//! # Examples
//!
//! ```
//! use timer_list::{TimerEvent, TimerEventFn, TimerList};
//! use std::time::{Duration, Instant};
//!
//! let mut timer_list = TimerList::new();
//!
//! // set a timer that will be triggered after 1 second
//! let start_time = Instant::now();
//! timer_list.set(Duration::from_secs(1), TimerEventFn::new(|now| {
//! println!("timer event after {:?}", now);
//! }));
//!
//! while !timer_list.is_empty() {
//! // check if there is any event that is expired
//! let now = Instant::now().duration_since(start_time);
//! if let Some((deadline, event)) = timer_list.expire_one(now) {
//! // trigger the event, will print "timer event after 1.00s"
//! event.callback(now);
//! break;
//! }
//! std::thread::sleep(Duration::from_millis(10)); // relax the CPU
//! }
//! ```
#![cfg_attr(not(test), no_std)]
extern crate alloc;
use alloc::{boxed::Box, collections::BinaryHeap};
use core::cmp::{Ord, Ordering, PartialOrd};
use core::time::Duration;
/// The type of the time value.
///
/// Currently it is just an alias of [`core::time::Duration`].
pub type TimeValue = Duration;
/// A trait that all timed events must implement.
pub trait TimerEvent {
/// Callback function that will be called when the timer expires.
fn callback(self, now: TimeValue);
}
struct TimerEventWrapper<E> {
deadline: TimeValue,
event: E,
}
/// A list of timed events.
///
/// It internally uses a min-heap to store the events by deadline, make it
/// possible to trigger these events sequentially.
pub struct TimerList<E: TimerEvent> {
events: BinaryHeap<TimerEventWrapper<E>>,
}
impl<E> PartialOrd for TimerEventWrapper<E> {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other)) // reverse ordering for Min-heap
}
}
impl<E> Ord for TimerEventWrapper<E> {
fn cmp(&self, other: &Self) -> Ordering {
other.deadline.cmp(&self.deadline) // reverse ordering for Min-heap
}
}
impl<E> PartialEq for TimerEventWrapper<E> {
fn eq(&self, other: &Self) -> bool {
self.deadline.eq(&other.deadline)
}
}
impl<E> Eq for TimerEventWrapper<E> {}
impl<E: TimerEvent> TimerList<E> {
/// Creates a new empty timer list.
pub fn new() -> Self {
Self {
events: BinaryHeap::new(),
}
}
/// Whether there is no timed event.
#[inline]
pub fn is_empty(&self) -> bool {
self.events.is_empty()
}
/// Set a timed event that will be triggered at `deadline`.
pub fn set(&mut self, deadline: TimeValue, event: E) {
self.events.push(TimerEventWrapper { deadline, event });
}
/// Cancel all events that meet the condition.
pub fn cancel<F>(&mut self, condition: F)
where
F: Fn(&E) -> bool,
{
// TODO: performance optimization
self.events.retain(|e| !condition(&e.event));
}
/// Get the deadline of the most recent event.
#[inline]
pub fn next_deadline(&self) -> Option<TimeValue> {
self.events.peek().map(|e| e.deadline)
}
/// Try to expire the earliest event that passed the deadline at the given
/// time.
///
/// Returns `None` if no event is expired.
pub fn expire_one(&mut self, now: TimeValue) -> Option<(TimeValue, E)> {
if let Some(e) = self.events.peek() {
if e.deadline <= now {
return self.events.pop().map(|e| (e.deadline, e.event));
}
}
None
}
}
impl<E: TimerEvent> Default for TimerList<E> {
fn default() -> Self {
Self::new()
}
}
/// A simple wrapper of a closure that implements the [`TimerEvent`] trait.
///
/// So that it can be used as in the [`TimerList`].
pub struct TimerEventFn(Box<dyn FnOnce(TimeValue) + 'static>);
impl TimerEventFn {
/// Constructs a new [`TimerEventFn`] from a closure.
pub fn new<F>(f: F) -> Self
where
F: FnOnce(TimeValue) + 'static,
{
Self(Box::new(f))
}
}
impl TimerEvent for TimerEventFn {
fn callback(self, now: TimeValue) {
(self.0)(now)
}
}
#[cfg(test)]
mod tests {
use super::{TimeValue, TimerEvent, TimerEventFn, TimerList};
use core::sync::atomic::{AtomicUsize, Ordering};
use std::time::{Duration, Instant};
#[test]
fn test_timer_list() {
const EVENT_ORDER: &[usize; 4] = &[1, 4, 3, 0]; // timer 2 was canceled
static COUNT: AtomicUsize = AtomicUsize::new(0);
struct TestTimerEvent(usize, TimeValue);
impl TimerEvent for TestTimerEvent {
fn callback(self, now: TimeValue) {
let idx = COUNT.fetch_add(1, Ordering::SeqCst);
assert_eq!(self.0, EVENT_ORDER[idx]);
println!(
"timer {} expired at {:?}, delta = {:?}",
self.0,
now,
now - self.1
);
}
}
let mut timer_list = TimerList::new();
let start_time = Instant::now();
let deadlines = [
Duration::new(3, 0), // 3.0 sec
Duration::from_micros(500_000), // 0.5 sec
Duration::from_secs(4), // 4.0 sec, canceled
Duration::new(2, 990_000_000), // 2.99 sec
Duration::from_millis(1000), // 1.0 sec,
];
for (i, &ddl) in deadlines.iter().enumerate() {
timer_list.set(ddl, TestTimerEvent(i, ddl));
}
while !timer_list.is_empty() {
let now = Instant::now().duration_since(start_time);
if now.as_secs() > 3 {
timer_list.cancel(|e| e.0 == 2);
}
while let Some((_deadline, event)) = timer_list.expire_one(now) {
event.callback(now);
}
std::thread::sleep(Duration::from_millis(10)); // sleep 10 ms
}
assert_eq!(COUNT.load(Ordering::SeqCst), 4);
}
#[test]
fn test_timer_list_fn() {
let mut timer_list = TimerList::new();
let start_time = Instant::now();
let deadlines = [
Duration::new(1, 1_000_000), // 1.001 sec
Duration::from_micros(750_000), // 0.75 sec
];
for ddl in deadlines {
timer_list.set(
ddl,
TimerEventFn::new(|now| println!("timer fn expired at {:?}", now)),
);
}
while !timer_list.is_empty() {
let now = Instant::now().duration_since(start_time);
while let Some((_deadline, event)) = timer_list.expire_one(now) {
event.callback(now);
}
}
}
}