| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | .. currentmodule:: asyncio
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-02 15:03:02 +01:00
										 |  |  | .. _asyncio-streams:
 | 
					
						
							| 
									
										
										
										
											2014-01-24 17:33:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-16 21:30:52 -05:00
										 |  |  | +++++++++++++++++++++++++++++
 | 
					
						
							|  |  |  | Streams (coroutine based API)
 | 
					
						
							|  |  |  | +++++++++++++++++++++++++++++
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | Stream functions
 | 
					
						
							|  |  |  | ================
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-19 13:18:04 -07:00
										 |  |  | .. note::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-16 13:27:04 +11:00
										 |  |  |    The top-level functions in this module are meant as convenience wrappers
 | 
					
						
							| 
									
										
										
										
											2015-10-19 13:18:04 -07:00
										 |  |  |    only; there's really nothing special there, and if they don't do
 | 
					
						
							|  |  |  |    exactly what you want, feel free to copy their code.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  | .. coroutinefunction:: open_connection(host=None, port=None, \*, loop=None, limit=None, \*\*kwds)
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    A wrapper for :meth:`~BaseEventLoop.create_connection()` returning a (reader,
 | 
					
						
							|  |  |  |    writer) pair.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The reader returned is a :class:`StreamReader` instance; the writer is
 | 
					
						
							|  |  |  |    a :class:`StreamWriter` instance.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The arguments are all the usual arguments to
 | 
					
						
							|  |  |  |    :meth:`BaseEventLoop.create_connection` except *protocol_factory*; most
 | 
					
						
							|  |  |  |    common are positional host and port, with various optional keyword arguments
 | 
					
						
							|  |  |  |    following.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Additional optional keyword arguments are *loop* (to set the event loop
 | 
					
						
							|  |  |  |    instance to use) and *limit* (to set the buffer limit passed to the
 | 
					
						
							|  |  |  |    :class:`StreamReader`).
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 16:20:44 -05:00
										 |  |  |    This function is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  | .. coroutinefunction:: start_server(client_connected_cb, host=None, port=None, \*, loop=None, limit=None, \*\*kwds)
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 23:47:40 +02:00
										 |  |  |    Start a socket server, with a callback for each client connected. The return
 | 
					
						
							|  |  |  |    value is the same as :meth:`~BaseEventLoop.create_server()`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 23:47:40 +02:00
										 |  |  |    The *client_connected_cb* parameter is called with two parameters:
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  |    *client_reader*, *client_writer*.  *client_reader* is a
 | 
					
						
							|  |  |  |    :class:`StreamReader` object, while *client_writer* is a
 | 
					
						
							| 
									
										
										
										
											2014-07-11 23:47:40 +02:00
										 |  |  |    :class:`StreamWriter` object.  The *client_connected_cb* parameter can
 | 
					
						
							|  |  |  |    either be a plain callback function or a :ref:`coroutine function
 | 
					
						
							|  |  |  |    <coroutine>`; if it is a coroutine function, it will be automatically
 | 
					
						
							| 
									
										
										
										
											2014-08-11 01:11:13 +02:00
										 |  |  |    converted into a :class:`Task`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The rest of the arguments are all the usual arguments to
 | 
					
						
							|  |  |  |    :meth:`~BaseEventLoop.create_server()` except *protocol_factory*; most
 | 
					
						
							| 
									
										
										
										
											2014-07-11 23:47:40 +02:00
										 |  |  |    common are positional *host* and *port*, with various optional keyword
 | 
					
						
							|  |  |  |    arguments following.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Additional optional keyword arguments are *loop* (to set the event loop
 | 
					
						
							|  |  |  |    instance to use) and *limit* (to set the buffer limit passed to the
 | 
					
						
							|  |  |  |    :class:`StreamReader`).
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 16:20:44 -05:00
										 |  |  |    This function is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  | .. coroutinefunction:: open_unix_connection(path=None, \*, loop=None, limit=None, **kwds)
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |    A wrapper for :meth:`~BaseEventLoop.create_unix_connection()` returning
 | 
					
						
							|  |  |  |    a (reader, writer) pair.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    See :func:`open_connection` for information about return value and other
 | 
					
						
							|  |  |  |    details.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 16:20:44 -05:00
										 |  |  |    This function is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Availability: UNIX.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  | .. coroutinefunction:: start_unix_server(client_connected_cb, path=None, \*, loop=None, limit=None, **kwds)
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Start a UNIX Domain Socket server, with a callback for each client connected.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    See :func:`start_server` for information about return value and other
 | 
					
						
							|  |  |  |    details.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 16:20:44 -05:00
										 |  |  |    This function is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Availability: UNIX.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | StreamReader
 | 
					
						
							|  |  |  | ============
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-02 22:43:39 +01:00
										 |  |  | .. class:: StreamReader(limit=None, loop=None)
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 14:24:15 +01:00
										 |  |  |    This class is :ref:`not thread safe <asyncio-multithreading>`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  |    .. method:: exception()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Get the exception.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. method:: feed_eof()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  |       Acknowledge the EOF.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. method:: feed_data(data)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  |       Feed *data* bytes in the internal buffer.  Any operations waiting
 | 
					
						
							|  |  |  |       for the data will be resumed.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. method:: set_exception(exc)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Set the exception.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. method:: set_transport(transport)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Set the transport.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  |    .. coroutinemethod:: read(n=-1)
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  |       Read up to *n* bytes.  If *n* is not provided, or set to ``-1``,
 | 
					
						
							|  |  |  |       read until EOF and return all read bytes.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       If the EOF was received and the internal buffer is empty,
 | 
					
						
							|  |  |  |       return an empty ``bytes`` object.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 16:20:44 -05:00
										 |  |  |       This method is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  |    .. coroutinemethod:: readline()
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  |       Read one line, where "line" is a sequence of bytes ending with ``\n``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       If EOF is received, and ``\n`` was not found, the method will
 | 
					
						
							|  |  |  |       return the partial read bytes.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       If the EOF was received and the internal buffer is empty,
 | 
					
						
							|  |  |  |       return an empty ``bytes`` object.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 16:20:44 -05:00
										 |  |  |       This method is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  |    .. coroutinemethod:: readexactly(n)
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-27 11:58:49 +01:00
										 |  |  |       Read exactly *n* bytes. Raise an :exc:`IncompleteReadError` if the end of
 | 
					
						
							|  |  |  |       the stream is reached before *n* can be read, the
 | 
					
						
							|  |  |  |       :attr:`IncompleteReadError.partial` attribute of the exception contains
 | 
					
						
							|  |  |  |       the partial read bytes.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 16:20:44 -05:00
										 |  |  |       This method is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 14:10:02 -05:00
										 |  |  |    .. method:: at_eof()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Return ``True`` if the buffer is empty and :meth:`feed_eof` was called.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | StreamWriter
 | 
					
						
							|  |  |  | ============
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. class:: StreamWriter(transport, protocol, reader, loop)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Wraps a Transport.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    This exposes :meth:`write`, :meth:`writelines`, :meth:`can_write_eof()`,
 | 
					
						
							|  |  |  |    :meth:`write_eof`, :meth:`get_extra_info` and :meth:`close`.  It adds
 | 
					
						
							|  |  |  |    :meth:`drain` which returns an optional :class:`Future` on which you can
 | 
					
						
							|  |  |  |    wait for flow control.  It also adds a transport attribute which references
 | 
					
						
							|  |  |  |    the :class:`Transport` directly.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 14:24:15 +01:00
										 |  |  |    This class is :ref:`not thread safe <asyncio-multithreading>`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  |    .. attribute:: transport
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Transport.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 22:50:07 +01:00
										 |  |  |    .. method:: can_write_eof()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Return :const:`True` if the transport supports :meth:`write_eof`,
 | 
					
						
							|  |  |  |       :const:`False` if not. See :meth:`WriteTransport.can_write_eof`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  |    .. method:: close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Close the transport: see :meth:`BaseTransport.close`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:49:18 +01:00
										 |  |  |    .. coroutinemethod:: drain()
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 17:45:41 +01:00
										 |  |  |       Let the write buffer of the underlying transport a chance to be flushed.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-25 17:04:12 +02:00
										 |  |  |       The intended use is to write::
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |           w.write(data)
 | 
					
						
							|  |  |  |           yield from w.drain()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 17:45:41 +01:00
										 |  |  |       When the size of the transport buffer reaches the high-water limit (the
 | 
					
						
							|  |  |  |       protocol is paused), block until the size of the buffer is drained down
 | 
					
						
							|  |  |  |       to the low-water limit and the protocol is resumed. When there is nothing
 | 
					
						
							|  |  |  |       to wait for, the yield-from continues immediately.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Yielding from :meth:`drain` gives the opportunity for the loop to
 | 
					
						
							|  |  |  |       schedule the write operation and flush the buffer. It should especially
 | 
					
						
							|  |  |  |       be used when a possibly large amount of data is written to the transport,
 | 
					
						
							|  |  |  |       and the coroutine does not yield-from between calls to :meth:`write`.
 | 
					
						
							| 
									
										
										
										
											2014-08-25 17:04:12 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |       This method is a :ref:`coroutine <coroutine>`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. method:: get_extra_info(name, default=None)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Return optional transport information: see
 | 
					
						
							|  |  |  |       :meth:`BaseTransport.get_extra_info`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. method:: write(data)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Write some *data* bytes to the transport: see
 | 
					
						
							|  |  |  |       :meth:`WriteTransport.write`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. method:: writelines(data)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Write a list (or any iterable) of data bytes to the transport:
 | 
					
						
							|  |  |  |       see :meth:`WriteTransport.writelines`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. method:: write_eof()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Close the write end of the transport after flushing buffered data:
 | 
					
						
							|  |  |  |       see :meth:`WriteTransport.write_eof`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | StreamReaderProtocol
 | 
					
						
							|  |  |  | ====================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. class:: StreamReaderProtocol(stream_reader, client_connected_cb=None, loop=None)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Trivial helper class to adapt between :class:`Protocol` and
 | 
					
						
							| 
									
										
										
										
											2016-04-19 21:50:19 +02:00
										 |  |  |     :class:`StreamReader`. Subclass of :class:`Protocol`.
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *stream_reader* is a :class:`StreamReader` instance, *client_connected_cb*
 | 
					
						
							|  |  |  |     is an optional function called with (stream_reader, stream_writer) when a
 | 
					
						
							|  |  |  |     connection is made, *loop* is the event loop instance to use.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     (This is a helper class instead of making :class:`StreamReader` itself a
 | 
					
						
							|  |  |  |     :class:`Protocol` subclass, because the :class:`StreamReader` has other
 | 
					
						
							| 
									
										
										
										
											2015-09-27 12:36:19 -04:00
										 |  |  |     potential uses, and to prevent the user of the :class:`StreamReader` from
 | 
					
						
							|  |  |  |     accidentally calling inappropriate methods of the protocol.)
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:05:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:25:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-27 11:58:49 +01:00
										 |  |  | IncompleteReadError
 | 
					
						
							|  |  |  | ===================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: IncompleteReadError
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-27 12:18:49 +01:00
										 |  |  |     Incomplete read error, subclass of :exc:`EOFError`.
 | 
					
						
							| 
									
										
										
										
											2014-01-27 11:58:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. attribute:: expected
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Total number of expected bytes (:class:`int`).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. attribute:: partial
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Read bytes string before the end of stream was reached (:class:`bytes`).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 15:52:14 +02:00
										 |  |  | Stream examples
 | 
					
						
							|  |  |  | ===============
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-12 20:18:16 +02:00
										 |  |  | .. _asyncio-tcp-echo-client-streams:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TCP echo client using streams
 | 
					
						
							|  |  |  | -----------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TCP echo client using the :func:`asyncio.open_connection` function::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     import asyncio
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-13 00:55:50 +02:00
										 |  |  |     @asyncio.coroutine
 | 
					
						
							| 
									
										
										
										
											2014-10-12 20:18:16 +02:00
										 |  |  |     def tcp_echo_client(message, loop):
 | 
					
						
							|  |  |  |         reader, writer = yield from asyncio.open_connection('127.0.0.1', 8888,
 | 
					
						
							|  |  |  |                                                             loop=loop)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         print('Send: %r' % message)
 | 
					
						
							|  |  |  |         writer.write(message.encode())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         data = yield from reader.read(100)
 | 
					
						
							|  |  |  |         print('Received: %r' % data.decode())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         print('Close the socket')
 | 
					
						
							|  |  |  |         writer.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     message = 'Hello World!'
 | 
					
						
							|  |  |  |     loop = asyncio.get_event_loop()
 | 
					
						
							|  |  |  |     loop.run_until_complete(tcp_echo_client(message, loop))
 | 
					
						
							|  |  |  |     loop.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. seealso::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The :ref:`TCP echo client protocol <asyncio-tcp-echo-client-protocol>`
 | 
					
						
							|  |  |  |    example uses the :meth:`BaseEventLoop.create_connection` method.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _asyncio-tcp-echo-server-streams:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TCP echo server using streams
 | 
					
						
							|  |  |  | -----------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TCP echo server using the :func:`asyncio.start_server` function::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     import asyncio
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @asyncio.coroutine
 | 
					
						
							|  |  |  |     def handle_echo(reader, writer):
 | 
					
						
							|  |  |  |         data = yield from reader.read(100)
 | 
					
						
							|  |  |  |         message = data.decode()
 | 
					
						
							|  |  |  |         addr = writer.get_extra_info('peername')
 | 
					
						
							|  |  |  |         print("Received %r from %r" % (message, addr))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         print("Send: %r" % message)
 | 
					
						
							|  |  |  |         writer.write(data)
 | 
					
						
							|  |  |  |         yield from writer.drain()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         print("Close the client socket")
 | 
					
						
							|  |  |  |         writer.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     loop = asyncio.get_event_loop()
 | 
					
						
							|  |  |  |     coro = asyncio.start_server(handle_echo, '127.0.0.1', 8888, loop=loop)
 | 
					
						
							|  |  |  |     server = loop.run_until_complete(coro)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-12 17:45:25 +03:00
										 |  |  |     # Serve requests until Ctrl+C is pressed
 | 
					
						
							| 
									
										
										
										
											2014-10-12 20:18:16 +02:00
										 |  |  |     print('Serving on {}'.format(server.sockets[0].getsockname()))
 | 
					
						
							|  |  |  |     try:
 | 
					
						
							|  |  |  |         loop.run_forever()
 | 
					
						
							|  |  |  |     except KeyboardInterrupt:
 | 
					
						
							|  |  |  |         pass
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Close the server
 | 
					
						
							|  |  |  |     server.close()
 | 
					
						
							|  |  |  |     loop.run_until_complete(server.wait_closed())
 | 
					
						
							|  |  |  |     loop.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. seealso::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The :ref:`TCP echo server protocol <asyncio-tcp-echo-server-protocol>`
 | 
					
						
							|  |  |  |    example uses the :meth:`BaseEventLoop.create_server` method.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 15:52:14 +02:00
										 |  |  | Get HTTP headers
 | 
					
						
							|  |  |  | ----------------
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:25:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | Simple example querying HTTP headers of the URL passed on the command line::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     import asyncio
 | 
					
						
							|  |  |  |     import urllib.parse
 | 
					
						
							|  |  |  |     import sys
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @asyncio.coroutine
 | 
					
						
							|  |  |  |     def print_http_headers(url):
 | 
					
						
							|  |  |  |         url = urllib.parse.urlsplit(url)
 | 
					
						
							| 
									
										
										
										
											2014-10-11 15:52:14 +02:00
										 |  |  |         if url.scheme == 'https':
 | 
					
						
							|  |  |  |             connect = asyncio.open_connection(url.hostname, 443, ssl=True)
 | 
					
						
							|  |  |  |         else:
 | 
					
						
							|  |  |  |             connect = asyncio.open_connection(url.hostname, 80)
 | 
					
						
							|  |  |  |         reader, writer = yield from connect
 | 
					
						
							|  |  |  |         query = ('HEAD {path} HTTP/1.0\r\n'
 | 
					
						
							|  |  |  |                  'Host: {hostname}\r\n'
 | 
					
						
							|  |  |  |                  '\r\n').format(path=url.path or '/', hostname=url.hostname)
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:25:48 +01:00
										 |  |  |         writer.write(query.encode('latin-1'))
 | 
					
						
							|  |  |  |         while True:
 | 
					
						
							|  |  |  |             line = yield from reader.readline()
 | 
					
						
							|  |  |  |             if not line:
 | 
					
						
							|  |  |  |                 break
 | 
					
						
							|  |  |  |             line = line.decode('latin1').rstrip()
 | 
					
						
							|  |  |  |             if line:
 | 
					
						
							|  |  |  |                 print('HTTP header> %s' % line)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 15:52:14 +02:00
										 |  |  |         # Ignore the body, close the socket
 | 
					
						
							|  |  |  |         writer.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:25:48 +01:00
										 |  |  |     url = sys.argv[1]
 | 
					
						
							|  |  |  |     loop = asyncio.get_event_loop()
 | 
					
						
							| 
									
										
										
										
											2015-05-11 16:33:41 -04:00
										 |  |  |     task = asyncio.ensure_future(print_http_headers(url))
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:25:48 +01:00
										 |  |  |     loop.run_until_complete(task)
 | 
					
						
							| 
									
										
										
										
											2014-01-28 23:32:40 +01:00
										 |  |  |     loop.close()
 | 
					
						
							| 
									
										
										
										
											2014-01-23 11:25:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | Usage::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     python example.py http://example.com/path/page.html
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 16:16:27 +02:00
										 |  |  | or with HTTPS::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     python example.py https://example.com/path/page.html
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _asyncio-register-socket-streams:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Register an open socket to wait for data using streams
 | 
					
						
							|  |  |  | ------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Coroutine waiting until a socket receives data using the
 | 
					
						
							|  |  |  | :func:`open_connection` function::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     import asyncio
 | 
					
						
							| 
									
										
										
										
											2014-10-11 16:30:02 +02:00
										 |  |  |     try:
 | 
					
						
							|  |  |  |         from socket import socketpair
 | 
					
						
							|  |  |  |     except ImportError:
 | 
					
						
							|  |  |  |         from asyncio.windows_utils import socketpair
 | 
					
						
							| 
									
										
										
										
											2014-10-11 16:16:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-13 00:55:50 +02:00
										 |  |  |     @asyncio.coroutine
 | 
					
						
							| 
									
										
										
										
											2014-10-11 16:16:27 +02:00
										 |  |  |     def wait_for_data(loop):
 | 
					
						
							|  |  |  |         # Create a pair of connected sockets
 | 
					
						
							| 
									
										
										
										
											2014-10-11 16:30:02 +02:00
										 |  |  |         rsock, wsock = socketpair()
 | 
					
						
							| 
									
										
										
										
											2014-10-11 16:16:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Register the open socket to wait for data
 | 
					
						
							|  |  |  |         reader, writer = yield from asyncio.open_connection(sock=rsock, loop=loop)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Simulate the reception of data from the network
 | 
					
						
							|  |  |  |         loop.call_soon(wsock.send, 'abc'.encode())
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Wait for data
 | 
					
						
							|  |  |  |         data = yield from reader.read(100)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Got data, we are done: close the socket
 | 
					
						
							|  |  |  |         print("Received:", data.decode())
 | 
					
						
							|  |  |  |         writer.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Close the second socket
 | 
					
						
							|  |  |  |         wsock.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     loop = asyncio.get_event_loop()
 | 
					
						
							|  |  |  |     loop.run_until_complete(wait_for_data(loop))
 | 
					
						
							|  |  |  |     loop.close()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. seealso::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The :ref:`register an open socket to wait for data using a protocol
 | 
					
						
							|  |  |  |    <asyncio-register-socket>` example uses a low-level protocol created by the
 | 
					
						
							|  |  |  |    :meth:`BaseEventLoop.create_connection` method.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The :ref:`watch a file descriptor for read events
 | 
					
						
							|  |  |  |    <asyncio-watch-read-event>` example uses the low-level
 | 
					
						
							|  |  |  |    :meth:`BaseEventLoop.add_reader` method to register the file descriptor of a
 | 
					
						
							|  |  |  |    socket.
 | 
					
						
							|  |  |  | 
 |