blob: 11d13c85c1e8ea15bda5e715ad2d470b1a076a3e [file] [log] [blame]
Victor Stinner24f8ebf2014-01-23 11:05:01 +01001.. currentmodule:: asyncio
2
Victor Stinner9592edb2014-02-02 15:03:02 +01003.. _asyncio-streams:
Victor Stinner4b4f9eb2014-01-24 17:33:20 +01004
Victor Stinner1374bd42014-01-24 15:34:19 +01005++++++++++++++++++++++++
6Streams (high-level API)
7++++++++++++++++++++++++
Victor Stinner24f8ebf2014-01-23 11:05:01 +01008
9Stream functions
10================
11
Victor Stinner08444382014-02-02 22:43:39 +010012.. function:: open_connection(host=None, port=None, \*, loop=None, limit=None, **kwds)
Victor Stinner24f8ebf2014-01-23 11:05:01 +010013
14 A wrapper for :meth:`~BaseEventLoop.create_connection()` returning a (reader,
15 writer) pair.
16
17 The reader returned is a :class:`StreamReader` instance; the writer is
18 a :class:`StreamWriter` instance.
19
20 The arguments are all the usual arguments to
21 :meth:`BaseEventLoop.create_connection` except *protocol_factory*; most
22 common are positional host and port, with various optional keyword arguments
23 following.
24
25 Additional optional keyword arguments are *loop* (to set the event loop
26 instance to use) and *limit* (to set the buffer limit passed to the
27 :class:`StreamReader`).
28
29 (If you want to customize the :class:`StreamReader` and/or
30 :class:`StreamReaderProtocol` classes, just copy the code -- there's really
31 nothing special here except some convenience.)
32
Yury Selivanov37f15bc2014-02-20 16:20:44 -050033 This function is a :ref:`coroutine <coroutine>`.
Victor Stinner24f8ebf2014-01-23 11:05:01 +010034
Victor Stinner08444382014-02-02 22:43:39 +010035.. function:: start_server(client_connected_cb, host=None, port=None, \*, loop=None, limit=None, **kwds)
Victor Stinner24f8ebf2014-01-23 11:05:01 +010036
Victor Stinner8ebeb032014-07-11 23:47:40 +020037 Start a socket server, with a callback for each client connected. The return
38 value is the same as :meth:`~BaseEventLoop.create_server()`.
Victor Stinner24f8ebf2014-01-23 11:05:01 +010039
Victor Stinner8ebeb032014-07-11 23:47:40 +020040 The *client_connected_cb* parameter is called with two parameters:
Victor Stinner24f8ebf2014-01-23 11:05:01 +010041 *client_reader*, *client_writer*. *client_reader* is a
42 :class:`StreamReader` object, while *client_writer* is a
Victor Stinner8ebeb032014-07-11 23:47:40 +020043 :class:`StreamWriter` object. The *client_connected_cb* parameter can
44 either be a plain callback function or a :ref:`coroutine function
45 <coroutine>`; if it is a coroutine function, it will be automatically
Victor Stinner337e03f2014-08-11 01:11:13 +020046 converted into a :class:`Task`.
Victor Stinner24f8ebf2014-01-23 11:05:01 +010047
48 The rest of the arguments are all the usual arguments to
49 :meth:`~BaseEventLoop.create_server()` except *protocol_factory*; most
Victor Stinner8ebeb032014-07-11 23:47:40 +020050 common are positional *host* and *port*, with various optional keyword
51 arguments following.
Victor Stinner24f8ebf2014-01-23 11:05:01 +010052
53 Additional optional keyword arguments are *loop* (to set the event loop
54 instance to use) and *limit* (to set the buffer limit passed to the
55 :class:`StreamReader`).
56
Yury Selivanov37f15bc2014-02-20 16:20:44 -050057 This function is a :ref:`coroutine <coroutine>`.
Victor Stinner24f8ebf2014-01-23 11:05:01 +010058
Yury Selivanovd3f8e302014-02-20 14:10:02 -050059.. function:: open_unix_connection(path=None, \*, loop=None, limit=None, **kwds)
60
61 A wrapper for :meth:`~BaseEventLoop.create_unix_connection()` returning
62 a (reader, writer) pair.
63
64 See :func:`open_connection` for information about return value and other
65 details.
66
Yury Selivanov37f15bc2014-02-20 16:20:44 -050067 This function is a :ref:`coroutine <coroutine>`.
Yury Selivanovd3f8e302014-02-20 14:10:02 -050068
69 Availability: UNIX.
70
71.. function:: start_unix_server(client_connected_cb, path=None, \*, loop=None, limit=None, **kwds)
72
73 Start a UNIX Domain Socket server, with a callback for each client connected.
74
75 See :func:`start_server` for information about return value and other
76 details.
77
Yury Selivanov37f15bc2014-02-20 16:20:44 -050078 This function is a :ref:`coroutine <coroutine>`.
Yury Selivanovd3f8e302014-02-20 14:10:02 -050079
80 Availability: UNIX.
81
Victor Stinner24f8ebf2014-01-23 11:05:01 +010082
83StreamReader
84============
85
Victor Stinner08444382014-02-02 22:43:39 +010086.. class:: StreamReader(limit=None, loop=None)
Victor Stinner24f8ebf2014-01-23 11:05:01 +010087
88 .. method:: exception()
89
90 Get the exception.
91
92 .. method:: feed_eof()
93
Yury Selivanovd3f8e302014-02-20 14:10:02 -050094 Acknowledge the EOF.
Victor Stinner24f8ebf2014-01-23 11:05:01 +010095
96 .. method:: feed_data(data)
97
Yury Selivanovd3f8e302014-02-20 14:10:02 -050098 Feed *data* bytes in the internal buffer. Any operations waiting
99 for the data will be resumed.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100100
101 .. method:: set_exception(exc)
102
103 Set the exception.
104
105 .. method:: set_transport(transport)
106
107 Set the transport.
108
109 .. method:: read(n=-1)
110
Yury Selivanovd3f8e302014-02-20 14:10:02 -0500111 Read up to *n* bytes. If *n* is not provided, or set to ``-1``,
112 read until EOF and return all read bytes.
113
114 If the EOF was received and the internal buffer is empty,
115 return an empty ``bytes`` object.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100116
Yury Selivanov37f15bc2014-02-20 16:20:44 -0500117 This method is a :ref:`coroutine <coroutine>`.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100118
119 .. method:: readline()
120
Yury Selivanovd3f8e302014-02-20 14:10:02 -0500121 Read one line, where "line" is a sequence of bytes ending with ``\n``.
122
123 If EOF is received, and ``\n`` was not found, the method will
124 return the partial read bytes.
125
126 If the EOF was received and the internal buffer is empty,
127 return an empty ``bytes`` object.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100128
Yury Selivanov37f15bc2014-02-20 16:20:44 -0500129 This method is a :ref:`coroutine <coroutine>`.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100130
131 .. method:: readexactly(n)
132
Victor Stinnerb7f19ff2014-01-27 11:58:49 +0100133 Read exactly *n* bytes. Raise an :exc:`IncompleteReadError` if the end of
134 the stream is reached before *n* can be read, the
135 :attr:`IncompleteReadError.partial` attribute of the exception contains
136 the partial read bytes.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100137
Yury Selivanov37f15bc2014-02-20 16:20:44 -0500138 This method is a :ref:`coroutine <coroutine>`.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100139
Yury Selivanovd3f8e302014-02-20 14:10:02 -0500140 .. method:: at_eof()
141
142 Return ``True`` if the buffer is empty and :meth:`feed_eof` was called.
143
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100144
145StreamWriter
146============
147
148.. class:: StreamWriter(transport, protocol, reader, loop)
149
150 Wraps a Transport.
151
152 This exposes :meth:`write`, :meth:`writelines`, :meth:`can_write_eof()`,
153 :meth:`write_eof`, :meth:`get_extra_info` and :meth:`close`. It adds
154 :meth:`drain` which returns an optional :class:`Future` on which you can
155 wait for flow control. It also adds a transport attribute which references
156 the :class:`Transport` directly.
157
158 .. attribute:: transport
159
160 Transport.
161
Victor Stinnerffbe3c62014-02-08 22:50:07 +0100162 .. method:: can_write_eof()
163
164 Return :const:`True` if the transport supports :meth:`write_eof`,
165 :const:`False` if not. See :meth:`WriteTransport.can_write_eof`.
166
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100167 .. method:: close()
168
169 Close the transport: see :meth:`BaseTransport.close`.
170
171 .. method:: drain()
172
Victor Stinner62f8ecc2014-01-24 18:47:26 +0100173 Wait until the write buffer of the underlying transport is flushed.
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100174
Victor Stinner62f8ecc2014-01-24 18:47:26 +0100175 This method has an unusual return value. The intended use is to write::
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100176
177 w.write(data)
178 yield from w.drain()
179
180 When there's nothing to wait for, :meth:`drain()` returns ``()``, and the
181 yield-from continues immediately. When the transport buffer is full (the
182 protocol is paused), :meth:`drain` creates and returns a
183 :class:`Future` and the yield-from will block until
184 that Future is completed, which will happen when the buffer is
185 (partially) drained and the protocol is resumed.
186
187 .. method:: get_extra_info(name, default=None)
188
189 Return optional transport information: see
190 :meth:`BaseTransport.get_extra_info`.
191
192 .. method:: write(data)
193
194 Write some *data* bytes to the transport: see
195 :meth:`WriteTransport.write`.
196
197 .. method:: writelines(data)
198
199 Write a list (or any iterable) of data bytes to the transport:
200 see :meth:`WriteTransport.writelines`.
201
Victor Stinner24f8ebf2014-01-23 11:05:01 +0100202 .. method:: write_eof()
203
204 Close the write end of the transport after flushing buffered data:
205 see :meth:`WriteTransport.write_eof`.
206
207
208StreamReaderProtocol
209====================
210
211.. class:: StreamReaderProtocol(stream_reader, client_connected_cb=None, loop=None)
212
213 Trivial helper class to adapt between :class:`Protocol` and
214 :class:`StreamReader`. Sublclass of :class:`Protocol`.
215
216 *stream_reader* is a :class:`StreamReader` instance, *client_connected_cb*
217 is an optional function called with (stream_reader, stream_writer) when a
218 connection is made, *loop* is the event loop instance to use.
219
220 (This is a helper class instead of making :class:`StreamReader` itself a
221 :class:`Protocol` subclass, because the :class:`StreamReader` has other
222 potential uses, and to prevent the user of the :class:`StreamReader` to
223 accidentally call inappropriate methods of the protocol.)
224
Victor Stinnerc520edc2014-01-23 11:25:48 +0100225
Victor Stinnerb7f19ff2014-01-27 11:58:49 +0100226IncompleteReadError
227===================
228
229.. exception:: IncompleteReadError
230
Victor Stinner32970b82014-01-27 12:18:49 +0100231 Incomplete read error, subclass of :exc:`EOFError`.
Victor Stinnerb7f19ff2014-01-27 11:58:49 +0100232
233 .. attribute:: expected
234
235 Total number of expected bytes (:class:`int`).
236
237 .. attribute:: partial
238
239 Read bytes string before the end of stream was reached (:class:`bytes`).
240
241
Victor Stinnerc520edc2014-01-23 11:25:48 +0100242Example
243=======
244
245Simple example querying HTTP headers of the URL passed on the command line::
246
247 import asyncio
248 import urllib.parse
249 import sys
250
251 @asyncio.coroutine
252 def print_http_headers(url):
253 url = urllib.parse.urlsplit(url)
254 reader, writer = yield from asyncio.open_connection(url.hostname, 80)
255 query = ('HEAD {url.path} HTTP/1.0\r\n'
256 'Host: {url.hostname}\r\n'
257 '\r\n').format(url=url)
258 writer.write(query.encode('latin-1'))
259 while True:
260 line = yield from reader.readline()
261 if not line:
262 break
263 line = line.decode('latin1').rstrip()
264 if line:
265 print('HTTP header> %s' % line)
266
267 url = sys.argv[1]
268 loop = asyncio.get_event_loop()
269 task = asyncio.async(print_http_headers(url))
270 loop.run_until_complete(task)
Victor Stinnerf40c6632014-01-28 23:32:40 +0100271 loop.close()
Victor Stinnerc520edc2014-01-23 11:25:48 +0100272
273Usage::
274
275 python example.py http://example.com/path/page.html
276