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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
#![recursion_limit = "256"]
#![deny(missing_docs)]
//! # tokio-based leaky-bucket rate limiter
//!
//! This implements a leaky bucket from which you can acquire tokens.
//!
//! If the tokens are already available, the acquisition will be instant (fast path) and the
//! acquired number of tokens will be added to the bucket.
//!
//! If the bucket overflows (i.e. goes over max), the task that tried to acquire the tokens will
//! be suspended until the required number of tokens has been added.
//!
//! ## Example
//!
//! ```no_run
//! use futures::prelude::*;
//! use leaky_bucket::LeakyBuckets;
//! use std::{error::Error, time::Duration};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn Error>> {
//!     let buckets = LeakyBuckets::new();
//!
//!     let rate_limiter = buckets
//!         .rate_limiter()
//!         .max(100)
//!         .refill_interval(Duration::from_secs(10))
//!         .refill_amount(100)
//!         .build()?;
//!
//!     let coordinator = buckets.coordinate().boxed();
//!
//!     // spawn the coordinate thread to refill the rate limiter.
//!     tokio::spawn(async move { coordinator.await.expect("coordinate thread errored") });

//!     println!("Waiting for permit...");
//!     // should take about ten seconds to get a permit.
//!     rate_limiter.acquire(100).await?;
//!     println!("I made it!");
//!
//!     Ok(())
//! }
//! ```

use futures_channel::mpsc::{self, Receiver, Sender, UnboundedReceiver, UnboundedSender};
use futures_util::{
    ready, select,
    stream::{FuturesUnordered, StreamExt as _},
};
use std::{
    collections::VecDeque,
    error, fmt,
    future::Future,
    pin::Pin,
    sync::{
        atomic::{AtomicBool, AtomicUsize, Ordering},
        Arc, Mutex,
    },
    task::{Context, Poll, Waker},
    time::Duration,
};

/// Error type for the rate limiter.
#[derive(Debug)]
pub enum Error {
    /// The bucket has already been started.
    AlreadyStarted,
    /// There was an issue enqueueing a task.
    TaskSendError(mpsc::SendError),
    /// Failed to queue up new task.
    NewTaskError,
}

impl fmt::Display for Error {
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        use self::Error::*;

        match self {
            AlreadyStarted => write!(fmt, "already started"),
            TaskSendError(e) => write!(fmt, "failed to send task to coordinator: {}", e),
            NewTaskError => write!(fmt, "failed to queue up new task coordinator"),
        }
    }
}

impl error::Error for Error {
    fn source(&self) -> Option<&(dyn error::Error + 'static)> {
        use self::Error::*;

        match self {
            TaskSendError(e) => Some(e),
            _ => None,
        }
    }
}

struct NewTask {
    inner: Arc<Inner>,
    rx: Receiver<Task>,
}

struct LeakyBucketsInner {
    tx: UnboundedSender<NewTask>,
    rx: Mutex<Option<UnboundedReceiver<NewTask>>>,
}

/// Coordinator for rate limiters. Is used to create new rate limiters as needed.
#[derive(Clone)]
pub struct LeakyBuckets {
    inner: Arc<LeakyBucketsInner>,
}

impl Default for LeakyBuckets {
    fn default() -> Self {
        Self::new()
    }
}

impl LeakyBuckets {
    /// Construct a new coordinator for rate limiters.
    pub fn new() -> Self {
        let (tx, rx) = mpsc::unbounded();

        let inner = Arc::new(LeakyBucketsInner {
            tx,
            rx: Mutex::new(Some(rx)),
        });

        LeakyBuckets { inner }
    }

    /// Run the coordinator.
    pub async fn coordinate(self) -> Result<(), Error> {
        let mut rx = match self.inner.rx.lock().expect("ok mutex").take() {
            Some(rx) => rx,
            None => return Err(Error::AlreadyStarted),
        };

        let mut futures = FuturesUnordered::new();

        loop {
            while futures.is_empty() {
                select! {
                    NewTask { inner, rx } = rx.select_next_some() => {
                        futures.push(inner.coordinate(rx));
                    }
                }
            }

            select! {
                _ = futures.next() => {
                    panic!("coordinator task exited unexpectedly");
                }
                NewTask { inner, rx } = rx.select_next_some() => {
                    futures.push(inner.coordinate(rx));
                }
            }
        }
    }

    /// Construct a new rate limiter.
    pub fn rate_limiter(&self) -> Builder {
        Builder {
            new_task_tx: self.inner.tx.clone(),
            tokens: None,
            max: None,
            refill_interval: None,
            refill_amount: None,
        }
    }
}

/// Builder for a leaky bucket.
pub struct Builder {
    new_task_tx: UnboundedSender<NewTask>,
    tokens: Option<usize>,
    max: Option<usize>,
    refill_interval: Option<Duration>,
    refill_amount: Option<usize>,
}

impl Builder {
    /// Set the max value for the builder.
    #[inline(always)]
    pub fn max(mut self, max: usize) -> Self {
        self.max = Some(max);
        self
    }

    /// The number of tokens that the bucket should start with.
    ///
    /// If set to larger than `max` at build time, will only saturate to max.
    #[inline(always)]
    pub fn tokens(mut self, tokens: usize) -> Self {
        self.tokens = Some(tokens);
        self
    }

    /// Set the max value for the builder.
    #[inline(always)]
    pub fn refill_interval(mut self, refill_interval: Duration) -> Self {
        self.refill_interval = Some(refill_interval);
        self
    }

    /// Set the refill amount to use.
    #[inline(always)]
    pub fn refill_amount(mut self, refill_amount: usize) -> Self {
        self.refill_amount = Some(refill_amount);
        self
    }

    /// Construct a new leaky bucket.
    pub fn build(self) -> Result<LeakyBucket, Error> {
        const DEFAULT_MAX: usize = 120;
        const DEFAULT_TOKENS: usize = 0;
        const DEFAULT_REFILL_INTERVAL: Duration = Duration::from_secs(1);
        const DEFAULT_REFILL_AMOUNT: usize = 1;

        let max = self.max.unwrap_or(DEFAULT_MAX);
        let tokens = max.saturating_sub(self.tokens.unwrap_or(DEFAULT_TOKENS));
        let refill_interval = self.refill_interval.unwrap_or(DEFAULT_REFILL_INTERVAL);
        let refill_amount = self.refill_amount.unwrap_or(DEFAULT_REFILL_AMOUNT);

        let tokens = AtomicUsize::new(tokens);

        let (tx, rx) = mpsc::channel(1);

        let inner = Arc::new(Inner {
            tokens,
            max,
            refill_interval,
            refill_amount,
            tx,
        });

        self.new_task_tx
            .unbounded_send(NewTask {
                inner: inner.clone(),
                rx,
            })
            .map_err(|_| Error::NewTaskError)?;

        Ok(LeakyBucket { inner })
    }
}

/// A single queued task waiting to be woken up.
struct Task {
    /// Amount required to wake up the given task.
    required: usize,
    /// Waker to call.
    waker: Waker,
    /// Indicates if the task is completed.
    complete: Arc<AtomicBool>,
}

struct Inner {
    /// Current number of tokens.
    tokens: AtomicUsize,
    /// Max number of tokens.
    max: usize,
    /// Period to use when refilling.
    refill_interval: Duration,
    /// Amount to add when refilling.
    refill_amount: usize,
    /// Sender for emitting queued tasks.
    tx: Sender<Task>,
}

impl Inner {
    /// Coordinate tasks.
    async fn coordinate(self: Arc<Inner>, mut rx: Receiver<Task>) -> Result<(), Error> {
        // The queue of tasks to process.
        let mut tasks = VecDeque::new();
        // The interval at which we refill tokens.
        let mut interval = tokio_timer::Interval::new_interval(self.refill_interval);
        // The current number of tokens accumulated locally.
        // This will increase until we have enough to satisfy the next waking task.
        let mut amount = 0;
        let mut current = None;

        'outer: loop {
            select! {
                waker = rx.select_next_some() => {
                    tasks.push_back(waker);
                },
                _ = interval.select_next_some() => {
                    amount += self.refill_amount;

                    let mut task = match current.take().or_else(|| tasks.pop_front()) {
                        Some(task) => task,
                        None => {
                            // Nothing to wake up, subtract the number of
                            // tokens immediately allowing future acquires to
                            // enter the fast path.
                            self.balance_tokens(amount);
                            amount = 0;
                            continue;
                        }
                    };

                    while amount > 0 && amount >= task.required {
                        // We have enough tokens to wake up the next task.
                        // Subtract it from the current amount and notify the task to wake up.
                        amount -= task.required;
                        task.complete.store(true, Ordering::Release);
                        task.waker.wake();

                        task = match tasks.pop_front() {
                            Some(task) => task,
                            None => {
                                if amount > 0 {
                                    self.balance_tokens(amount);
                                    amount = 0;
                                }

                                continue 'outer;
                            },
                        };
                    }

                    current = Some(task);

                    // If there are no more queued tasks, make the remaining tokens available to
                    // the fast path.
                    if tasks.is_empty() {
                        self.balance_tokens(amount);
                    }
                },
            }
        }
    }

    /// Subtract the given amount of tokens, allowing them to be used by the fast path acquire.
    fn balance_tokens(&self, amount: usize) {
        let mut current = self.tokens.load(Ordering::Acquire);

        while current > 0 {
            let new = current.saturating_sub(amount);

            match self.tokens.compare_exchange_weak(
                current,
                new,
                Ordering::SeqCst,
                Ordering::Acquire,
            ) {
                Ok(_) => break,
                Err(x) => current = x,
            }
        }
    }
}

/// The leaky bucket.
#[derive(Clone)]
pub struct LeakyBucket {
    inner: Arc<Inner>,
}

impl LeakyBucket {
    /// Acquire a single token.
    pub fn acquire_one(&self) -> Acquire<'_> {
        self.acquire(1)
    }

    /// Acquire the given `amount` of tokens.
    pub fn acquire(&self, amount: usize) -> Acquire<'_> {
        Acquire {
            tokens: &self.inner.tokens,
            max: self.inner.max,
            amount,
            tx: self.inner.tx.clone(),
            queued: None,
        }
    }
}

/// Future associated with acquiring a single token.
pub struct Acquire<'a> {
    tokens: &'a AtomicUsize,
    max: usize,
    amount: usize,
    tx: Sender<Task>,
    queued: Option<Arc<AtomicBool>>,
}

impl Future for Acquire<'_> {
    type Output = Result<(), Error>;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        // Test if it has been woken up by the coordinator.
        // If that is the case, complete should be `true`.
        //
        // Otherwise we are still pending.
        if let Some(complete) = &self.queued {
            return if complete.load(Ordering::Acquire) {
                Poll::Ready(Ok(()))
            } else {
                Poll::Pending
            };
        }

        let mut required = self.amount;
        let current = self.tokens.fetch_add(required, Ordering::AcqRel);

        // fast path, we successfully acquired the number of tokens needed to proceed.
        if current + required < self.max {
            return Poll::Ready(Ok(()));
        }

        // subtract the number of tokens already consumed from required.
        if current < self.max {
            required -= self.max - current;
        }

        // queue up thread to be released once more tokens are available.
        match ready!(self.tx.poll_ready(cx)) {
            Ok(()) => (),
            Err(e) => return Poll::Ready(Err(Error::TaskSendError(e))),
        }

        let waker = cx.waker().clone();

        let complete = Arc::new(AtomicBool::new(false));

        self.queued = Some(complete.clone());

        if let Err(e) = self.tx.start_send(Task {
            required,
            waker,
            complete,
        }) {
            return Poll::Ready(Err(Error::TaskSendError(e)));
        }

        Poll::Pending
    }
}

#[cfg(test)]
mod tests {
    use super::{Error, LeakyBuckets};
    use futures::prelude::*;
    use std::time::{Duration, Instant};
    use tokio::{runtime::current_thread::Runtime, timer};

    #[test]
    fn test_leaky_bucket() {
        let mut rt = Runtime::new().expect("working runtime");

        rt.block_on(async move {
            let interval = Duration::from_millis(20);

            let buckets = LeakyBuckets::new();

            let leaky = buckets
                .rate_limiter()
                .tokens(0)
                .max(10)
                .refill_amount(10)
                .refill_interval(interval)
                .build()
                .expect("build rate limiter");

            let mut wakeups = 0;
            let mut duration = None;

            let test = async {
                let start = Instant::now();
                leaky.acquire(10).await?;
                wakeups += 1;
                leaky.acquire(10).await?;
                wakeups += 1;
                leaky.acquire(10).await?;
                wakeups += 1;
                duration = Some(Instant::now().duration_since(start));

                Ok::<_, Error>(())
            };

            futures::future::select(test.boxed(), buckets.coordinate().boxed()).await;

            assert_eq!(3, wakeups);
            assert!(duration.expect("expected measured duration") > interval * 2);
        });
    }

    #[test]
    fn test_concurrent_rate_limited() {
        let mut rt = Runtime::new().expect("working runtime");

        rt.block_on(async move {
            let interval = Duration::from_millis(20);

            let buckets = LeakyBuckets::new();

            let leaky = buckets
                .rate_limiter()
                .tokens(0)
                .max(10)
                .refill_amount(1)
                .refill_interval(interval)
                .build()
                .expect("build rate limiter");

            let mut one_wakeups = 0;

            let one = async {
                loop {
                    leaky.acquire(1).await?;
                    one_wakeups += 1;
                }

                #[allow(unreachable_code)]
                Ok::<_, Error>(())
            };

            let mut two_wakeups = 0;

            let two = async {
                loop {
                    leaky.acquire(1).await?;
                    two_wakeups += 1;
                }

                #[allow(unreachable_code)]
                Ok::<_, Error>(())
            };

            let delay = timer::delay(Instant::now() + Duration::from_millis(200));

            let task = future::select(one.boxed(), two.boxed());
            let task = future::select(task, delay);

            future::select(task, buckets.coordinate().boxed()).await;

            let total = one_wakeups + two_wakeups;

            assert!(total > 5 && total < 15);
        });
    }
}