Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 1 | """Support for tasks, coroutines and the scheduler.""" |
| 2 | |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 3 | __all__ = ( |
| 4 | 'Task', |
| 5 | 'FIRST_COMPLETED', 'FIRST_EXCEPTION', 'ALL_COMPLETED', |
Yury Selivanov | 9edad3c | 2017-12-11 10:03:48 -0500 | [diff] [blame] | 6 | 'wait', 'wait_for', 'as_completed', 'sleep', |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 7 | 'gather', 'shield', 'ensure_future', 'run_coroutine_threadsafe', |
| 8 | ) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 9 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 10 | import concurrent.futures |
| 11 | import functools |
| 12 | import inspect |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 13 | import types |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 14 | import warnings |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 15 | import weakref |
| 16 | |
Yury Selivanov | a0c1ba6 | 2016-10-28 12:52:37 -0400 | [diff] [blame] | 17 | from . import base_tasks |
Victor Stinner | f951d28 | 2014-06-29 00:46:45 +0200 | [diff] [blame] | 18 | from . import coroutines |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 19 | from . import events |
| 20 | from . import futures |
Victor Stinner | f951d28 | 2014-06-29 00:46:45 +0200 | [diff] [blame] | 21 | from .coroutines import coroutine |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 22 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 23 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 24 | class Task(futures.Future): |
| 25 | """A coroutine wrapped in a Future.""" |
| 26 | |
| 27 | # An important invariant maintained while a Task not done: |
| 28 | # |
| 29 | # - Either _fut_waiter is None, and _step() is scheduled; |
| 30 | # - or _fut_waiter is some Future, and _step() is *not* scheduled. |
| 31 | # |
| 32 | # The only transition from the latter to the former is through |
| 33 | # _wakeup(). When _fut_waiter is not None, one of its callbacks |
| 34 | # must be _wakeup(). |
| 35 | |
| 36 | # Weak set containing all tasks alive. |
| 37 | _all_tasks = weakref.WeakSet() |
| 38 | |
Guido van Rossum | 1a605ed | 2013-12-06 12:57:40 -0800 | [diff] [blame] | 39 | # Dictionary containing tasks that are currently active in |
| 40 | # all running event loops. {EventLoop: Task} |
| 41 | _current_tasks = {} |
| 42 | |
Victor Stinner | fe22e09 | 2014-12-04 23:00:13 +0100 | [diff] [blame] | 43 | # If False, don't log a message if the task is destroyed whereas its |
| 44 | # status is still pending |
| 45 | _log_destroy_pending = True |
| 46 | |
Guido van Rossum | 1a605ed | 2013-12-06 12:57:40 -0800 | [diff] [blame] | 47 | @classmethod |
| 48 | def current_task(cls, loop=None): |
| 49 | """Return the currently running task in an event loop or None. |
| 50 | |
| 51 | By default the current task for the current event loop is returned. |
| 52 | |
| 53 | None is returned when called not in the context of a Task. |
| 54 | """ |
| 55 | if loop is None: |
| 56 | loop = events.get_event_loop() |
| 57 | return cls._current_tasks.get(loop) |
| 58 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 59 | @classmethod |
| 60 | def all_tasks(cls, loop=None): |
| 61 | """Return a set of all tasks for an event loop. |
| 62 | |
| 63 | By default all tasks for the current event loop are returned. |
| 64 | """ |
| 65 | if loop is None: |
| 66 | loop = events.get_event_loop() |
| 67 | return {t for t in cls._all_tasks if t._loop is loop} |
| 68 | |
| 69 | def __init__(self, coro, *, loop=None): |
Victor Stinner | 15cc678 | 2015-01-09 00:09:10 +0100 | [diff] [blame] | 70 | assert coroutines.iscoroutine(coro), repr(coro) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 71 | super().__init__(loop=loop) |
Victor Stinner | 80f53aa | 2014-06-27 13:52:20 +0200 | [diff] [blame] | 72 | if self._source_traceback: |
| 73 | del self._source_traceback[-1] |
Yury Selivanov | 1ad08a5 | 2015-05-28 10:52:19 -0400 | [diff] [blame] | 74 | self._coro = coro |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 75 | self._fut_waiter = None |
| 76 | self._must_cancel = False |
| 77 | self._loop.call_soon(self._step) |
| 78 | self.__class__._all_tasks.add(self) |
| 79 | |
INADA Naoki | 3e2ad8e | 2017-04-25 10:57:18 +0900 | [diff] [blame] | 80 | def __del__(self): |
| 81 | if self._state == futures._PENDING and self._log_destroy_pending: |
| 82 | context = { |
| 83 | 'task': self, |
| 84 | 'message': 'Task was destroyed but it is pending!', |
| 85 | } |
| 86 | if self._source_traceback: |
| 87 | context['source_traceback'] = self._source_traceback |
| 88 | self._loop.call_exception_handler(context) |
| 89 | futures.Future.__del__(self) |
Victor Stinner | a02f81f | 2014-06-24 22:37:53 +0200 | [diff] [blame] | 90 | |
Victor Stinner | 313a980 | 2014-07-29 12:58:23 +0200 | [diff] [blame] | 91 | def _repr_info(self): |
Yury Selivanov | a0c1ba6 | 2016-10-28 12:52:37 -0400 | [diff] [blame] | 92 | return base_tasks._task_repr_info(self) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 93 | |
| 94 | def get_stack(self, *, limit=None): |
| 95 | """Return the list of stack frames for this task's coroutine. |
| 96 | |
Victor Stinner | d87de83 | 2014-12-02 17:57:04 +0100 | [diff] [blame] | 97 | If the coroutine is not done, this returns the stack where it is |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 98 | suspended. If the coroutine has completed successfully or was |
| 99 | cancelled, this returns an empty list. If the coroutine was |
| 100 | terminated by an exception, this returns the list of traceback |
| 101 | frames. |
| 102 | |
| 103 | The frames are always ordered from oldest to newest. |
| 104 | |
Yury Selivanov | b0b0e62 | 2014-02-18 22:27:48 -0500 | [diff] [blame] | 105 | The optional limit gives the maximum number of frames to |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 106 | return; by default all available frames are returned. Its |
| 107 | meaning differs depending on whether a stack or a traceback is |
| 108 | returned: the newest frames of a stack are returned, but the |
| 109 | oldest frames of a traceback are returned. (This matches the |
| 110 | behavior of the traceback module.) |
| 111 | |
| 112 | For reasons beyond our control, only one stack frame is |
| 113 | returned for a suspended coroutine. |
| 114 | """ |
Yury Selivanov | a0c1ba6 | 2016-10-28 12:52:37 -0400 | [diff] [blame] | 115 | return base_tasks._task_get_stack(self, limit) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 116 | |
| 117 | def print_stack(self, *, limit=None, file=None): |
| 118 | """Print the stack or traceback for this task's coroutine. |
| 119 | |
| 120 | This produces output similar to that of the traceback module, |
| 121 | for the frames retrieved by get_stack(). The limit argument |
| 122 | is passed to get_stack(). The file argument is an I/O stream |
R David Murray | 8e069d5 | 2014-09-24 13:13:45 -0400 | [diff] [blame] | 123 | to which the output is written; by default output is written |
| 124 | to sys.stderr. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 125 | """ |
Yury Selivanov | a0c1ba6 | 2016-10-28 12:52:37 -0400 | [diff] [blame] | 126 | return base_tasks._task_print_stack(self, limit, file) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 127 | |
| 128 | def cancel(self): |
R David Murray | 8e069d5 | 2014-09-24 13:13:45 -0400 | [diff] [blame] | 129 | """Request that this task cancel itself. |
Victor Stinner | 4bd652a | 2014-04-07 11:18:06 +0200 | [diff] [blame] | 130 | |
Victor Stinner | 8d21357 | 2014-06-02 23:06:46 +0200 | [diff] [blame] | 131 | This arranges for a CancelledError to be thrown into the |
Victor Stinner | 4bd652a | 2014-04-07 11:18:06 +0200 | [diff] [blame] | 132 | wrapped coroutine on the next cycle through the event loop. |
| 133 | The coroutine then has a chance to clean up or even deny |
| 134 | the request using try/except/finally. |
| 135 | |
R David Murray | 8e069d5 | 2014-09-24 13:13:45 -0400 | [diff] [blame] | 136 | Unlike Future.cancel, this does not guarantee that the |
Victor Stinner | 4bd652a | 2014-04-07 11:18:06 +0200 | [diff] [blame] | 137 | task will be cancelled: the exception might be caught and |
R David Murray | 8e069d5 | 2014-09-24 13:13:45 -0400 | [diff] [blame] | 138 | acted upon, delaying cancellation of the task or preventing |
| 139 | cancellation completely. The task may also return a value or |
| 140 | raise a different exception. |
Victor Stinner | 4bd652a | 2014-04-07 11:18:06 +0200 | [diff] [blame] | 141 | |
| 142 | Immediately after this method is called, Task.cancelled() will |
| 143 | not return True (unless the task was already cancelled). A |
| 144 | task will be marked as cancelled when the wrapped coroutine |
| 145 | terminates with a CancelledError exception (even if cancel() |
| 146 | was not called). |
| 147 | """ |
Yury Selivanov | 7ce1c6f | 2017-06-11 13:49:18 +0000 | [diff] [blame] | 148 | self._log_traceback = False |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 149 | if self.done(): |
| 150 | return False |
| 151 | if self._fut_waiter is not None: |
| 152 | if self._fut_waiter.cancel(): |
| 153 | # Leave self._fut_waiter; it may be a Task that |
| 154 | # catches and ignores the cancellation so we may have |
| 155 | # to cancel it again later. |
| 156 | return True |
| 157 | # It must be the case that self._step is already scheduled. |
| 158 | self._must_cancel = True |
| 159 | return True |
| 160 | |
Yury Selivanov | d59bba8 | 2015-11-20 12:41:03 -0500 | [diff] [blame] | 161 | def _step(self, exc=None): |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 162 | assert not self.done(), f'_step(): already done: {self!r}, {exc!r}' |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 163 | if self._must_cancel: |
| 164 | if not isinstance(exc, futures.CancelledError): |
| 165 | exc = futures.CancelledError() |
| 166 | self._must_cancel = False |
| 167 | coro = self._coro |
| 168 | self._fut_waiter = None |
Guido van Rossum | 1a605ed | 2013-12-06 12:57:40 -0800 | [diff] [blame] | 169 | |
| 170 | self.__class__._current_tasks[self._loop] = self |
Yury Selivanov | d59bba8 | 2015-11-20 12:41:03 -0500 | [diff] [blame] | 171 | # Call either coro.throw(exc) or coro.send(None). |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 172 | try: |
Yury Selivanov | d59bba8 | 2015-11-20 12:41:03 -0500 | [diff] [blame] | 173 | if exc is None: |
| 174 | # We use the `send` method directly, because coroutines |
| 175 | # don't have `__iter__` and `__next__` methods. |
| 176 | result = coro.send(None) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 177 | else: |
Yury Selivanov | d59bba8 | 2015-11-20 12:41:03 -0500 | [diff] [blame] | 178 | result = coro.throw(exc) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 179 | except StopIteration as exc: |
INADA Naoki | 991adca | 2017-05-11 21:18:38 +0900 | [diff] [blame] | 180 | if self._must_cancel: |
| 181 | # Task is cancelled right before coro stops. |
| 182 | self._must_cancel = False |
| 183 | self.set_exception(futures.CancelledError()) |
| 184 | else: |
| 185 | self.set_result(exc.value) |
Yury Selivanov | 4145c83 | 2016-10-09 12:19:12 -0400 | [diff] [blame] | 186 | except futures.CancelledError: |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 187 | super().cancel() # I.e., Future.cancel(self). |
| 188 | except Exception as exc: |
| 189 | self.set_exception(exc) |
| 190 | except BaseException as exc: |
| 191 | self.set_exception(exc) |
| 192 | raise |
| 193 | else: |
Guido van Rossum | 1140a03 | 2016-09-09 12:54:54 -0700 | [diff] [blame] | 194 | blocking = getattr(result, '_asyncio_future_blocking', None) |
| 195 | if blocking is not None: |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 196 | # Yielded Future must come from Future.__iter__(). |
Yury Selivanov | 0ac3a0c | 2015-12-11 11:33:59 -0500 | [diff] [blame] | 197 | if result._loop is not self._loop: |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 198 | new_exc = RuntimeError( |
| 199 | f'Task {self!r} got Future ' |
| 200 | f'{result!r} attached to a different loop') |
| 201 | self._loop.call_soon(self._step, new_exc) |
Guido van Rossum | 1140a03 | 2016-09-09 12:54:54 -0700 | [diff] [blame] | 202 | elif blocking: |
Yury Selivanov | 4145c83 | 2016-10-09 12:19:12 -0400 | [diff] [blame] | 203 | if result is self: |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 204 | new_exc = RuntimeError( |
| 205 | f'Task cannot await on itself: {self!r}') |
| 206 | self._loop.call_soon(self._step, new_exc) |
Yury Selivanov | 4145c83 | 2016-10-09 12:19:12 -0400 | [diff] [blame] | 207 | else: |
| 208 | result._asyncio_future_blocking = False |
| 209 | result.add_done_callback(self._wakeup) |
| 210 | self._fut_waiter = result |
| 211 | if self._must_cancel: |
| 212 | if self._fut_waiter.cancel(): |
| 213 | self._must_cancel = False |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 214 | else: |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 215 | new_exc = RuntimeError( |
| 216 | f'yield was used instead of yield from ' |
| 217 | f'in task {self!r} with {result!r}') |
| 218 | self._loop.call_soon(self._step, new_exc) |
| 219 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 220 | elif result is None: |
| 221 | # Bare yield relinquishes control for one event loop iteration. |
| 222 | self._loop.call_soon(self._step) |
| 223 | elif inspect.isgenerator(result): |
| 224 | # Yielding a generator is just wrong. |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 225 | new_exc = RuntimeError( |
| 226 | f'yield was used instead of yield from for ' |
| 227 | f'generator in task {self!r} with {result}') |
| 228 | self._loop.call_soon(self._step, new_exc) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 229 | else: |
| 230 | # Yielding something else is an error. |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 231 | new_exc = RuntimeError(f'Task got bad yield: {result!r}') |
| 232 | self._loop.call_soon(self._step, new_exc) |
Guido van Rossum | 1a605ed | 2013-12-06 12:57:40 -0800 | [diff] [blame] | 233 | finally: |
| 234 | self.__class__._current_tasks.pop(self._loop) |
Victor Stinner | d74ac82 | 2014-03-04 23:07:08 +0100 | [diff] [blame] | 235 | self = None # Needed to break cycles when an exception occurs. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 236 | |
| 237 | def _wakeup(self, future): |
| 238 | try: |
Yury Selivanov | a4afc48 | 2015-11-16 15:12:10 -0500 | [diff] [blame] | 239 | future.result() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 240 | except Exception as exc: |
| 241 | # This may also be a cancellation. |
Yury Selivanov | d59bba8 | 2015-11-20 12:41:03 -0500 | [diff] [blame] | 242 | self._step(exc) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 243 | else: |
Yury Selivanov | a4afc48 | 2015-11-16 15:12:10 -0500 | [diff] [blame] | 244 | # Don't pass the value of `future.result()` explicitly, |
| 245 | # as `Future.__iter__` and `Future.__await__` don't need it. |
| 246 | # If we call `_step(value, None)` instead of `_step()`, |
| 247 | # Python eval loop would use `.send(value)` method call, |
| 248 | # instead of `__next__()`, which is slower for futures |
| 249 | # that return non-generator iterators from their `__iter__`. |
| 250 | self._step() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 251 | self = None # Needed to break cycles when an exception occurs. |
| 252 | |
| 253 | |
Yury Selivanov | a0c1ba6 | 2016-10-28 12:52:37 -0400 | [diff] [blame] | 254 | _PyTask = Task |
| 255 | |
| 256 | |
| 257 | try: |
| 258 | import _asyncio |
| 259 | except ImportError: |
| 260 | pass |
| 261 | else: |
| 262 | # _CTask is needed for tests. |
| 263 | Task = _CTask = _asyncio.Task |
| 264 | |
| 265 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 266 | # wait() and as_completed() similar to those in PEP 3148. |
| 267 | |
| 268 | FIRST_COMPLETED = concurrent.futures.FIRST_COMPLETED |
| 269 | FIRST_EXCEPTION = concurrent.futures.FIRST_EXCEPTION |
| 270 | ALL_COMPLETED = concurrent.futures.ALL_COMPLETED |
| 271 | |
| 272 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 273 | async def wait(fs, *, loop=None, timeout=None, return_when=ALL_COMPLETED): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 274 | """Wait for the Futures and coroutines given by fs to complete. |
| 275 | |
Victor Stinner | db74d98 | 2014-06-10 11:16:05 +0200 | [diff] [blame] | 276 | The sequence futures must not be empty. |
| 277 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 278 | Coroutines will be wrapped in Tasks. |
| 279 | |
| 280 | Returns two sets of Future: (done, pending). |
| 281 | |
| 282 | Usage: |
| 283 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 284 | done, pending = await asyncio.wait(fs) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 285 | |
| 286 | Note: This does not raise TimeoutError! Futures that aren't done |
| 287 | when the timeout occurs are returned in the second set. |
| 288 | """ |
Guido van Rossum | 7b3b3dc | 2016-09-09 14:26:31 -0700 | [diff] [blame] | 289 | if futures.isfuture(fs) or coroutines.iscoroutine(fs): |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 290 | raise TypeError(f"expect a list of futures, not {type(fs).__name__}") |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 291 | if not fs: |
| 292 | raise ValueError('Set of coroutines/Futures is empty.') |
Victor Stinner | e931f7b | 2014-07-16 18:50:39 +0200 | [diff] [blame] | 293 | if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED): |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 294 | raise ValueError(f'Invalid return_when value: {return_when}') |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 295 | |
| 296 | if loop is None: |
| 297 | loop = events.get_event_loop() |
| 298 | |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 299 | fs = {ensure_future(f, loop=loop) for f in set(fs)} |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 300 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 301 | return await _wait(fs, timeout, return_when, loop) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 302 | |
| 303 | |
Victor Stinner | 59e0802 | 2014-08-28 11:19:25 +0200 | [diff] [blame] | 304 | def _release_waiter(waiter, *args): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 305 | if not waiter.done(): |
Victor Stinner | 59e0802 | 2014-08-28 11:19:25 +0200 | [diff] [blame] | 306 | waiter.set_result(None) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 307 | |
| 308 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 309 | async def wait_for(fut, timeout, *, loop=None): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 310 | """Wait for the single Future or coroutine to complete, with timeout. |
| 311 | |
| 312 | Coroutine will be wrapped in Task. |
| 313 | |
Victor Stinner | 421e49b | 2014-01-23 17:40:59 +0100 | [diff] [blame] | 314 | Returns result of the Future or coroutine. When a timeout occurs, |
| 315 | it cancels the task and raises TimeoutError. To avoid the task |
| 316 | cancellation, wrap it in shield(). |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 317 | |
Victor Stinner | 922bc2c | 2015-01-15 16:29:10 +0100 | [diff] [blame] | 318 | If the wait is cancelled, the task is also cancelled. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 319 | |
Victor Stinner | 922bc2c | 2015-01-15 16:29:10 +0100 | [diff] [blame] | 320 | This function is a coroutine. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 321 | """ |
| 322 | if loop is None: |
| 323 | loop = events.get_event_loop() |
| 324 | |
Guido van Rossum | 48c66c3 | 2014-01-29 14:30:38 -0800 | [diff] [blame] | 325 | if timeout is None: |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 326 | return await fut |
Guido van Rossum | 48c66c3 | 2014-01-29 14:30:38 -0800 | [diff] [blame] | 327 | |
Victor K | 4d07189 | 2017-10-05 19:04:39 +0300 | [diff] [blame] | 328 | if timeout <= 0: |
| 329 | fut = ensure_future(fut, loop=loop) |
| 330 | |
| 331 | if fut.done(): |
| 332 | return fut.result() |
| 333 | |
| 334 | fut.cancel() |
| 335 | raise futures.TimeoutError() |
| 336 | |
Yury Selivanov | 7661db6 | 2016-05-16 15:38:39 -0400 | [diff] [blame] | 337 | waiter = loop.create_future() |
Victor Stinner | 59e0802 | 2014-08-28 11:19:25 +0200 | [diff] [blame] | 338 | timeout_handle = loop.call_later(timeout, _release_waiter, waiter) |
| 339 | cb = functools.partial(_release_waiter, waiter) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 340 | |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 341 | fut = ensure_future(fut, loop=loop) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 342 | fut.add_done_callback(cb) |
| 343 | |
| 344 | try: |
Victor Stinner | 59e0802 | 2014-08-28 11:19:25 +0200 | [diff] [blame] | 345 | # wait until the future completes or the timeout |
Victor Stinner | 922bc2c | 2015-01-15 16:29:10 +0100 | [diff] [blame] | 346 | try: |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 347 | await waiter |
Victor Stinner | 922bc2c | 2015-01-15 16:29:10 +0100 | [diff] [blame] | 348 | except futures.CancelledError: |
| 349 | fut.remove_done_callback(cb) |
| 350 | fut.cancel() |
| 351 | raise |
Victor Stinner | 59e0802 | 2014-08-28 11:19:25 +0200 | [diff] [blame] | 352 | |
| 353 | if fut.done(): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 354 | return fut.result() |
| 355 | else: |
| 356 | fut.remove_done_callback(cb) |
Victor Stinner | 421e49b | 2014-01-23 17:40:59 +0100 | [diff] [blame] | 357 | fut.cancel() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 358 | raise futures.TimeoutError() |
| 359 | finally: |
| 360 | timeout_handle.cancel() |
| 361 | |
| 362 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 363 | async def _wait(fs, timeout, return_when, loop): |
Victor Stinner | 2ba8ece | 2016-04-01 21:39:09 +0200 | [diff] [blame] | 364 | """Internal helper for wait() and wait_for(). |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 365 | |
| 366 | The fs argument must be a collection of Futures. |
| 367 | """ |
| 368 | assert fs, 'Set of Futures is empty.' |
Yury Selivanov | 7661db6 | 2016-05-16 15:38:39 -0400 | [diff] [blame] | 369 | waiter = loop.create_future() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 370 | timeout_handle = None |
| 371 | if timeout is not None: |
| 372 | timeout_handle = loop.call_later(timeout, _release_waiter, waiter) |
| 373 | counter = len(fs) |
| 374 | |
| 375 | def _on_completion(f): |
| 376 | nonlocal counter |
| 377 | counter -= 1 |
| 378 | if (counter <= 0 or |
| 379 | return_when == FIRST_COMPLETED or |
| 380 | return_when == FIRST_EXCEPTION and (not f.cancelled() and |
| 381 | f.exception() is not None)): |
| 382 | if timeout_handle is not None: |
| 383 | timeout_handle.cancel() |
| 384 | if not waiter.done(): |
Victor Stinner | 59e0802 | 2014-08-28 11:19:25 +0200 | [diff] [blame] | 385 | waiter.set_result(None) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 386 | |
| 387 | for f in fs: |
| 388 | f.add_done_callback(_on_completion) |
| 389 | |
| 390 | try: |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 391 | await waiter |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 392 | finally: |
| 393 | if timeout_handle is not None: |
| 394 | timeout_handle.cancel() |
| 395 | |
| 396 | done, pending = set(), set() |
| 397 | for f in fs: |
| 398 | f.remove_done_callback(_on_completion) |
| 399 | if f.done(): |
| 400 | done.add(f) |
| 401 | else: |
| 402 | pending.add(f) |
| 403 | return done, pending |
| 404 | |
| 405 | |
| 406 | # This is *not* a @coroutine! It is just an iterator (yielding Futures). |
| 407 | def as_completed(fs, *, loop=None, timeout=None): |
Guido van Rossum | b58f053 | 2014-02-12 17:58:19 -0800 | [diff] [blame] | 408 | """Return an iterator whose values are coroutines. |
| 409 | |
| 410 | When waiting for the yielded coroutines you'll get the results (or |
| 411 | exceptions!) of the original Futures (or coroutines), in the order |
| 412 | in which and as soon as they complete. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 413 | |
| 414 | This differs from PEP 3148; the proper way to use this is: |
| 415 | |
| 416 | for f in as_completed(fs): |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 417 | result = await f # The 'await' may raise. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 418 | # Use result. |
| 419 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 420 | If a timeout is specified, the 'await' will raise |
Guido van Rossum | b58f053 | 2014-02-12 17:58:19 -0800 | [diff] [blame] | 421 | TimeoutError when the timeout occurs before all Futures are done. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 422 | |
| 423 | Note: The futures 'f' are not necessarily members of fs. |
| 424 | """ |
Guido van Rossum | 7b3b3dc | 2016-09-09 14:26:31 -0700 | [diff] [blame] | 425 | if futures.isfuture(fs) or coroutines.iscoroutine(fs): |
Yury Selivanov | 6370f34 | 2017-12-10 18:36:12 -0500 | [diff] [blame] | 426 | raise TypeError(f"expect a list of futures, not {type(fs).__name__}") |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 427 | loop = loop if loop is not None else events.get_event_loop() |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 428 | todo = {ensure_future(f, loop=loop) for f in set(fs)} |
Guido van Rossum | b58f053 | 2014-02-12 17:58:19 -0800 | [diff] [blame] | 429 | from .queues import Queue # Import here to avoid circular import problem. |
| 430 | done = Queue(loop=loop) |
| 431 | timeout_handle = None |
| 432 | |
| 433 | def _on_timeout(): |
| 434 | for f in todo: |
| 435 | f.remove_done_callback(_on_completion) |
| 436 | done.put_nowait(None) # Queue a dummy value for _wait_for_one(). |
| 437 | todo.clear() # Can't do todo.remove(f) in the loop. |
| 438 | |
| 439 | def _on_completion(f): |
| 440 | if not todo: |
| 441 | return # _on_timeout() was here first. |
| 442 | todo.remove(f) |
| 443 | done.put_nowait(f) |
| 444 | if not todo and timeout_handle is not None: |
| 445 | timeout_handle.cancel() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 446 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 447 | async def _wait_for_one(): |
| 448 | f = await done.get() |
Guido van Rossum | b58f053 | 2014-02-12 17:58:19 -0800 | [diff] [blame] | 449 | if f is None: |
| 450 | # Dummy value from _on_timeout(). |
| 451 | raise futures.TimeoutError |
| 452 | return f.result() # May raise f.exception(). |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 453 | |
Guido van Rossum | b58f053 | 2014-02-12 17:58:19 -0800 | [diff] [blame] | 454 | for f in todo: |
| 455 | f.add_done_callback(_on_completion) |
| 456 | if todo and timeout is not None: |
| 457 | timeout_handle = loop.call_later(timeout, _on_timeout) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 458 | for _ in range(len(todo)): |
| 459 | yield _wait_for_one() |
| 460 | |
| 461 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 462 | @types.coroutine |
| 463 | def __sleep0(): |
| 464 | """Skip one event loop run cycle. |
| 465 | |
| 466 | This is a private helper for 'asyncio.sleep()', used |
| 467 | when the 'delay' is set to 0. It uses a bare 'yield' |
| 468 | expression (which Task._step knows how to handle) |
| 469 | instead of creating a Future object. |
| 470 | """ |
| 471 | yield |
| 472 | |
| 473 | |
| 474 | async def sleep(delay, result=None, *, loop=None): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 475 | """Coroutine that completes after a given time (in seconds).""" |
Yury Selivanov | ade0412 | 2015-11-05 14:29:04 -0500 | [diff] [blame] | 476 | if delay == 0: |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 477 | await __sleep0() |
Yury Selivanov | ade0412 | 2015-11-05 14:29:04 -0500 | [diff] [blame] | 478 | return result |
| 479 | |
Yury Selivanov | 7661db6 | 2016-05-16 15:38:39 -0400 | [diff] [blame] | 480 | if loop is None: |
| 481 | loop = events.get_event_loop() |
| 482 | future = loop.create_future() |
Victor Stinner | a9acbe8 | 2014-07-05 15:29:41 +0200 | [diff] [blame] | 483 | h = future._loop.call_later(delay, |
Yury Selivanov | 5d7e3b6 | 2015-11-17 12:19:41 -0500 | [diff] [blame] | 484 | futures._set_result_unless_cancelled, |
| 485 | future, result) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 486 | try: |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 487 | return await future |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 488 | finally: |
| 489 | h.cancel() |
| 490 | |
| 491 | |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 492 | def ensure_future(coro_or_future, *, loop=None): |
Yury Selivanov | 620279b | 2015-10-02 15:00:19 -0400 | [diff] [blame] | 493 | """Wrap a coroutine or an awaitable in a future. |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 494 | |
| 495 | If the argument is a Future, it is returned directly. |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 496 | """ |
Guido van Rossum | 7b3b3dc | 2016-09-09 14:26:31 -0700 | [diff] [blame] | 497 | if futures.isfuture(coro_or_future): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 498 | if loop is not None and loop is not coro_or_future._loop: |
| 499 | raise ValueError('loop argument must agree with Future') |
| 500 | return coro_or_future |
Victor Stinner | f951d28 | 2014-06-29 00:46:45 +0200 | [diff] [blame] | 501 | elif coroutines.iscoroutine(coro_or_future): |
Victor Stinner | 896a25a | 2014-07-08 11:29:25 +0200 | [diff] [blame] | 502 | if loop is None: |
| 503 | loop = events.get_event_loop() |
| 504 | task = loop.create_task(coro_or_future) |
Victor Stinner | 80f53aa | 2014-06-27 13:52:20 +0200 | [diff] [blame] | 505 | if task._source_traceback: |
| 506 | del task._source_traceback[-1] |
| 507 | return task |
Victor Stinner | 3f438a9 | 2017-11-28 14:43:52 +0100 | [diff] [blame] | 508 | elif inspect.isawaitable(coro_or_future): |
Yury Selivanov | 620279b | 2015-10-02 15:00:19 -0400 | [diff] [blame] | 509 | return ensure_future(_wrap_awaitable(coro_or_future), loop=loop) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 510 | else: |
Charles Renwick | ae5b326 | 2017-04-21 16:49:48 -0400 | [diff] [blame] | 511 | raise TypeError('An asyncio.Future, a coroutine or an awaitable is ' |
| 512 | 'required') |
Yury Selivanov | 620279b | 2015-10-02 15:00:19 -0400 | [diff] [blame] | 513 | |
| 514 | |
| 515 | @coroutine |
| 516 | def _wrap_awaitable(awaitable): |
| 517 | """Helper for asyncio.ensure_future(). |
| 518 | |
| 519 | Wraps awaitable (an object with __await__) into a coroutine |
| 520 | that will later be wrapped in a Task by ensure_future(). |
| 521 | """ |
| 522 | return (yield from awaitable.__await__()) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 523 | |
| 524 | |
| 525 | class _GatheringFuture(futures.Future): |
| 526 | """Helper for gather(). |
| 527 | |
| 528 | This overrides cancel() to cancel all the children and act more |
| 529 | like Task.cancel(), which doesn't immediately mark itself as |
| 530 | cancelled. |
| 531 | """ |
| 532 | |
| 533 | def __init__(self, children, *, loop=None): |
| 534 | super().__init__(loop=loop) |
| 535 | self._children = children |
| 536 | |
| 537 | def cancel(self): |
| 538 | if self.done(): |
| 539 | return False |
Yury Selivanov | 3d67615 | 2016-10-21 17:22:17 -0400 | [diff] [blame] | 540 | ret = False |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 541 | for child in self._children: |
Yury Selivanov | 3d67615 | 2016-10-21 17:22:17 -0400 | [diff] [blame] | 542 | if child.cancel(): |
| 543 | ret = True |
| 544 | return ret |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 545 | |
| 546 | |
| 547 | def gather(*coros_or_futures, loop=None, return_exceptions=False): |
| 548 | """Return a future aggregating results from the given coroutines |
| 549 | or futures. |
| 550 | |
Guido van Rossum | e3c65a7 | 2016-09-30 08:17:15 -0700 | [diff] [blame] | 551 | Coroutines will be wrapped in a future and scheduled in the event |
| 552 | loop. They will not necessarily be scheduled in the same order as |
| 553 | passed in. |
| 554 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 555 | All futures must share the same event loop. If all the tasks are |
| 556 | done successfully, the returned future's result is the list of |
| 557 | results (in the order of the original sequence, not necessarily |
Yury Selivanov | f317cb7 | 2014-02-06 12:03:53 -0500 | [diff] [blame] | 558 | the order of results arrival). If *return_exceptions* is True, |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 559 | exceptions in the tasks are treated the same as successful |
| 560 | results, and gathered in the result list; otherwise, the first |
| 561 | raised exception will be immediately propagated to the returned |
| 562 | future. |
| 563 | |
| 564 | Cancellation: if the outer Future is cancelled, all children (that |
| 565 | have not completed yet) are also cancelled. If any child is |
| 566 | cancelled, this is treated as if it raised CancelledError -- |
| 567 | the outer Future is *not* cancelled in this case. (This is to |
| 568 | prevent the cancellation of one child to cause other children to |
| 569 | be cancelled.) |
| 570 | """ |
Victor Stinner | f03b3c7 | 2014-07-16 18:36:24 +0200 | [diff] [blame] | 571 | if not coros_or_futures: |
Yury Selivanov | 7661db6 | 2016-05-16 15:38:39 -0400 | [diff] [blame] | 572 | if loop is None: |
| 573 | loop = events.get_event_loop() |
| 574 | outer = loop.create_future() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 575 | outer.set_result([]) |
| 576 | return outer |
Victor Stinner | f03b3c7 | 2014-07-16 18:36:24 +0200 | [diff] [blame] | 577 | |
| 578 | arg_to_fut = {} |
| 579 | for arg in set(coros_or_futures): |
Guido van Rossum | 7b3b3dc | 2016-09-09 14:26:31 -0700 | [diff] [blame] | 580 | if not futures.isfuture(arg): |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 581 | fut = ensure_future(arg, loop=loop) |
Victor Stinner | f03b3c7 | 2014-07-16 18:36:24 +0200 | [diff] [blame] | 582 | if loop is None: |
| 583 | loop = fut._loop |
| 584 | # The caller cannot control this future, the "destroy pending task" |
| 585 | # warning should not be emitted. |
| 586 | fut._log_destroy_pending = False |
| 587 | else: |
| 588 | fut = arg |
| 589 | if loop is None: |
| 590 | loop = fut._loop |
| 591 | elif fut._loop is not loop: |
| 592 | raise ValueError("futures are tied to different event loops") |
| 593 | arg_to_fut[arg] = fut |
| 594 | |
| 595 | children = [arg_to_fut[arg] for arg in coros_or_futures] |
| 596 | nchildren = len(children) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 597 | outer = _GatheringFuture(children, loop=loop) |
| 598 | nfinished = 0 |
Victor Stinner | f03b3c7 | 2014-07-16 18:36:24 +0200 | [diff] [blame] | 599 | results = [None] * nchildren |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 600 | |
| 601 | def _done_callback(i, fut): |
| 602 | nonlocal nfinished |
Victor Stinner | 3531d90 | 2015-01-09 01:42:52 +0100 | [diff] [blame] | 603 | if outer.done(): |
| 604 | if not fut.cancelled(): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 605 | # Mark exception retrieved. |
| 606 | fut.exception() |
| 607 | return |
Victor Stinner | 3531d90 | 2015-01-09 01:42:52 +0100 | [diff] [blame] | 608 | |
Victor Stinner | 2934262 | 2015-01-29 14:15:19 +0100 | [diff] [blame] | 609 | if fut.cancelled(): |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 610 | res = futures.CancelledError() |
| 611 | if not return_exceptions: |
| 612 | outer.set_exception(res) |
| 613 | return |
| 614 | elif fut._exception is not None: |
| 615 | res = fut.exception() # Mark exception retrieved. |
| 616 | if not return_exceptions: |
| 617 | outer.set_exception(res) |
| 618 | return |
| 619 | else: |
| 620 | res = fut._result |
| 621 | results[i] = res |
| 622 | nfinished += 1 |
Victor Stinner | f03b3c7 | 2014-07-16 18:36:24 +0200 | [diff] [blame] | 623 | if nfinished == nchildren: |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 624 | outer.set_result(results) |
| 625 | |
| 626 | for i, fut in enumerate(children): |
| 627 | fut.add_done_callback(functools.partial(_done_callback, i)) |
| 628 | return outer |
| 629 | |
| 630 | |
| 631 | def shield(arg, *, loop=None): |
| 632 | """Wait for a future, shielding it from cancellation. |
| 633 | |
| 634 | The statement |
| 635 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 636 | res = await shield(something()) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 637 | |
| 638 | is exactly equivalent to the statement |
| 639 | |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 640 | res = await something() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 641 | |
| 642 | *except* that if the coroutine containing it is cancelled, the |
| 643 | task running in something() is not cancelled. From the POV of |
| 644 | something(), the cancellation did not happen. But its caller is |
| 645 | still cancelled, so the yield-from expression still raises |
| 646 | CancelledError. Note: If something() is cancelled by other means |
| 647 | this will still cancel shield(). |
| 648 | |
| 649 | If you want to completely ignore cancellation (not recommended) |
| 650 | you can combine shield() with a try/except clause, as follows: |
| 651 | |
| 652 | try: |
Andrew Svetlov | 5f841b5 | 2017-12-09 00:23:48 +0200 | [diff] [blame] | 653 | res = await shield(something()) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 654 | except CancelledError: |
| 655 | res = None |
| 656 | """ |
Yury Selivanov | 59eb9a4 | 2015-05-11 14:48:38 -0400 | [diff] [blame] | 657 | inner = ensure_future(arg, loop=loop) |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 658 | if inner.done(): |
| 659 | # Shortcut. |
| 660 | return inner |
| 661 | loop = inner._loop |
Yury Selivanov | 7661db6 | 2016-05-16 15:38:39 -0400 | [diff] [blame] | 662 | outer = loop.create_future() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 663 | |
| 664 | def _done_callback(inner): |
| 665 | if outer.cancelled(): |
Victor Stinner | 3531d90 | 2015-01-09 01:42:52 +0100 | [diff] [blame] | 666 | if not inner.cancelled(): |
| 667 | # Mark inner's result as retrieved. |
| 668 | inner.exception() |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 669 | return |
Victor Stinner | 3531d90 | 2015-01-09 01:42:52 +0100 | [diff] [blame] | 670 | |
Guido van Rossum | 27b7c7e | 2013-10-17 13:40:50 -0700 | [diff] [blame] | 671 | if inner.cancelled(): |
| 672 | outer.cancel() |
| 673 | else: |
| 674 | exc = inner.exception() |
| 675 | if exc is not None: |
| 676 | outer.set_exception(exc) |
| 677 | else: |
| 678 | outer.set_result(inner.result()) |
| 679 | |
| 680 | inner.add_done_callback(_done_callback) |
| 681 | return outer |
Guido van Rossum | 841d9ee | 2015-10-03 08:31:42 -0700 | [diff] [blame] | 682 | |
| 683 | |
| 684 | def run_coroutine_threadsafe(coro, loop): |
| 685 | """Submit a coroutine object to a given event loop. |
| 686 | |
| 687 | Return a concurrent.futures.Future to access the result. |
| 688 | """ |
| 689 | if not coroutines.iscoroutine(coro): |
| 690 | raise TypeError('A coroutine object is required') |
| 691 | future = concurrent.futures.Future() |
| 692 | |
| 693 | def callback(): |
Guido van Rossum | 601953b | 2015-10-05 16:20:00 -0700 | [diff] [blame] | 694 | try: |
| 695 | futures._chain_future(ensure_future(coro, loop=loop), future) |
| 696 | except Exception as exc: |
| 697 | if future.set_running_or_notify_cancel(): |
| 698 | future.set_exception(exc) |
| 699 | raise |
Guido van Rossum | 841d9ee | 2015-10-03 08:31:42 -0700 | [diff] [blame] | 700 | |
| 701 | loop.call_soon_threadsafe(callback) |
| 702 | return future |