2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2018-04-05 11:24:04 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2015-08-11 12:59:32 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2020-10-30 07:43:17 -04:00
|
|
|
import enum
|
2018-07-09 02:09:20 -04:00
|
|
|
import functools
|
|
|
|
import inspect
|
2015-08-11 12:59:32 -04:00
|
|
|
import logging
|
2020-10-30 07:43:17 -04:00
|
|
|
from typing import (
|
|
|
|
Any,
|
|
|
|
Callable,
|
2021-11-16 08:47:36 -05:00
|
|
|
Dict,
|
2020-10-30 07:43:17 -04:00
|
|
|
Generic,
|
2021-11-16 08:47:36 -05:00
|
|
|
Hashable,
|
2020-10-30 07:43:17 -04:00
|
|
|
Iterable,
|
|
|
|
Mapping,
|
|
|
|
Optional,
|
|
|
|
Sequence,
|
|
|
|
Tuple,
|
2021-11-16 08:47:36 -05:00
|
|
|
Type,
|
2020-10-30 07:43:17 -04:00
|
|
|
TypeVar,
|
|
|
|
Union,
|
|
|
|
cast,
|
|
|
|
)
|
2019-11-07 04:43:51 -05:00
|
|
|
from weakref import WeakValueDictionary
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.internet import defer
|
2021-11-16 08:47:36 -05:00
|
|
|
from twisted.python.failure import Failure
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import make_deferred_yieldable, preserve_fn
|
|
|
|
from synapse.util import unwrapFirstError
|
2020-10-14 18:25:23 -04:00
|
|
|
from synapse.util.caches.deferred_cache import DeferredCache
|
2020-10-30 07:43:17 -04:00
|
|
|
from synapse.util.caches.lrucache import LruCache
|
2015-08-11 12:59:32 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2019-11-07 04:43:51 -05:00
|
|
|
CacheKey = Union[Tuple, Any]
|
|
|
|
|
2020-09-03 10:38:32 -04:00
|
|
|
F = TypeVar("F", bound=Callable[..., Any])
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2020-09-03 10:38:32 -04:00
|
|
|
|
|
|
|
class _CachedFunction(Generic[F]):
|
2021-07-15 12:46:54 -04:00
|
|
|
invalidate: Any = None
|
|
|
|
invalidate_all: Any = None
|
|
|
|
prefill: Any = None
|
|
|
|
cache: Any = None
|
|
|
|
num_args: Any = None
|
2019-10-02 08:29:01 -04:00
|
|
|
|
2021-07-15 12:46:54 -04:00
|
|
|
__name__: str
|
2020-09-03 10:38:32 -04:00
|
|
|
|
|
|
|
# Note: This function signature is actually fiddled with by the synapse mypy
|
|
|
|
# plugin to a) make it a bound method, and b) remove any `cache_context` arg.
|
2021-07-15 12:46:54 -04:00
|
|
|
__call__: F
|
2019-10-02 08:29:01 -04:00
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class _CacheDescriptorBase:
|
2021-11-16 08:47:36 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
orig: Callable[..., Any],
|
|
|
|
num_args: Optional[int],
|
|
|
|
cache_context: bool = False,
|
|
|
|
):
|
2017-03-22 09:54:20 -04:00
|
|
|
self.orig = orig
|
|
|
|
|
2019-12-12 12:03:28 -05:00
|
|
|
arg_spec = inspect.getfullargspec(orig)
|
2017-03-22 09:54:20 -04:00
|
|
|
all_args = arg_spec.args
|
|
|
|
|
|
|
|
if "cache_context" in all_args:
|
|
|
|
if not cache_context:
|
|
|
|
raise ValueError(
|
|
|
|
"Cannot have a 'cache_context' arg without setting"
|
|
|
|
" cache_context=True"
|
|
|
|
)
|
|
|
|
elif cache_context:
|
|
|
|
raise ValueError(
|
|
|
|
"Cannot have cache_context=True without having an arg"
|
|
|
|
" named `cache_context`"
|
|
|
|
)
|
|
|
|
|
|
|
|
if num_args is None:
|
|
|
|
num_args = len(all_args) - 1
|
|
|
|
if cache_context:
|
|
|
|
num_args -= 1
|
|
|
|
|
|
|
|
if len(all_args) < num_args + 1:
|
|
|
|
raise Exception(
|
|
|
|
"Not enough explicit positional arguments to key off for %r: "
|
|
|
|
"got %i args, but wanted %i. (@cached cannot key off *args or "
|
|
|
|
"**kwargs)" % (orig.__name__, len(all_args), num_args)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.num_args = num_args
|
2017-03-30 09:19:10 -04:00
|
|
|
|
|
|
|
# list of the names of the args used as the cache key
|
2017-03-22 09:54:20 -04:00
|
|
|
self.arg_names = all_args[1 : num_args + 1]
|
|
|
|
|
2017-03-30 09:19:10 -04:00
|
|
|
# self.arg_defaults is a map of arg name to its default value for each
|
|
|
|
# argument that has a default value
|
2017-03-28 06:14:15 -04:00
|
|
|
if arg_spec.defaults:
|
|
|
|
self.arg_defaults = dict(
|
|
|
|
zip(all_args[-len(arg_spec.defaults) :], arg_spec.defaults)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self.arg_defaults = {}
|
|
|
|
|
2017-03-22 09:54:20 -04:00
|
|
|
if "cache_context" in self.arg_names:
|
|
|
|
raise Exception("cache_context arg cannot be included among the cache keys")
|
|
|
|
|
|
|
|
self.add_cache_context = cache_context
|
|
|
|
|
2020-10-30 07:43:17 -04:00
|
|
|
self.cache_key_builder = get_cache_key_builder(
|
|
|
|
self.arg_names, self.arg_defaults
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class _LruCachedFunction(Generic[F]):
|
2021-07-15 12:46:54 -04:00
|
|
|
cache: LruCache[CacheKey, Any]
|
|
|
|
__call__: F
|
2020-10-30 07:43:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
def lru_cache(
|
|
|
|
max_entries: int = 1000,
|
|
|
|
cache_context: bool = False,
|
|
|
|
) -> Callable[[F], _LruCachedFunction[F]]:
|
|
|
|
"""A method decorator that applies a memoizing cache around the function.
|
|
|
|
|
|
|
|
This is more-or-less a drop-in equivalent to functools.lru_cache, although note
|
|
|
|
that the signature is slightly different.
|
|
|
|
|
|
|
|
The main differences with functools.lru_cache are:
|
|
|
|
(a) the size of the cache can be controlled via the cache_factor mechanism
|
|
|
|
(b) the wrapped function can request a "cache_context" which provides a
|
|
|
|
callback mechanism to indicate that the result is no longer valid
|
|
|
|
(c) prometheus metrics are exposed automatically.
|
|
|
|
|
|
|
|
The function should take zero or more arguments, which are used as the key for the
|
|
|
|
cache. Single-argument functions use that argument as the cache key; otherwise the
|
|
|
|
arguments are built into a tuple.
|
|
|
|
|
|
|
|
Cached functions can be "chained" (i.e. a cached function can call other cached
|
|
|
|
functions and get appropriately invalidated when they called caches are
|
|
|
|
invalidated) by adding a special "cache_context" argument to the function
|
|
|
|
and passing that as a kwarg to all caches called. For example:
|
|
|
|
|
|
|
|
@lru_cache(cache_context=True)
|
|
|
|
def foo(self, key, cache_context):
|
|
|
|
r1 = self.bar1(key, on_invalidate=cache_context.invalidate)
|
|
|
|
r2 = self.bar2(key, on_invalidate=cache_context.invalidate)
|
|
|
|
return r1 + r2
|
|
|
|
|
|
|
|
The wrapped function also has a 'cache' property which offers direct access to the
|
|
|
|
underlying LruCache.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def func(orig: F) -> _LruCachedFunction[F]:
|
|
|
|
desc = LruCacheDescriptor(
|
|
|
|
orig,
|
|
|
|
max_entries=max_entries,
|
|
|
|
cache_context=cache_context,
|
|
|
|
)
|
|
|
|
return cast(_LruCachedFunction[F], desc)
|
|
|
|
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
|
|
|
class LruCacheDescriptor(_CacheDescriptorBase):
|
|
|
|
"""Helper for @lru_cache"""
|
|
|
|
|
|
|
|
class _Sentinel(enum.Enum):
|
|
|
|
sentinel = object()
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
2021-11-16 08:47:36 -05:00
|
|
|
orig: Callable[..., Any],
|
2020-10-30 07:43:17 -04:00
|
|
|
max_entries: int = 1000,
|
|
|
|
cache_context: bool = False,
|
|
|
|
):
|
|
|
|
super().__init__(orig, num_args=None, cache_context=cache_context)
|
|
|
|
self.max_entries = max_entries
|
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def __get__(self, obj: Optional[Any], owner: Optional[Type]) -> Callable[..., Any]:
|
2021-07-15 12:46:54 -04:00
|
|
|
cache: LruCache[CacheKey, Any] = LruCache(
|
2020-10-30 07:43:17 -04:00
|
|
|
cache_name=self.orig.__name__,
|
|
|
|
max_size=self.max_entries,
|
2021-07-15 12:46:54 -04:00
|
|
|
)
|
2020-10-30 07:43:17 -04:00
|
|
|
|
|
|
|
get_cache_key = self.cache_key_builder
|
|
|
|
sentinel = LruCacheDescriptor._Sentinel.sentinel
|
|
|
|
|
|
|
|
@functools.wraps(self.orig)
|
2021-11-16 08:47:36 -05:00
|
|
|
def _wrapped(*args: Any, **kwargs: Any) -> Any:
|
2020-10-30 07:43:17 -04:00
|
|
|
invalidate_callback = kwargs.pop("on_invalidate", None)
|
|
|
|
callbacks = (invalidate_callback,) if invalidate_callback else ()
|
|
|
|
|
|
|
|
cache_key = get_cache_key(args, kwargs)
|
2017-03-22 09:54:20 -04:00
|
|
|
|
2020-10-30 07:43:17 -04:00
|
|
|
ret = cache.get(cache_key, default=sentinel, callbacks=callbacks)
|
|
|
|
if ret != sentinel:
|
|
|
|
return ret
|
|
|
|
|
|
|
|
# Add our own `cache_context` to argument list if the wrapped function
|
|
|
|
# has asked for one
|
|
|
|
if self.add_cache_context:
|
|
|
|
kwargs["cache_context"] = _CacheContext.get_instance(cache, cache_key)
|
|
|
|
|
|
|
|
ret2 = self.orig(obj, *args, **kwargs)
|
|
|
|
cache.set(cache_key, ret2, callbacks=callbacks)
|
|
|
|
|
|
|
|
return ret2
|
|
|
|
|
|
|
|
wrapped = cast(_CachedFunction, _wrapped)
|
|
|
|
wrapped.cache = cache
|
|
|
|
obj.__dict__[self.orig.__name__] = wrapped
|
|
|
|
|
|
|
|
return wrapped
|
|
|
|
|
|
|
|
|
|
|
|
class DeferredCacheDescriptor(_CacheDescriptorBase):
|
2015-08-11 12:59:32 -04:00
|
|
|
"""A method decorator that applies a memoizing cache around the function.
|
|
|
|
|
|
|
|
This caches deferreds, rather than the results themselves. Deferreds that
|
|
|
|
fail are removed from the cache.
|
|
|
|
|
|
|
|
The function is presumed to take zero or more arguments, which are used in
|
|
|
|
a tuple as the key for the cache. Hits are served directly from the cache;
|
|
|
|
misses use the function body to generate the value.
|
|
|
|
|
|
|
|
The wrapped function has an additional member, a callable called
|
|
|
|
"invalidate". This can be used to remove individual entries from the cache.
|
|
|
|
|
|
|
|
The wrapped function has another additional callable, called "prefill",
|
|
|
|
which can be used to insert values into the cache specifically, without
|
|
|
|
calling the calculation function.
|
2016-08-19 06:18:26 -04:00
|
|
|
|
|
|
|
Cached functions can be "chained" (i.e. a cached function can call other cached
|
|
|
|
functions and get appropriately invalidated when they called caches are
|
|
|
|
invalidated) by adding a special "cache_context" argument to the function
|
|
|
|
and passing that as a kwarg to all caches called. For example::
|
|
|
|
|
2020-08-19 07:09:07 -04:00
|
|
|
@cached(cache_context=True)
|
2016-08-19 06:18:26 -04:00
|
|
|
def foo(self, key, cache_context):
|
2016-08-19 10:13:58 -04:00
|
|
|
r1 = yield self.bar1(key, on_invalidate=cache_context.invalidate)
|
|
|
|
r2 = yield self.bar2(key, on_invalidate=cache_context.invalidate)
|
2019-07-23 09:00:55 -04:00
|
|
|
return r1 + r2
|
2016-08-19 06:18:26 -04:00
|
|
|
|
2017-03-22 09:54:20 -04:00
|
|
|
Args:
|
2022-02-02 10:11:23 -05:00
|
|
|
orig:
|
|
|
|
max_entries:
|
2021-11-16 08:47:36 -05:00
|
|
|
num_args: number of positional arguments (excluding ``self`` and
|
2017-03-22 09:54:20 -04:00
|
|
|
``cache_context``) to use as cache keys. Defaults to all named
|
|
|
|
args of the function.
|
2022-02-02 10:11:23 -05:00
|
|
|
tree:
|
|
|
|
cache_context:
|
|
|
|
iterable:
|
|
|
|
prune_unread_entries: If True, cache entries that haven't been read recently
|
|
|
|
will be evicted from the cache in the background. Set to False to opt-out
|
|
|
|
of this behaviour.
|
2015-08-11 12:59:32 -04:00
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2017-03-22 09:54:20 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
2021-11-16 08:47:36 -05:00
|
|
|
orig: Callable[..., Any],
|
|
|
|
max_entries: int = 1000,
|
|
|
|
num_args: Optional[int] = None,
|
|
|
|
tree: bool = False,
|
|
|
|
cache_context: bool = False,
|
|
|
|
iterable: bool = False,
|
2021-09-22 09:21:58 -04:00
|
|
|
prune_unread_entries: bool = True,
|
2017-01-13 12:46:17 -05:00
|
|
|
):
|
2020-08-19 07:09:07 -04:00
|
|
|
super().__init__(orig, num_args=num_args, cache_context=cache_context)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2021-05-27 05:33:56 -04:00
|
|
|
if tree and self.num_args < 2:
|
|
|
|
raise RuntimeError(
|
|
|
|
"tree=True is nonsensical for cached functions with a single parameter"
|
|
|
|
)
|
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
self.max_entries = max_entries
|
2016-01-22 07:10:33 -05:00
|
|
|
self.tree = tree
|
2017-01-13 12:46:17 -05:00
|
|
|
self.iterable = iterable
|
2021-09-22 09:21:58 -04:00
|
|
|
self.prune_unread_entries = prune_unread_entries
|
2017-01-13 12:46:17 -05:00
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def __get__(self, obj: Optional[Any], owner: Optional[Type]) -> Callable[..., Any]:
|
2021-07-15 12:46:54 -04:00
|
|
|
cache: DeferredCache[CacheKey, Any] = DeferredCache(
|
2015-08-11 12:59:32 -04:00
|
|
|
name=self.orig.__name__,
|
|
|
|
max_entries=self.max_entries,
|
2016-01-22 07:10:33 -05:00
|
|
|
tree=self.tree,
|
2017-01-13 12:46:17 -05:00
|
|
|
iterable=self.iterable,
|
2021-09-22 09:21:58 -04:00
|
|
|
prune_unread_entries=self.prune_unread_entries,
|
2021-07-15 12:46:54 -04:00
|
|
|
)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2020-10-30 07:43:17 -04:00
|
|
|
get_cache_key = self.cache_key_builder
|
2017-05-04 09:18:46 -04:00
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
@functools.wraps(self.orig)
|
2021-11-16 08:47:36 -05:00
|
|
|
def _wrapped(*args: Any, **kwargs: Any) -> Any:
|
2016-08-19 10:02:38 -04:00
|
|
|
# If we're passed a cache_context then we'll want to call its invalidate()
|
|
|
|
# whenever we are invalidated
|
2016-08-19 10:13:58 -04:00
|
|
|
invalidate_callback = kwargs.pop("on_invalidate", None)
|
2016-08-19 06:18:26 -04:00
|
|
|
|
2017-05-04 09:18:46 -04:00
|
|
|
cache_key = get_cache_key(args, kwargs)
|
2016-08-19 06:18:26 -04:00
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
try:
|
2020-10-16 07:34:55 -04:00
|
|
|
ret = cache.get(cache_key, callback=invalidate_callback)
|
2015-08-11 12:59:32 -04:00
|
|
|
except KeyError:
|
2020-10-21 17:57:45 -04:00
|
|
|
# Add our own `cache_context` to argument list if the wrapped function
|
|
|
|
# has asked for one
|
|
|
|
if self.add_cache_context:
|
|
|
|
kwargs["cache_context"] = _CacheContext.get_instance(
|
|
|
|
cache, cache_key
|
|
|
|
)
|
|
|
|
|
2020-08-19 07:09:07 -04:00
|
|
|
ret = defer.maybeDeferred(preserve_fn(self.orig), obj, *args, **kwargs)
|
2020-10-16 07:34:55 -04:00
|
|
|
ret = cache.set(cache_key, ret, callback=invalidate_callback)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2020-10-16 07:34:55 -04:00
|
|
|
return make_deferred_yieldable(ret)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2019-10-02 08:29:01 -04:00
|
|
|
wrapped = cast(_CachedFunction, _wrapped)
|
|
|
|
|
2017-05-04 09:18:46 -04:00
|
|
|
if self.num_args == 1:
|
2021-05-27 05:33:56 -04:00
|
|
|
assert not self.tree
|
2017-05-04 09:18:46 -04:00
|
|
|
wrapped.invalidate = lambda key: cache.invalidate(key[0])
|
|
|
|
wrapped.prefill = lambda key, val: cache.prefill(key[0], val)
|
|
|
|
else:
|
|
|
|
wrapped.invalidate = cache.invalidate
|
|
|
|
wrapped.prefill = cache.prefill
|
|
|
|
|
2016-04-06 08:08:05 -04:00
|
|
|
wrapped.invalidate_all = cache.invalidate_all
|
|
|
|
wrapped.cache = cache
|
2017-05-22 10:04:42 -04:00
|
|
|
wrapped.num_args = self.num_args
|
2015-08-11 12:59:32 -04:00
|
|
|
|
|
|
|
obj.__dict__[self.orig.__name__] = wrapped
|
|
|
|
|
|
|
|
return wrapped
|
|
|
|
|
|
|
|
|
2020-10-30 07:43:17 -04:00
|
|
|
class DeferredCacheListDescriptor(_CacheDescriptorBase):
|
2015-08-11 12:59:32 -04:00
|
|
|
"""Wraps an existing cache to support bulk fetching of keys.
|
|
|
|
|
2021-05-14 06:12:36 -04:00
|
|
|
Given an iterable of keys it looks in the cache to find any hits, then passes
|
|
|
|
the tuple of missing keys to the wrapped function.
|
2017-03-30 08:22:24 -04:00
|
|
|
|
2019-10-29 07:48:24 -04:00
|
|
|
Once wrapped, the function returns a Deferred which resolves to the list
|
|
|
|
of results.
|
2015-08-11 12:59:32 -04:00
|
|
|
"""
|
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
orig: Callable[..., Any],
|
|
|
|
cached_method_name: str,
|
|
|
|
list_name: str,
|
|
|
|
num_args: Optional[int] = None,
|
|
|
|
):
|
2015-08-11 12:59:32 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2021-11-16 08:47:36 -05:00
|
|
|
orig
|
|
|
|
cached_method_name: The name of the cached method.
|
|
|
|
list_name: Name of the argument which is the bulk lookup list
|
|
|
|
num_args: number of positional arguments (excluding ``self``,
|
2017-03-22 09:54:20 -04:00
|
|
|
but including list_name) to use as cache keys. Defaults to all
|
|
|
|
named args of the function.
|
2015-08-11 12:59:32 -04:00
|
|
|
"""
|
2020-08-19 07:09:07 -04:00
|
|
|
super().__init__(orig, num_args=num_args)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
|
|
|
self.list_name = list_name
|
|
|
|
|
|
|
|
self.list_pos = self.arg_names.index(self.list_name)
|
2016-04-06 08:08:05 -04:00
|
|
|
self.cached_method_name = cached_method_name
|
2015-08-11 12:59:32 -04:00
|
|
|
|
|
|
|
self.sentinel = object()
|
|
|
|
|
|
|
|
if self.list_name not in self.arg_names:
|
|
|
|
raise Exception(
|
|
|
|
"Couldn't see arguments %r for %r."
|
2016-04-06 08:08:05 -04:00
|
|
|
% (self.list_name, cached_method_name)
|
2015-08-11 12:59:32 -04:00
|
|
|
)
|
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def __get__(
|
|
|
|
self, obj: Optional[Any], objtype: Optional[Type] = None
|
|
|
|
) -> Callable[..., Any]:
|
2017-05-22 10:04:42 -04:00
|
|
|
cached_method = getattr(obj, self.cached_method_name)
|
2021-07-15 12:46:54 -04:00
|
|
|
cache: DeferredCache[CacheKey, Any] = cached_method.cache
|
2017-05-22 10:04:42 -04:00
|
|
|
num_args = cached_method.num_args
|
2016-04-06 08:08:05 -04:00
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
@functools.wraps(self.orig)
|
2021-11-16 08:47:36 -05:00
|
|
|
def wrapped(*args: Any, **kwargs: Any) -> Any:
|
2018-06-10 17:38:50 -04:00
|
|
|
# If we're passed a cache_context then we'll want to call its
|
|
|
|
# invalidate() whenever we are invalidated
|
2016-08-19 10:13:58 -04:00
|
|
|
invalidate_callback = kwargs.pop("on_invalidate", None)
|
2016-08-19 06:18:26 -04:00
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
arg_dict = inspect.getcallargs(self.orig, obj, *args, **kwargs)
|
|
|
|
keyargs = [arg_dict[arg_nm] for arg_nm in self.arg_names]
|
|
|
|
list_args = arg_dict[self.list_name]
|
|
|
|
|
2016-06-01 13:01:22 -04:00
|
|
|
results = {}
|
2018-06-10 17:38:50 -04:00
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def update_results_dict(res: Any, arg: Hashable) -> None:
|
2018-06-10 17:38:50 -04:00
|
|
|
results[arg] = res
|
|
|
|
|
|
|
|
# list of deferreds to wait for
|
|
|
|
cached_defers = []
|
|
|
|
|
|
|
|
missing = set()
|
2017-05-22 10:12:19 -04:00
|
|
|
|
|
|
|
# If the cache takes a single arg then that is used as the key,
|
|
|
|
# otherwise a tuple is used.
|
|
|
|
if num_args == 1:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def arg_to_cache_key(arg: Hashable) -> Hashable:
|
2018-06-10 17:38:50 -04:00
|
|
|
return arg
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2017-05-22 10:12:19 -04:00
|
|
|
else:
|
2018-06-10 17:38:50 -04:00
|
|
|
keylist = list(keyargs)
|
2017-05-22 10:12:19 -04:00
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def arg_to_cache_key(arg: Hashable) -> Hashable:
|
2018-06-10 17:38:50 -04:00
|
|
|
keylist[self.list_pos] = arg
|
|
|
|
return tuple(keylist)
|
2017-05-22 10:12:19 -04:00
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
for arg in list_args:
|
|
|
|
try:
|
2018-06-10 17:38:50 -04:00
|
|
|
res = cache.get(arg_to_cache_key(arg), callback=invalidate_callback)
|
2020-10-16 07:34:55 -04:00
|
|
|
if not res.called:
|
2018-06-10 17:38:50 -04:00
|
|
|
res.addCallback(update_results_dict, arg)
|
|
|
|
cached_defers.append(res)
|
2016-06-01 13:01:22 -04:00
|
|
|
else:
|
2020-10-16 07:34:55 -04:00
|
|
|
results[arg] = res.result
|
2015-08-11 12:59:32 -04:00
|
|
|
except KeyError:
|
2018-06-10 17:38:50 -04:00
|
|
|
missing.add(arg)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
|
|
|
if missing:
|
2019-07-25 10:59:45 -04:00
|
|
|
# we need a deferred for each entry in the list,
|
2018-06-10 17:38:50 -04:00
|
|
|
# which we put in the cache. Each deferred resolves with the
|
|
|
|
# relevant result for that key.
|
|
|
|
deferreds_map = {}
|
|
|
|
for arg in missing:
|
2021-07-28 08:04:11 -04:00
|
|
|
deferred: "defer.Deferred[Any]" = defer.Deferred()
|
2018-06-10 17:38:50 -04:00
|
|
|
deferreds_map[arg] = deferred
|
|
|
|
key = arg_to_cache_key(arg)
|
2019-07-25 10:59:45 -04:00
|
|
|
cache.set(key, deferred, callback=invalidate_callback)
|
2018-06-10 17:38:50 -04:00
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def complete_all(res: Dict[Hashable, Any]) -> None:
|
2018-06-10 17:38:50 -04:00
|
|
|
# the wrapped function has completed. It returns a
|
|
|
|
# a dict. We can now resolve the observable deferreds in
|
|
|
|
# the cache and update our own result map.
|
|
|
|
for e in missing:
|
|
|
|
val = res.get(e, None)
|
|
|
|
deferreds_map[e].callback(val)
|
|
|
|
results[e] = val
|
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def errback(f: Failure) -> Failure:
|
2018-06-10 17:38:50 -04:00
|
|
|
# the wrapped function has failed. Invalidate any cache
|
|
|
|
# entries we're supposed to be populating, and fail
|
|
|
|
# their deferreds.
|
|
|
|
for e in missing:
|
|
|
|
key = arg_to_cache_key(e)
|
|
|
|
cache.invalidate(key)
|
|
|
|
deferreds_map[e].errback(f)
|
|
|
|
|
|
|
|
# return the failure, to propagate to our caller.
|
|
|
|
return f
|
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
args_to_call = dict(arg_dict)
|
2021-05-14 06:12:36 -04:00
|
|
|
# copy the missing set before sending it to the callee, to guard against
|
|
|
|
# modification.
|
|
|
|
args_to_call[self.list_name] = tuple(missing)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2018-06-10 17:38:50 -04:00
|
|
|
cached_defers.append(
|
|
|
|
defer.maybeDeferred(
|
2020-08-19 07:09:07 -04:00
|
|
|
preserve_fn(self.orig), **args_to_call
|
2018-06-10 17:38:50 -04:00
|
|
|
).addCallbacks(complete_all, errback)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2016-06-01 13:01:22 -04:00
|
|
|
|
|
|
|
if cached_defers:
|
2018-06-10 17:38:50 -04:00
|
|
|
d = defer.gatherResults(cached_defers, consumeErrors=True).addCallbacks(
|
|
|
|
lambda _: results, unwrapFirstError
|
|
|
|
)
|
2019-07-03 10:07:04 -04:00
|
|
|
return make_deferred_yieldable(d)
|
2016-06-01 13:01:22 -04:00
|
|
|
else:
|
2019-10-28 09:33:04 -04:00
|
|
|
return defer.succeed(results)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
|
|
|
obj.__dict__[self.orig.__name__] = wrapped
|
|
|
|
|
|
|
|
return wrapped
|
|
|
|
|
|
|
|
|
2019-11-07 04:43:51 -05:00
|
|
|
class _CacheContext:
|
|
|
|
"""Holds cache information from the cached function higher in the calling order.
|
|
|
|
|
|
|
|
Can be used to invalidate the higher level cache entry if something changes
|
|
|
|
on a lower level.
|
|
|
|
"""
|
|
|
|
|
2020-10-30 07:43:17 -04:00
|
|
|
Cache = Union[DeferredCache, LruCache]
|
|
|
|
|
2021-07-15 12:46:54 -04:00
|
|
|
_cache_context_objects: """WeakValueDictionary[
|
|
|
|
Tuple["_CacheContext.Cache", CacheKey], "_CacheContext"
|
|
|
|
]""" = WeakValueDictionary()
|
2019-11-07 04:43:51 -05:00
|
|
|
|
2020-10-30 07:43:17 -04:00
|
|
|
def __init__(self, cache: "_CacheContext.Cache", cache_key: CacheKey) -> None:
|
2019-11-07 04:43:51 -05:00
|
|
|
self._cache = cache
|
|
|
|
self._cache_key = cache_key
|
|
|
|
|
2021-07-15 12:46:54 -04:00
|
|
|
def invalidate(self) -> None:
|
2019-11-07 04:43:51 -05:00
|
|
|
"""Invalidates the cache entry referred to by the context."""
|
|
|
|
self._cache.invalidate(self._cache_key)
|
|
|
|
|
|
|
|
@classmethod
|
2020-10-14 14:43:37 -04:00
|
|
|
def get_instance(
|
2020-10-30 07:43:17 -04:00
|
|
|
cls, cache: "_CacheContext.Cache", cache_key: CacheKey
|
|
|
|
) -> "_CacheContext":
|
2019-11-07 04:43:51 -05:00
|
|
|
"""Returns an instance constructed with the given arguments.
|
|
|
|
|
|
|
|
A new instance is only created if none already exists.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# We make sure there are no identical _CacheContext instances. This is
|
|
|
|
# important in particular to dedupe when we add callbacks to lru cache
|
|
|
|
# nodes, otherwise the number of callbacks would grow.
|
|
|
|
return cls._cache_context_objects.setdefault(
|
|
|
|
(cache, cache_key), cls(cache, cache_key)
|
|
|
|
)
|
2016-08-19 06:18:26 -04:00
|
|
|
|
|
|
|
|
2017-03-22 09:54:20 -04:00
|
|
|
def cached(
|
2020-09-03 10:38:32 -04:00
|
|
|
max_entries: int = 1000,
|
|
|
|
num_args: Optional[int] = None,
|
|
|
|
tree: bool = False,
|
|
|
|
cache_context: bool = False,
|
|
|
|
iterable: bool = False,
|
2021-09-22 09:21:58 -04:00
|
|
|
prune_unread_entries: bool = True,
|
2020-09-03 10:38:32 -04:00
|
|
|
) -> Callable[[F], _CachedFunction[F]]:
|
2020-10-30 07:43:17 -04:00
|
|
|
func = lambda orig: DeferredCacheDescriptor(
|
2015-08-11 12:59:32 -04:00
|
|
|
orig,
|
|
|
|
max_entries=max_entries,
|
|
|
|
num_args=num_args,
|
2016-01-22 07:10:33 -05:00
|
|
|
tree=tree,
|
2016-08-19 10:02:38 -04:00
|
|
|
cache_context=cache_context,
|
2017-01-13 12:46:17 -05:00
|
|
|
iterable=iterable,
|
2021-09-22 09:21:58 -04:00
|
|
|
prune_unread_entries=prune_unread_entries,
|
2015-08-11 12:59:32 -04:00
|
|
|
)
|
|
|
|
|
2020-09-03 10:38:32 -04:00
|
|
|
return cast(Callable[[F], _CachedFunction[F]], func)
|
2015-08-11 12:59:32 -04:00
|
|
|
|
2020-09-03 10:38:32 -04:00
|
|
|
|
|
|
|
def cachedList(
|
|
|
|
cached_method_name: str, list_name: str, num_args: Optional[int] = None
|
|
|
|
) -> Callable[[F], _CachedFunction[F]]:
|
2015-08-12 11:42:46 -04:00
|
|
|
"""Creates a descriptor that wraps a function in a `CacheListDescriptor`.
|
|
|
|
|
|
|
|
Used to do batch lookups for an already created cache. A single argument
|
|
|
|
is specified as a list that is iterated through to lookup keys in the
|
2021-05-14 06:12:36 -04:00
|
|
|
original cache. A new tuple consisting of the (deduplicated) keys that weren't in
|
|
|
|
the cache gets passed to the original function, the result of which is stored in the
|
2015-08-12 11:42:46 -04:00
|
|
|
cache.
|
|
|
|
|
|
|
|
Args:
|
2020-09-03 10:38:32 -04:00
|
|
|
cached_method_name: The name of the single-item lookup method.
|
2018-06-10 17:38:50 -04:00
|
|
|
This is only used to find the cache to use.
|
2021-05-14 06:12:36 -04:00
|
|
|
list_name: The name of the argument that is the iterable to use to
|
2015-08-12 11:42:46 -04:00
|
|
|
do batch lookups in the cache.
|
2020-09-03 10:38:32 -04:00
|
|
|
num_args: Number of arguments to use as the key in the cache
|
2017-03-22 09:54:20 -04:00
|
|
|
(including list_name). Defaults to all named parameters.
|
2015-08-12 11:42:46 -04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class Example:
|
2015-08-12 11:42:46 -04:00
|
|
|
@cached(num_args=2)
|
|
|
|
def do_something(self, first_arg):
|
|
|
|
...
|
|
|
|
|
|
|
|
@cachedList(do_something.cache, list_name="second_args", num_args=2)
|
|
|
|
def batch_do_something(self, first_arg, second_args):
|
|
|
|
...
|
|
|
|
"""
|
2020-10-30 07:43:17 -04:00
|
|
|
func = lambda orig: DeferredCacheListDescriptor(
|
2015-08-11 12:59:32 -04:00
|
|
|
orig,
|
2016-04-06 08:08:05 -04:00
|
|
|
cached_method_name=cached_method_name,
|
2015-08-11 12:59:32 -04:00
|
|
|
list_name=list_name,
|
|
|
|
num_args=num_args,
|
|
|
|
)
|
2020-09-03 10:38:32 -04:00
|
|
|
|
|
|
|
return cast(Callable[[F], _CachedFunction[F]], func)
|
2020-10-30 07:43:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
def get_cache_key_builder(
|
|
|
|
param_names: Sequence[str], param_defaults: Mapping[str, Any]
|
|
|
|
) -> Callable[[Sequence[Any], Mapping[str, Any]], CacheKey]:
|
|
|
|
"""Construct a function which will build cache keys suitable for a cached function
|
|
|
|
|
|
|
|
Args:
|
|
|
|
param_names: list of formal parameter names for the cached function
|
|
|
|
param_defaults: a mapping from parameter name to default value for that param
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A function which will take an (args, kwargs) pair and return a cache key
|
|
|
|
"""
|
|
|
|
|
|
|
|
# By default our cache key is a tuple, but if there is only one item
|
|
|
|
# then don't bother wrapping in a tuple. This is to save memory.
|
|
|
|
|
|
|
|
if len(param_names) == 1:
|
|
|
|
nm = param_names[0]
|
|
|
|
|
|
|
|
def get_cache_key(args: Sequence[Any], kwargs: Mapping[str, Any]) -> CacheKey:
|
|
|
|
if nm in kwargs:
|
|
|
|
return kwargs[nm]
|
|
|
|
elif len(args):
|
|
|
|
return args[0]
|
|
|
|
else:
|
|
|
|
return param_defaults[nm]
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
def get_cache_key(args: Sequence[Any], kwargs: Mapping[str, Any]) -> CacheKey:
|
|
|
|
return tuple(_get_cache_key_gen(param_names, param_defaults, args, kwargs))
|
|
|
|
|
|
|
|
return get_cache_key
|
|
|
|
|
|
|
|
|
|
|
|
def _get_cache_key_gen(
|
|
|
|
param_names: Iterable[str],
|
|
|
|
param_defaults: Mapping[str, Any],
|
|
|
|
args: Sequence[Any],
|
|
|
|
kwargs: Mapping[str, Any],
|
|
|
|
) -> Iterable[Any]:
|
|
|
|
"""Given some args/kwargs return a generator that resolves into
|
|
|
|
the cache_key.
|
|
|
|
|
|
|
|
This is essentially the same operation as `inspect.getcallargs`, but optimised so
|
|
|
|
that we don't need to inspect the target function for each call.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# We loop through each arg name, looking up if its in the `kwargs`,
|
|
|
|
# otherwise using the next argument in `args`. If there are no more
|
|
|
|
# args then we try looking the arg name up in the defaults.
|
|
|
|
pos = 0
|
|
|
|
for nm in param_names:
|
|
|
|
if nm in kwargs:
|
|
|
|
yield kwargs[nm]
|
|
|
|
elif pos < len(args):
|
|
|
|
yield args[pos]
|
|
|
|
pos += 1
|
|
|
|
else:
|
|
|
|
yield param_defaults[nm]
|