R David Murray | 6a14381 | 2013-12-20 14:37:39 -0500 | [diff] [blame] | 1 | .. currentmodule:: asyncio |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 2 | |
Victor Stinner | 9592edb | 2014-02-02 15:03:02 +0100 | [diff] [blame] | 3 | .. _asyncio-event-loop: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 4 | |
Victor Stinner | aea8229 | 2014-07-08 23:42:38 +0200 | [diff] [blame] | 5 | Base Event Loop |
| 6 | =============== |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 7 | |
lf | 627d2c8 | 2017-07-25 17:03:51 -0600 | [diff] [blame] | 8 | **Source code:** :source:`Lib/asyncio/events.py` |
| 9 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 10 | The event loop is the central execution device provided by :mod:`asyncio`. |
Zachary Ware | 5e580da | 2015-08-27 15:54:39 -0500 | [diff] [blame] | 11 | It provides multiple facilities, including: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 12 | |
Eli Bendersky | b73c833 | 2014-02-09 06:07:47 -0800 | [diff] [blame] | 13 | * Registering, executing and cancelling delayed calls (timeouts). |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 14 | |
Victor Stinner | 9592edb | 2014-02-02 15:03:02 +0100 | [diff] [blame] | 15 | * Creating client and server :ref:`transports <asyncio-transport>` for various |
Eli Bendersky | b73c833 | 2014-02-09 06:07:47 -0800 | [diff] [blame] | 16 | kinds of communication. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 17 | |
Eli Bendersky | 136fea2 | 2014-02-09 06:55:58 -0800 | [diff] [blame] | 18 | * Launching subprocesses and the associated :ref:`transports |
| 19 | <asyncio-transport>` for communication with an external program. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 20 | |
Eli Bendersky | b73c833 | 2014-02-09 06:07:47 -0800 | [diff] [blame] | 21 | * Delegating costly function calls to a pool of threads. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 22 | |
Victor Stinner | aea8229 | 2014-07-08 23:42:38 +0200 | [diff] [blame] | 23 | .. class:: BaseEventLoop |
Eli Bendersky | 136fea2 | 2014-02-09 06:55:58 -0800 | [diff] [blame] | 24 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 25 | This class is an implementation detail. It is a subclass of |
| 26 | :class:`AbstractEventLoop` and may be a base class of concrete |
| 27 | event loop implementations found in :mod:`asyncio`. It should not |
| 28 | be used directly; use :class:`AbstractEventLoop` instead. |
| 29 | ``BaseEventLoop`` should not be subclassed by third-party code; the |
| 30 | internal interface is not stable. |
| 31 | |
| 32 | .. class:: AbstractEventLoop |
| 33 | |
| 34 | Abstract base class of event loops. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 35 | |
Victor Stinner | 8370496 | 2015-02-25 14:24:15 +0100 | [diff] [blame] | 36 | This class is :ref:`not thread safe <asyncio-multithreading>`. |
| 37 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 38 | Run an event loop |
| 39 | ----------------- |
| 40 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 41 | .. method:: AbstractEventLoop.run_forever() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 42 | |
Guido van Rossum | 41f69f4 | 2015-11-19 13:28:47 -0800 | [diff] [blame] | 43 | Run until :meth:`stop` is called. If :meth:`stop` is called before |
| 44 | :meth:`run_forever()` is called, this polls the I/O selector once |
| 45 | with a timeout of zero, runs all callbacks scheduled in response to |
| 46 | I/O events (and those that were already scheduled), and then exits. |
| 47 | If :meth:`stop` is called while :meth:`run_forever` is running, |
| 48 | this will run the current batch of callbacks and then exit. Note |
| 49 | that callbacks scheduled by callbacks will not run in that case; |
| 50 | they will run the next time :meth:`run_forever` is called. |
| 51 | |
Guido van Rossum | 82f9fea | 2015-11-19 13:33:34 -0800 | [diff] [blame] | 52 | .. versionchanged:: 3.5.1 |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 53 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 54 | .. method:: AbstractEventLoop.run_until_complete(future) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 55 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 56 | Run until the :class:`Future` is done. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 57 | |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 58 | If the argument is a :ref:`coroutine object <coroutine>`, it is wrapped by |
Yury Selivanov | 04356e1 | 2015-06-30 22:13:22 -0400 | [diff] [blame] | 59 | :func:`ensure_future`. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 60 | |
| 61 | Return the Future's result, or raise its exception. |
| 62 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 63 | .. method:: AbstractEventLoop.is_running() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 64 | |
| 65 | Returns running status of event loop. |
| 66 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 67 | .. method:: AbstractEventLoop.stop() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 68 | |
| 69 | Stop running the event loop. |
| 70 | |
Guido van Rossum | 41f69f4 | 2015-11-19 13:28:47 -0800 | [diff] [blame] | 71 | This causes :meth:`run_forever` to exit at the next suitable |
| 72 | opportunity (see there for more details). |
| 73 | |
Guido van Rossum | 82f9fea | 2015-11-19 13:33:34 -0800 | [diff] [blame] | 74 | .. versionchanged:: 3.5.1 |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 75 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 76 | .. method:: AbstractEventLoop.is_closed() |
Victor Stinner | bb2fc5b | 2014-06-10 10:23:10 +0200 | [diff] [blame] | 77 | |
| 78 | Returns ``True`` if the event loop was closed. |
| 79 | |
| 80 | .. versionadded:: 3.4.2 |
| 81 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 82 | .. method:: AbstractEventLoop.close() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 83 | |
Guido van Rossum | 41f69f4 | 2015-11-19 13:28:47 -0800 | [diff] [blame] | 84 | Close the event loop. The loop must not be running. Pending |
| 85 | callbacks will be lost. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 86 | |
| 87 | This clears the queues and shuts down the executor, but does not wait for |
| 88 | the executor to finish. |
| 89 | |
| 90 | This is idempotent and irreversible. No other methods should be called after |
| 91 | this one. |
| 92 | |
Yury Selivanov | 0366004 | 2016-12-15 17:36:05 -0500 | [diff] [blame] | 93 | |
| 94 | .. coroutinemethod:: AbstractEventLoop.shutdown_asyncgens() |
| 95 | |
| 96 | Schedule all currently open :term:`asynchronous generator` objects to |
| 97 | close with an :meth:`~agen.aclose()` call. After calling this method, |
| 98 | the event loop will issue a warning whenever a new asynchronous generator |
| 99 | is iterated. Should be used to finalize all scheduled asynchronous |
| 100 | generators reliably. Example:: |
| 101 | |
| 102 | try: |
| 103 | loop.run_forever() |
| 104 | finally: |
| 105 | loop.run_until_complete(loop.shutdown_asyncgens()) |
| 106 | loop.close() |
| 107 | |
| 108 | .. versionadded:: 3.6 |
| 109 | |
| 110 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 111 | .. _asyncio-pass-keywords: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 112 | |
| 113 | Calls |
| 114 | ----- |
| 115 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 116 | Most :mod:`asyncio` functions don't accept keywords. If you want to pass |
| 117 | keywords to your callback, use :func:`functools.partial`. For example, |
| 118 | ``loop.call_soon(functools.partial(print, "Hello", flush=True))`` will call |
| 119 | ``print("Hello", flush=True)``. |
| 120 | |
| 121 | .. note:: |
| 122 | :func:`functools.partial` is better than ``lambda`` functions, because |
| 123 | :mod:`asyncio` can inspect :func:`functools.partial` object to display |
| 124 | parameters in debug mode, whereas ``lambda`` functions have a poor |
| 125 | representation. |
| 126 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 127 | .. method:: AbstractEventLoop.call_soon(callback, \*args) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 128 | |
Victor Stinner | 4d5115c | 2014-12-15 17:50:55 +0100 | [diff] [blame] | 129 | Arrange for a callback to be called as soon as possible. The callback is |
| 130 | called after :meth:`call_soon` returns, when control returns to the event |
| 131 | loop. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 132 | |
Serhiy Storchaka | 4ecfa45 | 2016-05-16 09:31:54 +0300 | [diff] [blame] | 133 | This operates as a :abbr:`FIFO (first-in, first-out)` queue, callbacks |
| 134 | are called in the order in which they are registered. Each callback |
| 135 | will be called exactly once. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 136 | |
| 137 | Any positional arguments after the callback will be passed to the |
| 138 | callback when it is called. |
| 139 | |
Yury Selivanov | 1096f76 | 2015-06-25 13:49:52 -0400 | [diff] [blame] | 140 | An instance of :class:`asyncio.Handle` is returned, which can be |
| 141 | used to cancel the callback. |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 142 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 143 | :ref:`Use functools.partial to pass keywords to the callback |
| 144 | <asyncio-pass-keywords>`. |
| 145 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 146 | .. method:: AbstractEventLoop.call_soon_threadsafe(callback, \*args) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 147 | |
| 148 | Like :meth:`call_soon`, but thread safe. |
| 149 | |
Victor Stinner | 8370496 | 2015-02-25 14:24:15 +0100 | [diff] [blame] | 150 | See the :ref:`concurrency and multithreading <asyncio-multithreading>` |
| 151 | section of the documentation. |
| 152 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 153 | |
Victor Stinner | 45b27ed | 2014-02-01 02:36:43 +0100 | [diff] [blame] | 154 | .. _asyncio-delayed-calls: |
| 155 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 156 | Delayed calls |
| 157 | ------------- |
| 158 | |
| 159 | The event loop has its own internal clock for computing timeouts. |
| 160 | Which clock is used depends on the (platform-specific) event loop |
| 161 | implementation; ideally it is a monotonic clock. This will generally be |
| 162 | a different clock than :func:`time.time`. |
| 163 | |
Victor Stinner | fd9d374 | 2014-02-18 09:37:43 +0100 | [diff] [blame] | 164 | .. note:: |
| 165 | |
| 166 | Timeouts (relative *delay* or absolute *when*) should not exceed one day. |
| 167 | |
Victor Stinner | 45b27ed | 2014-02-01 02:36:43 +0100 | [diff] [blame] | 168 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 169 | .. method:: AbstractEventLoop.call_later(delay, callback, *args) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 170 | |
| 171 | Arrange for the *callback* to be called after the given *delay* |
| 172 | seconds (either an int or float). |
| 173 | |
Andrew Svetlov | 3d4dbd8 | 2018-02-01 19:59:32 +0200 | [diff] [blame] | 174 | An instance of :class:`asyncio.TimerHandle` is returned, which can be |
Yury Selivanov | 1096f76 | 2015-06-25 13:49:52 -0400 | [diff] [blame] | 175 | used to cancel the callback. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 176 | |
| 177 | *callback* will be called exactly once per call to :meth:`call_later`. |
| 178 | If two callbacks are scheduled for exactly the same time, it is |
| 179 | undefined which will be called first. |
| 180 | |
| 181 | The optional positional *args* will be passed to the callback when it |
| 182 | is called. If you want the callback to be called with some named |
| 183 | arguments, use a closure or :func:`functools.partial`. |
| 184 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 185 | :ref:`Use functools.partial to pass keywords to the callback |
| 186 | <asyncio-pass-keywords>`. |
| 187 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 188 | .. method:: AbstractEventLoop.call_at(when, callback, *args) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 189 | |
| 190 | Arrange for the *callback* to be called at the given absolute timestamp |
Berker Peksag | b556399 | 2014-11-07 19:51:07 +0200 | [diff] [blame] | 191 | *when* (an int or float), using the same time reference as |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 192 | :meth:`AbstractEventLoop.time`. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 193 | |
| 194 | This method's behavior is the same as :meth:`call_later`. |
| 195 | |
Andrew Svetlov | 3d4dbd8 | 2018-02-01 19:59:32 +0200 | [diff] [blame] | 196 | An instance of :class:`asyncio.TimerHandle` is returned, which can be |
Yury Selivanov | 1096f76 | 2015-06-25 13:49:52 -0400 | [diff] [blame] | 197 | used to cancel the callback. |
| 198 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 199 | :ref:`Use functools.partial to pass keywords to the callback |
| 200 | <asyncio-pass-keywords>`. |
| 201 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 202 | .. method:: AbstractEventLoop.time() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 203 | |
| 204 | Return the current time, as a :class:`float` value, according to the |
| 205 | event loop's internal clock. |
| 206 | |
Victor Stinner | 3e09e32 | 2013-12-03 01:22:06 +0100 | [diff] [blame] | 207 | .. seealso:: |
| 208 | |
| 209 | The :func:`asyncio.sleep` function. |
| 210 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 211 | |
Yury Selivanov | 950204d | 2016-05-16 16:23:00 -0400 | [diff] [blame] | 212 | Futures |
| 213 | ------- |
| 214 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 215 | .. method:: AbstractEventLoop.create_future() |
Yury Selivanov | 950204d | 2016-05-16 16:23:00 -0400 | [diff] [blame] | 216 | |
| 217 | Create an :class:`asyncio.Future` object attached to the loop. |
| 218 | |
| 219 | This is a preferred way to create futures in asyncio, as event |
| 220 | loop implementations can provide alternative implementations |
| 221 | of the Future class (with better performance or instrumentation). |
| 222 | |
| 223 | .. versionadded:: 3.5.2 |
| 224 | |
| 225 | |
Yury Selivanov | bb96134 | 2015-06-25 11:54:34 -0400 | [diff] [blame] | 226 | Tasks |
| 227 | ----- |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 228 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 229 | .. method:: AbstractEventLoop.create_task(coro) |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 230 | |
| 231 | Schedule the execution of a :ref:`coroutine object <coroutine>`: wrap it in |
| 232 | a future. Return a :class:`Task` object. |
| 233 | |
| 234 | Third-party event loops can use their own subclass of :class:`Task` for |
| 235 | interoperability. In this case, the result type is a subclass of |
| 236 | :class:`Task`. |
| 237 | |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 238 | .. versionadded:: 3.4.2 |
| 239 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 240 | .. method:: AbstractEventLoop.set_task_factory(factory) |
Yury Selivanov | 7185461 | 2015-05-11 16:28:27 -0400 | [diff] [blame] | 241 | |
| 242 | Set a task factory that will be used by |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 243 | :meth:`AbstractEventLoop.create_task`. |
Yury Selivanov | 7185461 | 2015-05-11 16:28:27 -0400 | [diff] [blame] | 244 | |
| 245 | If *factory* is ``None`` the default task factory will be set. |
| 246 | |
| 247 | If *factory* is a *callable*, it should have a signature matching |
| 248 | ``(loop, coro)``, where *loop* will be a reference to the active |
| 249 | event loop, *coro* will be a coroutine object. The callable |
| 250 | must return an :class:`asyncio.Future` compatible object. |
| 251 | |
| 252 | .. versionadded:: 3.4.4 |
| 253 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 254 | .. method:: AbstractEventLoop.get_task_factory() |
Yury Selivanov | 7185461 | 2015-05-11 16:28:27 -0400 | [diff] [blame] | 255 | |
| 256 | Return a task factory, or ``None`` if the default one is in use. |
| 257 | |
| 258 | .. versionadded:: 3.4.4 |
| 259 | |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 260 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 261 | Creating connections |
Victor Stinner | 0c6f1ca | 2013-12-03 01:46:39 +0100 | [diff] [blame] | 262 | -------------------- |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 263 | |
Andrew Svetlov | 51eb1c6 | 2017-12-20 20:24:43 +0200 | [diff] [blame] | 264 | .. coroutinemethod:: AbstractEventLoop.create_connection(protocol_factory, host=None, port=None, \*, ssl=None, family=0, proto=0, flags=0, sock=None, local_addr=None, server_hostname=None, ssl_handshake_timeout=None) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 265 | |
| 266 | Create a streaming transport connection to a given Internet *host* and |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 267 | *port*: socket family :py:data:`~socket.AF_INET` or |
| 268 | :py:data:`~socket.AF_INET6` depending on *host* (or *family* if specified), |
| 269 | socket type :py:data:`~socket.SOCK_STREAM`. *protocol_factory* must be a |
| 270 | callable returning a :ref:`protocol <asyncio-protocol>` instance. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 271 | |
Yury Selivanov | 19a44f6 | 2017-12-14 20:53:26 -0500 | [diff] [blame] | 272 | This method will try to establish the connection in the background. |
| 273 | When successful, it returns a ``(transport, protocol)`` pair. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 274 | |
| 275 | The chronological synopsis of the underlying operation is as follows: |
| 276 | |
Victor Stinner | 9592edb | 2014-02-02 15:03:02 +0100 | [diff] [blame] | 277 | #. The connection is established, and a :ref:`transport <asyncio-transport>` |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 278 | is created to represent it. |
| 279 | |
| 280 | #. *protocol_factory* is called without arguments and must return a |
Victor Stinner | 9592edb | 2014-02-02 15:03:02 +0100 | [diff] [blame] | 281 | :ref:`protocol <asyncio-protocol>` instance. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 282 | |
| 283 | #. The protocol instance is tied to the transport, and its |
| 284 | :meth:`connection_made` method is called. |
| 285 | |
| 286 | #. The coroutine returns successfully with the ``(transport, protocol)`` |
| 287 | pair. |
| 288 | |
| 289 | The created transport is an implementation-dependent bidirectional stream. |
| 290 | |
| 291 | .. note:: |
| 292 | *protocol_factory* can be any kind of callable, not necessarily |
| 293 | a class. For example, if you want to use a pre-created |
| 294 | protocol instance, you can pass ``lambda: my_protocol``. |
| 295 | |
Martin Panter | c04fb56 | 2016-02-10 05:44:01 +0000 | [diff] [blame] | 296 | Options that change how the connection is created: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 297 | |
| 298 | * *ssl*: if given and not false, a SSL/TLS transport is created |
| 299 | (by default a plain TCP transport is created). If *ssl* is |
| 300 | a :class:`ssl.SSLContext` object, this context is used to create |
| 301 | the transport; if *ssl* is :const:`True`, a context with some |
| 302 | unspecified default settings is used. |
| 303 | |
Berker Peksag | 9c1dba2 | 2014-09-28 00:00:58 +0300 | [diff] [blame] | 304 | .. seealso:: :ref:`SSL/TLS security considerations <ssl-security>` |
Antoine Pitrou | c5e075f | 2014-03-22 18:19:11 +0100 | [diff] [blame] | 305 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 306 | * *server_hostname*, is only for use together with *ssl*, |
| 307 | and sets or overrides the hostname that the target server's certificate |
| 308 | will be matched against. By default the value of the *host* argument |
| 309 | is used. If *host* is empty, there is no default and you must pass a |
| 310 | value for *server_hostname*. If *server_hostname* is an empty |
| 311 | string, hostname matching is disabled (which is a serious security |
| 312 | risk, allowing for man-in-the-middle-attacks). |
| 313 | |
| 314 | * *family*, *proto*, *flags* are the optional address family, protocol |
| 315 | and flags to be passed through to getaddrinfo() for *host* resolution. |
| 316 | If given, these should all be integers from the corresponding |
| 317 | :mod:`socket` module constants. |
| 318 | |
| 319 | * *sock*, if given, should be an existing, already connected |
| 320 | :class:`socket.socket` object to be used by the transport. |
| 321 | If *sock* is given, none of *host*, *port*, *family*, *proto*, *flags* |
| 322 | and *local_addr* should be specified. |
| 323 | |
| 324 | * *local_addr*, if given, is a ``(local_host, local_port)`` tuple used |
| 325 | to bind the socket to locally. The *local_host* and *local_port* |
| 326 | are looked up using getaddrinfo(), similarly to *host* and *port*. |
| 327 | |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 328 | * *ssl_handshake_timeout* is (for an SSL connection) the time in seconds |
| 329 | to wait for the SSL handshake to complete before aborting the connection. |
Andrew Svetlov | 51eb1c6 | 2017-12-20 20:24:43 +0200 | [diff] [blame] | 330 | ``10.0`` seconds if ``None`` (default). |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 331 | |
| 332 | .. versionadded:: 3.7 |
| 333 | |
| 334 | The *ssl_handshake_timeout* parameter. |
| 335 | |
Victor Stinner | 60208a1 | 2015-09-15 22:41:52 +0200 | [diff] [blame] | 336 | .. versionchanged:: 3.5 |
| 337 | |
| 338 | On Windows with :class:`ProactorEventLoop`, SSL/TLS is now supported. |
Victor Stinner | 41f3c3f | 2014-08-31 14:47:37 +0200 | [diff] [blame] | 339 | |
Victor Stinner | c8ea813 | 2014-01-23 11:02:09 +0100 | [diff] [blame] | 340 | .. seealso:: |
| 341 | |
| 342 | The :func:`open_connection` function can be used to get a pair of |
| 343 | (:class:`StreamReader`, :class:`StreamWriter`) instead of a protocol. |
| 344 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 345 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 346 | .. coroutinemethod:: AbstractEventLoop.create_datagram_endpoint(protocol_factory, local_addr=None, remote_addr=None, \*, family=0, proto=0, flags=0, reuse_address=None, reuse_port=None, allow_broadcast=None, sock=None) |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 347 | |
Quentin Dawans | fe4ea9c | 2017-10-30 14:43:02 +0100 | [diff] [blame] | 348 | Create datagram connection: socket family :py:data:`~socket.AF_INET`, |
| 349 | :py:data:`~socket.AF_INET6` or :py:data:`~socket.AF_UNIX` depending on |
| 350 | *host* (or *family* if specified), socket type |
| 351 | :py:data:`~socket.SOCK_DGRAM`. *protocol_factory* must be a |
Guido van Rossum | b9bf913 | 2015-10-05 09:15:28 -0700 | [diff] [blame] | 352 | callable returning a :ref:`protocol <asyncio-protocol>` instance. |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 353 | |
Yury Selivanov | 19a44f6 | 2017-12-14 20:53:26 -0500 | [diff] [blame] | 354 | This method will try to establish the connection in the background. |
| 355 | When successful, the it returns a ``(transport, protocol)`` pair. |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 356 | |
Guido van Rossum | b9bf913 | 2015-10-05 09:15:28 -0700 | [diff] [blame] | 357 | Options changing how the connection is created: |
| 358 | |
| 359 | * *local_addr*, if given, is a ``(local_host, local_port)`` tuple used |
| 360 | to bind the socket to locally. The *local_host* and *local_port* |
| 361 | are looked up using :meth:`getaddrinfo`. |
| 362 | |
| 363 | * *remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used |
| 364 | to connect the socket to a remote address. The *remote_host* and |
| 365 | *remote_port* are looked up using :meth:`getaddrinfo`. |
| 366 | |
| 367 | * *family*, *proto*, *flags* are the optional address family, protocol |
| 368 | and flags to be passed through to :meth:`getaddrinfo` for *host* |
| 369 | resolution. If given, these should all be integers from the |
| 370 | corresponding :mod:`socket` module constants. |
| 371 | |
| 372 | * *reuse_address* tells the kernel to reuse a local socket in |
| 373 | TIME_WAIT state, without waiting for its natural timeout to |
Serhiy Storchaka | 4adf01c | 2016-10-19 18:30:05 +0300 | [diff] [blame] | 374 | expire. If not specified will automatically be set to ``True`` on |
Guido van Rossum | b9bf913 | 2015-10-05 09:15:28 -0700 | [diff] [blame] | 375 | UNIX. |
| 376 | |
| 377 | * *reuse_port* tells the kernel to allow this endpoint to be bound to the |
| 378 | same port as other existing endpoints are bound to, so long as they all |
| 379 | set this flag when being created. This option is not supported on Windows |
| 380 | and some UNIX's. If the :py:data:`~socket.SO_REUSEPORT` constant is not |
| 381 | defined then this capability is unsupported. |
| 382 | |
| 383 | * *allow_broadcast* tells the kernel to allow this endpoint to send |
| 384 | messages to the broadcast address. |
| 385 | |
| 386 | * *sock* can optionally be specified in order to use a preexisting, |
| 387 | already connected, :class:`socket.socket` object to be used by the |
| 388 | transport. If specified, *local_addr* and *remote_addr* should be omitted |
| 389 | (must be :const:`None`). |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 390 | |
Victor Stinner | 41f3c3f | 2014-08-31 14:47:37 +0200 | [diff] [blame] | 391 | On Windows with :class:`ProactorEventLoop`, this method is not supported. |
| 392 | |
Victor Stinner | c7edffd | 2014-10-12 11:24:26 +0200 | [diff] [blame] | 393 | See :ref:`UDP echo client protocol <asyncio-udp-echo-client-protocol>` and |
| 394 | :ref:`UDP echo server protocol <asyncio-udp-echo-server-protocol>` examples. |
| 395 | |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 396 | |
Andrew Svetlov | 51eb1c6 | 2017-12-20 20:24:43 +0200 | [diff] [blame] | 397 | .. coroutinemethod:: AbstractEventLoop.create_unix_connection(protocol_factory, path=None, \*, ssl=None, sock=None, server_hostname=None, ssl_handshake_timeout=None) |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 398 | |
| 399 | Create UNIX connection: socket family :py:data:`~socket.AF_UNIX`, socket |
| 400 | type :py:data:`~socket.SOCK_STREAM`. The :py:data:`~socket.AF_UNIX` socket |
| 401 | family is used to communicate between processes on the same machine |
| 402 | efficiently. |
| 403 | |
Yury Selivanov | 19a44f6 | 2017-12-14 20:53:26 -0500 | [diff] [blame] | 404 | This method will try to establish the connection in the background. |
| 405 | When successful, the it returns a ``(transport, protocol)`` pair. |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 406 | |
Guido van Rossum | 9e80eeb | 2016-11-03 14:17:25 -0700 | [diff] [blame] | 407 | *path* is the name of a UNIX domain socket, and is required unless a *sock* |
Yury Selivanov | 423fd36 | 2017-11-20 17:26:28 -0500 | [diff] [blame] | 408 | parameter is specified. Abstract UNIX sockets, :class:`str`, |
| 409 | :class:`bytes`, and :class:`~pathlib.Path` paths are supported. |
Guido van Rossum | 9e80eeb | 2016-11-03 14:17:25 -0700 | [diff] [blame] | 410 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 411 | See the :meth:`AbstractEventLoop.create_connection` method for parameters. |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 412 | |
| 413 | Availability: UNIX. |
| 414 | |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 415 | .. versionadded:: 3.7 |
| 416 | |
| 417 | The *ssl_handshake_timeout* parameter. |
| 418 | |
Yury Selivanov | 423fd36 | 2017-11-20 17:26:28 -0500 | [diff] [blame] | 419 | .. versionchanged:: 3.7 |
| 420 | |
| 421 | The *path* parameter can now be a :class:`~pathlib.Path` object. |
| 422 | |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 423 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 424 | Creating listening connections |
| 425 | ------------------------------ |
| 426 | |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 427 | .. coroutinemethod:: AbstractEventLoop.create_server(protocol_factory, host=None, port=None, \*, family=socket.AF_UNSPEC, flags=socket.AI_PASSIVE, sock=None, backlog=100, ssl=None, reuse_address=None, reuse_port=None, ssl_handshake_timeout=None, start_serving=True) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 428 | |
Victor Stinner | 33f6abe | 2014-10-12 20:36:04 +0200 | [diff] [blame] | 429 | Create a TCP server (socket type :data:`~socket.SOCK_STREAM`) bound to |
| 430 | *host* and *port*. |
| 431 | |
| 432 | Return a :class:`Server` object, its :attr:`~Server.sockets` attribute |
| 433 | contains created sockets. Use the :meth:`Server.close` method to stop the |
| 434 | server: close listening sockets. |
| 435 | |
| 436 | Parameters: |
| 437 | |
Victor Stinner | 5e4a7d8 | 2015-09-21 18:33:43 +0200 | [diff] [blame] | 438 | * The *host* parameter can be a string, in that case the TCP server is |
| 439 | bound to *host* and *port*. The *host* parameter can also be a sequence |
| 440 | of strings and in that case the TCP server is bound to all hosts of the |
| 441 | sequence. If *host* is an empty string or ``None``, all interfaces are |
| 442 | assumed and a list of multiple sockets will be returned (most likely one |
| 443 | for IPv4 and another one for IPv6). |
Victor Stinner | 33f6abe | 2014-10-12 20:36:04 +0200 | [diff] [blame] | 444 | |
| 445 | * *family* can be set to either :data:`socket.AF_INET` or |
| 446 | :data:`~socket.AF_INET6` to force the socket to use IPv4 or IPv6. If not set |
| 447 | it will be determined from host (defaults to :data:`socket.AF_UNSPEC`). |
| 448 | |
| 449 | * *flags* is a bitmask for :meth:`getaddrinfo`. |
| 450 | |
| 451 | * *sock* can optionally be specified in order to use a preexisting |
| 452 | socket object. If specified, *host* and *port* should be omitted (must be |
| 453 | :const:`None`). |
| 454 | |
| 455 | * *backlog* is the maximum number of queued connections passed to |
| 456 | :meth:`~socket.socket.listen` (defaults to 100). |
| 457 | |
| 458 | * *ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the |
| 459 | accepted connections. |
| 460 | |
| 461 | * *reuse_address* tells the kernel to reuse a local socket in |
| 462 | TIME_WAIT state, without waiting for its natural timeout to |
Serhiy Storchaka | 4adf01c | 2016-10-19 18:30:05 +0300 | [diff] [blame] | 463 | expire. If not specified will automatically be set to ``True`` on |
Victor Stinner | 33f6abe | 2014-10-12 20:36:04 +0200 | [diff] [blame] | 464 | UNIX. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 465 | |
Guido van Rossum | b9bf913 | 2015-10-05 09:15:28 -0700 | [diff] [blame] | 466 | * *reuse_port* tells the kernel to allow this endpoint to be bound to the |
| 467 | same port as other existing endpoints are bound to, so long as they all |
| 468 | set this flag when being created. This option is not supported on |
| 469 | Windows. |
| 470 | |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 471 | * *ssl_handshake_timeout* is (for an SSL server) the time in seconds to wait |
| 472 | for the SSL handshake to complete before aborting the connection. |
Andrew Svetlov | 51eb1c6 | 2017-12-20 20:24:43 +0200 | [diff] [blame] | 473 | ``10.0`` seconds if ``None`` (default). |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 474 | |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 475 | * *start_serving* set to ``True`` (the default) causes the created server |
| 476 | to start accepting connections immediately. When set to ``False``, |
| 477 | the user should await on :meth:`Server.start_serving` or |
| 478 | :meth:`Server.serve_forever` to make the server to start accepting |
| 479 | connections. |
| 480 | |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 481 | .. versionadded:: 3.7 |
| 482 | |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 483 | *ssl_handshake_timeout* and *start_serving* parameters. |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 484 | |
Victor Stinner | 60208a1 | 2015-09-15 22:41:52 +0200 | [diff] [blame] | 485 | .. versionchanged:: 3.5 |
| 486 | |
| 487 | On Windows with :class:`ProactorEventLoop`, SSL/TLS is now supported. |
Victor Stinner | 41f3c3f | 2014-08-31 14:47:37 +0200 | [diff] [blame] | 488 | |
Victor Stinner | c8ea813 | 2014-01-23 11:02:09 +0100 | [diff] [blame] | 489 | .. seealso:: |
| 490 | |
| 491 | The function :func:`start_server` creates a (:class:`StreamReader`, |
| 492 | :class:`StreamWriter`) pair and calls back a function with this pair. |
| 493 | |
Victor Stinner | 7b58a2b | 2015-09-21 18:41:05 +0200 | [diff] [blame] | 494 | .. versionchanged:: 3.5.1 |
Victor Stinner | 5e4a7d8 | 2015-09-21 18:33:43 +0200 | [diff] [blame] | 495 | |
| 496 | The *host* parameter can now be a sequence of strings. |
| 497 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 498 | |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 499 | .. coroutinemethod:: AbstractEventLoop.create_unix_server(protocol_factory, path=None, \*, sock=None, backlog=100, ssl=None, ssl_handshake_timeout=None, start_serving=True) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 500 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 501 | Similar to :meth:`AbstractEventLoop.create_server`, but specific to the |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 502 | socket family :py:data:`~socket.AF_UNIX`. |
| 503 | |
Yury Selivanov | 423fd36 | 2017-11-20 17:26:28 -0500 | [diff] [blame] | 504 | *path* is the name of a UNIX domain socket, and is required unless a *sock* |
| 505 | parameter is specified. Abstract UNIX sockets, :class:`str`, |
| 506 | :class:`bytes`, and :class:`~pathlib.Path` paths are supported. |
| 507 | |
Victor Stinner | a6919aa | 2014-02-19 13:32:34 +0100 | [diff] [blame] | 508 | Availability: UNIX. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 509 | |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 510 | .. versionadded:: 3.7 |
| 511 | |
| 512 | The *ssl_handshake_timeout* parameter. |
| 513 | |
Yury Selivanov | 423fd36 | 2017-11-20 17:26:28 -0500 | [diff] [blame] | 514 | .. versionchanged:: 3.7 |
| 515 | |
| 516 | The *path* parameter can now be a :class:`~pathlib.Path` object. |
| 517 | |
Andrew Svetlov | 51eb1c6 | 2017-12-20 20:24:43 +0200 | [diff] [blame] | 518 | .. coroutinemethod:: BaseEventLoop.connect_accepted_socket(protocol_factory, sock, \*, ssl=None, ssl_handshake_timeout=None) |
Yury Selivanov | 3b3a141 | 2016-11-07 15:35:25 -0500 | [diff] [blame] | 519 | |
| 520 | Handle an accepted connection. |
| 521 | |
| 522 | This is used by servers that accept connections outside of |
| 523 | asyncio but that use asyncio to handle them. |
| 524 | |
| 525 | Parameters: |
| 526 | |
| 527 | * *sock* is a preexisting socket object returned from an ``accept`` |
| 528 | call. |
| 529 | |
| 530 | * *ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the |
| 531 | accepted connections. |
| 532 | |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 533 | * *ssl_handshake_timeout* is (for an SSL connection) the time in seconds to |
| 534 | wait for the SSL handshake to complete before aborting the connection. |
Andrew Svetlov | 51eb1c6 | 2017-12-20 20:24:43 +0200 | [diff] [blame] | 535 | ``10.0`` seconds if ``None`` (default). |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 536 | |
Yury Selivanov | 19a44f6 | 2017-12-14 20:53:26 -0500 | [diff] [blame] | 537 | When completed it returns a ``(transport, protocol)`` pair. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 538 | |
Neil Aspinall | f7686c1 | 2017-12-19 19:45:42 +0000 | [diff] [blame] | 539 | .. versionadded:: 3.7 |
| 540 | |
| 541 | The *ssl_handshake_timeout* parameter. |
| 542 | |
AraHaan | 431665b | 2017-11-21 11:06:26 -0500 | [diff] [blame] | 543 | .. versionadded:: 3.5.3 |
| 544 | |
| 545 | |
Andrew Svetlov | 7c68407 | 2018-01-27 21:22:47 +0200 | [diff] [blame] | 546 | File Transferring |
| 547 | ----------------- |
| 548 | |
Elvis Pranskevichus | ee72ac0 | 2018-01-27 17:11:10 -0500 | [diff] [blame] | 549 | .. coroutinemethod:: AbstractEventLoop.sendfile(transport, file, \ |
Andrew Svetlov | 7c68407 | 2018-01-27 21:22:47 +0200 | [diff] [blame] | 550 | offset=0, count=None, \ |
| 551 | *, fallback=True) |
| 552 | |
| 553 | Send a *file* to *transport*, return the total number of bytes |
| 554 | which were sent. |
| 555 | |
| 556 | The method uses high-performance :meth:`os.sendfile` if available. |
| 557 | |
| 558 | *file* must be a regular file object opened in binary mode. |
| 559 | |
| 560 | *offset* tells from where to start reading the file. If specified, |
| 561 | *count* is the total number of bytes to transmit as opposed to |
| 562 | sending the file until EOF is reached. File position is updated on |
| 563 | return or also in case of error in which case :meth:`file.tell() |
| 564 | <io.IOBase.tell>` can be used to figure out the number of bytes |
| 565 | which were sent. |
| 566 | |
| 567 | *fallback* set to ``True`` makes asyncio to manually read and send |
| 568 | the file when the platform does not support the sendfile syscall |
| 569 | (e.g. Windows or SSL socket on Unix). |
| 570 | |
| 571 | Raise :exc:`SendfileNotAvailableError` if the system does not support |
| 572 | *sendfile* syscall and *fallback* is ``False``. |
| 573 | |
| 574 | .. versionadded:: 3.7 |
| 575 | |
| 576 | |
Yury Selivanov | f111b3d | 2017-12-30 00:35:36 -0500 | [diff] [blame] | 577 | TLS Upgrade |
| 578 | ----------- |
| 579 | |
| 580 | .. coroutinemethod:: AbstractEventLoop.start_tls(transport, protocol, sslcontext, \*, server_side=False, server_hostname=None, ssl_handshake_timeout=None) |
| 581 | |
| 582 | Upgrades an existing connection to TLS. |
| 583 | |
| 584 | Returns a new transport instance, that the *protocol* must start using |
| 585 | immediately after the *await*. The *transport* instance passed to |
| 586 | the *start_tls* method should never be used again. |
| 587 | |
| 588 | Parameters: |
| 589 | |
| 590 | * *transport* and *protocol* instances that methods like |
| 591 | :meth:`~AbstractEventLoop.create_server` and |
| 592 | :meth:`~AbstractEventLoop.create_connection` return. |
| 593 | |
| 594 | * *sslcontext*: a configured instance of :class:`~ssl.SSLContext`. |
| 595 | |
| 596 | * *server_side* pass ``True`` when a server-side connection is being |
| 597 | upgraded (like the one created by :meth:`~AbstractEventLoop.create_server`). |
| 598 | |
| 599 | * *server_hostname*: sets or overrides the host name that the target |
| 600 | server's certificate will be matched against. |
| 601 | |
| 602 | * *ssl_handshake_timeout* is (for an SSL connection) the time in seconds to |
| 603 | wait for the SSL handshake to complete before aborting the connection. |
| 604 | ``10.0`` seconds if ``None`` (default). |
| 605 | |
| 606 | .. versionadded:: 3.7 |
| 607 | |
| 608 | |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 609 | Watch file descriptors |
| 610 | ---------------------- |
| 611 | |
Victor Stinner | 41f3c3f | 2014-08-31 14:47:37 +0200 | [diff] [blame] | 612 | On Windows with :class:`SelectorEventLoop`, only socket handles are supported |
| 613 | (ex: pipe file descriptors are not supported). |
| 614 | |
| 615 | On Windows with :class:`ProactorEventLoop`, these methods are not supported. |
| 616 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 617 | .. method:: AbstractEventLoop.add_reader(fd, callback, \*args) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 618 | |
| 619 | Start watching the file descriptor for read availability and then call the |
| 620 | *callback* with specified arguments. |
| 621 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 622 | :ref:`Use functools.partial to pass keywords to the callback |
| 623 | <asyncio-pass-keywords>`. |
| 624 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 625 | .. method:: AbstractEventLoop.remove_reader(fd) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 626 | |
| 627 | Stop watching the file descriptor for read availability. |
| 628 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 629 | .. method:: AbstractEventLoop.add_writer(fd, callback, \*args) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 630 | |
| 631 | Start watching the file descriptor for write availability and then call the |
| 632 | *callback* with specified arguments. |
| 633 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 634 | :ref:`Use functools.partial to pass keywords to the callback |
| 635 | <asyncio-pass-keywords>`. |
| 636 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 637 | .. method:: AbstractEventLoop.remove_writer(fd) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 638 | |
| 639 | Stop watching the file descriptor for write availability. |
| 640 | |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 641 | The :ref:`watch a file descriptor for read events <asyncio-watch-read-event>` |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 642 | example uses the low-level :meth:`AbstractEventLoop.add_reader` method to register |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 643 | the file descriptor of a socket. |
| 644 | |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 645 | |
| 646 | Low-level socket operations |
| 647 | --------------------------- |
| 648 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 649 | .. coroutinemethod:: AbstractEventLoop.sock_recv(sock, nbytes) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 650 | |
Yury Selivanov | 55c5084 | 2016-06-08 12:48:15 -0400 | [diff] [blame] | 651 | Receive data from the socket. Modeled after blocking |
| 652 | :meth:`socket.socket.recv` method. |
| 653 | |
| 654 | The return value is a bytes object |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 655 | representing the data received. The maximum amount of data to be received |
| 656 | at once is specified by *nbytes*. |
| 657 | |
Victor Stinner | d84fd73 | 2014-08-26 01:01:59 +0200 | [diff] [blame] | 658 | With :class:`SelectorEventLoop` event loop, the socket *sock* must be |
| 659 | non-blocking. |
Victor Stinner | ec2ce09 | 2014-07-29 23:12:22 +0200 | [diff] [blame] | 660 | |
Yury Selivanov | 19a44f6 | 2017-12-14 20:53:26 -0500 | [diff] [blame] | 661 | .. versionchanged:: 3.7 |
| 662 | Even though the method was always documented as a coroutine |
| 663 | method, before Python 3.7 it returned a :class:`Future`. |
| 664 | Since Python 3.7, this is an ``async def`` method. |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 665 | |
Antoine Pitrou | 525f40d | 2017-10-19 21:46:40 +0200 | [diff] [blame] | 666 | .. coroutinemethod:: AbstractEventLoop.sock_recv_into(sock, buf) |
| 667 | |
| 668 | Receive data from the socket. Modeled after blocking |
| 669 | :meth:`socket.socket.recv_into` method. |
| 670 | |
| 671 | The received data is written into *buf* (a writable buffer). |
| 672 | The return value is the number of bytes written. |
| 673 | |
| 674 | With :class:`SelectorEventLoop` event loop, the socket *sock* must be |
| 675 | non-blocking. |
| 676 | |
Antoine Pitrou | 525f40d | 2017-10-19 21:46:40 +0200 | [diff] [blame] | 677 | .. versionadded:: 3.7 |
| 678 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 679 | .. coroutinemethod:: AbstractEventLoop.sock_sendall(sock, data) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 680 | |
Yury Selivanov | 55c5084 | 2016-06-08 12:48:15 -0400 | [diff] [blame] | 681 | Send data to the socket. Modeled after blocking |
| 682 | :meth:`socket.socket.sendall` method. |
| 683 | |
| 684 | The socket must be connected to a remote socket. |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 685 | This method continues to send data from *data* until either all data has |
| 686 | been sent or an error occurs. ``None`` is returned on success. On error, |
| 687 | an exception is raised, and there is no way to determine how much data, if |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 688 | any, was successfully processed by the receiving end of the connection. |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 689 | |
Victor Stinner | d84fd73 | 2014-08-26 01:01:59 +0200 | [diff] [blame] | 690 | With :class:`SelectorEventLoop` event loop, the socket *sock* must be |
| 691 | non-blocking. |
Victor Stinner | ec2ce09 | 2014-07-29 23:12:22 +0200 | [diff] [blame] | 692 | |
Yury Selivanov | 19a44f6 | 2017-12-14 20:53:26 -0500 | [diff] [blame] | 693 | .. versionchanged:: 3.7 |
| 694 | Even though the method was always documented as a coroutine |
| 695 | method, before Python 3.7 it returned an :class:`Future`. |
| 696 | Since Python 3.7, this is an ``async def`` method. |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 697 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 698 | .. coroutinemethod:: AbstractEventLoop.sock_connect(sock, address) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 699 | |
Yury Selivanov | 55c5084 | 2016-06-08 12:48:15 -0400 | [diff] [blame] | 700 | Connect to a remote socket at *address*. Modeled after |
| 701 | blocking :meth:`socket.socket.connect` method. |
Victor Stinner | 1b0580b | 2014-02-13 09:24:37 +0100 | [diff] [blame] | 702 | |
Victor Stinner | d84fd73 | 2014-08-26 01:01:59 +0200 | [diff] [blame] | 703 | With :class:`SelectorEventLoop` event loop, the socket *sock* must be |
| 704 | non-blocking. |
Victor Stinner | ec2ce09 | 2014-07-29 23:12:22 +0200 | [diff] [blame] | 705 | |
Yury Selivanov | 55c5084 | 2016-06-08 12:48:15 -0400 | [diff] [blame] | 706 | .. versionchanged:: 3.5.2 |
| 707 | ``address`` no longer needs to be resolved. ``sock_connect`` |
| 708 | will try to check if the *address* is already resolved by calling |
| 709 | :func:`socket.inet_pton`. If not, |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 710 | :meth:`AbstractEventLoop.getaddrinfo` will be used to resolve the |
Yury Selivanov | 55c5084 | 2016-06-08 12:48:15 -0400 | [diff] [blame] | 711 | *address*. |
| 712 | |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 713 | .. seealso:: |
| 714 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 715 | :meth:`AbstractEventLoop.create_connection` |
Yury Selivanov | 55c5084 | 2016-06-08 12:48:15 -0400 | [diff] [blame] | 716 | and :func:`asyncio.open_connection() <open_connection>`. |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 717 | |
| 718 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 719 | .. coroutinemethod:: AbstractEventLoop.sock_accept(sock) |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 720 | |
Yury Selivanov | 55c5084 | 2016-06-08 12:48:15 -0400 | [diff] [blame] | 721 | Accept a connection. Modeled after blocking |
| 722 | :meth:`socket.socket.accept`. |
| 723 | |
| 724 | The socket must be bound to an address and listening |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 725 | for connections. The return value is a pair ``(conn, address)`` where *conn* |
| 726 | is a *new* socket object usable to send and receive data on the connection, |
| 727 | and *address* is the address bound to the socket on the other end of the |
| 728 | connection. |
| 729 | |
Victor Stinner | ec2ce09 | 2014-07-29 23:12:22 +0200 | [diff] [blame] | 730 | The socket *sock* must be non-blocking. |
| 731 | |
Yury Selivanov | 19a44f6 | 2017-12-14 20:53:26 -0500 | [diff] [blame] | 732 | .. versionchanged:: 3.7 |
| 733 | Even though the method was always documented as a coroutine |
| 734 | method, before Python 3.7 it returned a :class:`Future`. |
| 735 | Since Python 3.7, this is an ``async def`` method. |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 736 | |
| 737 | .. seealso:: |
| 738 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 739 | :meth:`AbstractEventLoop.create_server` and :func:`start_server`. |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 740 | |
Andrew Svetlov | 6b5a279 | 2018-01-16 19:59:34 +0200 | [diff] [blame] | 741 | .. coroutinemethod:: AbstractEventLoop.sock_sendfile(sock, file, \ |
| 742 | offset=0, count=None, \ |
| 743 | *, fallback=True) |
| 744 | |
| 745 | Send a file using high-performance :mod:`os.sendfile` if possible |
| 746 | and return the total number of bytes which were sent. |
| 747 | |
| 748 | Asynchronous version of :meth:`socket.socket.sendfile`. |
| 749 | |
| 750 | *sock* must be non-blocking :class:`~socket.socket` of |
| 751 | :const:`socket.SOCK_STREAM` type. |
| 752 | |
| 753 | *file* must be a regular file object opened in binary mode. |
| 754 | |
| 755 | *offset* tells from where to start reading the file. If specified, |
| 756 | *count* is the total number of bytes to transmit as opposed to |
| 757 | sending the file until EOF is reached. File position is updated on |
| 758 | return or also in case of error in which case :meth:`file.tell() |
| 759 | <io.IOBase.tell>` can be used to figure out the number of bytes |
| 760 | which were sent. |
| 761 | |
| 762 | *fallback* set to ``True`` makes asyncio to manually read and send |
| 763 | the file when the platform does not support the sendfile syscall |
| 764 | (e.g. Windows or SSL socket on Unix). |
| 765 | |
Andrew Svetlov | 7464e87 | 2018-01-19 20:04:29 +0200 | [diff] [blame] | 766 | Raise :exc:`SendfileNotAvailableError` if the system does not support |
Andrew Svetlov | 6b5a279 | 2018-01-16 19:59:34 +0200 | [diff] [blame] | 767 | *sendfile* syscall and *fallback* is ``False``. |
| 768 | |
| 769 | .. versionadded:: 3.7 |
| 770 | |
Victor Stinner | c1567df | 2014-02-08 23:22:58 +0100 | [diff] [blame] | 771 | |
| 772 | Resolve host name |
| 773 | ----------------- |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 774 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 775 | .. coroutinemethod:: AbstractEventLoop.getaddrinfo(host, port, \*, family=0, type=0, proto=0, flags=0) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 776 | |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 777 | This method is a :ref:`coroutine <coroutine>`, similar to |
| 778 | :meth:`socket.getaddrinfo` function but non-blocking. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 779 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 780 | .. coroutinemethod:: AbstractEventLoop.getnameinfo(sockaddr, flags=0) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 781 | |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 782 | This method is a :ref:`coroutine <coroutine>`, similar to |
| 783 | :meth:`socket.getnameinfo` function but non-blocking. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 784 | |
Yury Selivanov | bec2372 | 2018-01-28 14:09:40 -0500 | [diff] [blame] | 785 | .. versionchanged:: 3.7 |
| 786 | Both *getaddrinfo* and *getnameinfo* methods were always documented |
| 787 | to return a coroutine, but prior to Python 3.7 they were, in fact, |
| 788 | returning :class:`asyncio.Future` objects. Starting with Python 3.7 |
| 789 | both methods are coroutines. |
| 790 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 791 | |
Victor Stinner | 984600f | 2014-03-25 09:40:26 +0100 | [diff] [blame] | 792 | Connect pipes |
| 793 | ------------- |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 794 | |
Victor Stinner | 41f3c3f | 2014-08-31 14:47:37 +0200 | [diff] [blame] | 795 | On Windows with :class:`SelectorEventLoop`, these methods are not supported. |
| 796 | Use :class:`ProactorEventLoop` to support pipes on Windows. |
| 797 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 798 | .. coroutinemethod:: AbstractEventLoop.connect_read_pipe(protocol_factory, pipe) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 799 | |
Victor Stinner | d84fd73 | 2014-08-26 01:01:59 +0200 | [diff] [blame] | 800 | Register read pipe in eventloop. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 801 | |
| 802 | *protocol_factory* should instantiate object with :class:`Protocol` |
Victor Stinner | a5b257a | 2014-05-29 00:14:03 +0200 | [diff] [blame] | 803 | interface. *pipe* is a :term:`file-like object <file object>`. |
| 804 | Return pair ``(transport, protocol)``, where *transport* supports the |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 805 | :class:`ReadTransport` interface. |
| 806 | |
Victor Stinner | d84fd73 | 2014-08-26 01:01:59 +0200 | [diff] [blame] | 807 | With :class:`SelectorEventLoop` event loop, the *pipe* is set to |
| 808 | non-blocking mode. |
| 809 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 810 | .. coroutinemethod:: AbstractEventLoop.connect_write_pipe(protocol_factory, pipe) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 811 | |
| 812 | Register write pipe in eventloop. |
| 813 | |
| 814 | *protocol_factory* should instantiate object with :class:`BaseProtocol` |
Victor Stinner | 2cef300 | 2014-10-23 22:38:46 +0200 | [diff] [blame] | 815 | interface. *pipe* is :term:`file-like object <file object>`. |
| 816 | Return pair ``(transport, protocol)``, where *transport* supports |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 817 | :class:`WriteTransport` interface. |
| 818 | |
Victor Stinner | d84fd73 | 2014-08-26 01:01:59 +0200 | [diff] [blame] | 819 | With :class:`SelectorEventLoop` event loop, the *pipe* is set to |
| 820 | non-blocking mode. |
| 821 | |
Victor Stinner | 0844438 | 2014-02-02 22:43:39 +0100 | [diff] [blame] | 822 | .. seealso:: |
| 823 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 824 | The :meth:`AbstractEventLoop.subprocess_exec` and |
| 825 | :meth:`AbstractEventLoop.subprocess_shell` methods. |
Victor Stinner | 0844438 | 2014-02-02 22:43:39 +0100 | [diff] [blame] | 826 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 827 | |
Victor Stinner | 8b86348 | 2014-01-27 10:07:50 +0100 | [diff] [blame] | 828 | UNIX signals |
| 829 | ------------ |
| 830 | |
| 831 | Availability: UNIX only. |
| 832 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 833 | .. method:: AbstractEventLoop.add_signal_handler(signum, callback, \*args) |
Victor Stinner | 8b86348 | 2014-01-27 10:07:50 +0100 | [diff] [blame] | 834 | |
| 835 | Add a handler for a signal. |
| 836 | |
| 837 | Raise :exc:`ValueError` if the signal number is invalid or uncatchable. |
| 838 | Raise :exc:`RuntimeError` if there is a problem setting up the handler. |
| 839 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 840 | :ref:`Use functools.partial to pass keywords to the callback |
| 841 | <asyncio-pass-keywords>`. |
| 842 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 843 | .. method:: AbstractEventLoop.remove_signal_handler(sig) |
Victor Stinner | 8b86348 | 2014-01-27 10:07:50 +0100 | [diff] [blame] | 844 | |
| 845 | Remove a handler for a signal. |
| 846 | |
| 847 | Return ``True`` if a signal handler was removed, ``False`` if not. |
| 848 | |
| 849 | .. seealso:: |
| 850 | |
| 851 | The :mod:`signal` module. |
| 852 | |
| 853 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 854 | Executor |
| 855 | -------- |
| 856 | |
| 857 | Call a function in an :class:`~concurrent.futures.Executor` (pool of threads or |
| 858 | pool of processes). By default, an event loop uses a thread pool executor |
| 859 | (:class:`~concurrent.futures.ThreadPoolExecutor`). |
| 860 | |
Yury Selivanov | bec2372 | 2018-01-28 14:09:40 -0500 | [diff] [blame] | 861 | .. method:: AbstractEventLoop.run_in_executor(executor, func, \*args) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 862 | |
Andrew Svetlov | 1c62b52 | 2015-10-01 09:48:08 +0300 | [diff] [blame] | 863 | Arrange for a *func* to be called in the specified executor. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 864 | |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 865 | The *executor* argument should be an :class:`~concurrent.futures.Executor` |
| 866 | instance. The default executor is used if *executor* is ``None``. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 867 | |
Andrew Svetlov | 1c62b52 | 2015-10-01 09:48:08 +0300 | [diff] [blame] | 868 | :ref:`Use functools.partial to pass keywords to the *func* |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 869 | <asyncio-pass-keywords>`. |
| 870 | |
Yury Selivanov | bec2372 | 2018-01-28 14:09:40 -0500 | [diff] [blame] | 871 | This method returns a :class:`asyncio.Future` object. |
| 872 | |
Yury Selivanov | e8a6045 | 2016-10-21 17:40:42 -0400 | [diff] [blame] | 873 | .. versionchanged:: 3.5.3 |
| 874 | :meth:`BaseEventLoop.run_in_executor` no longer configures the |
| 875 | ``max_workers`` of the thread pool executor it creates, instead |
| 876 | leaving it up to the thread pool executor |
| 877 | (:class:`~concurrent.futures.ThreadPoolExecutor`) to set the |
| 878 | default. |
| 879 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 880 | .. method:: AbstractEventLoop.set_default_executor(executor) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 881 | |
| 882 | Set the default executor used by :meth:`run_in_executor`. |
| 883 | |
| 884 | |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 885 | Error Handling API |
| 886 | ------------------ |
| 887 | |
Martin Panter | c04fb56 | 2016-02-10 05:44:01 +0000 | [diff] [blame] | 888 | Allows customizing how exceptions are handled in the event loop. |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 889 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 890 | .. method:: AbstractEventLoop.set_exception_handler(handler) |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 891 | |
| 892 | Set *handler* as the new event loop exception handler. |
| 893 | |
| 894 | If *handler* is ``None``, the default exception handler will |
| 895 | be set. |
| 896 | |
| 897 | If *handler* is a callable object, it should have a |
| 898 | matching signature to ``(loop, context)``, where ``loop`` |
| 899 | will be a reference to the active event loop, ``context`` |
| 900 | will be a ``dict`` object (see :meth:`call_exception_handler` |
| 901 | documentation for details about context). |
| 902 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 903 | .. method:: AbstractEventLoop.get_exception_handler() |
Yury Selivanov | 950204d | 2016-05-16 16:23:00 -0400 | [diff] [blame] | 904 | |
| 905 | Return the exception handler, or ``None`` if the default one |
| 906 | is in use. |
| 907 | |
| 908 | .. versionadded:: 3.5.2 |
| 909 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 910 | .. method:: AbstractEventLoop.default_exception_handler(context) |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 911 | |
| 912 | Default exception handler. |
| 913 | |
| 914 | This is called when an exception occurs and no exception |
| 915 | handler is set, and can be called by a custom exception |
| 916 | handler that wants to defer to the default behavior. |
| 917 | |
| 918 | *context* parameter has the same meaning as in |
| 919 | :meth:`call_exception_handler`. |
| 920 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 921 | .. method:: AbstractEventLoop.call_exception_handler(context) |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 922 | |
| 923 | Call the current event loop exception handler. |
| 924 | |
| 925 | *context* is a ``dict`` object containing the following keys |
| 926 | (new keys may be introduced later): |
| 927 | |
| 928 | * 'message': Error message; |
| 929 | * 'exception' (optional): Exception object; |
| 930 | * 'future' (optional): :class:`asyncio.Future` instance; |
| 931 | * 'handle' (optional): :class:`asyncio.Handle` instance; |
| 932 | * 'protocol' (optional): :ref:`Protocol <asyncio-protocol>` instance; |
| 933 | * 'transport' (optional): :ref:`Transport <asyncio-transport>` instance; |
| 934 | * 'socket' (optional): :class:`socket.socket` instance. |
| 935 | |
| 936 | .. note:: |
| 937 | |
| 938 | Note: this method should not be overloaded in subclassed |
| 939 | event loops. For any custom exception handling, use |
| 940 | :meth:`set_exception_handler()` method. |
| 941 | |
Victor Stinner | 0f3e6bc | 2014-02-19 23:15:02 +0100 | [diff] [blame] | 942 | Debug mode |
| 943 | ---------- |
| 944 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 945 | .. method:: AbstractEventLoop.get_debug() |
Victor Stinner | 0f3e6bc | 2014-02-19 23:15:02 +0100 | [diff] [blame] | 946 | |
Victor Stinner | 7b7120e | 2014-06-23 00:12:14 +0200 | [diff] [blame] | 947 | Get the debug mode (:class:`bool`) of the event loop. |
| 948 | |
| 949 | The default value is ``True`` if the environment variable |
| 950 | :envvar:`PYTHONASYNCIODEBUG` is set to a non-empty string, ``False`` |
| 951 | otherwise. |
Victor Stinner | 0f3e6bc | 2014-02-19 23:15:02 +0100 | [diff] [blame] | 952 | |
Victor Stinner | 64d750b | 2014-06-18 03:25:23 +0200 | [diff] [blame] | 953 | .. versionadded:: 3.4.2 |
| 954 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 955 | .. method:: AbstractEventLoop.set_debug(enabled: bool) |
Victor Stinner | 0f3e6bc | 2014-02-19 23:15:02 +0100 | [diff] [blame] | 956 | |
| 957 | Set the debug mode of the event loop. |
| 958 | |
Victor Stinner | 64d750b | 2014-06-18 03:25:23 +0200 | [diff] [blame] | 959 | .. versionadded:: 3.4.2 |
| 960 | |
Victor Stinner | 0f3e6bc | 2014-02-19 23:15:02 +0100 | [diff] [blame] | 961 | .. seealso:: |
| 962 | |
Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 963 | The :ref:`debug mode of asyncio <asyncio-debug-mode>`. |
Victor Stinner | 0f3e6bc | 2014-02-19 23:15:02 +0100 | [diff] [blame] | 964 | |
Victor Stinner | 8c462c5 | 2014-01-24 18:11:43 +0100 | [diff] [blame] | 965 | Server |
| 966 | ------ |
| 967 | |
Victor Stinner | 8ebeb03 | 2014-07-11 23:47:40 +0200 | [diff] [blame] | 968 | .. class:: Server |
Victor Stinner | 8c462c5 | 2014-01-24 18:11:43 +0100 | [diff] [blame] | 969 | |
Victor Stinner | 8ebeb03 | 2014-07-11 23:47:40 +0200 | [diff] [blame] | 970 | Server listening on sockets. |
| 971 | |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 972 | Object created by :meth:`AbstractEventLoop.create_server`, |
| 973 | :meth:`AbstractEventLoop.create_unix_server`, :func:`start_server`, |
| 974 | and :func:`start_unix_server` functions. Don't instantiate the class |
| 975 | directly. |
| 976 | |
| 977 | *Server* objects are asynchronous context managers. When used in an |
| 978 | ``async with`` statement, it's guaranteed that the Server object is |
| 979 | closed and not accepting new connections when the ``async with`` |
| 980 | statement is completed:: |
| 981 | |
| 982 | srv = await loop.create_server(...) |
| 983 | |
| 984 | async with srv: |
| 985 | # some code |
| 986 | |
| 987 | # At this point, srv is closed and no longer accepts new connections. |
| 988 | |
| 989 | |
| 990 | .. versionchanged:: 3.7 |
| 991 | Server object is an asynchronous context manager since Python 3.7. |
Victor Stinner | 8c462c5 | 2014-01-24 18:11:43 +0100 | [diff] [blame] | 992 | |
| 993 | .. method:: close() |
| 994 | |
Victor Stinner | 4bfb14a | 2014-07-12 03:20:24 +0200 | [diff] [blame] | 995 | Stop serving: close listening sockets and set the :attr:`sockets` |
| 996 | attribute to ``None``. |
| 997 | |
Berker Peksag | 49c9edf | 2016-01-20 07:14:22 +0200 | [diff] [blame] | 998 | The sockets that represent existing incoming client connections are left |
| 999 | open. |
Victor Stinner | 8ebeb03 | 2014-07-11 23:47:40 +0200 | [diff] [blame] | 1000 | |
Berker Peksag | 49c9edf | 2016-01-20 07:14:22 +0200 | [diff] [blame] | 1001 | The server is closed asynchronously, use the :meth:`wait_closed` |
| 1002 | coroutine to wait until the server is closed. |
Victor Stinner | 8c462c5 | 2014-01-24 18:11:43 +0100 | [diff] [blame] | 1003 | |
Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) | 1634fc2 | 2017-12-30 20:39:32 +0530 | [diff] [blame] | 1004 | .. method:: get_loop() |
| 1005 | |
| 1006 | Gives the event loop associated with the server object. |
| 1007 | |
| 1008 | .. versionadded:: 3.7 |
| 1009 | |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 1010 | .. coroutinemethod:: start_serving() |
| 1011 | |
| 1012 | Start accepting connections. |
| 1013 | |
| 1014 | This method is idempotent, so it can be called when |
| 1015 | the server is already being serving. |
| 1016 | |
| 1017 | The new *start_serving* keyword-only parameter to |
| 1018 | :meth:`AbstractEventLoop.create_server` and |
| 1019 | :meth:`asyncio.start_server` allows to create a Server object |
| 1020 | that is not accepting connections right away. In which case |
| 1021 | this method, or :meth:`Server.serve_forever` can be used |
| 1022 | to make the Server object to start accepting connections. |
| 1023 | |
| 1024 | .. versionadded:: 3.7 |
| 1025 | |
| 1026 | .. coroutinemethod:: serve_forever() |
| 1027 | |
| 1028 | Start accepting connections until the coroutine is cancelled. |
| 1029 | Cancellation of ``serve_forever`` task causes the server |
| 1030 | to be closed. |
| 1031 | |
| 1032 | This method can be called if the server is already accepting |
| 1033 | connections. Only one ``serve_forever`` task can exist per |
| 1034 | one *Server* object. |
| 1035 | |
| 1036 | Example:: |
| 1037 | |
| 1038 | async def client_connected(reader, writer): |
| 1039 | # Communicate with the client with |
| 1040 | # reader/writer streams. For example: |
| 1041 | await reader.readline() |
| 1042 | |
| 1043 | async def main(host, port): |
| 1044 | srv = await asyncio.start_server( |
| 1045 | client_connected, host, port) |
Andrew Svetlov | 17ab8f0 | 2018-02-17 19:44:35 +0200 | [diff] [blame] | 1046 | await srv.serve_forever() |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 1047 | |
| 1048 | asyncio.run(main('127.0.0.1', 0)) |
| 1049 | |
| 1050 | .. versionadded:: 3.7 |
| 1051 | |
| 1052 | .. method:: is_serving() |
| 1053 | |
| 1054 | Return ``True`` if the server is accepting new connections. |
| 1055 | |
| 1056 | .. versionadded:: 3.7 |
| 1057 | |
Victor Stinner | bdd574d | 2015-02-12 22:49:18 +0100 | [diff] [blame] | 1058 | .. coroutinemethod:: wait_closed() |
Victor Stinner | 8c462c5 | 2014-01-24 18:11:43 +0100 | [diff] [blame] | 1059 | |
Victor Stinner | 8ebeb03 | 2014-07-11 23:47:40 +0200 | [diff] [blame] | 1060 | Wait until the :meth:`close` method completes. |
| 1061 | |
Victor Stinner | 8ebeb03 | 2014-07-11 23:47:40 +0200 | [diff] [blame] | 1062 | .. attribute:: sockets |
| 1063 | |
| 1064 | List of :class:`socket.socket` objects the server is listening to, or |
| 1065 | ``None`` if the server is closed. |
Victor Stinner | 8c462c5 | 2014-01-24 18:11:43 +0100 | [diff] [blame] | 1066 | |
Yury Selivanov | c9070d0 | 2018-01-25 18:08:09 -0500 | [diff] [blame] | 1067 | .. versionchanged:: 3.7 |
| 1068 | Prior to Python 3.7 ``Server.sockets`` used to return the |
| 1069 | internal list of server's sockets directly. In 3.7 a copy |
| 1070 | of that list is returned. |
| 1071 | |
Victor Stinner | 8c462c5 | 2014-01-24 18:11:43 +0100 | [diff] [blame] | 1072 | |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 1073 | Handle |
| 1074 | ------ |
| 1075 | |
| 1076 | .. class:: Handle |
| 1077 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 1078 | A callback wrapper object returned by :func:`AbstractEventLoop.call_soon`, |
Andrew Svetlov | 3d4dbd8 | 2018-02-01 19:59:32 +0200 | [diff] [blame] | 1079 | :func:`AbstractEventLoop.call_soon_threadsafe`. |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 1080 | |
| 1081 | .. method:: cancel() |
| 1082 | |
Yury Selivanov | 1096f76 | 2015-06-25 13:49:52 -0400 | [diff] [blame] | 1083 | Cancel the call. If the callback is already canceled or executed, |
| 1084 | this method has no effect. |
Victor Stinner | aea8229 | 2014-07-08 23:42:38 +0200 | [diff] [blame] | 1085 | |
Marat Sharafutdinov | 69cfed1 | 2017-11-07 12:06:05 +0300 | [diff] [blame] | 1086 | .. method:: cancelled() |
| 1087 | |
| 1088 | Return ``True`` if the call was cancelled. |
| 1089 | |
| 1090 | .. versionadded:: 3.7 |
| 1091 | |
Andrew Svetlov | 3d4dbd8 | 2018-02-01 19:59:32 +0200 | [diff] [blame] | 1092 | .. class:: TimerHandle |
| 1093 | |
| 1094 | A callback wrapper object returned by :func:`AbstractEventLoop.call_later`, |
| 1095 | and :func:`AbstractEventLoop.call_at`. |
| 1096 | |
| 1097 | The class is inherited from :class:`Handle`. |
| 1098 | |
| 1099 | .. method:: when() |
| 1100 | |
| 1101 | Return a scheduled callback time as :class:`float` seconds. |
| 1102 | |
| 1103 | The time is an absolute timestamp, using the same time |
| 1104 | reference as :meth:`AbstractEventLoop.time`. |
| 1105 | |
| 1106 | .. versionadded:: 3.7 |
| 1107 | |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 1108 | |
Andrew Svetlov | 7464e87 | 2018-01-19 20:04:29 +0200 | [diff] [blame] | 1109 | SendfileNotAvailableError |
| 1110 | ------------------------- |
| 1111 | |
| 1112 | |
| 1113 | .. exception:: SendfileNotAvailableError |
| 1114 | |
| 1115 | Sendfile syscall is not available, subclass of :exc:`RuntimeError`. |
| 1116 | |
Sam Dunster | 65a3470 | 2018-03-27 17:47:38 -0700 | [diff] [blame] | 1117 | Raised if the OS does not support sendfile syscall for |
Andrew Svetlov | 7464e87 | 2018-01-19 20:04:29 +0200 | [diff] [blame] | 1118 | given socket or file type. |
| 1119 | |
| 1120 | |
Victor Stinner | 6888b96 | 2014-10-11 16:15:58 +0200 | [diff] [blame] | 1121 | Event loop examples |
Victor Stinner | a092a61 | 2015-01-09 15:58:41 +0100 | [diff] [blame] | 1122 | ------------------- |
Yury Selivanov | 43ee1c1 | 2014-02-19 20:58:44 -0500 | [diff] [blame] | 1123 | |
Victor Stinner | 3e09e32 | 2013-12-03 01:22:06 +0100 | [diff] [blame] | 1124 | .. _asyncio-hello-world-callback: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1125 | |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1126 | Hello World with call_soon() |
Victor Stinner | a092a61 | 2015-01-09 15:58:41 +0100 | [diff] [blame] | 1127 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1128 | |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 1129 | Example using the :meth:`AbstractEventLoop.call_soon` method to schedule a |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1130 | callback. The callback displays ``"Hello World"`` and then stops the event |
| 1131 | loop:: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1132 | |
| 1133 | import asyncio |
| 1134 | |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1135 | def hello_world(loop): |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1136 | print('Hello World') |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1137 | loop.stop() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1138 | |
| 1139 | loop = asyncio.get_event_loop() |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1140 | |
| 1141 | # Schedule a call to hello_world() |
| 1142 | loop.call_soon(hello_world, loop) |
| 1143 | |
| 1144 | # Blocking call interrupted by loop.stop() |
| 1145 | loop.run_forever() |
| 1146 | loop.close() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1147 | |
Victor Stinner | 3e09e32 | 2013-12-03 01:22:06 +0100 | [diff] [blame] | 1148 | .. seealso:: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1149 | |
Victor Stinner | 6888b96 | 2014-10-11 16:15:58 +0200 | [diff] [blame] | 1150 | The :ref:`Hello World coroutine <asyncio-hello-world-coroutine>` example |
| 1151 | uses a :ref:`coroutine <coroutine>`. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 1152 | |
Victor Stinner | 8b86348 | 2014-01-27 10:07:50 +0100 | [diff] [blame] | 1153 | |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1154 | .. _asyncio-date-callback: |
| 1155 | |
| 1156 | Display the current date with call_later() |
Victor Stinner | a092a61 | 2015-01-09 15:58:41 +0100 | [diff] [blame] | 1157 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1158 | |
| 1159 | Example of callback displaying the current date every second. The callback uses |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 1160 | the :meth:`AbstractEventLoop.call_later` method to reschedule itself during 5 |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 1161 | seconds, and then stops the event loop:: |
| 1162 | |
| 1163 | import asyncio |
| 1164 | import datetime |
| 1165 | |
| 1166 | def display_date(end_time, loop): |
| 1167 | print(datetime.datetime.now()) |
| 1168 | if (loop.time() + 1.0) < end_time: |
| 1169 | loop.call_later(1, display_date, end_time, loop) |
| 1170 | else: |
| 1171 | loop.stop() |
| 1172 | |
| 1173 | loop = asyncio.get_event_loop() |
| 1174 | |
| 1175 | # Schedule the first call to display_date() |
| 1176 | end_time = loop.time() + 5.0 |
| 1177 | loop.call_soon(display_date, end_time, loop) |
| 1178 | |
| 1179 | # Blocking call interrupted by loop.stop() |
| 1180 | loop.run_forever() |
| 1181 | loop.close() |
| 1182 | |
| 1183 | .. seealso:: |
| 1184 | |
| 1185 | The :ref:`coroutine displaying the current date |
| 1186 | <asyncio-date-coroutine>` example uses a :ref:`coroutine |
| 1187 | <coroutine>`. |
| 1188 | |
| 1189 | |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1190 | .. _asyncio-watch-read-event: |
Victor Stinner | 8b86348 | 2014-01-27 10:07:50 +0100 | [diff] [blame] | 1191 | |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1192 | Watch a file descriptor for read events |
Victor Stinner | a092a61 | 2015-01-09 15:58:41 +0100 | [diff] [blame] | 1193 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1194 | |
| 1195 | Wait until a file descriptor received some data using the |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 1196 | :meth:`AbstractEventLoop.add_reader` method and then close the event loop:: |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1197 | |
| 1198 | import asyncio |
Victor Stinner | ac577d7 | 2017-11-28 21:33:20 +0100 | [diff] [blame] | 1199 | from socket import socketpair |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1200 | |
| 1201 | # Create a pair of connected file descriptors |
Victor Stinner | ccd8e34 | 2014-10-11 16:30:02 +0200 | [diff] [blame] | 1202 | rsock, wsock = socketpair() |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1203 | loop = asyncio.get_event_loop() |
| 1204 | |
| 1205 | def reader(): |
| 1206 | data = rsock.recv(100) |
| 1207 | print("Received:", data.decode()) |
Victor Stinner | 2cef300 | 2014-10-23 22:38:46 +0200 | [diff] [blame] | 1208 | # We are done: unregister the file descriptor |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1209 | loop.remove_reader(rsock) |
| 1210 | # Stop the event loop |
| 1211 | loop.stop() |
| 1212 | |
Victor Stinner | 2cef300 | 2014-10-23 22:38:46 +0200 | [diff] [blame] | 1213 | # Register the file descriptor for read event |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1214 | loop.add_reader(rsock, reader) |
| 1215 | |
| 1216 | # Simulate the reception of data from the network |
| 1217 | loop.call_soon(wsock.send, 'abc'.encode()) |
| 1218 | |
| 1219 | # Run the event loop |
| 1220 | loop.run_forever() |
| 1221 | |
| 1222 | # We are done, close sockets and the event loop |
| 1223 | rsock.close() |
| 1224 | wsock.close() |
| 1225 | loop.close() |
| 1226 | |
| 1227 | .. seealso:: |
| 1228 | |
| 1229 | The :ref:`register an open socket to wait for data using a protocol |
| 1230 | <asyncio-register-socket>` example uses a low-level protocol created by the |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 1231 | :meth:`AbstractEventLoop.create_connection` method. |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1232 | |
| 1233 | The :ref:`register an open socket to wait for data using streams |
| 1234 | <asyncio-register-socket-streams>` example uses high-level streams |
| 1235 | created by the :func:`open_connection` function in a coroutine. |
| 1236 | |
| 1237 | |
| 1238 | Set signal handlers for SIGINT and SIGTERM |
Victor Stinner | a092a61 | 2015-01-09 15:58:41 +0100 | [diff] [blame] | 1239 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Victor Stinner | 04e6df3 | 2014-10-11 16:16:27 +0200 | [diff] [blame] | 1240 | |
| 1241 | Register handlers for signals :py:data:`SIGINT` and :py:data:`SIGTERM` using |
Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 1242 | the :meth:`AbstractEventLoop.add_signal_handler` method:: |
Victor Stinner | 8b86348 | 2014-01-27 10:07:50 +0100 | [diff] [blame] | 1243 | |
| 1244 | import asyncio |
| 1245 | import functools |
| 1246 | import os |
| 1247 | import signal |
| 1248 | |
| 1249 | def ask_exit(signame): |
| 1250 | print("got signal %s: exit" % signame) |
| 1251 | loop.stop() |
| 1252 | |
| 1253 | loop = asyncio.get_event_loop() |
| 1254 | for signame in ('SIGINT', 'SIGTERM'): |
| 1255 | loop.add_signal_handler(getattr(signal, signame), |
| 1256 | functools.partial(ask_exit, signame)) |
| 1257 | |
Serhiy Storchaka | 0424eaf | 2015-09-12 17:45:25 +0300 | [diff] [blame] | 1258 | print("Event loop running forever, press Ctrl+C to interrupt.") |
Victor Stinner | 8b86348 | 2014-01-27 10:07:50 +0100 | [diff] [blame] | 1259 | print("pid %s: send SIGINT or SIGTERM to exit." % os.getpid()) |
Victor Stinner | 63b21a8 | 2014-07-05 15:38:59 +0200 | [diff] [blame] | 1260 | try: |
| 1261 | loop.run_forever() |
| 1262 | finally: |
| 1263 | loop.close() |
Victor Stinner | 2cef300 | 2014-10-23 22:38:46 +0200 | [diff] [blame] | 1264 | |
| 1265 | This example only works on UNIX. |