summaryrefslogtreecommitdiff
path: root/decorator_utils.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-08 14:38:15 -0800
committerScott Gasch <[email protected]>2022-02-08 14:38:15 -0800
commit0d63d44ac89aab38fe95f36497adaf95110ab949 (patch)
tree150c4fa334505d17d830592901d6b96b3a4d464e /decorator_utils.py
parent5c212d7639f62fcb936f9d7a0bbe704a9f7b213d (diff)
More cleanup.
Diffstat (limited to 'decorator_utils.py')
-rw-r--r--decorator_utils.py33
1 files changed, 21 insertions, 12 deletions
diff --git a/decorator_utils.py b/decorator_utils.py
index 68a9d69..5d1e779 100644
--- a/decorator_utils.py
+++ b/decorator_utils.py
@@ -133,7 +133,7 @@ def rate_limited(n_calls: int, *, per_period_in_seconds: float = 1.0) -> Callabl
wait_time = min_interval_seconds - elapsed_since_last
else:
wait_time = 0.0
- logger.debug(f'@{time.time()}> wait_time = {wait_time}')
+ logger.debug('@%.4f> wait_time = %.4f', time.time(), wait_time)
return wait_time
def wrapper_wrapper_rate_limited(*args, **kargs) -> Any:
@@ -145,10 +145,12 @@ def rate_limited(n_calls: int, *, per_period_in_seconds: float = 1.0) -> Callabl
):
break
with cv:
- logger.debug(f'@{time.time()}> calling it...')
+ logger.debug('@%.4f> calling it...', time.time())
ret = func(*args, **kargs)
last_invocation_timestamp[0] = time.time()
- logger.debug(f'@{time.time()}> Last invocation <- {last_invocation_timestamp[0]}')
+ logger.debug(
+ '@%.4f> Last invocation <- %.4f', time.time(), last_invocation_timestamp[0]
+ )
cv.notify()
return ret
@@ -225,6 +227,11 @@ def debug_count_calls(func: Callable) -> Callable:
class DelayWhen(enum.IntEnum):
+ """When should we delay: before or after calling the function (or
+ both)?
+
+ """
+
BEFORE_CALL = 1
AFTER_CALL = 2
BEFORE_AND_AFTER = 3
@@ -259,11 +266,11 @@ def delay(
@functools.wraps(func)
def wrapper_delay(*args, **kwargs):
if when & DelayWhen.BEFORE_CALL:
- logger.debug(f"@delay for {seconds}s BEFORE_CALL to {func.__name__}")
+ logger.debug("@delay for %fs BEFORE_CALL to %s", seconds, func.__name__)
time.sleep(seconds)
retval = func(*args, **kwargs)
if when & DelayWhen.AFTER_CALL:
- logger.debug(f"@delay for {seconds}s AFTER_CALL to {func.__name__}")
+ logger.debug("@delay for %fs AFTER_CALL to %s", seconds, func.__name__)
time.sleep(seconds)
return retval
@@ -288,7 +295,7 @@ class _SingletonWrapper:
def __call__(self, *args, **kwargs):
"""Returns a single instance of decorated class"""
- logger.debug(f"@singleton returning global instance of {self.__wrapped__.__name__}")
+ logger.debug('@singleton returning global instance of %s', self.__wrapped__.__name__)
if self._instance is None:
self._instance = self.__wrapped__(*args, **kwargs)
return self._instance
@@ -355,13 +362,13 @@ def memoized(func: Callable) -> Callable:
cache_key = args + tuple(kwargs.items())
if cache_key not in wrapper_memoized.cache:
value = func(*args, **kwargs)
- logger.debug(f"Memoizing {cache_key} => {value} for {func.__name__}")
+ logger.debug('Memoizing %s => %s for %s', cache_key, value, func.__name__)
wrapper_memoized.cache[cache_key] = value
else:
- logger.debug(f"Returning memoized value for {func.__name__}")
+ logger.debug('Returning memoized value for %s', {func.__name__})
return wrapper_memoized.cache[cache_key]
- wrapper_memoized.cache = dict() # type: ignore
+ wrapper_memoized.cache = {} # type: ignore
return wrapper_memoized
@@ -403,7 +410,7 @@ def retry_predicate(
@functools.wraps(f)
def f_retry(*args, **kwargs):
mtries, mdelay = tries, delay_sec # make mutable
- logger.debug(f'deco_retry: will make up to {mtries} attempts...')
+ logger.debug('deco_retry: will make up to %d attempts...', mtries)
retval = f(*args, **kwargs)
while mtries > 0:
if predicate(retval) is True:
@@ -537,7 +544,7 @@ def thunkify(func):
def _raise_exception(exception, error_message: Optional[str]):
if error_message is None:
- raise Exception()
+ raise Exception(exception)
else:
raise Exception(error_message)
@@ -620,6 +627,7 @@ class _Timeout(object):
if flag:
return load
raise load
+ return None
def timeout(
@@ -722,7 +730,8 @@ def call_with_sample_rate(sample_rate: float) -> Callable:
if random.uniform(0, 1) < sample_rate:
return f(*args, **kwargs)
else:
- logger.debug(f"@call_with_sample_rate skipping a call to {f.__name__}")
+ logger.debug("@call_with_sample_rate skipping a call to %s", f.__name__)
+ return None
return _call_with_sample_rate