forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoken_bucket.py
More file actions
100 lines (87 loc) · 3.43 KB
/
Copy pathtoken_bucket.py
File metadata and controls
100 lines (87 loc) · 3.43 KB
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
"""
Implementation of the Token Bucket Algorithm
Token `rate` is added to the bucket every `frequency` seconds.
The bucket can hold tokens up to `capacity` (full).
The bucket starts full.
Each request consumes one token.
If a token arrives when the bucket is full, the token is discarded.
If a request arrives when the bucket is empty, it is discarded.
If the bucket has tokens available, requests will pass.
https://en.wikipedia.org/wiki/Token_bucket
"""
import threading
import time
class TokenBucketRateLimiter:
def __init__(self, rate: int, capacity: int, frequency: int) -> None:
"""
Initialize a Token Bucket rate limiter.
:param rate: Number of tokens added to the bucket per refill
:param capacity: Maximum number of tokens the bucket can hold.
:param frequency: Frequency of refill in seconds
>>> bucket = TokenBucketRateLimiter(4, 4, 60)
>>> bucket.tokens
4
>>> bucket.capacity
4
>>> bucket.frequency
60
"""
self.rate = rate # Tokens added per refill
self.capacity = capacity # Maximum capacity of the bucket
self.frequency = frequency # Frequency tokens are refilled
self.tokens = capacity # Current tokens in the bucket
self.last_checked = time.time() # Time when tokens were last checked
self.lock = threading.Lock() # To make the rate limiter thread-safe
def _add_tokens(self) -> None:
"""
Refill tokens only when a full minute has passed.
>>> bucket = TokenBucketRateLimiter(1, 4, 60)
>>> bucket.tokens # Initially has a rate of 4 tokens
4
>>> bucket._add_tokens()
>>> bucket.tokens # Bucket already full
4
"""
current_time = time.time()
elapsed_time = current_time - self.last_checked
if elapsed_time >= self.frequency:
minutes_passed = int(elapsed_time // self.frequency)
# Add tokens based on rate
added_tokens = minutes_passed * self.rate
self.tokens = min(self.capacity, self.tokens + added_tokens)
# Update the last checked time
self.last_checked += minutes_passed * self.frequency
def allow_request(self) -> bool:
"""
Check if a request is allowed.
If there are enough tokens, it consumes one token.
:return: True if the request is allowed, False otherwise.
>>> bucket = TokenBucketRateLimiter(1, 2, 60)
>>> bucket.allow_request() # Token is available, request passes
True
>>> bucket.allow_request() # Token is available, request passes
True
>>> bucket.allow_request() # No token left, request is dropped
False
"""
with self.lock:
self._add_tokens()
if self.tokens >= 1:
self.tokens -= 1
return True
return False
if __name__ == "__main__":
import doctest
doctest.testmod()
print("Allow 4 requests per minute, capacity of 4")
bucket = TokenBucketRateLimiter(4, 4, 60)
total_requests = 10
delay_in_seconds = 10
print("Simulate 1 request per 10 seconds...")
for i in range(total_requests):
result = "pass" if bucket.allow_request() else "dropped"
print(
f"Request {i + 1}/{total_requests} \
timeline: {i * delay_in_seconds} seconds = {result}"
)
time.sleep(delay_in_seconds)