2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-03-10 15:37:05 -04:00
|
|
|
|
|
|
|
//! This module helps deno implement timers.
|
|
|
|
//!
|
|
|
|
//! As an optimization, we want to avoid an expensive calls into rust for every
|
|
|
|
//! setTimeout in JavaScript. Thus in //js/timers.ts a data structure is
|
|
|
|
//! implemented that calls into Rust for only the smallest timeout. Thus we
|
|
|
|
//! only need to be able to start and cancel a single timer (or Delay, as Tokio
|
|
|
|
//! calls it) for an entire Isolate. This is what is implemented here.
|
|
|
|
|
2019-11-22 12:46:57 -05:00
|
|
|
use crate::futures::TryFutureExt;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::channel::oneshot;
|
|
|
|
use futures::future::FutureExt;
|
|
|
|
use std::future::Future;
|
2019-03-10 15:37:05 -04:00
|
|
|
use std::time::Instant;
|
2019-12-30 08:57:17 -05:00
|
|
|
use tokio;
|
2019-03-10 15:37:05 -04:00
|
|
|
|
2019-03-20 18:55:52 -04:00
|
|
|
#[derive(Default)]
|
2019-03-10 15:37:05 -04:00
|
|
|
pub struct GlobalTimer {
|
|
|
|
tx: Option<oneshot::Sender<()>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GlobalTimer {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { tx: None }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cancel(&mut self) {
|
|
|
|
if let Some(tx) = self.tx.take() {
|
|
|
|
tx.send(()).ok();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new_timeout(
|
|
|
|
&mut self,
|
|
|
|
deadline: Instant,
|
2019-11-16 19:17:47 -05:00
|
|
|
) -> impl Future<Output = Result<(), ()>> {
|
2019-03-10 15:37:05 -04:00
|
|
|
if self.tx.is_some() {
|
|
|
|
self.cancel();
|
|
|
|
}
|
|
|
|
assert!(self.tx.is_none());
|
|
|
|
|
|
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
self.tx = Some(tx);
|
|
|
|
|
2019-12-30 08:57:17 -05:00
|
|
|
let delay = tokio::time::delay_until(deadline.into());
|
2019-11-22 12:46:57 -05:00
|
|
|
let rx = rx
|
|
|
|
.map_err(|err| panic!("Unexpected error in receiving channel {:?}", err));
|
2019-03-10 15:37:05 -04:00
|
|
|
|
2019-11-16 19:17:47 -05:00
|
|
|
futures::future::select(delay, rx).then(|_| futures::future::ok(()))
|
2019-03-10 15:37:05 -04:00
|
|
|
}
|
|
|
|
}
|