2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2019-04-11 12:08:13 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2014-08-12 10:10:52 -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.
|
2019-10-02 08:29:01 -04:00
|
|
|
|
2018-07-20 07:43:23 -04:00
|
|
|
import collections
|
2020-12-11 14:05:15 -05:00
|
|
|
import inspect
|
2021-06-08 06:07:46 -04:00
|
|
|
import itertools
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
from contextlib import contextmanager
|
2020-09-08 16:50:51 -04:00
|
|
|
from typing import (
|
|
|
|
Any,
|
2020-12-11 14:05:15 -05:00
|
|
|
Awaitable,
|
2020-09-08 16:50:51 -04:00
|
|
|
Callable,
|
2021-11-01 20:17:35 -04:00
|
|
|
Collection,
|
2020-09-08 16:50:51 -04:00
|
|
|
Dict,
|
2021-07-28 15:55:50 -04:00
|
|
|
Generic,
|
2020-09-08 16:50:51 -04:00
|
|
|
Hashable,
|
|
|
|
Iterable,
|
|
|
|
Optional,
|
|
|
|
Set,
|
|
|
|
TypeVar,
|
|
|
|
Union,
|
|
|
|
)
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2019-10-11 10:26:09 -04:00
|
|
|
import attr
|
2020-08-28 16:47:11 -04:00
|
|
|
from typing_extensions import ContextManager
|
2019-10-11 10:26:09 -04:00
|
|
|
|
2018-06-22 04:37:10 -04:00
|
|
|
from twisted.internet import defer
|
2021-09-10 12:03:18 -04:00
|
|
|
from twisted.internet.base import ReactorBase
|
2018-04-27 07:52:30 -04:00
|
|
|
from twisted.internet.defer import CancelledError
|
2020-09-08 16:50:51 -04:00
|
|
|
from twisted.internet.interfaces import IReactorTime
|
2018-04-27 07:52:30 -04:00
|
|
|
from twisted.python import failure
|
2021-07-28 15:55:50 -04:00
|
|
|
from twisted.python.failure import Failure
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import (
|
2018-07-09 02:09:20 -04:00
|
|
|
PreserveLoggingContext,
|
|
|
|
make_deferred_yieldable,
|
|
|
|
run_in_background,
|
2016-04-07 10:29:34 -04:00
|
|
|
)
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.util import Clock, unwrapFirstError
|
2018-04-28 07:57:00 -04:00
|
|
|
|
2016-12-30 15:00:44 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2021-07-28 08:04:11 -04:00
|
|
|
_T = TypeVar("_T")
|
|
|
|
|
2014-11-20 12:26:36 -05:00
|
|
|
|
2021-07-28 15:55:50 -04:00
|
|
|
class ObservableDeferred(Generic[_T]):
|
2015-05-08 11:27:36 -04:00
|
|
|
"""Wraps a deferred object so that we can add observer deferreds. These
|
|
|
|
observer deferreds do not affect the callback chain of the original
|
|
|
|
deferred.
|
|
|
|
|
|
|
|
If consumeErrors is true errors will be captured from the origin deferred.
|
2015-06-19 06:48:55 -04:00
|
|
|
|
|
|
|
Cancelling or otherwise resolving an observer will not affect the original
|
|
|
|
ObservableDeferred.
|
2017-10-17 05:59:30 -04:00
|
|
|
|
|
|
|
NB that it does not attempt to do anything with logcontexts; in general
|
|
|
|
you should probably make_deferred_yieldable the deferreds
|
|
|
|
returned by `observe`, and ensure that the original deferred runs its
|
|
|
|
callbacks in the sentinel logcontext.
|
2015-04-27 08:59:37 -04:00
|
|
|
"""
|
|
|
|
|
2015-05-08 11:27:36 -04:00
|
|
|
__slots__ = ["_deferred", "_observers", "_result"]
|
|
|
|
|
2021-07-28 15:55:50 -04:00
|
|
|
def __init__(self, deferred: "defer.Deferred[_T]", consumeErrors: bool = False):
|
2015-05-08 11:27:36 -04:00
|
|
|
object.__setattr__(self, "_deferred", deferred)
|
|
|
|
object.__setattr__(self, "_result", None)
|
2021-11-01 20:17:35 -04:00
|
|
|
object.__setattr__(self, "_observers", [])
|
2015-05-08 11:27:36 -04:00
|
|
|
|
|
|
|
def callback(r):
|
2015-08-06 08:33:34 -04:00
|
|
|
object.__setattr__(self, "_result", (True, r))
|
2021-11-01 20:17:35 -04:00
|
|
|
|
|
|
|
# once we have set _result, no more entries will be added to _observers,
|
|
|
|
# so it's safe to replace it with the empty tuple.
|
|
|
|
observers = self._observers
|
|
|
|
object.__setattr__(self, "_observers", ())
|
|
|
|
|
|
|
|
for observer in observers:
|
2015-05-08 11:27:36 -04:00
|
|
|
try:
|
2021-03-09 06:09:31 -05:00
|
|
|
observer.callback(r)
|
|
|
|
except Exception as e:
|
|
|
|
logger.exception(
|
|
|
|
"%r threw an exception on .callback(%r), ignoring...",
|
|
|
|
observer,
|
|
|
|
r,
|
|
|
|
exc_info=e,
|
|
|
|
)
|
2015-05-08 11:27:36 -04:00
|
|
|
return r
|
|
|
|
|
|
|
|
def errback(f):
|
2015-08-06 08:33:34 -04:00
|
|
|
object.__setattr__(self, "_result", (False, f))
|
2021-11-01 20:17:35 -04:00
|
|
|
|
|
|
|
# once we have set _result, no more entries will be added to _observers,
|
|
|
|
# so it's safe to replace it with the empty tuple.
|
|
|
|
observers = self._observers
|
|
|
|
object.__setattr__(self, "_observers", ())
|
|
|
|
|
|
|
|
for observer in observers:
|
2020-02-03 12:10:54 -05:00
|
|
|
# This is a little bit of magic to correctly propagate stack
|
|
|
|
# traces when we `await` on one of the observer deferreds.
|
|
|
|
f.value.__failure__ = f
|
2015-05-08 11:27:36 -04:00
|
|
|
try:
|
2021-03-09 06:09:31 -05:00
|
|
|
observer.errback(f)
|
|
|
|
except Exception as e:
|
|
|
|
logger.exception(
|
|
|
|
"%r threw an exception on .errback(%r), ignoring...",
|
|
|
|
observer,
|
|
|
|
f,
|
|
|
|
exc_info=e,
|
|
|
|
)
|
2015-05-08 11:27:36 -04:00
|
|
|
|
|
|
|
if consumeErrors:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return f
|
|
|
|
|
|
|
|
deferred.addCallbacks(callback, errback)
|
2015-04-27 08:59:37 -04:00
|
|
|
|
2021-07-28 15:55:50 -04:00
|
|
|
def observe(self) -> "defer.Deferred[_T]":
|
2017-03-30 12:05:53 -04:00
|
|
|
"""Observe the underlying deferred.
|
2019-10-30 07:52:04 -04:00
|
|
|
|
|
|
|
This returns a brand new deferred that is resolved when the underlying
|
|
|
|
deferred is resolved. Interacting with the returned deferred does not
|
2020-06-16 12:01:18 -04:00
|
|
|
effect the underlying deferred.
|
2017-03-30 12:05:53 -04:00
|
|
|
"""
|
2015-05-08 11:27:36 -04:00
|
|
|
if not self._result:
|
2021-07-28 15:55:50 -04:00
|
|
|
d: "defer.Deferred[_T]" = defer.Deferred()
|
2021-11-01 20:17:35 -04:00
|
|
|
self._observers.append(d)
|
2015-05-08 11:27:36 -04:00
|
|
|
return d
|
|
|
|
else:
|
|
|
|
success, res = self._result
|
2019-10-30 07:35:46 -04:00
|
|
|
return defer.succeed(res) if success else defer.fail(res)
|
2015-04-27 08:59:37 -04:00
|
|
|
|
2021-11-01 20:17:35 -04:00
|
|
|
def observers(self) -> "Collection[defer.Deferred[_T]]":
|
2015-06-18 10:49:05 -04:00
|
|
|
return self._observers
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def has_called(self) -> bool:
|
2016-06-02 06:52:32 -04:00
|
|
|
return self._result is not None
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def has_succeeded(self) -> bool:
|
2016-06-02 06:52:32 -04:00
|
|
|
return self._result is not None and self._result[0] is True
|
|
|
|
|
2021-07-28 15:55:50 -04:00
|
|
|
def get_result(self) -> Union[_T, Failure]:
|
2016-06-02 06:52:32 -04:00
|
|
|
return self._result[1]
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def __getattr__(self, name: str) -> Any:
|
2015-05-08 11:27:36 -04:00
|
|
|
return getattr(self._deferred, name)
|
2015-04-27 08:59:37 -04:00
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def __setattr__(self, name: str, value: Any) -> None:
|
2015-05-08 11:27:36 -04:00
|
|
|
setattr(self._deferred, name, value)
|
2015-08-06 08:33:34 -04:00
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def __repr__(self) -> str:
|
2015-08-06 08:33:34 -04:00
|
|
|
return "<ObservableDeferred object at %s, result=%r, _deferred=%r>" % (
|
2019-06-20 05:32:02 -04:00
|
|
|
id(self),
|
|
|
|
self._result,
|
|
|
|
self._deferred,
|
2015-08-06 08:33:34 -04:00
|
|
|
)
|
2016-04-01 09:06:00 -04:00
|
|
|
|
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
T = TypeVar("T")
|
|
|
|
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def concurrently_execute(
|
2021-06-08 06:07:46 -04:00
|
|
|
func: Callable[[T], Any], args: Iterable[T], limit: int
|
2020-09-08 16:50:51 -04:00
|
|
|
) -> defer.Deferred:
|
|
|
|
"""Executes the function with each argument concurrently while limiting
|
2016-04-01 09:06:00 -04:00
|
|
|
the number of concurrent executions.
|
|
|
|
|
|
|
|
Args:
|
2020-09-08 16:50:51 -04:00
|
|
|
func: Function to execute, should return a deferred or coroutine.
|
|
|
|
args: List of arguments to pass to func, each invocation of func
|
2019-12-16 07:26:28 -05:00
|
|
|
gets a single argument.
|
2020-09-08 16:50:51 -04:00
|
|
|
limit: Maximum number of conccurent executions.
|
2016-04-01 09:06:00 -04:00
|
|
|
|
|
|
|
Returns:
|
2021-06-08 06:07:46 -04:00
|
|
|
Deferred: Resolved when all function invocations have finished.
|
2016-04-01 09:06:00 -04:00
|
|
|
"""
|
|
|
|
it = iter(args)
|
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
async def _concurrently_execute_inner(value: T) -> None:
|
2016-04-01 09:06:00 -04:00
|
|
|
try:
|
|
|
|
while True:
|
2021-06-08 06:07:46 -04:00
|
|
|
await maybe_awaitable(func(value))
|
|
|
|
value = next(it)
|
2016-04-01 09:06:00 -04:00
|
|
|
except StopIteration:
|
|
|
|
pass
|
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
# We use `itertools.islice` to handle the case where the number of args is
|
|
|
|
# less than the limit, avoiding needlessly spawning unnecessary background
|
|
|
|
# tasks.
|
2019-07-03 10:07:04 -04:00
|
|
|
return make_deferred_yieldable(
|
2019-06-20 05:32:02 -04:00
|
|
|
defer.gatherResults(
|
2021-06-08 06:07:46 -04:00
|
|
|
[
|
|
|
|
run_in_background(_concurrently_execute_inner, value)
|
|
|
|
for value in itertools.islice(it, limit)
|
|
|
|
],
|
2019-06-20 05:32:02 -04:00
|
|
|
consumeErrors=True,
|
|
|
|
)
|
|
|
|
).addErrback(unwrapFirstError)
|
2019-05-09 08:21:57 -04:00
|
|
|
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def yieldable_gather_results(
|
|
|
|
func: Callable, iter: Iterable, *args: Any, **kwargs: Any
|
|
|
|
) -> defer.Deferred:
|
2019-05-09 08:21:57 -04:00
|
|
|
"""Executes the function with each argument concurrently.
|
|
|
|
|
|
|
|
Args:
|
2020-09-08 16:50:51 -04:00
|
|
|
func: Function to execute that returns a Deferred
|
|
|
|
iter: An iterable that yields items that get passed as the first
|
2019-05-09 08:21:57 -04:00
|
|
|
argument to the function
|
|
|
|
*args: Arguments to be passed to each call to func
|
2020-09-08 16:50:51 -04:00
|
|
|
**kwargs: Keyword arguments to be passed to each call to func
|
2019-05-09 08:21:57 -04:00
|
|
|
|
|
|
|
Returns
|
2019-05-15 04:52:52 -04:00
|
|
|
Deferred[list]: Resolved when all functions have been invoked, or errors if
|
2019-05-09 08:21:57 -04:00
|
|
|
one of the function calls fails.
|
|
|
|
"""
|
2019-07-03 10:07:04 -04:00
|
|
|
return make_deferred_yieldable(
|
2019-06-20 05:32:02 -04:00
|
|
|
defer.gatherResults(
|
|
|
|
[run_in_background(func, item, *args, **kwargs) for item in iter],
|
|
|
|
consumeErrors=True,
|
|
|
|
)
|
|
|
|
).addErrback(unwrapFirstError)
|
2016-04-06 10:44:22 -04:00
|
|
|
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
@attr.s(slots=True)
|
|
|
|
class _LinearizerEntry:
|
|
|
|
# The number of things executing.
|
|
|
|
count = attr.ib(type=int)
|
|
|
|
# Deferreds for the things blocked from executing.
|
|
|
|
deferreds = attr.ib(type=collections.OrderedDict)
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class Linearizer:
|
2016-11-10 11:29:51 -05:00
|
|
|
"""Limits concurrent access to resources based on a key. Useful to ensure
|
2018-07-20 08:11:43 -04:00
|
|
|
only a few things happen at a time on a given resource.
|
2016-11-10 11:29:51 -05:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
with await limiter.queue("test_key"):
|
2016-11-10 11:29:51 -05:00
|
|
|
# do some work.
|
|
|
|
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
name: Optional[str] = None,
|
|
|
|
max_count: int = 1,
|
|
|
|
clock: Optional[Clock] = None,
|
|
|
|
):
|
2016-11-10 11:29:51 -05:00
|
|
|
"""
|
|
|
|
Args:
|
2020-09-08 16:50:51 -04:00
|
|
|
max_count: The maximum number of concurrent accesses
|
2016-11-10 11:29:51 -05:00
|
|
|
"""
|
2018-07-20 07:43:23 -04:00
|
|
|
if name is None:
|
2021-07-15 12:46:54 -04:00
|
|
|
self.name: Union[str, int] = id(self)
|
2018-07-20 07:43:23 -04:00
|
|
|
else:
|
|
|
|
self.name = name
|
|
|
|
|
2018-07-20 07:37:12 -04:00
|
|
|
if not clock:
|
|
|
|
from twisted.internet import reactor
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
assert isinstance(reactor, ReactorBase)
|
2018-07-20 07:37:12 -04:00
|
|
|
clock = Clock(reactor)
|
|
|
|
self._clock = clock
|
2016-11-10 11:29:51 -05:00
|
|
|
self.max_count = max_count
|
2016-11-11 05:42:08 -05:00
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
# key_to_defer is a map from the key to a _LinearizerEntry.
|
2021-07-15 12:46:54 -04:00
|
|
|
self.key_to_defer: Dict[Hashable, _LinearizerEntry] = {}
|
2016-11-10 11:29:51 -05:00
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def is_queued(self, key: Hashable) -> bool:
|
2021-02-16 17:32:34 -05:00
|
|
|
"""Checks whether there is a process queued up waiting"""
|
2020-05-27 14:31:44 -04:00
|
|
|
entry = self.key_to_defer.get(key)
|
|
|
|
if not entry:
|
|
|
|
# No entry so nothing is waiting.
|
|
|
|
return False
|
|
|
|
|
|
|
|
# There are waiting deferreds only in the OrderedDict of deferreds is
|
|
|
|
# non-empty.
|
2020-09-08 16:50:51 -04:00
|
|
|
return bool(entry.deferreds)
|
2020-05-27 14:31:44 -04:00
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def queue(self, key: Hashable) -> defer.Deferred:
|
2018-08-10 05:59:09 -04:00
|
|
|
# we avoid doing defer.inlineCallbacks here, so that cancellation works correctly.
|
|
|
|
# (https://twistedmatrix.com/trac/ticket/4632 meant that cancellations were not
|
|
|
|
# propagated inside inlineCallbacks until Twisted 18.7)
|
2020-09-08 16:50:51 -04:00
|
|
|
entry = self.key_to_defer.setdefault(
|
|
|
|
key, _LinearizerEntry(0, collections.OrderedDict())
|
|
|
|
)
|
2016-11-10 11:29:51 -05:00
|
|
|
|
2016-11-11 05:42:08 -05:00
|
|
|
# If the number of things executing is greater than the maximum
|
|
|
|
# then add a deferred to the list of blocked items
|
2018-08-10 05:59:09 -04:00
|
|
|
# When one of the things currently executing finishes it will callback
|
2016-11-11 05:42:08 -05:00
|
|
|
# this item so that it can continue executing.
|
2020-09-08 16:50:51 -04:00
|
|
|
if entry.count >= self.max_count:
|
2018-08-10 05:59:09 -04:00
|
|
|
res = self._await_lock(key)
|
2017-11-06 19:48:57 -05:00
|
|
|
else:
|
2019-01-29 06:05:31 -05:00
|
|
|
logger.debug(
|
2019-06-20 05:32:02 -04:00
|
|
|
"Acquired uncontended linearizer lock %r for key %r", self.name, key
|
2018-07-20 08:11:43 -04:00
|
|
|
)
|
2020-09-08 16:50:51 -04:00
|
|
|
entry.count += 1
|
2018-08-10 05:59:09 -04:00
|
|
|
res = defer.succeed(None)
|
|
|
|
|
|
|
|
# once we successfully get the lock, we need to return a context manager which
|
|
|
|
# will release the lock.
|
2016-11-10 11:29:51 -05:00
|
|
|
|
|
|
|
@contextmanager
|
2018-08-10 05:59:09 -04:00
|
|
|
def _ctx_manager(_):
|
2016-11-10 11:29:51 -05:00
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
2019-01-29 06:05:31 -05:00
|
|
|
logger.debug("Releasing linearizer lock %r for key %r", self.name, key)
|
2017-11-06 19:48:57 -05:00
|
|
|
|
2016-11-11 05:42:08 -05:00
|
|
|
# We've finished executing so check if there are any things
|
|
|
|
# blocked waiting to execute and start one of them
|
2020-09-08 16:50:51 -04:00
|
|
|
entry.count -= 1
|
2017-11-06 19:48:57 -05:00
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
if entry.deferreds:
|
|
|
|
(next_def, _) = entry.deferreds.popitem(last=False)
|
2017-11-06 19:48:57 -05:00
|
|
|
|
2018-07-20 07:43:23 -04:00
|
|
|
# we need to run the next thing in the sentinel context.
|
2017-11-06 19:48:57 -05:00
|
|
|
with PreserveLoggingContext():
|
|
|
|
next_def.callback(None)
|
2020-09-08 16:50:51 -04:00
|
|
|
elif entry.count == 0:
|
2017-11-06 19:48:57 -05:00
|
|
|
# We were the last thing for this key: remove it from the
|
|
|
|
# map.
|
|
|
|
del self.key_to_defer[key]
|
2016-11-10 11:29:51 -05:00
|
|
|
|
2018-08-10 05:59:09 -04:00
|
|
|
res.addCallback(_ctx_manager)
|
|
|
|
return res
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
def _await_lock(self, key: Hashable) -> defer.Deferred:
|
2018-08-10 05:59:09 -04:00
|
|
|
"""Helper for queue: adds a deferred to the queue
|
|
|
|
|
|
|
|
Assumes that we've already checked that we've reached the limit of the number
|
|
|
|
of lock-holders we allow. Creates a new deferred which is added to the list, and
|
|
|
|
adds some management around cancellations.
|
|
|
|
|
|
|
|
Returns the deferred, which will callback once we have secured the lock.
|
|
|
|
|
|
|
|
"""
|
|
|
|
entry = self.key_to_defer[key]
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.debug("Waiting to acquire linearizer lock %r for key %r", self.name, key)
|
2018-08-10 05:59:09 -04:00
|
|
|
|
|
|
|
new_defer = make_deferred_yieldable(defer.Deferred())
|
2020-09-08 16:50:51 -04:00
|
|
|
entry.deferreds[new_defer] = 1
|
2018-08-10 05:59:09 -04:00
|
|
|
|
|
|
|
def cb(_r):
|
2019-01-29 06:05:31 -05:00
|
|
|
logger.debug("Acquired linearizer lock %r for key %r", self.name, key)
|
2020-09-08 16:50:51 -04:00
|
|
|
entry.count += 1
|
2018-08-10 05:59:09 -04:00
|
|
|
|
|
|
|
# if the code holding the lock completes synchronously, then it
|
|
|
|
# will recursively run the next claimant on the list. That can
|
|
|
|
# relatively rapidly lead to stack exhaustion. This is essentially
|
|
|
|
# the same problem as http://twistedmatrix.com/trac/ticket/9304.
|
|
|
|
#
|
|
|
|
# In order to break the cycle, we add a cheeky sleep(0) here to
|
|
|
|
# ensure that we fall back to the reactor between each iteration.
|
|
|
|
#
|
|
|
|
# (This needs to happen while we hold the lock, and the context manager's exit
|
|
|
|
# code must be synchronous, so this is the only sensible place.)
|
|
|
|
return self._clock.sleep(0)
|
|
|
|
|
|
|
|
def eb(e):
|
|
|
|
logger.info("defer %r got err %r", new_defer, e)
|
|
|
|
if isinstance(e, CancelledError):
|
2019-01-29 06:05:31 -05:00
|
|
|
logger.debug(
|
2019-06-20 05:32:02 -04:00
|
|
|
"Cancelling wait for linearizer lock %r for key %r", self.name, key
|
2018-08-10 05:59:09 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
else:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning(
|
2018-08-10 05:59:09 -04:00
|
|
|
"Unexpected exception waiting for linearizer lock %r for key %r",
|
2019-06-20 05:32:02 -04:00
|
|
|
self.name,
|
|
|
|
key,
|
2018-08-10 05:59:09 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# we just have to take ourselves back out of the queue.
|
2020-09-08 16:50:51 -04:00
|
|
|
del entry.deferreds[new_defer]
|
2018-08-10 05:59:09 -04:00
|
|
|
return e
|
|
|
|
|
|
|
|
new_defer.addCallbacks(cb, eb)
|
|
|
|
return new_defer
|
2016-11-10 11:29:51 -05:00
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class ReadWriteLock:
|
2020-08-28 16:47:11 -04:00
|
|
|
"""An async read write lock.
|
2016-07-05 09:44:25 -04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2020-08-28 16:47:11 -04:00
|
|
|
with await read_write_lock.read("test_key"):
|
2016-07-05 09:44:25 -04:00
|
|
|
# do some work
|
|
|
|
"""
|
|
|
|
|
|
|
|
# IMPLEMENTATION NOTES
|
|
|
|
#
|
|
|
|
# We track the most recent queued reader and writer deferreds (which get
|
|
|
|
# resolved when they release the lock).
|
|
|
|
#
|
|
|
|
# Read: We know its safe to acquire a read lock when the latest writer has
|
2020-07-09 09:52:58 -04:00
|
|
|
# been resolved. The new reader is appended to the list of latest readers.
|
2016-07-05 09:44:25 -04:00
|
|
|
#
|
|
|
|
# Write: We know its safe to acquire the write lock when both the latest
|
|
|
|
# writers and readers have been resolved. The new writer replaces the latest
|
|
|
|
# writer.
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def __init__(self) -> None:
|
2016-07-05 09:44:25 -04:00
|
|
|
# Latest readers queued
|
2021-07-15 12:46:54 -04:00
|
|
|
self.key_to_current_readers: Dict[str, Set[defer.Deferred]] = {}
|
2016-07-05 09:44:25 -04:00
|
|
|
|
|
|
|
# Latest writer queued
|
2021-07-15 12:46:54 -04:00
|
|
|
self.key_to_current_writer: Dict[str, defer.Deferred] = {}
|
2016-07-05 09:44:25 -04:00
|
|
|
|
2020-08-28 16:47:11 -04:00
|
|
|
async def read(self, key: str) -> ContextManager:
|
2021-07-28 08:04:11 -04:00
|
|
|
new_defer: "defer.Deferred[None]" = defer.Deferred()
|
2016-07-05 09:44:25 -04:00
|
|
|
|
|
|
|
curr_readers = self.key_to_current_readers.setdefault(key, set())
|
|
|
|
curr_writer = self.key_to_current_writer.get(key, None)
|
|
|
|
|
|
|
|
curr_readers.add(new_defer)
|
|
|
|
|
|
|
|
# We wait for the latest writer to finish writing. We can safely ignore
|
|
|
|
# any existing readers... as they're readers.
|
2020-08-28 16:47:11 -04:00
|
|
|
if curr_writer:
|
|
|
|
await make_deferred_yieldable(curr_writer)
|
2016-07-05 09:44:25 -04:00
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def _ctx_manager():
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
2021-10-08 07:27:16 -04:00
|
|
|
with PreserveLoggingContext():
|
|
|
|
new_defer.callback(None)
|
2016-07-05 09:44:25 -04:00
|
|
|
self.key_to_current_readers.get(key, set()).discard(new_defer)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return _ctx_manager()
|
2016-07-05 09:44:25 -04:00
|
|
|
|
2020-08-28 16:47:11 -04:00
|
|
|
async def write(self, key: str) -> ContextManager:
|
2021-07-28 08:04:11 -04:00
|
|
|
new_defer: "defer.Deferred[None]" = defer.Deferred()
|
2016-07-05 09:44:25 -04:00
|
|
|
|
|
|
|
curr_readers = self.key_to_current_readers.get(key, set())
|
|
|
|
curr_writer = self.key_to_current_writer.get(key, None)
|
|
|
|
|
|
|
|
# We wait on all latest readers and writer.
|
|
|
|
to_wait_on = list(curr_readers)
|
|
|
|
if curr_writer:
|
|
|
|
to_wait_on.append(curr_writer)
|
|
|
|
|
|
|
|
# We can clear the list of current readers since the new writer waits
|
|
|
|
# for them to finish.
|
|
|
|
curr_readers.clear()
|
|
|
|
self.key_to_current_writer[key] = new_defer
|
|
|
|
|
2020-08-28 16:47:11 -04:00
|
|
|
await make_deferred_yieldable(defer.gatherResults(to_wait_on))
|
2016-07-05 09:44:25 -04:00
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def _ctx_manager():
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
2021-10-08 07:27:16 -04:00
|
|
|
with PreserveLoggingContext():
|
|
|
|
new_defer.callback(None)
|
2016-07-05 09:44:25 -04:00
|
|
|
if self.key_to_current_writer[key] == new_defer:
|
|
|
|
self.key_to_current_writer.pop(key)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return _ctx_manager()
|
2018-04-27 07:52:30 -04:00
|
|
|
|
|
|
|
|
2020-09-08 16:50:51 -04:00
|
|
|
R = TypeVar("R")
|
|
|
|
|
|
|
|
|
|
|
|
def timeout_deferred(
|
2021-07-28 08:04:11 -04:00
|
|
|
deferred: "defer.Deferred[_T]", timeout: float, reactor: IReactorTime
|
|
|
|
) -> "defer.Deferred[_T]":
|
2018-09-19 05:39:40 -04:00
|
|
|
"""The in built twisted `Deferred.addTimeout` fails to time out deferreds
|
|
|
|
that have a canceller that throws exceptions. This method creates a new
|
|
|
|
deferred that wraps and times out the given deferred, correctly handling
|
|
|
|
the case where the given deferred's canceller throws.
|
2018-04-27 07:52:30 -04:00
|
|
|
|
2019-01-17 09:00:23 -05:00
|
|
|
(See https://twistedmatrix.com/trac/ticket/9534)
|
|
|
|
|
2020-09-29 05:29:21 -04:00
|
|
|
NOTE: Unlike `Deferred.addTimeout`, this function returns a new deferred.
|
|
|
|
|
|
|
|
NOTE: the TimeoutError raised by the resultant deferred is
|
|
|
|
twisted.internet.defer.TimeoutError, which is *different* to the built-in
|
|
|
|
TimeoutError, as well as various other TimeoutErrors you might have imported.
|
2018-04-27 07:52:30 -04:00
|
|
|
|
2018-09-19 05:39:40 -04:00
|
|
|
Args:
|
2020-09-08 16:50:51 -04:00
|
|
|
deferred: The Deferred to potentially timeout.
|
|
|
|
timeout: Timeout in seconds
|
|
|
|
reactor: The twisted reactor to use
|
2018-04-27 07:52:30 -04:00
|
|
|
|
|
|
|
|
2018-09-19 05:39:40 -04:00
|
|
|
Returns:
|
2020-09-29 05:29:21 -04:00
|
|
|
A new Deferred, which will errback with defer.TimeoutError on timeout.
|
2018-09-14 14:23:07 -04:00
|
|
|
"""
|
2021-07-28 08:04:11 -04:00
|
|
|
new_d: "defer.Deferred[_T]" = defer.Deferred()
|
2018-09-14 14:23:07 -04:00
|
|
|
|
|
|
|
timed_out = [False]
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def time_it_out() -> None:
|
2018-09-14 14:23:07 -04:00
|
|
|
timed_out[0] = True
|
|
|
|
|
2018-09-19 06:04:42 -04:00
|
|
|
try:
|
|
|
|
deferred.cancel()
|
2021-03-24 09:34:30 -04:00
|
|
|
except Exception: # if we throw any exception it'll break time outs
|
2018-09-19 06:04:42 -04:00
|
|
|
logger.exception("Canceller failed during timeout")
|
|
|
|
|
2020-09-29 05:29:21 -04:00
|
|
|
# the cancel() call should have set off a chain of errbacks which
|
|
|
|
# will have errbacked new_d, but in case it hasn't, errback it now.
|
|
|
|
|
2018-09-14 14:23:07 -04:00
|
|
|
if not new_d.called:
|
2020-09-29 05:29:21 -04:00
|
|
|
new_d.errback(defer.TimeoutError("Timed out after %gs" % (timeout,)))
|
2018-09-14 14:23:07 -04:00
|
|
|
|
|
|
|
delayed_call = reactor.callLater(timeout, time_it_out)
|
|
|
|
|
2020-09-29 05:29:21 -04:00
|
|
|
def convert_cancelled(value: failure.Failure):
|
2021-02-12 11:01:48 -05:00
|
|
|
# if the original deferred was cancelled, and our timeout has fired, then
|
2020-09-29 05:29:21 -04:00
|
|
|
# the reason it was cancelled was due to our timeout. Turn the CancelledError
|
|
|
|
# into a TimeoutError.
|
|
|
|
if timed_out[0] and value.check(CancelledError):
|
|
|
|
raise defer.TimeoutError("Timed out after %gs" % (timeout,))
|
2018-09-14 14:23:07 -04:00
|
|
|
return value
|
|
|
|
|
2020-09-29 05:29:21 -04:00
|
|
|
deferred.addErrback(convert_cancelled)
|
2018-09-14 14:23:07 -04:00
|
|
|
|
|
|
|
def cancel_timeout(result):
|
|
|
|
# stop the pending call to cancel the deferred if it's been fired
|
|
|
|
if delayed_call.active():
|
|
|
|
delayed_call.cancel()
|
|
|
|
return result
|
|
|
|
|
|
|
|
deferred.addBoth(cancel_timeout)
|
|
|
|
|
|
|
|
def success_cb(val):
|
|
|
|
if not new_d.called:
|
|
|
|
new_d.callback(val)
|
|
|
|
|
|
|
|
def failure_cb(val):
|
|
|
|
if not new_d.called:
|
|
|
|
new_d.errback(val)
|
|
|
|
|
|
|
|
deferred.addCallbacks(success_cb, failure_cb)
|
|
|
|
|
|
|
|
return new_d
|
2019-10-11 10:26:09 -04:00
|
|
|
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
# This class can't be generic because it uses slots with attrs.
|
|
|
|
# See: https://github.com/python-attrs/attrs/issues/313
|
2019-10-11 10:26:09 -04:00
|
|
|
@attr.s(slots=True, frozen=True)
|
2021-09-10 12:03:18 -04:00
|
|
|
class DoneAwaitable: # should be: Generic[R]
|
2021-02-16 17:32:34 -05:00
|
|
|
"""Simple awaitable that returns the provided value."""
|
2019-10-11 10:26:09 -04:00
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
value = attr.ib(type=Any) # should be: R
|
2019-10-11 10:26:09 -04:00
|
|
|
|
|
|
|
def __await__(self):
|
|
|
|
return self
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def __iter__(self) -> "DoneAwaitable":
|
2019-10-11 10:26:09 -04:00
|
|
|
return self
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def __next__(self) -> None:
|
2019-10-11 10:26:09 -04:00
|
|
|
raise StopIteration(self.value)
|
|
|
|
|
|
|
|
|
2020-12-11 14:05:15 -05:00
|
|
|
def maybe_awaitable(value: Union[Awaitable[R], R]) -> Awaitable[R]:
|
2021-02-16 17:32:34 -05:00
|
|
|
"""Convert a value to an awaitable if not already an awaitable."""
|
2020-12-11 14:05:15 -05:00
|
|
|
if inspect.isawaitable(value):
|
|
|
|
assert isinstance(value, Awaitable)
|
2019-10-11 10:26:09 -04:00
|
|
|
return value
|
|
|
|
|
|
|
|
return DoneAwaitable(value)
|