�PNG  IHDR��;���IDATx��ܻn�0���K�� �)(�pA��� ���7�LeG{�� �§㻢|��ذaÆ 6lذaÆ 6lذaÆ 6lom��$^�y���ذag�5bÆ 6lذaÆ 6lذa{���� 6lذaÆ �`����}H�Fkm�,�m����Ӫ���ô�ô!� �x�|'ܢ˟;�E:���9�&ᶒ�}�{�v]�n&�6� �h��_��t�ڠ͵-ҫ���Z;��Z$�.�P���k�ž)�!��o���>}l�eQfJ�T��u і���چ��\��X=8��Rن4`Vw�l�>����n�G�^��i�s��"ms�$�u��i��?w�bs[m�6�K4���O���.�4��%����/����b�C%��t ��M�ז� �-l�G6�mrz2���s�%�9��s@���-�k�9�=���)������k�B5����\��+͂�Zsٲ ��Rn��~G���R���C����� �wIcI��n7jJ���hۛNCS|���j0��8y�iHKֶۛ�k�Ɉ+;Sz������L/��F�*\��Ԕ�#"5��m�2��[S��������=�g��n�a�P�e�ғ�L�� lذaÆ 6l�^k��̱aÆ 6lذaÆ 6lذa;���� �_��ذaÆ 6lذaÆ 6lذaÆ ���R���IEND�B` 3 \�_�@sLdZdddddddgZdd lZeed �r6ejd d g�d dlmZd dlmZd dlmZd dlm Z d dlm Z d dl m Z d"Z Gdd�de�ZGdd�de�Ze d#d e d�dd��Ze d$d e d�dd��Zeed ��re d%d e d�dd ��Ze d&d e d�dd ��ZGdd�de j�ZGdd�dee j�ZGd d�d�ZGd!d�d�Zd S)'zStream-related things.� StreamReader� StreamWriter�StreamReaderProtocol�open_connection� start_server�IncompleteReadError�LimitOverrunError�NZAF_UNIX�open_unix_connection�start_unix_server�)� coroutines)�compat)�events)� protocols)� coroutine)�logger��cs(eZdZdZ�fdd�Zdd�Z�ZS)rz� Incomplete read error. Attributes: - partial: read bytes string before the end of stream was reached - expected: total number of expected bytes (or None if unknown) cs(t�jdt|�|f�||_||_dS)Nz-%d bytes read on a total of %r expected bytes)�super�__init__�len�partial�expected)�selfrr)� __class__��/usr/lib64/python3.6/streams.pyr szIncompleteReadError.__init__cCst|�|j|jffS)N)�typerr)rrrr� __reduce__&szIncompleteReadError.__reduce__)�__name__� __module__� __qualname__�__doc__rr� __classcell__rr)rrrs cs(eZdZdZ�fdd�Zdd�Z�ZS)rz�Reached the buffer limit while looking for a separator. Attributes: - consumed: total number of to be consumed bytes. cst�j|�||_dS)N)rr�consumed)r�messager$)rrrr0s zLimitOverrunError.__init__cCst|�|jd|jffS)Nr)r�argsr$)rrrrr4szLimitOverrunError.__reduce__)rr r!r"rrr#rr)rrr*s )�loop�limitc +sb|dkrtj�}t||d�}t||d��|j�fdd�||f|�EdH\}}t|�||�}||fS)a�A wrapper for create_connection() returning a (reader, writer) pair. The reader returned is a StreamReader instance; the writer is a StreamWriter instance. The arguments are all the usual arguments to 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 StreamReader). (If you want to customize the StreamReader and/or StreamReaderProtocol classes, just copy the code -- there's really nothing special here except some convenience.) N)r(r')r'cs�S)Nrr)�protocolrr�Qsz!open_connection..)r�get_event_looprrZcreate_connectionr) �host�portr'r(�kwds�reader� transport�_�writerr)r)rr8s   c+s8�dkrtj�����fdd�}�j|||f|�EdHS)a�Start a socket server, call back for each client connected. The first parameter, `client_connected_cb`, takes two parameters: client_reader, client_writer. client_reader is a StreamReader object, while client_writer is a StreamWriter object. This parameter can either be a plain callback function or a coroutine; if it is a coroutine, it will be automatically converted into a Task. The rest of the arguments are all the usual arguments to loop.create_server() except protocol_factory; most common are positional host and port, with various optional keyword arguments following. The return value is the same as loop.create_server(). Additional optional keyword arguments are loop (to set the event loop instance to use) and limit (to set the buffer limit passed to the StreamReader). The return value is the same as loop.create_server(), i.e. a Server object which can be used to stop the service. Ncst��d�}t|��d�}|S)N)r(r')r')rr)r/r))�client_connected_cbr(r'rr�factoryqs zstart_server..factory)rr+Z create_server)r3r,r-r'r(r.r4r)r3r(r'rrVsc+s`|dkrtj�}t||d�}t||d��|j�fdd�|f|�EdH\}}t|�||�}||fS)z@Similar to `open_connection` but works with UNIX Domain Sockets.N)r(r')r'cs�S)Nrr)r)rrr*�sz&open_unix_connection..)rr+rrZcreate_unix_connectionr)�pathr'r(r.r/r0r1r2r)r)rr }s  c+s6�dkrtj�����fdd�}�j||f|�EdHS)z=Similar to `start_server` but works with UNIX Domain Sockets.Ncst��d�}t|��d�}|S)N)r(r')r')rr)r/r))r3r(r'rrr4�s z"start_unix_server..factory)rr+Zcreate_unix_server)r3r5r'r(r.r4r)r3r(r'rr �sc@s>eZdZdZd dd�Zdd�Zdd�Zd d �Zed d ��Z dS)�FlowControlMixina)Reusable flow control logic for StreamWriter.drain(). This implements the protocol methods pause_writing(), resume_reading() and connection_lost(). If the subclass overrides these it must call the super methods. StreamWriter.drain() must wait for _drain_helper() coroutine. NcCs0|dkrtj�|_n||_d|_d|_d|_dS)NF)rr+�_loop�_paused� _drain_waiter�_connection_lost)rr'rrrr�s  zFlowControlMixin.__init__cCs,|j s t�d|_|jj�r(tjd|�dS)NTz%r pauses writing)r8�AssertionErrorr7� get_debugr�debug)rrrr� pause_writing�s  zFlowControlMixin.pause_writingcCsP|js t�d|_|jj�r&tjd|�|j}|dk rLd|_|j�sL|jd�dS)NFz%r resumes writing) r8r;r7r<�rr=r9�done� set_result)r�waiterrrr�resume_writing�s   zFlowControlMixin.resume_writingcCsVd|_|jsdS|j}|dkr"dSd|_|j�r4dS|dkrH|jd�n |j|�dS)NT)r:r8r9r?r@� set_exception)r�excrArrr�connection_lost�s z FlowControlMixin.connection_lostccsP|jrtd��|jsdS|j}|dks2|j�s2t�|jj�}||_|EdHdS)NzConnection lost)r:�ConnectionResetErrorr8r9� cancelledr;r7� create_future)rrArrr� _drain_helper�s zFlowControlMixin._drain_helper)N) rr r!r"rr>rBrErrIrrrrr6�s   r6csFeZdZdZd �fdd� Zdd�Z�fdd�Zd d �Zd d �Z�Z S)ra=Helper class to adapt between Protocol and StreamReader. (This is a helper class instead of making StreamReader itself a Protocol subclass, because the StreamReader has other potential uses, and to prevent the user of the StreamReader to accidentally call inappropriate methods of the protocol.) Ncs*t�j|d�||_d|_||_d|_dS)N)r'F)rr�_stream_reader�_stream_writer�_client_connected_cb� _over_ssl)rZ stream_readerr3r')rrrr�s zStreamReaderProtocol.__init__cCsd|jj|�|jd�dk |_|jdk r`t|||j|j�|_|j|j|j�}tj |�r`|jj |�dS)NZ sslcontext) rJ� set_transport�get_extra_inforMrLrr7rKr Z iscoroutineZ create_task)rr0�resrrr�connection_made�s    z$StreamReaderProtocol.connection_madecsF|jdk r*|dkr|jj�n |jj|�t�j|�d|_d|_dS)N)rJ�feed_eofrCrrErK)rrD)rrrrE�s    z$StreamReaderProtocol.connection_lostcCs|jj|�dS)N)rJ� feed_data)r�datarrr� data_receivedsz"StreamReaderProtocol.data_receivedcCs|jj�|jrdSdS)NFT)rJrRrM)rrrr� eof_receiveds z!StreamReaderProtocol.eof_received)NN) rr r!r"rrQrErUrVr#rr)rrr�s  c@sjeZdZdZdd�Zdd�Zedd��Zdd �Zd d �Z d d �Z dd�Z dd�Z ddd�Z edd��ZdS)ra'Wraps a Transport. This exposes write(), writelines(), [can_]write_eof(), get_extra_info() and close(). It adds drain() which returns an optional Future on which you can wait for flow control. It also adds a transport property which references the Transport directly. cCs2||_||_|dks"t|t�s"t�||_||_dS)N)� _transport� _protocol� isinstancerr;�_readerr7)rr0r)r/r'rrrrs zStreamWriter.__init__cCs:|jjd|jg}|jdk r,|jd|j�ddj|�S)Nz transport=%rz reader=%rz<%s>� )rrrWrZ�append�join)r�inforrr�__repr__!s zStreamWriter.__repr__cCs|jS)N)rW)rrrrr0'szStreamWriter.transportcCs|jj|�dS)N)rW�write)rrTrrrr`+szStreamWriter.writecCs|jj|�dS)N)rW� writelines)rrTrrrra.szStreamWriter.writelinescCs |jj�S)N)rW� write_eof)rrrrrb1szStreamWriter.write_eofcCs |jj�S)N)rW� can_write_eof)rrrrrc4szStreamWriter.can_write_eofcCs |jj�S)N)rW�close)rrrrrd7szStreamWriter.closeNcCs|jj||�S)N)rWrO)r�name�defaultrrrrO:szStreamWriter.get_extra_infoccsN|jdk r |jj�}|dk r |�|jdk r:|jj�r:dV|jj�EdHdS)z~Flush the write buffer. The intended use is to write w.write(data) yield from w.drain() N)rZ� exceptionrWZ is_closingrXrI)rrDrrr�drain=s    zStreamWriter.drain)N)rr r!r"rr_�propertyr0r`rarbrcrdrOrrhrrrrrs  c@s�eZdZedfdd�Zdd�Zdd�Zdd �Zd d �Zd d �Z dd�Z dd�Z dd�Z dd�Z edd��Zedd��Zed'dd��Zed)dd��Zed d!��Zejr�ed"d#��Zed$d%��Zejr�d&d#�ZdS)*rNcCsZ|dkrtd��||_|dkr*tj�|_n||_t�|_d|_d|_d|_ d|_ d|_ dS)NrzLimit cannot be <= 0F) � ValueError�_limitrr+r7� bytearray�_buffer�_eof�_waiter� _exceptionrWr8)rr(r'rrrrXs zStreamReader.__init__cCs�dg}|jr |jdt|j��|jr0|jd�|jtkrJ|jd|j�|jr`|jd|j�|jrv|jd|j�|jr�|jd|j�|j r�|jd�d d j |�S) Nrz%d bytes�eofzl=%dzw=%rze=%rzt=%rZpausedz<%s>r[) rmr\rrnrk�_DEFAULT_LIMITrorprWr8r])rr^rrrr_ks    zStreamReader.__repr__cCs|jS)N)rp)rrrrrg}szStreamReader.exceptioncCs0||_|j}|dk r,d|_|j�s,|j|�dS)N)rprorGrC)rrDrArrrrC�s zStreamReader.set_exceptioncCs*|j}|dk r&d|_|j�s&|jd�dS)z1Wakeup read*() functions waiting for data or EOF.N)rorGr@)rrArrr�_wakeup_waiter�s zStreamReader._wakeup_waitercCs|jdkstd��||_dS)NzTransport already set)rWr;)rr0rrrrN�szStreamReader.set_transportcCs*|jr&t|j�|jkr&d|_|jj�dS)NF)r8rrmrkrW�resume_reading)rrrr�_maybe_resume_transport�sz$StreamReader._maybe_resume_transportcCsd|_|j�dS)NT)rnrs)rrrrrR�szStreamReader.feed_eofcCs|jo |j S)z=Return True if the buffer is empty and 'feed_eof' was called.)rnrm)rrrr�at_eof�szStreamReader.at_eofc Cs�|j std��|sdS|jj|�|j�|jdk r�|j r�t|j�d|jkr�y|jj �Wnt k rzd|_YnXd|_dS)Nzfeed_data after feed_eofrT) rnr;rm�extendrsrWr8rrkZ pause_reading�NotImplementedError)rrTrrrrS�s   zStreamReader.feed_datac csf|jdk rtd|��|j s&td��|jrsB       "  B3G