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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
use crate::error::Error;
use core::pin::Pin;
use futures::stream::Stream;
use futures::task::{Context, Poll};
use pin_project::pin_project;
use std::time::Duration;
use tokio::time::timeout;
use tokio_stream::StreamExt;

#[pin_project]
pub struct TimeoutStream<R: Stream> {
    #[pin]
    source: R,
    buffer: Vec<R::Item>,
}

impl<R: Stream> TimeoutStream<R> {
    /**
     * Use this constructor
     */
    pub async fn with_stream(source: R) -> Result<TimeoutStream<R>, Error> {
        Ok(TimeoutStream {
            source,
            buffer: Vec::new(),
        })
    }

    pub async fn peek_timeout(self: Pin<&mut Self>, duration: Duration) -> Result<&R::Item, Error> {
        // Wrap the future with a `Timeout` set to expire in 10 milliseconds.
        match timeout(duration, self.peek()).await {
            Ok(Some(item)) => Ok(item),
            Ok(None) => Err(Error::Disconnected),
            Err(_) => Err(Error::TimedOut),
        }
    }

    pub async fn next_timeout(
        mut self: Pin<&mut Self>,
        duration: Duration,
    ) -> Result<R::Item, Error> {
        // Wrap the future with a `Timeout` set to expire in 10 milliseconds.
        match timeout(duration, self.next()).await {
            Ok(Some(item)) => Ok(item),
            Ok(None) => Err(Error::Disconnected),
            Err(_) => Err(Error::TimedOut),
        }
    }

    pub async fn peek(mut self: Pin<&mut Self>) -> Option<&R::Item> {
        if self.as_mut().project().buffer.is_empty() {
            match self.next().await {
                Some(item) => self.as_mut().project().buffer.push(item),
                None => return None,
            }
        }
        self.project().buffer.first()
    }
}

impl<R: Stream> Stream for TimeoutStream<R> {
    type Item = R::Item;

    fn poll_next(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> Poll<Option<<Self as Stream>::Item>> {
        if !self.buffer.is_empty() {
            return Poll::Ready(Some(self.project().buffer.remove(0)));
        }

        self.project().source.poll_next(cx)
    }
}

#[cfg(all(test, feature = "async"))]
mod tests {
    use super::*;
    use assert_matches::assert_matches;
    use futures::stream::iter;
    use std::io::BufRead;

    #[tokio::test]
    async fn iterates() {
        let realistic_message = r"1
2
3
4
5";
        let lines_iterator = iter((Box::new(realistic_message.as_bytes())).lines());

        let mut ti = TimeoutStream::with_stream(lines_iterator).await.unwrap();

        assert_eq!(ti.next().await.unwrap().unwrap(), "1");
        assert_eq!(ti.next().await.unwrap().unwrap(), "2");
        assert_eq!(ti.next().await.unwrap().unwrap(), "3");
        assert_eq!(ti.next().await.unwrap().unwrap(), "4");
        assert_eq!(ti.next().await.unwrap().unwrap(), "5");
    }

    #[tokio::test]
    async fn next_timeout() {
        let realistic_message = r"1
2
3
4
5";
        let lines_iterator = iter((Box::new(realistic_message.as_bytes())).lines());

        let mut pinned_stream = Box::pin(TimeoutStream::with_stream(lines_iterator).await.unwrap());
        let mut ti = pinned_stream.as_mut();

        assert_eq!(ti.next().await.unwrap().unwrap(), "1");
        assert_eq!(ti.next().await.unwrap().unwrap(), "2");
        assert_eq!(ti.next().await.unwrap().unwrap(), "3");
        assert_eq!(ti.next().await.unwrap().unwrap(), "4");
        assert_eq!(ti.next().await.unwrap().unwrap(), "5");

        let timeout_result = ti.as_mut().next_timeout(Duration::from_secs(1)).await;
        assert!(timeout_result.is_err());
    }

    #[tokio::test]
    async fn peek_timeout_doesnt_remove() {
        let realistic_message = r"1
2
3
4
5";
        let lines_iterator = iter((Box::new(realistic_message.as_bytes())).lines());

        let mut ti = Box::pin(TimeoutStream::with_stream(lines_iterator).await.unwrap());

        assert_eq!(ti.next().await.unwrap().unwrap(), "1");
        assert_eq!(ti.next().await.unwrap().unwrap(), "2");
        assert_eq!(
            ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap()
                .as_ref()
                .unwrap(),
            "3"
        );
        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "3");
        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "4");
        assert_eq!(
            ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap()
                .as_ref()
                .unwrap(),
            "5"
        );
        assert_eq!(
            ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap()
                .as_ref()
                .unwrap(),
            "5"
        );
        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "5");

        let timeout_result = ti.as_mut().next_timeout(Duration::from_secs(1)).await;
        assert!(timeout_result.is_err());
    }

    #[tokio::test]
    async fn peek_doesnt_remove() {
        let realistic_message = r"1
2
3
4
5";
        let lines_iterator = iter((Box::new(realistic_message.as_bytes())).lines());

        let mut ti = Box::pin(TimeoutStream::with_stream(lines_iterator).await.unwrap());

        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "1");
        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "2");
        assert_eq!(ti.as_mut().peek().await.unwrap().as_ref().unwrap(), "3");
        assert_eq!(
            ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap()
                .as_ref()
                .unwrap(),
            "3"
        );
        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "3");
        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "4");
        assert_eq!(
            ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap()
                .as_ref()
                .unwrap(),
            "5"
        );
        assert_eq!(ti.as_mut().peek().await.unwrap().as_ref().unwrap(), "5");
        assert_eq!(ti.as_mut().next().await.unwrap().unwrap(), "5");

        let timeout_result = ti.as_mut().next_timeout(Duration::from_secs(1)).await;
        assert!(timeout_result.is_err());
    }

    #[tokio::test]
    async fn item_iterator() {
        let numbers: Vec<u32> = vec![1, 2, 3, 4, 5];

        let mut ti = Box::pin(
            TimeoutStream::with_stream(iter(numbers.into_iter()))
                .await
                .unwrap(),
        );

        assert_eq!(ti.as_mut().next().await.unwrap(), 1);
        assert_eq!(ti.as_mut().next().await.unwrap(), 2);
        assert_eq!(
            *ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap(),
            3
        );
        assert_eq!(ti.as_mut().next().await.unwrap(), 3);
        assert_eq!(ti.as_mut().next().await.unwrap(), 4);
        assert_eq!(
            *ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap(),
            5
        );
        assert_eq!(
            *ti.as_mut()
                .peek_timeout(Duration::from_secs(1))
                .await
                .unwrap(),
            5
        );
        assert_eq!(ti.as_mut().next().await.unwrap(), 5);

        let timeout_result = ti.as_mut().next_timeout(Duration::from_secs(1)).await;
        assert!(timeout_result.is_err());
    }

    #[tokio::test]
    async fn timedout_future_doesnt_drop_item() {
        let numbers: Vec<u32> = vec![1, 2, 3, 4, 5];

        let throttled_numbers = Box::pin(
            iter(numbers.into_iter())
                // item every second at most
                .throttle(Duration::from_secs(1)),
        );

        let mut pinned_stream =
            Box::pin(TimeoutStream::with_stream(throttled_numbers).await.unwrap());
        let mut ti = pinned_stream.as_mut();

        assert_eq!(ti.as_mut().next().await.unwrap(), 1);
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(500))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_eq!(ti.as_mut().next().await.unwrap(), 2);
        assert_matches!(
            ti.as_mut()
                .peek_timeout(Duration::from_millis(500))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_eq!(*ti.as_mut().peek().await.unwrap(), 3);
        assert_eq!(ti.as_mut().next().await.unwrap(), 3);
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(500))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_eq!(ti.as_mut().next().await.unwrap(), 4);
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(100))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(100))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(100))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(100))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(100))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_matches!(
            ti.as_mut()
                .next_timeout(Duration::from_millis(100))
                .await
                .unwrap_err(),
            Error::TimedOut
        );
        assert_eq!(ti.as_mut().next().await.unwrap(), 5);

        let timeout_result = ti.as_mut().next_timeout(Duration::from_secs(1)).await;
        assert!(timeout_result.is_err());
    }
}