Files
tokio/tokio-timer/src/timer/handle.rs
T

129 lines
3.9 KiB
Rust
Raw Normal View History

2018-03-30 14:21:48 -07:00
use {Error, Delay, Deadline, Interval};
2018-03-28 22:26:47 -07:00
use timer::{Registration, Inner};
use tokio_executor::Enter;
use std::cell::RefCell;
use std::sync::{Arc, Weak};
use std::time::{Duration, Instant};
/// Handle to timer instance.
///
2018-03-30 14:21:48 -07:00
/// The `Handle` allows creating `Delay` instances that are driven by the
2018-03-28 22:26:47 -07:00
/// associated timer.
///
/// A `Handle` is obtained by calling [`Timer::handle`].
///
/// [`Timer::handle`]: struct.Timer.html#method.handle
#[derive(Debug, Clone)]
pub struct Handle {
inner: Weak<Inner>,
}
/// Tracks the timer for the current execution context.
thread_local!(static CURRENT_TIMER: RefCell<Option<Handle>> = RefCell::new(None));
/// Set the default timer for the duration of the closure.
///
2018-03-30 14:21:48 -07:00
/// From within the closure, [`Delay`] instances that are created via
/// [`Delay::new`] can be used.
2018-03-28 22:26:47 -07:00
///
/// # Panics
///
/// This function panics if there already is a default timer set.
///
2018-03-30 14:21:48 -07:00
/// [`Delay`]: ../struct.Delay.html
2018-07-22 13:35:30 -07:00
/// [`Delay::new`]: ../struct.Delay.html#method.new
2018-03-28 22:26:47 -07:00
pub fn with_default<F, R>(handle: &Handle, enter: &mut Enter, f: F) -> R
where F: FnOnce(&mut Enter) -> R
{
// Ensure that the timer is removed from the thread-local context
// when leaving the scope. This handles cases that involve panicking.
struct Reset;
impl Drop for Reset {
fn drop(&mut self) {
CURRENT_TIMER.with(|current| {
let mut current = current.borrow_mut();
*current = None;
});
}
}
// This ensures the value for the current timer gets reset even if there is
// a panic.
let _r = Reset;
CURRENT_TIMER.with(|current| {
{
let mut current = current.borrow_mut();
assert!(current.is_none(), "default Tokio timer already set \
for execution context");
*current = Some(handle.clone());
}
f(enter)
})
}
impl Handle {
pub(crate) fn new(inner: Weak<Inner>) -> Handle {
Handle { inner }
}
/// Returns a handle to the current timer.
///
/// The current timer is the timer that is currently set as default using
/// [`with_default`].
///
/// This function should only be called from within the context of
/// [`with_default`]. Calling this function from outside of this context
2018-03-30 14:21:48 -07:00
/// will return a `Handle` that does not reference a timer. `Delay`
2018-03-28 22:26:47 -07:00
/// instances created with this handle will error.
///
/// [`with_default`]: ../fn.with_default.html
pub fn current() -> Handle {
Handle::try_current()
.unwrap_or(Handle { inner: Weak::new() })
}
2018-03-30 14:21:48 -07:00
/// Create a `Delay` driven by this handle's associated `Timer`.
pub fn delay(&self, deadline: Instant) -> Delay {
2018-03-28 22:26:47 -07:00
let registration = Registration::new_with_handle(deadline, self.clone());
2018-03-30 14:21:48 -07:00
Delay::new_with_registration(deadline, registration)
2018-03-28 22:26:47 -07:00
}
/// Create a `Deadline` driven by this handle's associated `Timer`.
pub fn deadline<T>(&self, future: T, deadline: Instant) -> Deadline<T> {
2018-03-30 14:21:48 -07:00
Deadline::new_with_delay(future, self.delay(deadline))
2018-03-28 22:26:47 -07:00
}
/// Create a new `Interval` that starts at `at` and yields every `duration`
/// interval after that.
pub fn interval(&self, at: Instant, duration: Duration) -> Interval {
2018-03-30 14:21:48 -07:00
Interval::new_with_delay(self.delay(at), duration)
2018-03-28 22:26:47 -07:00
}
/// Try to get a handle to the current timer.
///
/// Returns `Err` if no handle is found.
pub(crate) fn try_current() -> Result<Handle, Error> {
CURRENT_TIMER.with(|current| {
match *current.borrow() {
Some(ref handle) => Ok(handle.clone()),
None => Err(Error::shutdown()),
}
})
}
/// Try to return a strong ref to the inner
pub(crate) fn inner(&self) -> Option<Arc<Inner>> {
self.inner.upgrade()
}
/// Consume the handle, returning the weak Inner ref.
pub(crate) fn into_inner(self) -> Weak<Inner> {
self.inner
}
}