Last active
October 8, 2016 00:05
-
-
Save qix/33d3d9dc17f2c1944faaa2d478614120 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
class Bucket(object): | |
def __init__(self, max_amount, refill_time, refill_amount): | |
self.max_amount = max_amount | |
self.refill_time = refill_time | |
self.refill_amount = refill_amount | |
self.reset() | |
def _refill_count(self): | |
return int(((time.time() - self.last_update) / self.refill_time) | |
def reset(self): | |
self.value = self.max_amount | |
self.last_update = time.time() | |
def get(self): | |
return min( | |
self.max_amount, | |
self.value + self._refill_count() * self.refill_amount | |
) | |
def reduce(self, tokens): | |
refill_count = self._refill_count() | |
self.value += refill_count * self.refill_amount | |
self.last_update += refill_count * self.refill_time | |
if self.value >= self.max_amount: | |
self.reset() | |
if tokens > self.value: | |
return False | |
self.value -= tokens | |
return True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment