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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
use {interval, Interval, Builder, wheel};
use worker::Worker;
use wheel::{Token, Wheel};

use futures::{Future, Stream, Async, Poll};
use futures::task::{self, Task};

use std::{fmt, io};
use std::error::Error;
use std::time::{Duration, Instant};

/// A facility for scheduling timeouts
#[derive(Clone)]
pub struct Timer {
    worker: Worker,
}

/// A `Future` that does nothing and completes after the requested duration
#[must_use = "futures do nothing unless polled"]
#[derive(Debug)]
pub struct Sleep {
    timer: Timer,
    when: Instant,
    handle: Option<(Task, Token)>,
}

/// Allows a given `Future` to execute for a max duration
#[must_use = "futures do nothing unless polled"]
#[derive(Debug)]
pub struct Timeout<T> {
    future: Option<T>,
    sleep: Sleep,
}

/// Allows a given `Stream` to take a max duration to yield the next value.
#[derive(Debug)]
pub struct TimeoutStream<T> {
    stream: Option<T>,
    duration: Duration,
    sleep: Sleep,
}

/// The error type for timer operations.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum TimerError {
    /// The requested timeout exceeds the timer's `max_timeout` setting.
    TooLong,
    /// The timer has reached capacity and cannot support new timeouts.
    NoCapacity,
}

/// The error type for timeout operations.
#[derive(Clone)]
pub enum TimeoutError<T> {
    /// An error caused by the timer
    Timer(T, TimerError),
    /// The operation timed out
    TimedOut(T),
}

pub fn build(builder: Builder) -> Timer {
    let wheel = Wheel::new(&builder);
    let worker = Worker::spawn(wheel, builder);

    Timer { worker: worker }
}

/*
 *
 * ===== Timer =====
 *
 */

impl Timer {
    /// Returns a future that completes once the given instant has been reached
    pub fn sleep(&self, duration: Duration) -> Sleep {
        Sleep::new(self.clone(), duration)
    }

    /// Allow the given future to execute for at most `duration` time.
    ///
    /// If the given future completes within the given time, then the `Timeout`
    /// future will complete with that result. If `duration` expires, the
    /// `Timeout` future completes with a `TimeoutError`.
    pub fn timeout<F, E>(&self, future: F, duration: Duration) -> Timeout<F>
        where F: Future<Error = E>,
              E: From<TimeoutError<F>>,
    {
        Timeout {
            future: Some(future),
            sleep: self.sleep(duration),
        }
    }

    /// Allow the given stream to execute for at most `duration` time per
    /// yielded value.
    ///
    /// If the given stream yields a value within the allocated duration, then
    /// value is returned and the timeout is reset for the next value. If the
    /// `duration` expires, then the stream will error with a `TimeoutError`.
    pub fn timeout_stream<T, E>(&self, stream: T, duration: Duration) -> TimeoutStream<T>
        where T: Stream<Error = E>,
              E: From<TimeoutError<T>>,
    {
        TimeoutStream {
            stream: Some(stream),
            duration: duration,
            sleep: self.sleep(duration),
        }
    }

    /// Creates a new interval which will fire at `dur` time into the future,
    /// and will repeat every `dur` interval after
    pub fn interval(&self, dur: Duration) -> Interval {
        interval::new(self.sleep(dur), dur)
    }

    /// Creates a new interval which will fire at the time specified by `at`,
    /// and then will repeat every `dur` interval after
    pub fn interval_at(&self, at: Instant, dur: Duration) -> Interval {
        let now = Instant::now();

        let sleep = if at > now {
            self.sleep(at - now)
        } else {
            self.sleep(Duration::from_millis(0))
        };

        interval::new(sleep, dur)
    }
}

impl Default for Timer {
    fn default() -> Timer {
        wheel().build()
    }
}

impl fmt::Debug for Timer {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(fmt, "Timer")
    }
}

/*
 *
 * ===== Sleep =====
 *
 */

impl Sleep {
    /// Create a new `Sleep`
    fn new(timer: Timer, duration: Duration) -> Sleep {
        Sleep {
            timer: timer,
            when: Instant::now() + duration,
            handle: None,
        }
    }

    /// Returns true if the `Sleep` is expired.
    ///
    /// A `Sleep` is expired when the requested duration has elapsed. In
    /// practice, the `Sleep` can expire slightly before the requested duration
    /// as the timer is not precise.
    ///
    /// See the crate docs for more detail.
    pub fn is_expired(&self) -> bool {
        Instant::now() >= self.when - *self.timer.worker.tolerance()
    }

    /// Returns the duration remaining
    pub fn remaining(&self) -> Duration {
        let now = Instant::now();

        if now >= self.when {
            Duration::from_millis(0)
        } else {
            self.when - now
        }
    }

    /// Returns a ref to the timer backing this `Sleep`
    pub fn timer(&self) -> &Timer {
        &self.timer
    }
}

impl Future for Sleep {
    type Item = ();
    type Error = TimerError;

    fn poll(&mut self) -> Poll<(), TimerError> {
        if self.is_expired() {
            return Ok(Async::Ready(()));
        }

        // The `Sleep` has not expired, so perform any necessary operations
        // with the timer worker in order to get notified after the requested
        // instant.

        let handle = match self.handle {
            None => {
                // An wakeup request has not yet been sent to the timer. Before
                // doing so, check to ensure that the requested duration does
                // not exceed the `max_timeout` duration
                if (self.when - Instant::now()) > *self.timer.worker.max_timeout() {
                    return Err(TimerError::TooLong);
                }

                // Get the current task handle
                let task = task::current();

                match self.timer.worker.set_timeout(self.when, task.clone()) {
                    Ok(token) => {
                        (task, token)
                    }
                    Err(task) => {
                        // The timer is overloaded, yield the current task
                        task.notify();
                        return Ok(Async::NotReady);
                    }
                }
            }
            Some((ref task, token)) => {
                if task.will_notify_current() {
                    // Nothing more to do, the notify on timeout has already
                    // been registered
                    return Ok(Async::NotReady);
                }

                let task = task::current();

                // The timeout has been moved to another task, in this case the
                // timer has to be notified
                match self.timer.worker.move_timeout(token, self.when, task.clone()) {
                    Ok(_) => (task, token),
                    Err(task) => {
                        // Overloaded timer, yield hte current task
                        task.notify();
                        return Ok(Async::NotReady);
                    }
                }
            }
        };

        // Moved out here to make the borrow checker happy
        self.handle = Some(handle);

        Ok(Async::NotReady)
    }
}

impl Drop for Sleep {
    fn drop(&mut self) {
        if let Some((_, token)) = self.handle {
            self.timer.worker.cancel_timeout(token, self.when);
        }
    }
}

/*
 *
 * ===== Timeout ====
 *
 */

impl<T> Timeout<T> {
    /// Gets a reference to the underlying future in this timeout.
    ///
    /// # Panics
    ///
    /// This function panics if the underlying future has already been consumed.
    pub fn get_ref(&self) -> &T {
        self.future.as_ref().expect("the future has already been consumed")
    }

    /// Gets a mutable reference to the underlying future in this timeout.
    ///
    /// # Panics
    ///
    /// This function panics if the underlying future has already been consumed.
    pub fn get_mut(&mut self) -> &mut T {
        self.future.as_mut().expect("the future has already been consumed")
    }

    /// Consumes this timeout, returning the underlying future.
    ///
    /// # Panics
    ///
    /// This function panics if the underlying future has already been consumed.
    pub fn into_inner(self) -> T {
        self.future.expect("the future has already been consumed")
    }
}

impl<F, E> Future for Timeout<F>
    where F: Future<Error = E>,
          E: From<TimeoutError<F>>,
{
    type Item = F::Item;
    type Error = E;

    fn poll(&mut self) -> Poll<F::Item, E> {
        // First, try polling the future
        match self.future {
            Some(ref mut f) => {
                match f.poll() {
                    Ok(Async::NotReady) => {}
                    v => return v,
                }
            }
            None => panic!("cannot call poll once value is consumed"),
        }

        // Now check the timer
        match self.sleep.poll() {
            Ok(Async::NotReady) => Ok(Async::NotReady),
            Ok(Async::Ready(_)) => {
                // Timeout has elapsed, error the future
                let f = self.future.take().unwrap();
                Err(TimeoutError::TimedOut(f).into())
            }
            Err(e) => {
                // Something went wrong with the underlying timeout
                let f = self.future.take().unwrap();
                Err(TimeoutError::Timer(f, e).into())
            }
        }
    }
}

/*
 *
 * ===== TimeoutStream ====
 *
 */

impl<T> TimeoutStream<T> {
    /// Gets a reference to the underlying stream in this timeout.
    ///
    /// # Panics
    ///
    /// This function panics if the underlying stream has already been consumed.
    pub fn get_ref(&self) -> &T {
        self.stream.as_ref().expect("the stream has already been consumed")
    }

    /// Gets a mutable reference to the underlying stream in this timeout.
    ///
    /// # Panics
    ///
    /// This function panics if the underlying stream has already been consumed.
    pub fn get_mut(&mut self) -> &mut T {
        self.stream.as_mut().expect("the stream has already been consumed")
    }

    /// Consumes this timeout, returning the underlying stream.
    ///
    /// # Panics
    ///
    /// This function panics if the underlying stream has already been consumed.
    pub fn into_inner(self) -> T {
        self.stream.expect("the stream has already been consumed")
    }
}

impl<T, E> Stream for TimeoutStream<T>
    where T: Stream<Error = E>,
          E: From<TimeoutError<T>>,
{
    type Item = T::Item;
    type Error = E;

    fn poll(&mut self) -> Poll<Option<T::Item>, E> {
        // First, try polling the future
        match self.stream {
            Some(ref mut s) => {
                match s.poll() {
                    Ok(Async::NotReady) => {}
                    Ok(Async::Ready(Some(v))) => {
                        // Reset the timeout
                        self.sleep = Sleep::new(self.sleep.timer.clone(), self.duration);

                        // Return the value
                        return Ok(Async::Ready(Some(v)));
                    }
                    v => return v,
                }
            }
            None => panic!("cannot call poll once value is consumed"),
        }

        // Now check the timer
        match self.sleep.poll() {
            Ok(Async::NotReady) => Ok(Async::NotReady),
            Ok(Async::Ready(_)) => {
                // Timeout has elapsed, error the future
                let s = self.stream.take().unwrap();
                Err(TimeoutError::TimedOut(s).into())
            }
            Err(e) => {
                // Something went wrong with the underlying timeout
                let s = self.stream.take().unwrap();
                Err(TimeoutError::Timer(s, e).into())
            }
        }
    }
}

/*
 *
 * ===== Errors =====
 *
 */

impl fmt::Display for TimerError {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(fmt, "{}", Error::description(self))
    }
}

impl Error for TimerError {
    fn description(&self) -> &str {
        match *self {
            TimerError::TooLong => "requested timeout too long",
            TimerError::NoCapacity => "timer out of capacity",
        }
    }
}

impl<T> fmt::Display for TimeoutError<T> {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(fmt, "{}", Error::description(self))
    }
}

impl<T> fmt::Debug for TimeoutError<T> {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(fmt, "{}", Error::description(self))
    }
}

impl<T> Error for TimeoutError<T> {
    fn description(&self) -> &str {
        use self::TimerError::*;
        use self::TimeoutError::*;

        match *self {
            Timer(_, TooLong) => "requested timeout too long",
            Timer(_, NoCapacity) => "timer out of capacity",
            TimedOut(_) => "the future timed out",
        }
    }
}

impl<T> From<TimeoutError<T>> for io::Error {
    fn from(src: TimeoutError<T>) -> io::Error {
        use self::TimerError::*;
        use self::TimeoutError::*;

        match src {
            Timer(_, TooLong) => io::Error::new(io::ErrorKind::InvalidInput, "requested timeout too long"),
            Timer(_, NoCapacity) => io::Error::new(io::ErrorKind::Other, "timer out of capacity"),
            TimedOut(_) => io::Error::new(io::ErrorKind::TimedOut, "the future timed out"),
        }
    }
}

impl From<TimerError> for io::Error {
    fn from(src: TimerError) -> io::Error {
        io::Error::new(io::ErrorKind::Other, src)
    }
}

impl From<TimerError> for () {
    fn from(_: TimerError) -> () {
    }
}

impl<T> From<TimeoutError<T>> for () {
    fn from(_: TimeoutError<T>) -> () {
    }
}