1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
use crate::time::{AsyncLocalTimeout, AsyncTimeout, Elapsed};

use ::tokio::time::{timeout, timeout_at, Timeout};
use core::{
  future::Future,
  pin::Pin,
  task::{Context, Poll},
  time::Duration,
};
use std::time::Instant;

pin_project_lite::pin_project! {
  /// The [`AsyncTimeout`] implementation for tokio runtime
  #[repr(transparent)]
  pub struct TokioTimeout<F> {
    #[pin]
    inner: Timeout<F>,
  }
}

impl<F> From<Timeout<F>> for TokioTimeout<F> {
  fn from(timeout: Timeout<F>) -> Self {
    Self { inner: timeout }
  }
}

impl<F> From<TokioTimeout<F>> for Timeout<F> {
  fn from(timeout: TokioTimeout<F>) -> Self {
    timeout.inner
  }
}

impl<F: Future> Future for TokioTimeout<F> {
  type Output = Result<F::Output, Elapsed>;

  fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
    match self.project().inner.poll(cx) {
      Poll::Ready(Ok(rst)) => Poll::Ready(Ok(rst)),
      Poll::Ready(Err(e)) => Poll::Ready(Err(e.into())),
      Poll::Pending => Poll::Pending,
    }
  }
}

impl<F: Future + Send> AsyncTimeout<F> for TokioTimeout<F> {
  fn timeout(t: Duration, fut: F) -> Self
  where
    Self: Sized,
  {
    <Self as AsyncLocalTimeout<F>>::timeout_local(t, fut)
  }

  fn timeout_at(deadline: Instant, fut: F) -> Self
  where
    Self: Sized,
  {
    <Self as AsyncLocalTimeout<F>>::timeout_local_at(deadline, fut)
  }
}

impl<F> AsyncLocalTimeout<F> for TokioTimeout<F>
where
  F: Future,
{
  fn timeout_local(t: Duration, fut: F) -> Self
  where
    Self: Sized,
  {
    Self {
      inner: timeout(t, fut),
    }
  }

  fn timeout_local_at(deadline: Instant, fut: F) -> Self
  where
    Self: Sized,
  {
    Self {
      inner: timeout_at(tokio::time::Instant::from_std(deadline), fut),
    }
  }
}

#[cfg(test)]
mod tests {
  use super::{AsyncTimeout, TokioTimeout};
  use std::time::{Duration, Instant};

  const BAD: Duration = Duration::from_secs(1);
  const GOOD: Duration = Duration::from_millis(10);
  const TIMEOUT: Duration = Duration::from_millis(200);
  const BOUND: Duration = Duration::from_secs(10);

  #[tokio::test(flavor = "multi_thread")]
  async fn test_timeout() {
    futures::executor::block_on(async {
      let fut = async {
        tokio::time::sleep(BAD).await;
        1
      };
      let start = Instant::now();
      let rst = TokioTimeout::timeout(TIMEOUT, fut).await;
      assert!(rst.is_err());
      let elapsed = start.elapsed();
      assert!(elapsed >= TIMEOUT && elapsed <= TIMEOUT + BOUND);

      let fut = async {
        tokio::time::sleep(GOOD).await;
        1
      };

      let start = Instant::now();
      let rst = TokioTimeout::timeout(TIMEOUT, fut).await;
      assert!(rst.is_ok());
      let elapsed = start.elapsed();
      assert!(elapsed >= GOOD && elapsed <= GOOD + BOUND);
    });
  }

  #[tokio::test(flavor = "multi_thread")]
  async fn test_timeout_at() {
    futures::executor::block_on(async {
      let fut = async {
        tokio::time::sleep(BAD).await;
        1
      };
      let start = Instant::now();
      let rst = TokioTimeout::timeout_at(Instant::now() + TIMEOUT, fut).await;
      assert!(rst.is_err());
      let elapsed = start.elapsed();
      assert!(elapsed >= TIMEOUT && elapsed <= TIMEOUT + BOUND);

      let fut = async {
        tokio::time::sleep(GOOD).await;
        1
      };

      let start = Instant::now();
      let rst = TokioTimeout::timeout_at(Instant::now() + TIMEOUT, fut).await;
      assert!(rst.is_ok());
      let elapsed = start.elapsed();
      assert!(elapsed >= GOOD && elapsed <= GOOD + BOUND);
    });
  }
}