-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8f3034
commit 7cb25a7
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
use std::{ | ||
future::Future, | ||
pin::Pin, | ||
task::{Context, Poll}, | ||
time::{Duration, Instant}, | ||
}; | ||
|
||
use hyper::rt::{Sleep, Timer}; | ||
use pin_project_lite::pin_project; | ||
|
||
#[derive(Clone, Debug)] | ||
pub struct TokioTimer; | ||
|
||
impl Timer for TokioTimer { | ||
fn sleep(&self, duration: Duration) -> Pin<Box<dyn Sleep>> { | ||
Box::pin(TokioSleep { | ||
inner: tokio::time::sleep(duration), | ||
}) | ||
} | ||
|
||
fn sleep_until(&self, deadline: Instant) -> Pin<Box<dyn Sleep>> { | ||
Box::pin(TokioSleep { | ||
inner: tokio::time::sleep_until(deadline.into()), | ||
}) | ||
} | ||
|
||
fn reset(&self, sleep: &mut Pin<Box<dyn Sleep>>, new_deadline: Instant) { | ||
if let Some(sleep) = sleep.as_mut().downcast_mut_pin::<TokioSleep>() { | ||
sleep.reset(new_deadline) | ||
} | ||
} | ||
} | ||
|
||
pin_project! { | ||
pub(crate) struct TokioSleep { | ||
#[pin] | ||
pub(crate) inner: tokio::time::Sleep, | ||
} | ||
} | ||
|
||
impl Future for TokioSleep { | ||
type Output = (); | ||
|
||
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { | ||
self.project().inner.poll(cx) | ||
} | ||
} | ||
|
||
impl Sleep for TokioSleep {} | ||
|
||
impl TokioSleep { | ||
pub fn reset(self: Pin<&mut Self>, deadline: Instant) { | ||
self.project().inner.as_mut().reset(deadline.into()); | ||
} | ||
} |