Source code for dramatiq.rate_limits.backend
# This file is a part of Dramatiq.
#
# Copyright (C) 2017,2018 CLEARTYPE SRL <[email protected]>
#
# Dramatiq is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at
# your option) any later version.
#
# Dramatiq is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
[docs]
class RateLimiterBackend:
"""ABC for rate limiter backends.
"""
[docs]
def add(self, key, value, ttl): # pragma: no cover
"""Add a key to the backend iff it doesn't exist.
Parameters:
key(str): The key to add.
value(int): The value to add.
ttl(int): The max amount of time in milliseconds the key can
live in the backend for.
"""
raise NotImplementedError
[docs]
def incr(self, key, amount, maximum, ttl): # pragma: no cover
"""Atomically increment a key in the backend up to the given
maximum.
Parameters:
key(str): The key to increment.
amount(int): The amount to increment the value by.
maximum(int): The maximum amount the value can have.
ttl(int): The max amount of time in milliseconds the key can
live in the backend for.
Returns:
bool: True if the key was successfully incremented.
"""
raise NotImplementedError
[docs]
def decr(self, key, amount, minimum, ttl): # pragma: no cover
"""Atomically decrement a key in the backend up to the given
maximum.
Parameters:
key(str): The key to decrement.
amount(int): The amount to decrement the value by.
minimum(int): The minimum amount the value can have.
ttl(int): The max amount of time in milliseconds the key can
live in the backend for.
Returns:
bool: True if the key was successfully decremented.
"""
raise NotImplementedError
[docs]
def incr_and_sum(self, key, keys, amount, maximum, ttl): # pragma: no cover
"""Atomically increment a key unless the sum of keys is greater
than the given maximum.
Parameters:
key(str): The key to increment.
keys(callable): A callable to return the list of keys to be
summed over.
amount(int): The amount to decrement the value by.
maximum(int): The maximum sum of the keys.
ttl(int): The max amount of time in milliseconds the key can
live in the backend for.
Returns:
bool: True if the key was successfully incremented.
"""
raise NotImplementedError
[docs]
def wait(self, key, timeout): # pragma: no cover
"""Wait until an event is published to the given key or the
timeout expires. This is used to implement efficient blocking
against a synchronized resource.
Parameters:
key(str): The key to wait on.
timeout(int): The timeout in milliseconds.
Returns:
bool: True if en event was published before the timeout.
"""
raise NotImplementedError
[docs]
def wait_notify(self, key, ttl): # pragma: no cover
"""Notify parties wait()ing on a key that an event has
occurred. The default implementation is a no-op.
Parameters:
key(str): The key to notify on.
ttl(int): The max amount of time in milliseconds that the
notification should exist for.
Returns:
None
"""