use std::cell::Cell; use std::future::Future; use std::pin::Pin; use std::sync::atomic::{AtomicUsize, Ordering}; use std::task::{Context, Poll}; use std::thread; use std::time::Duration;
use async_task::Runnable; use atomic_waker::AtomicWaker;
// Creates a future with event counters. // // Usage: `future!(f, get_waker, POLL, DROP)` // // The future `f` always sleeps for 200 ms, and returns `Poll::Ready` the second time it is polled. // When it gets polled, `POLL` is incremented. // When it gets dropped, `DROP` is incremented. // // Every time the future is run, it stores the waker into a global variable. // This waker can be extracted using the `get_waker()` function.
macro_rules! future {
($name:pat, $get_waker:pat, $poll:ident, $drop:ident) => { static $poll: AtomicUsize = AtomicUsize::new(0); static $drop: AtomicUsize = AtomicUsize::new(0); static WAKER: AtomicWaker = AtomicWaker::new();
let ($name, $get_waker) = { struct Fut(Cell<bool>, Box<i32>);
// Creates a schedule function with event counters. // // Usage: `schedule!(s, chan, SCHED, DROP)` // // The schedule function `s` pushes the task into `chan`. // When it gets invoked, `SCHED` is incremented. // When it gets dropped, `DROP` is incremented. // // Receiver `chan` extracts the task when it is scheduled.
macro_rules! schedule {
($name:pat, $chan:pat, $sched:ident, $drop:ident) => { static $drop: AtomicUsize = AtomicUsize::new(0); static $sched: AtomicUsize = AtomicUsize::new(0);
let ($name, $chan) = { let (s, r) = flume::unbounded();
struct Guard(Box<i32>);
impl Drop for Guard { fn drop(&mutself) {
$drop.fetch_add(1, Ordering::SeqCst);
}
}
let guard = Guard(Box::new(0)); let sched = move |runnable: Runnable| { let _ = &guard;
$sched.fetch_add(1, Ordering::SeqCst);
s.send(runnable).unwrap();
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.