use crate::Error;
use futures_util::{select, FutureExt};
use std::future::Future;
use std::time::Duration;
pub use time::{delay_for, interval};
pub(crate) async fn timeout<F, T, E>(duration: Duration, f: F) -> Result<T, Error<E>>
where
F: Future<Output = Result<T, Error<E>>>,
{
select! {
() = delay_for(duration).fuse() => Err(Error::Timeout),
rsp = f.fuse() => rsp,
}
}
mod time {
use std::time::Duration;
use std::time::Instant;
use futures_timer::Delay;
pub struct Interval {
timer: Option<Delay>,
interval: Duration,
}
impl Interval {
pub async fn tick(&mut self) -> Instant {
let timer = self.timer.take().unwrap();
timer.await;
let now = Instant::now();
self.timer = Some(Delay::new(self.interval));
now
}
}
pub fn interval(duration: Duration) -> Interval {
Interval {
timer: Some(Delay::new(Duration::from_secs(0))),
interval: duration,
}
}
#[must_use = "This does nothing if you do not await"]
pub fn delay_for(duration: Duration) -> Delay {
Delay::new(duration)
}
}