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
mod bucket;
use self::bucket::{Bucket, BucketQueueTask};
use super::{
ticket::{self, TicketNotifier},
Bucket as InfoBucket, Ratelimiter,
};
use crate::{
request::Path, GetBucketFuture, GetTicketFuture, HasBucketFuture, IsGloballyLockedFuture,
};
use futures_util::future;
use std::{
collections::hash_map::{Entry, HashMap},
sync::{
atomic::{AtomicBool, Ordering},
Arc, Mutex,
},
time::Duration,
};
use tokio::sync::Mutex as AsyncMutex;
#[derive(Debug, Default)]
struct GlobalLockPair(AsyncMutex<()>, AtomicBool);
impl GlobalLockPair {
pub fn lock(&self) {
self.1.store(true, Ordering::Release);
}
pub fn unlock(&self) {
self.1.store(false, Ordering::Release);
}
pub fn is_locked(&self) -> bool {
self.1.load(Ordering::Relaxed)
}
}
#[derive(Clone, Debug, Default)]
pub struct InMemoryRatelimiter {
buckets: Arc<Mutex<HashMap<Path, Arc<Bucket>>>>,
global: Arc<GlobalLockPair>,
}
impl InMemoryRatelimiter {
#[must_use]
pub fn new() -> Self {
Self::default()
}
fn entry(&self, path: Path, tx: TicketNotifier) -> (Arc<Bucket>, bool) {
let mut buckets = self.buckets.lock().expect("buckets poisoned");
match buckets.entry(path.clone()) {
Entry::Occupied(bucket) => {
#[cfg(feature = "tracing")]
tracing::debug!("got existing bucket: {:?}", path);
let bucket = bucket.into_mut();
bucket.queue.push(tx);
#[cfg(feature = "tracing")]
tracing::debug!("added request into bucket queue: {:?}", path);
(Arc::clone(bucket), false)
}
Entry::Vacant(entry) => {
#[cfg(feature = "tracing")]
tracing::debug!("making new bucket for path: {:?}", path);
let bucket = Bucket::new(path);
bucket.queue.push(tx);
let bucket = Arc::new(bucket);
entry.insert(Arc::clone(&bucket));
(bucket, true)
}
}
}
}
impl Ratelimiter for InMemoryRatelimiter {
fn bucket(&self, path: &Path) -> GetBucketFuture {
self.buckets
.lock()
.expect("buckets poisoned")
.get(path)
.map_or_else(
|| Box::pin(future::ok(None)),
|bucket| {
let started_at = bucket.started_at.lock().expect("bucket poisoned");
Box::pin(future::ok(Some(InfoBucket {
limit: bucket.limit(),
remaining: bucket.remaining(),
reset_after: Duration::from_millis(bucket.reset_after()),
started_at: *started_at,
})))
},
)
}
fn globally_locked(&self) -> IsGloballyLockedFuture {
Box::pin(future::ok(self.global.is_locked()))
}
fn has(&self, path: &Path) -> HasBucketFuture {
let has = self
.buckets
.lock()
.expect("buckets poisoned")
.contains_key(path);
Box::pin(future::ok(has))
}
fn ticket(&self, path: Path) -> GetTicketFuture {
#[cfg(feature = "tracing")]
tracing::debug!("getting bucket for path: {:?}", path);
let (tx, rx) = ticket::channel();
let (bucket, fresh) = self.entry(path.clone(), tx);
if fresh {
tokio::spawn(
BucketQueueTask::new(
bucket,
Arc::clone(&self.buckets),
Arc::clone(&self.global),
path,
)
.run(),
);
}
Box::pin(future::ok(rx))
}
}