%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/python3.8/asyncio/__pycache__/
Upload File :
Create Path :
Current File : //usr/local/lib/python3.8/asyncio/__pycache__/streams.cpython-38.pyc

U

pa h@s&dZddlZddlZddlZddlZeedr6ed7ZddlmZddlmZddlm	Z	dd	lm
Z
dd
lmZddlm
Z
ddlmZd
ZddedddZd dedddZeedrd!dedddZd"dedddZGdddejZGdddeejZGdddZGdddZdS)#)StreamReaderStreamWriterStreamReaderProtocolopen_connectionstart_serverNAF_UNIX)open_unix_connectionstart_unix_server)
coroutines)events)
exceptions)format_helpers)	protocols)logger)sleepi)looplimitc	st|dkrt}ntjdtddt||d}t||d|jfdd||f|IdH\}}t|||}||fS)	aA 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[The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
stacklevelrrrcsSNrprotocolr+/usr/local/lib/python3.8/asyncio/streams.py<lambda>5z!open_connection.<locals>.<lambda>)	rget_event_loopwarningswarnDeprecationWarningrrcreate_connectionr)	hostportrrkwdsreader	transport_writerrrrrs"

rcsJdkrtntjdtddfdd}j|||f|IdHS)aStart 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.
    Nrrrcstd}t|d}|SNrrrrr)rclient_connected_cbrrrrfactoryXs
zstart_server.<locals>.factory)rr!r"r#r$
create_server)r1r&r'rrr(r2rr0rr:s
rcsr|dkrt}ntjdtddt||d}t||d|jfdd|f|IdH\}}t|||}||fS)	z@Similar to `open_connection` but works with UNIX Domain Sockets.NrrrrrcsSrrrrrrrpr z&open_unix_connection.<locals>.<lambda>)	rr!r"r#r$rrZcreate_unix_connectionr)pathrrr(r)r*r+r,rrrrds 

rcsHdkrtntjdtddfdd}j||f|IdHS)z=Similar to `start_server` but works with UNIX Domain Sockets.Nrrrcstd}t|d}|Sr-r.r/r0rrr2~s
z"start_unix_server.<locals>.factory)rr!r"r#r$Zcreate_unix_server)r1r4rrr(r2rr0rr	ts
r	c@sBeZdZdZdddZddZddZd	d
ZddZd
dZ	dS)FlowControlMixina)Reusable flow control logic for StreamWriter.drain().

    This implements the protocol methods pause_writing(),
    resume_writing() and connection_lost().  If the subclass overrides
    these it must call the super methods.

    StreamWriter.drain() must wait for _drain_helper() coroutine.
    NcCs0|dkrt|_n||_d|_d|_d|_dSNF)rr!_loop_paused
_drain_waiter_connection_lost)selfrrrr__init__szFlowControlMixin.__init__cCs*|jr
td|_|jr&td|dS)NTz%r pauses writing)r8AssertionErrorr7	get_debugrdebugr;rrr
pause_writings

zFlowControlMixin.pause_writingcCsP|js
td|_|jr&td||j}|dk	rLd|_|sL|ddS)NFz%r resumes writing)	r8r=r7r>rr?r9done
set_resultr;waiterrrrresume_writings

zFlowControlMixin.resume_writingcCsVd|_|jsdS|j}|dkr"dSd|_|r4dS|dkrH|dn
||dSNT)r:r8r9rBrC
set_exceptionr;excrErrrconnection_lostsz FlowControlMixin.connection_lostcsP|jrtd|jsdS|j}|dks2|s2t|j}||_|IdHdS)NzConnection lost)r:ConnectionResetErrorr8r9	cancelledr=r7
create_futurerDrrr
_drain_helpers
zFlowControlMixin._drain_helpercCstdSr)NotImplementedErrorr;streamrrr_get_close_waitersz"FlowControlMixin._get_close_waiter)N)
__name__
__module____qualname____doc__r<rArFrKrOrSrrrrr5s	
	r5csfeZdZdZdZdfdd	ZeddZddZfd	d
Z	ddZ
d
dZddZddZ
ZS)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.)
    Ncsntj|d|dk	r,t||_|j|_nd|_|dk	r@||_d|_d|_d|_	||_
d|_|j
|_dS)NrF)superr<weakrefref_stream_reader_wr_source_traceback_strong_reader_reject_connection_stream_writer
_transport_client_connected_cb	_over_sslr7rN_closed)r;Z
stream_readerr1r	__class__rrr<s
zStreamReaderProtocol.__init__cCs|jdkrdS|Sr)r[r@rrr_stream_readers
z#StreamReaderProtocol._stream_readercCs|jr6ddi}|jr|j|d<|j||dS||_|j}|dk	rT|||ddk	|_	|j
dk	rt||||j|_|
||j}t
|r|j|d|_dS)NmessagezpAn open stream was garbage collected prior to establishing network connection; call "stream.close()" explicitly.Zsource_tracebackZ
sslcontext)r^r\r7Zcall_exception_handlerabortr`rf
set_transportget_extra_inforbrarr_rZiscoroutineZcreate_taskr])r;r*contextr)resrrrconnection_mades2



z$StreamReaderProtocol.connection_madecsx|j}|dk	r*|dkr |n
|||jsV|dkrJ|jdn|j|t|d|_d|_	d|_
dSr)rffeed_eofrHrcrBrCrXrKr[r_r`)r;rJr)rdrrrK
s


z$StreamReaderProtocol.connection_lostcCs|j}|dk	r||dSr)rf	feed_data)r;datar)rrr
data_receivedsz"StreamReaderProtocol.data_receivedcCs$|j}|dk	r||jr dSdS)NFT)rfrnrb)r;r)rrreof_received sz!StreamReaderProtocol.eof_receivedcCs|jSr)rcrQrrrrS+sz&StreamReaderProtocol._get_close_waitercCs"|j}|r|s|dSr)rcrBrM	exception)r;closedrrr__del__.szStreamReaderProtocol.__del__)NN)rTrUrVrWr\r<propertyrfrmrKrqrrrSru
__classcell__rrrdrrs
rc@sveZdZdZddZddZeddZdd	Zd
dZ	dd
Z
ddZddZddZ
ddZdddZddZdS)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.
    cCsJ||_||_|dks"t|ts"t||_||_|j|_|j	ddSr)
r`	_protocol
isinstancerr=_readerr7rNZ
_complete_futrC)r;r*rr)rrrrr<@szStreamWriter.__init__cCs@|jjd|jg}|jdk	r0|d|jdd|S)N
transport=zreader=<{}> )rerTr`rzappendformatjoinr;inforrr__repr__Js
zStreamWriter.__repr__cCs|jSr)r`r@rrrr*PszStreamWriter.transportcCs|j|dSr)r`writer;rprrrrTszStreamWriter.writecCs|j|dSr)r`
writelinesrrrrrWszStreamWriter.writelinescCs
|jSr)r`	write_eofr@rrrrZszStreamWriter.write_eofcCs
|jSr)r`
can_write_eofr@rrrr]szStreamWriter.can_write_eofcCs
|jSr)r`closer@rrrr`szStreamWriter.closecCs
|jSr)r`
is_closingr@rrrrcszStreamWriter.is_closingcs|j|IdHdSr)rxrSr@rrrwait_closedfszStreamWriter.wait_closedNcCs|j||Sr)r`rj)r;namedefaultrrrrjiszStreamWriter.get_extra_infocsL|jdk	r |j}|dk	r ||jr8tdIdH|jIdHdS)zyFlush the write buffer.

        The intended use is to write

          w.write(data)
          await w.drain()
        Nr)rzrsr`rrrxrO)r;rJrrrdrainls



zStreamWriter.drain)N)rTrUrVrWr<rrvr*rrrrrrrrjrrrrrr6s	


rc@seZdZdZedfddZddZddZdd	Zd
dZ	dd
Z
ddZddZddZ
ddZddZddZd&ddZd'ddZd d!Zd"d#Zd$d%ZdS)(rNcCsv|dkrtd||_|dkr*t|_n||_t|_d|_d|_d|_	d|_
d|_|jrrt
td|_dS)NrzLimit cannot be <= 0Fr
)
ValueError_limitrr!r7	bytearray_buffer_eof_waiter
_exceptionr`r8r>r
extract_stacksys	_getframer\)r;rrrrrr<s 
zStreamReader.__init__cCsdg}|jr"|t|jd|jr2|d|jtkrN|d|j|jrf|d|j|jr~|d|j|jr|d|j|j	r|dd	
d
|S)Nrz byteseofzlimit=zwaiter=z
exception=r{Zpausedr|r})rr~lenrr_DEFAULT_LIMITrrr`r8rrrrrrrs 


zStreamReader.__repr__cCs|jSr)rr@rrrrsszStreamReader.exceptioncCs0||_|j}|dk	r,d|_|s,||dSr)rrrMrHrIrrrrHszStreamReader.set_exceptioncCs*|j}|dk	r&d|_|s&|ddS)z1Wakeup read*() functions waiting for data or EOF.N)rrMrCrDrrr_wakeup_waiters
zStreamReader._wakeup_waitercCs|jdkstd||_dS)NzTransport already set)r`r=)r;r*rrrriszStreamReader.set_transportcCs*|jr&t|j|jkr&d|_|jdSr6)r8rrrr`resume_readingr@rrr_maybe_resume_transportsz$StreamReader._maybe_resume_transportcCsd|_|dSrG)rrr@rrrrnszStreamReader.feed_eofcCs|jo|jS)z=Return True if the buffer is empty and 'feed_eof' was called.)rrr@rrrat_eofszStreamReader.at_eofcCs|jrtd|sdS|j|||jdk	r~|js~t|jd|jkr~z|j	Wnt
k
rvd|_YnXd|_dS)Nzfeed_data after feed_eofrT)rr=rextendrr`r8rrZ
pause_readingrPrrrrros
zStreamReader.feed_datacsf|jdk	rt|d|jr&td|jr<d|_|j|j|_z|jIdHW5d|_XdS)zpWait until feed_data() or feed_eof() is called.

        If stream was paused, automatically resume it.
        NzF() called while another coroutine is already waiting for incoming dataz_wait_for_data after EOFF)	rRuntimeErrorrr=r8r`rr7rN)r;	func_namerrr_wait_for_datas	

zStreamReader._wait_for_datac
sd}t|}z||IdH}Wntjk
rN}z|jWYSd}~XYnhtjk
r}zH|j||jr|jd|j|=n
|j	|
t|jdW5d}~XYnX|S)aRead chunk of data from the stream until newline (b'
') is found.

        On success, return chunk that ends with newline. If only partial
        line can be read due to EOF, return incomplete line without
        terminating newline. When EOF was reached while no bytes read, empty
        bytes object is returned.

        If limit is reached, ValueError will be raised. In that case, if
        newline was found, complete line including newline will be removed
        from internal buffer. Else, internal buffer will be cleared. Limit is
        compared against part of the line without newline.

        If stream was paused, this function will automatically resume it if
        needed.
        
Nr)
r	readuntilr
IncompleteReadErrorpartialLimitOverrunErrorr
startswithconsumedclearrrargs)r;sepseplenlineerrrreadline	s
 zStreamReader.readlinercst|}|dkrtd|jdk	r(|jd}t|j}|||kr||j||}|dkrZq|d|}||jkr|td||jrt	|j}|j
t|d|dIdHq,||jkrtd||jd||}|jd||=|
t	|S)	aVRead data from the stream until ``separator`` is found.

        On success, the data and separator will be removed from the
        internal buffer (consumed). Returned data will include the
        separator at the end.

        Configured stream limit is used to check result. Limit sets the
        maximal length of data that can be returned, not counting the
        separator.

        If an EOF occurs and the complete separator is still not found,
        an IncompleteReadError exception will be raised, and the internal
        buffer will be reset.  The IncompleteReadError.partial attribute
        may contain the separator partially.

        If the data cannot be read because of over limit, a
        LimitOverrunError exception  will be raised, and the data
        will be left in the internal buffer, so it can be read again.
        rz,Separator should be at least one-byte stringNr
z2Separator is not found, and chunk exceed the limitrz2Separator is found, but chunk is longer than limit)rrrrfindrr
rrbytesrrrr)r;Z	separatorroffsetbuflenZisepchunkrrrr(s>





zStreamReader.readuntilrcs|jdk	r|j|dkrdS|dkrVg}||jIdH}|s@qL||q(d|S|jsr|jsr|dIdHt|jd|}|jd|=|	|S)aRead up to `n` bytes from the stream.

        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.

        If n is zero, return empty bytes object immediately.

        If n is positive, this function try to read `n` bytes, and may return
        less or equal bytes than requested, but at least one byte. If EOF was
        received before any byte is read, this function returns empty byte
        object.

        Returned value is not limited with limit, configured at stream
        creation.

        If stream was paused, this function will automatically resume it if
        needed.
        Nrr read)
rrrr~rrrrrr)r;nZblocksblockrprrrrs"

zStreamReader.readcs|dkrtd|jdk	r |j|dkr,dSt|j|krr|jr`t|j}|jt|||	dIdHq,t|j|krt|j}|jnt|jd|}|jd|=|
|S)aRead exactly `n` bytes.

        Raise an IncompleteReadError if EOF is reached before `n` bytes can be
        read. The IncompleteReadError.partial attribute of the exception will
        contain the partial read bytes.

        if n is zero, return empty bytes object.

        Returned value is not limited with limit, configured at stream
        creation.

        If stream was paused, this function will automatically resume it if
        needed.
        rz*readexactly size can not be less than zeroNr readexactly)rrrrrrrr
rrr)r;rZ
incompleterprrrrs&



zStreamReader.readexactlycCs|Srrr@rrr	__aiter__szStreamReader.__aiter__cs|IdH}|dkrt|S)Nr )rStopAsyncIteration)r;valrrr	__anext__szStreamReader.__anext__)r)r)rTrUrVr\rr<rrsrHrrirrnrrorrrrrrrrrrrrs$	
[
2)r)NN)NN)N)N)__all__socketrr"rYhasattrrrr
rrlogrZtasksrrrrrr	ZProtocolr5rrrrrrr<module>sF
!'
DkP

Zerion Mini Shell 1.0