2014-08-12 16:10:52 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2019-04-11 18:08:13 +02:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2014-08-12 16:10:52 +02: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 14:29:01 +02:00
|
|
|
|
2018-07-20 13:43:23 +02:00
|
|
|
import collections
|
2018-07-09 08:09:20 +02:00
|
|
|
import logging
|
|
|
|
from contextlib import contextmanager
|
2019-10-02 14:29:01 +02:00
|
|
|
from typing import Dict, Sequence, Set, Union
|
2018-07-09 08:09:20 +02:00
|
|
|
|
|
|
|
from six.moves import range
|
|
|
|
|
2019-10-11 16:26:09 +02:00
|
|
|
import attr
|
|
|
|
|
2018-06-22 10:37:10 +02:00
|
|
|
from twisted.internet import defer
|
2018-04-27 13:52:30 +02:00
|
|
|
from twisted.internet.defer import CancelledError
|
|
|
|
from twisted.python import failure
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2019-07-03 16:07:04 +02:00
|
|
|
from synapse.logging.context import (
|
2018-07-09 08:09:20 +02:00
|
|
|
PreserveLoggingContext,
|
|
|
|
make_deferred_yieldable,
|
|
|
|
run_in_background,
|
2016-04-07 16:29:34 +02:00
|
|
|
)
|
2019-07-03 16:07:04 +02:00
|
|
|
from synapse.util import Clock, unwrapFirstError
|
2018-04-28 13:57:00 +02:00
|
|
|
|
2016-12-30 21:00:44 +01:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-11-20 18:26:36 +01:00
|
|
|
|
2015-05-08 17:27:36 +02:00
|
|
|
class ObservableDeferred(object):
|
|
|
|
"""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 12:48:55 +02:00
|
|
|
|
|
|
|
Cancelling or otherwise resolving an observer will not affect the original
|
|
|
|
ObservableDeferred.
|
2017-10-17 11:59:30 +02: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 14:59:37 +02:00
|
|
|
"""
|
|
|
|
|
2015-05-08 17:27:36 +02:00
|
|
|
__slots__ = ["_deferred", "_observers", "_result"]
|
|
|
|
|
|
|
|
def __init__(self, deferred, consumeErrors=False):
|
|
|
|
object.__setattr__(self, "_deferred", deferred)
|
|
|
|
object.__setattr__(self, "_result", None)
|
2015-06-18 16:49:05 +02:00
|
|
|
object.__setattr__(self, "_observers", set())
|
2015-05-08 17:27:36 +02:00
|
|
|
|
|
|
|
def callback(r):
|
2015-08-06 14:33:34 +02:00
|
|
|
object.__setattr__(self, "_result", (True, r))
|
2015-05-08 17:27:36 +02:00
|
|
|
while self._observers:
|
|
|
|
try:
|
2016-02-04 11:22:44 +01:00
|
|
|
# TODO: Handle errors here.
|
2015-05-08 17:27:36 +02:00
|
|
|
self._observers.pop().callback(r)
|
2017-10-23 16:52:32 +02:00
|
|
|
except Exception:
|
2015-05-08 17:27:36 +02:00
|
|
|
pass
|
|
|
|
return r
|
|
|
|
|
|
|
|
def errback(f):
|
2015-08-06 14:33:34 +02:00
|
|
|
object.__setattr__(self, "_result", (False, f))
|
2015-05-08 17:27:36 +02:00
|
|
|
while self._observers:
|
|
|
|
try:
|
2016-02-04 11:22:44 +01:00
|
|
|
# TODO: Handle errors here.
|
2015-05-08 17:27:36 +02:00
|
|
|
self._observers.pop().errback(f)
|
2017-10-23 16:52:32 +02:00
|
|
|
except Exception:
|
2015-05-08 17:27:36 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
if consumeErrors:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return f
|
|
|
|
|
|
|
|
deferred.addCallbacks(callback, errback)
|
2015-04-27 14:59:37 +02:00
|
|
|
|
2015-05-08 17:27:36 +02:00
|
|
|
def observe(self):
|
2017-03-30 18:05:53 +02:00
|
|
|
"""Observe the underlying deferred.
|
|
|
|
|
|
|
|
Can return either a deferred if the underlying deferred is still pending
|
|
|
|
(or has failed), or the actual value. Callers may need to use maybeDeferred.
|
|
|
|
"""
|
2015-05-08 17:27:36 +02:00
|
|
|
if not self._result:
|
|
|
|
d = defer.Deferred()
|
2015-06-18 16:49:05 +02:00
|
|
|
|
|
|
|
def remove(r):
|
|
|
|
self._observers.discard(d)
|
|
|
|
return r
|
2019-06-20 11:32:02 +02:00
|
|
|
|
2015-06-18 16:49:05 +02:00
|
|
|
d.addBoth(remove)
|
|
|
|
|
|
|
|
self._observers.add(d)
|
2015-05-08 17:27:36 +02:00
|
|
|
return d
|
|
|
|
else:
|
|
|
|
success, res = self._result
|
2017-03-28 11:41:08 +02:00
|
|
|
return res if success else defer.fail(res)
|
2015-04-27 14:59:37 +02:00
|
|
|
|
2015-06-18 16:49:05 +02:00
|
|
|
def observers(self):
|
|
|
|
return self._observers
|
|
|
|
|
2016-06-02 12:52:32 +02:00
|
|
|
def has_called(self):
|
|
|
|
return self._result is not None
|
|
|
|
|
|
|
|
def has_succeeded(self):
|
|
|
|
return self._result is not None and self._result[0] is True
|
|
|
|
|
|
|
|
def get_result(self):
|
|
|
|
return self._result[1]
|
|
|
|
|
2015-05-08 17:27:36 +02:00
|
|
|
def __getattr__(self, name):
|
|
|
|
return getattr(self._deferred, name)
|
2015-04-27 14:59:37 +02:00
|
|
|
|
2015-05-08 17:27:36 +02:00
|
|
|
def __setattr__(self, name, value):
|
|
|
|
setattr(self._deferred, name, value)
|
2015-08-06 14:33:34 +02:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<ObservableDeferred object at %s, result=%r, _deferred=%r>" % (
|
2019-06-20 11:32:02 +02:00
|
|
|
id(self),
|
|
|
|
self._result,
|
|
|
|
self._deferred,
|
2015-08-06 14:33:34 +02:00
|
|
|
)
|
2016-04-01 15:06:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
def concurrently_execute(func, args, limit):
|
|
|
|
"""Executes the function with each argument conncurrently while limiting
|
|
|
|
the number of concurrent executions.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
func (func): Function to execute, should return a deferred.
|
|
|
|
args (list): List of arguments to pass to func, each invocation of func
|
|
|
|
gets a signle argument.
|
|
|
|
limit (int): Maximum number of conccurent executions.
|
|
|
|
|
|
|
|
Returns:
|
2016-04-01 15:15:27 +02:00
|
|
|
deferred: Resolved when all function invocations have finished.
|
2016-04-01 15:06:00 +02:00
|
|
|
"""
|
|
|
|
it = iter(args)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _concurrently_execute_inner():
|
|
|
|
try:
|
|
|
|
while True:
|
2018-04-28 13:57:00 +02:00
|
|
|
yield func(next(it))
|
2016-04-01 15:06:00 +02:00
|
|
|
except StopIteration:
|
|
|
|
pass
|
|
|
|
|
2019-07-03 16:07:04 +02:00
|
|
|
return make_deferred_yieldable(
|
2019-06-20 11:32:02 +02:00
|
|
|
defer.gatherResults(
|
|
|
|
[run_in_background(_concurrently_execute_inner) for _ in range(limit)],
|
|
|
|
consumeErrors=True,
|
|
|
|
)
|
|
|
|
).addErrback(unwrapFirstError)
|
2019-05-09 14:21:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
def yieldable_gather_results(func, iter, *args, **kwargs):
|
|
|
|
"""Executes the function with each argument concurrently.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
func (func): Function to execute that returns a Deferred
|
|
|
|
iter (iter): An iterable that yields items that get passed as the first
|
|
|
|
argument to the function
|
|
|
|
*args: Arguments to be passed to each call to func
|
|
|
|
|
|
|
|
Returns
|
2019-05-15 10:52:52 +02:00
|
|
|
Deferred[list]: Resolved when all functions have been invoked, or errors if
|
2019-05-09 14:21:57 +02:00
|
|
|
one of the function calls fails.
|
|
|
|
"""
|
2019-07-03 16:07:04 +02:00
|
|
|
return make_deferred_yieldable(
|
2019-06-20 11:32:02 +02:00
|
|
|
defer.gatherResults(
|
|
|
|
[run_in_background(func, item, *args, **kwargs) for item in iter],
|
|
|
|
consumeErrors=True,
|
|
|
|
)
|
|
|
|
).addErrback(unwrapFirstError)
|
2016-04-06 16:44:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Linearizer(object):
|
2016-11-10 17:29:51 +01:00
|
|
|
"""Limits concurrent access to resources based on a key. Useful to ensure
|
2018-07-20 14:11:43 +02:00
|
|
|
only a few things happen at a time on a given resource.
|
2016-11-10 17:29:51 +01:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
with (yield limiter.queue("test_key")):
|
|
|
|
# do some work.
|
|
|
|
|
|
|
|
"""
|
2019-06-20 11:32:02 +02:00
|
|
|
|
2018-07-20 14:11:43 +02:00
|
|
|
def __init__(self, name=None, max_count=1, clock=None):
|
2016-11-10 17:29:51 +01:00
|
|
|
"""
|
|
|
|
Args:
|
2018-07-20 13:43:23 +02:00
|
|
|
max_count(int): The maximum number of concurrent accesses
|
2016-11-10 17:29:51 +01:00
|
|
|
"""
|
2018-07-20 13:43:23 +02:00
|
|
|
if name is None:
|
|
|
|
self.name = id(self)
|
|
|
|
else:
|
|
|
|
self.name = name
|
|
|
|
|
2018-07-20 13:37:12 +02:00
|
|
|
if not clock:
|
|
|
|
from twisted.internet import reactor
|
2019-06-20 11:32:02 +02:00
|
|
|
|
2018-07-20 13:37:12 +02:00
|
|
|
clock = Clock(reactor)
|
|
|
|
self._clock = clock
|
2016-11-10 17:29:51 +01:00
|
|
|
self.max_count = max_count
|
2016-11-11 11:42:08 +01:00
|
|
|
|
|
|
|
# key_to_defer is a map from the key to a 2 element list where
|
2018-07-20 13:43:23 +02:00
|
|
|
# the first element is the number of things executing, and
|
2018-07-20 14:59:55 +02:00
|
|
|
# the second element is an OrderedDict, where the keys are deferreds for the
|
|
|
|
# things blocked from executing.
|
2019-10-02 14:29:01 +02:00
|
|
|
self.key_to_defer = (
|
|
|
|
{}
|
|
|
|
) # type: Dict[str, Sequence[Union[int, Dict[defer.Deferred, int]]]]
|
2016-11-10 17:29:51 +01:00
|
|
|
|
|
|
|
def queue(self, key):
|
2018-08-10 11:59:09 +02: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)
|
2018-07-20 14:59:55 +02:00
|
|
|
entry = self.key_to_defer.setdefault(key, [0, collections.OrderedDict()])
|
2016-11-10 17:29:51 +01:00
|
|
|
|
2016-11-11 11:42:08 +01: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 11:59:09 +02:00
|
|
|
# When one of the things currently executing finishes it will callback
|
2016-11-11 11:42:08 +01:00
|
|
|
# this item so that it can continue executing.
|
2016-11-10 17:29:51 +01:00
|
|
|
if entry[0] >= self.max_count:
|
2018-08-10 11:59:09 +02:00
|
|
|
res = self._await_lock(key)
|
2017-11-07 01:48:57 +01:00
|
|
|
else:
|
2019-01-29 12:05:31 +01:00
|
|
|
logger.debug(
|
2019-06-20 11:32:02 +02:00
|
|
|
"Acquired uncontended linearizer lock %r for key %r", self.name, key
|
2018-07-20 14:11:43 +02:00
|
|
|
)
|
2018-07-20 13:37:12 +02:00
|
|
|
entry[0] += 1
|
2018-08-10 11:59:09 +02: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 17:29:51 +01:00
|
|
|
|
|
|
|
@contextmanager
|
2018-08-10 11:59:09 +02:00
|
|
|
def _ctx_manager(_):
|
2016-11-10 17:29:51 +01:00
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
2019-01-29 12:05:31 +01:00
|
|
|
logger.debug("Releasing linearizer lock %r for key %r", self.name, key)
|
2017-11-07 01:48:57 +01:00
|
|
|
|
2016-11-11 11:42:08 +01:00
|
|
|
# We've finished executing so check if there are any things
|
|
|
|
# blocked waiting to execute and start one of them
|
2016-11-10 17:29:51 +01:00
|
|
|
entry[0] -= 1
|
2017-11-07 01:48:57 +01:00
|
|
|
|
|
|
|
if entry[1]:
|
2018-07-20 14:59:55 +02:00
|
|
|
(next_def, _) = entry[1].popitem(last=False)
|
2017-11-07 01:48:57 +01:00
|
|
|
|
2018-07-20 13:43:23 +02:00
|
|
|
# we need to run the next thing in the sentinel context.
|
2017-11-07 01:48:57 +01:00
|
|
|
with PreserveLoggingContext():
|
|
|
|
next_def.callback(None)
|
|
|
|
elif entry[0] == 0:
|
|
|
|
# We were the last thing for this key: remove it from the
|
|
|
|
# map.
|
|
|
|
del self.key_to_defer[key]
|
2016-11-10 17:29:51 +01:00
|
|
|
|
2018-08-10 11:59:09 +02:00
|
|
|
res.addCallback(_ctx_manager)
|
|
|
|
return res
|
|
|
|
|
|
|
|
def _await_lock(self, key):
|
|
|
|
"""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 11:32:02 +02:00
|
|
|
logger.debug("Waiting to acquire linearizer lock %r for key %r", self.name, key)
|
2018-08-10 11:59:09 +02:00
|
|
|
|
|
|
|
new_defer = make_deferred_yieldable(defer.Deferred())
|
|
|
|
entry[1][new_defer] = 1
|
|
|
|
|
|
|
|
def cb(_r):
|
2019-01-29 12:05:31 +01:00
|
|
|
logger.debug("Acquired linearizer lock %r for key %r", self.name, key)
|
2018-08-10 11:59:09 +02:00
|
|
|
entry[0] += 1
|
|
|
|
|
|
|
|
# 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 12:05:31 +01:00
|
|
|
logger.debug(
|
2019-06-20 11:32:02 +02:00
|
|
|
"Cancelling wait for linearizer lock %r for key %r", self.name, key
|
2018-08-10 11:59:09 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
else:
|
|
|
|
logger.warn(
|
|
|
|
"Unexpected exception waiting for linearizer lock %r for key %r",
|
2019-06-20 11:32:02 +02:00
|
|
|
self.name,
|
|
|
|
key,
|
2018-08-10 11:59:09 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
# we just have to take ourselves back out of the queue.
|
|
|
|
del entry[1][new_defer]
|
|
|
|
return e
|
|
|
|
|
|
|
|
new_defer.addCallbacks(cb, eb)
|
|
|
|
return new_defer
|
2016-11-10 17:29:51 +01:00
|
|
|
|
|
|
|
|
2016-07-05 15:44:25 +02:00
|
|
|
class ReadWriteLock(object):
|
|
|
|
"""A deferred style read write lock.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
with (yield read_write_lock.read("test_key")):
|
|
|
|
# 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
|
|
|
|
# been resolved. The new reader is appeneded to the list of latest readers.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
# Latest readers queued
|
2019-10-02 14:29:01 +02:00
|
|
|
self.key_to_current_readers = {} # type: Dict[str, Set[defer.Deferred]]
|
2016-07-05 15:44:25 +02:00
|
|
|
|
|
|
|
# Latest writer queued
|
2019-10-02 14:29:01 +02:00
|
|
|
self.key_to_current_writer = {} # type: Dict[str, defer.Deferred]
|
2016-07-05 15:44:25 +02:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def read(self, key):
|
|
|
|
new_defer = defer.Deferred()
|
|
|
|
|
|
|
|
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.
|
2017-11-14 12:22:42 +01:00
|
|
|
yield make_deferred_yieldable(curr_writer)
|
2016-07-05 15:44:25 +02:00
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def _ctx_manager():
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
new_defer.callback(None)
|
|
|
|
self.key_to_current_readers.get(key, set()).discard(new_defer)
|
|
|
|
|
2019-07-23 15:00:55 +02:00
|
|
|
return _ctx_manager()
|
2016-07-05 15:44:25 +02:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def write(self, key):
|
|
|
|
new_defer = defer.Deferred()
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-11-14 12:22:42 +01:00
|
|
|
yield make_deferred_yieldable(defer.gatherResults(to_wait_on))
|
2016-07-05 15:44:25 +02:00
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def _ctx_manager():
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
new_defer.callback(None)
|
|
|
|
if self.key_to_current_writer[key] == new_defer:
|
|
|
|
self.key_to_current_writer.pop(key)
|
|
|
|
|
2019-07-23 15:00:55 +02:00
|
|
|
return _ctx_manager()
|
2018-04-27 13:52:30 +02:00
|
|
|
|
|
|
|
|
2018-09-19 11:39:40 +02:00
|
|
|
def _cancelled_to_timed_out_error(value, timeout):
|
|
|
|
if isinstance(value, failure.Failure):
|
|
|
|
value.trap(CancelledError)
|
2018-09-19 12:05:21 +02:00
|
|
|
raise defer.TimeoutError(timeout, "Deferred")
|
2018-09-19 11:39:40 +02:00
|
|
|
return value
|
2018-04-27 13:52:30 +02:00
|
|
|
|
|
|
|
|
2018-09-19 11:39:40 +02:00
|
|
|
def timeout_deferred(deferred, timeout, reactor, on_timeout_cancel=None):
|
|
|
|
"""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 13:52:30 +02:00
|
|
|
|
2019-01-17 15:00:23 +01:00
|
|
|
(See https://twistedmatrix.com/trac/ticket/9534)
|
|
|
|
|
2018-09-19 11:39:40 +02:00
|
|
|
NOTE: Unlike `Deferred.addTimeout`, this function returns a new deferred
|
2018-04-27 13:52:30 +02:00
|
|
|
|
2018-09-19 11:39:40 +02:00
|
|
|
Args:
|
|
|
|
deferred (Deferred)
|
|
|
|
timeout (float): Timeout in seconds
|
2019-01-17 15:00:23 +01:00
|
|
|
reactor (twisted.interfaces.IReactorTime): The twisted reactor to use
|
2018-04-27 13:52:30 +02:00
|
|
|
on_timeout_cancel (callable): A callable which is called immediately
|
|
|
|
after the deferred times out, and not if this deferred is
|
|
|
|
otherwise cancelled before the timeout.
|
|
|
|
|
|
|
|
It takes an arbitrary value, which is the value of the deferred at
|
|
|
|
that exact point in time (probably a CancelledError Failure), and
|
|
|
|
the timeout.
|
|
|
|
|
|
|
|
The default callable (if none is provided) will translate a
|
2018-09-19 12:05:21 +02:00
|
|
|
CancelledError Failure into a defer.TimeoutError.
|
2018-04-27 13:52:30 +02:00
|
|
|
|
2018-09-19 11:39:40 +02:00
|
|
|
Returns:
|
|
|
|
Deferred
|
2018-09-14 20:23:07 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
new_d = defer.Deferred()
|
|
|
|
|
|
|
|
timed_out = [False]
|
|
|
|
|
|
|
|
def time_it_out():
|
|
|
|
timed_out[0] = True
|
|
|
|
|
2018-09-19 12:04:42 +02:00
|
|
|
try:
|
|
|
|
deferred.cancel()
|
2019-06-20 11:32:02 +02:00
|
|
|
except: # noqa: E722, if we throw any exception it'll break time outs
|
2018-09-19 12:04:42 +02:00
|
|
|
logger.exception("Canceller failed during timeout")
|
|
|
|
|
2018-09-14 20:23:07 +02:00
|
|
|
if not new_d.called:
|
2018-09-19 12:05:21 +02:00
|
|
|
new_d.errback(defer.TimeoutError(timeout, "Deferred"))
|
2018-09-14 20:23:07 +02:00
|
|
|
|
|
|
|
delayed_call = reactor.callLater(timeout, time_it_out)
|
|
|
|
|
|
|
|
def convert_cancelled(value):
|
|
|
|
if timed_out[0]:
|
2018-09-19 11:39:40 +02:00
|
|
|
to_call = on_timeout_cancel or _cancelled_to_timed_out_error
|
|
|
|
return to_call(value, timeout)
|
2018-09-14 20:23:07 +02:00
|
|
|
return value
|
|
|
|
|
|
|
|
deferred.addBoth(convert_cancelled)
|
|
|
|
|
|
|
|
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 16:26:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
@attr.s(slots=True, frozen=True)
|
|
|
|
class DoneAwaitable(object):
|
|
|
|
"""Simple awaitable that returns the provided value.
|
|
|
|
"""
|
|
|
|
|
|
|
|
value = attr.ib()
|
|
|
|
|
|
|
|
def __await__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __next__(self):
|
|
|
|
raise StopIteration(self.value)
|
|
|
|
|
|
|
|
|
|
|
|
def maybe_awaitable(value):
|
|
|
|
"""Convert a value to an awaitable if not already an awaitable.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if hasattr(value, "__await__"):
|
|
|
|
return value
|
|
|
|
|
|
|
|
return DoneAwaitable(value)
|