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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
#![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
//!
//! If the project is built with the `static` feature (default), you can use
//! `LeakyBucket` directly as long as you are inside a tokio runtime, like so:
//!
//! ```no_run
//! use leaky_bucket::LeakyBucket;
//! use std::{error::Error, time::Duration};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn Error>> {
//!     let rate_limiter = LeakyBucket::builder()
//!         .max(5)
//!         .tokens(5)
//!         .build()?;
//!
//!     println!("Waiting for permit...");
//!     // should take about 5 seconds to acquire.
//!     rate_limiter.acquire(10).await?;
//!     println!("I made it!");
//!     Ok(())
//! }
//! ```
//!
//! ## Example using explicit coordinator
//!
//! ```no_run
//! use leaky_bucket::LeakyBuckets;
//! use std::{error::Error, time::Duration};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn Error>> {
//!     let mut buckets = LeakyBuckets::new();
//!     let coordinator = buckets.coordinate()?;
//!     // spawn the coordinate thread to refill the rate limiter.
//!     tokio::spawn(async move { coordinator.await.expect("coordinate thread errored") });
//!
//!     let rate_limiter = buckets
//!         .rate_limiter()
//!         .max(5)
//!         .tokens(5)
//!         .build()?;
//!
//!     println!("Waiting for permit...");
//!     // should take about 5 seconds to acquire.
//!     rate_limiter.acquire(10).await?;
//!     println!("I made it!");
//!     Ok(())
//! }
//! ```

use futures_channel::mpsc;
use futures_util::{
    ready, select,
    stream::{FuturesUnordered, StreamExt as _},
};
use std::{
    collections::VecDeque,
    future::Future,
    pin::Pin,
    sync::{
        atomic::{AtomicBool, AtomicUsize, Ordering},
        Arc,
    },
    task::{Context, Poll, Waker},
    time::Duration,
};
use thiserror::Error;

#[cfg(feature = "static")]
lazy_static::lazy_static! {
    static ref LEAKY_BUCKETS: LeakyBuckets = {
        let mut buckets = LeakyBuckets::new();
        let coordinator = buckets.coordinate().expect("no other running coordinator");
        tokio::spawn(async move { coordinator.await.expect("coordinate thread errored") });
        buckets
    };
}

/// Error type for the rate limiter.
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum Error {
    /// The bucket has already been started.
    #[error("Coordinator already started")]
    AlreadyStarted,
    /// There was an issue enqueueing a task.
    #[error("Failed to send task to coordinator: {0}")]
    TaskSendError(#[source] mpsc::SendError),
    /// Failed to queue up new task.
    #[error("Failed to queue up new task coordinator")]
    NewTaskError,
    /// Tried to acquire more tokens than what is possible.
    #[error("Acquiring tokens would cause an overflow")]
    TokenOverflow,
}

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

struct LeakyBucketsInner {
    new_task_tx: mpsc::UnboundedSender<NewTask>,
}

/// Coordinator for rate limiters. Is used to create new rate limiters as needed.
pub struct LeakyBuckets {
    inner: Arc<LeakyBucketsInner>,
    new_task_rx: Option<mpsc::UnboundedReceiver<NewTask>>,
}

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

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

        let inner = Arc::new(LeakyBucketsInner { new_task_tx });

        LeakyBuckets {
            inner,
            new_task_rx: Some(new_task_rx),
        }
    }

    /// Run the coordinator.
    pub fn coordinate(
        &mut self,
    ) -> Result<impl Future<Output = Result<(), Error>> + 'static, Error> {
        let mut new_task_rx = match self.new_task_rx.take() {
            Some(new_task_rx) => new_task_rx,
            None => return Err(Error::AlreadyStarted),
        };

        Ok(async move {
            let mut futures = FuturesUnordered::new();

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

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

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

/// Builder for a leaky bucket.
pub struct Builder<'a> {
    new_task_tx: &'a mpsc::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 (task_tx, task_rx) = mpsc::channel(1);

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

        self.new_task_tx
            .clone()
            .unbounded_send(NewTask {
                inner: inner.clone(),
                task_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 that have been acquired.
    ///
    /// This has an inverted relationship to `max`.
    /// The current number of active tokens can be found be subtracting the
    /// the number of acquire tokens (this), from max.
    ///
    /// It is structure like this since adding to an atomic growing number to
    /// acquire tokens is much easier than trying to subtract and truncate it
    /// towards zero.
    ///
    /// This means that there is a risk the value will overflow.
    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.
    task_tx: mpsc::Sender<Task>,
}

impl Inner {
    /// Coordinate tasks.
    async fn coordinate(self: Arc<Inner>, mut task_rx: mpsc::Receiver<Task>) -> Result<(), Error> {
        // The queue of tasks to process.
        let mut tasks = VecDeque::new();
        let first = std::time::Instant::now()
            .checked_add(self.refill_interval)
            .unwrap_or_else(std::time::Instant::now);
        // The interval at which we refill tokens.
        let mut interval = tokio::time::interval_at(first.into(), self.refill_interval).fuse();
        // 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 = task_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 >= 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 => {
                                self.balance_tokens(amount);
                                amount = 0;
                                continue 'outer;
                            },
                        };
                    }

                    current = Some(task);
                },
            }
        }
    }

    /// Subtract the given amount of tokens, allowing them to be used by the fast path acquire.
    fn balance_tokens(&self, amount: usize) {
        if amount == 0 {
            return;
        }

        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 {
    /// Construct a new leaky bucket through a builder.
    #[cfg(feature = "static")]
    pub fn builder() -> Builder<'static> {
        LEAKY_BUCKETS.rate_limiter()
    }

    /// Query how many tokens are available.
    ///
    /// This is just a best-effort estimate, calling this to ensure that there
    /// are enough tokens available to avoid blocking does not guarantee that
    /// the acquire operation won't block.
    ///
    /// Tokens is always reported as less than or equal to `max`.
    ///
    /// # Example
    ///
    /// ```rust
    /// use leaky_bucket::LeakyBucket;
    /// use std::{error::Error, time::Duration};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn Error>> {
    ///     let rate_limiter = LeakyBucket::builder()
    ///         .max(5)
    ///         .tokens(0)
    ///         .build()?;
    ///
    ///     assert_eq!(0, rate_limiter.tokens());
    ///
    ///     println!("Waiting for permit...");
    ///     // should take about 5 seconds to acquire.
    ///     rate_limiter.acquire_one().await?;
    ///     println!("I made it!");
    ///
    ///     assert!(rate_limiter.tokens() >= 0 && rate_limiter.tokens() <= rate_limiter.max());
    ///     Ok(())
    /// }
    /// ```
    pub fn tokens(&self) -> usize {
        let tokens = self.inner.tokens.load(Ordering::Acquire);
        self.inner.max.saturating_sub(tokens)
    }

    /// Get the max number of tokens this rate limiter is configured for.
    #[inline]
    pub fn max(&self) -> usize {
        self.inner.max
    }

    /// Acquire a single token.
    ///
    /// This is identical to [`acquire`] with an argument of `1`.
    ///
    /// [`acquire`]: LeakyBucket::acquire
    ///
    /// # Example
    ///
    /// ```rust
    /// use leaky_bucket::LeakyBucket;
    /// use std::{error::Error, time::Duration};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn Error>> {
    ///     let rate_limiter = LeakyBucket::builder()
    ///         .max(5)
    ///         .tokens(0)
    ///         .build()?;
    ///
    ///     assert_eq!(0, rate_limiter.tokens());
    ///
    ///     println!("Waiting for permit...");
    ///     // should take about 5 seconds to acquire.
    ///     rate_limiter.acquire_one().await?;
    ///     println!("I made it!");
    ///
    ///     assert_eq!(0, rate_limiter.tokens());
    ///     Ok(())
    /// }
    /// ```
    #[inline]
    pub fn acquire_one(&self) -> Acquire<'_> {
        self.acquire(1)
    }

    /// Acquire the given `amount` of tokens.
    ///
    /// Note that you _are_ allowed to acquire more tokens than the current
    /// `max`, but the acquire will have to suspend the task until enough
    /// tokens has built up to satisfy the acquire request.
    ///
    /// # Example
    ///
    /// ```rust
    /// use leaky_bucket::LeakyBucket;
    /// use std::{error::Error, time::Duration};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn Error>> {
    ///     let rate_limiter = LeakyBucket::builder()
    ///         .max(5)
    ///         .tokens(5)
    ///         .build()?;
    ///
    ///     assert_eq!(5, rate_limiter.tokens());
    ///
    ///     println!("Waiting for permit...");
    ///     // should take about 5 seconds to acquire.
    ///     rate_limiter.acquire(10).await?;
    ///     println!("I made it!");
    ///
    ///     assert_eq!(0, rate_limiter.tokens());
    ///     Ok(())
    /// }
    /// ```
    ///
    /// # Errors
    ///
    /// The returned future will fail with an [`Error::TokenOverflow`] if the
    /// tracked number of tokens attempts to overflow the internal token
    /// counter, which is an `usize`.
    ///
    /// For this reason you should prefer to use smaller values in the amount
    /// acquired.
    ///
    /// [`Error::TokenOverflow`]: self::Error::TokenOverflow
    pub fn acquire(&self, amount: usize) -> Acquire<'_> {
        Acquire {
            inner: &self.inner,
            amount,
            in_progress: None,
            queued: None,
        }
    }
}

/// Future associated with acquiring a single token.
pub struct Acquire<'a> {
    /// Reference to leaky bucket internals.
    inner: &'a Inner,
    /// The amount of tokens to acquire.
    amount: usize,
    // An owned Sender, used for sending the `Task` struct over.
    // Only created lazily when necessary.
    in_progress: Option<(mpsc::Sender<Task>, usize)>,
    // State of a queued task, or if it was woken up.
    // If defined, this needs to be checked when the task is woken to test if
    // the current acquire is awake or not.
    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> {
        let Self {
            ref inner,
            ref mut in_progress,
            ref mut queued,
            amount,
            ..
        } = *self;

        // 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) = queued {
            return if complete.load(Ordering::Acquire) {
                Poll::Ready(Ok(()))
            } else {
                Poll::Pending
            };
        }

        loop {
            // handle send-in-progress.
            if let Some((ref mut tx, required)) = *in_progress {
                // queue up thread to be released once more tokens are available.
                if let Err(e) = ready!(tx.poll_ready(cx)) {
                    return Poll::Ready(Err(Error::TaskSendError(e)));
                }

                let complete = Arc::new(AtomicBool::new(false));
                *queued = Some(complete.clone());

                let task = Task {
                    required,
                    waker: cx.waker().clone(),
                    complete,
                };

                if let Err(e) = tx.start_send(task) {
                    return Poll::Ready(Err(Error::TaskSendError(e)));
                }

                return Poll::Pending;
            }

            let mut required = amount;

            let mut current = inner.tokens.load(Ordering::Acquire);
            let mut new;

            loop {
                new = match current.checked_add(required) {
                    Some(new) => new,
                    None => {
                        return Poll::Ready(Err(Error::TokenOverflow));
                    }
                };

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

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

            // Slow path:
            //
            // Subtract the number of tokens already consumed from required and
            // enqueue a task to be awoken when the given number of tokens is
            // available.
            if current < inner.max {
                required -= inner.max - current;
            }

            // hand back the sender for the next time.
            *in_progress = Some((inner.task_tx.clone(), required));
        }
    }
}

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

    #[tokio::test]
    async fn test_leaky_bucket() {
        let interval = Duration::from_millis(20);

        let mut 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 = 0u32;
        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().unwrap().boxed()).await;

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

    #[tokio::test]
    async fn test_concurrent_rate_limited() {
        let interval = Duration::from_millis(20);

        let mut 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 = 0u32;

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

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

        let delay = time::delay_for(Duration::from_millis(200));

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

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

        let total = one_wakeups + two_wakeups;

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