1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-18 20:01:48 +01:00

add low res timer service

This commit is contained in:
Nikolay Kim 2018-09-19 15:05:14 -07:00
parent 4c422983ba
commit ffe73c6875
2 changed files with 99 additions and 0 deletions

View File

@ -65,3 +65,4 @@ pub mod server;
pub mod service;
pub mod ssl;
pub mod stream;
pub mod lowrestimer;

98
src/lowrestimer.rs Normal file
View File

@ -0,0 +1,98 @@
use std::cell::RefCell;
use std::rc::Rc;
use std::time::{Duration, Instant};
use futures::{Future, Poll, Async};
use futures::future::{ok, FutureResult};
use tokio_current_thread::spawn;
use tokio_timer::sleep;
use super::service::{Service, NewService};
#[derive(Clone, Debug)]
pub struct LowResTimer(Rc<RefCell<Inner>>);
#[derive(Debug)]
struct Inner {
interval: Duration,
current: Option<Instant>,
}
impl Inner {
fn new(interval: Duration) -> Self {
Inner {
interval,
current: None
}
}
}
impl LowResTimer {
pub fn with_interval(interval: Duration) -> LowResTimer {
LowResTimer(Rc::new(RefCell::new(Inner::new(interval))))
}
}
impl Default for LowResTimer {
fn default() -> Self {
LowResTimer(Rc::new(RefCell::new(Inner::new(Duration::from_secs(1)))))
}
}
impl NewService for LowResTimer {
type Request = ();
type Response = Instant;
type Error = ();
type InitError = ();
type Service = LowResTimerService;
type Future = FutureResult<Self::Service, Self::InitError>;
fn new_service(&self) -> Self::Future {
ok(LowResTimerService(self.0.clone()))
}
}
#[derive(Clone, Debug)]
pub struct LowResTimerService(Rc<RefCell<Inner>>);
impl LowResTimerService {
pub fn with_interval(interval: Duration) -> LowResTimerService {
LowResTimerService(Rc::new(RefCell::new(Inner::new(interval))))
}
}
impl Service for LowResTimerService {
type Request = ();
type Response = Instant;
type Error = ();
type Future = FutureResult<Self::Response, Self::Error>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
Ok(Async::Ready(()))
}
fn call(&mut self, _: ()) -> Self::Future {
let cur = self.0.borrow().current.clone();
if let Some(cur) = cur {
ok(cur)
} else {
let now = Instant::now();
let inner = self.0.clone();
let interval = {
let mut b = inner.borrow_mut();
b.current = Some(now);
b.interval
};
spawn(
sleep(interval)
.map_err(|_| panic!())
.and_then(move|_| {
inner.borrow_mut().current.take();
Ok(())
}));
ok(now)
}
}
}