o
    /h]                     @  sD  d dl mZ d dlZd dlZd dlZd dlmZmZmZm	Z	m
Z
 ddlmZmZmZmZmZmZ ddlmZ ddlmZmZmZmZmZmZmZmZmZmZ ddlm Z m!Z! dd	l"m#Z# dd
lm$Z$m%Z%m&Z& g dZ'e
e e!ef Z(	 G dd dej)Z*e*j+Z+e*j,Z,G dd dej)Z-e-j.Z.e-j/Z/e-j0Z0e-j1Z1dZ2	 G dd dZ3dS )    )annotationsN)	GeneratorListOptionalTypeUnion   )ConnectionClosedConnectionClosedErrorConnectionClosedOKInvalidStatePayloadTooBigProtocolError)	Extension)
OK_CLOSE_CODES	OP_BINARYOP_CLOSEOP_CONTOP_PINGOP_PONGOP_TEXTClose	CloseCodeFrame)RequestResponse)StreamReader)
LoggerLikeOriginSubprotocol)ProtocolSideStateSEND_EOFc                   @  s   e Zd ZdZed\ZZdS )r!   z6A WebSocket connection is either a server or a client.   N)__name__
__module____qualname____doc__rangeSERVERCLIENT r,   r,   L/var/www/html/govbot/env/lib/python3.10/site-packages/websockets/protocol.pyr!   -   s    r!   c                   @  s    e Zd ZdZed\ZZZZdS )r"   z6A WebSocket connection is in one of these four states.   N)	r%   r&   r'   r(   r)   
CONNECTINGOPENCLOSINGCLOSEDr,   r,   r,   r-   r"   7   s    r"       c                   @  s  e Zd ZdZeddddMddZedNddZejdOddZedPddZ	edQddZ
edRddZdSddZdTd d!ZdUd$d%ZdVdUd'd(ZdVdUd)d*ZdWdXd/d0ZdSd1d2ZdSd3d4ZdYdZd6d7Zd[d9d:Zd\d<d=Zd]d>d?Zd^dAdBZd^dCdDZd_dGdHZd_dIdJZdTdKdLZdS )`r    a6  
    Sans-I/O implementation of a WebSocket connection.

    Args:
        side: :attr:`~Side.CLIENT` or :attr:`~Side.SERVER`.
        state: initial state of the WebSocket connection.
        max_size: maximum size of incoming messages in bytes;
            :obj:`None` disables the limit.
        logger: logger for this connection; depending on ``side``,
            defaults to ``logging.getLogger("websockets.client")``
            or ``logging.getLogger("websockets.server")``;
            see the :doc:`logging guide <../../topics/logging>` for details.

    i   N)statemax_sizeloggersider!   r4   r"   r5   Optional[int]r6   Optional[LoggerLike]returnNonec                C  s   t  | _	 |d u rtd|j  }|| _	 |tj	| _
|| _|| _|| _d | _d| _d | _g | _d | _d | _d | _d | _d | _	 d| _t | _g | _g | _|  | _t| j d | _d S )Nzwebsockets.F) uuiduuid4idlogging	getLoggernamelowerr6   isEnabledForDEBUGdebugr7   r4   r5   cur_sizeexpect_continuation_frameorigin
extensionssubprotocol
close_rcvd
close_sentclose_rcvd_then_senthandshake_exceof_sentr   readereventswritesparseparsernext
parser_exc)selfr7   r4   r5   r6   r,   r,   r-   __init__W   s6   
	


zProtocol.__init__c                 C  s   | j S )zm
        WebSocket connection state.

        Defined in 4.1, 4.2, 7.1.3, and 7.1.4 of :rfc:`6455`.

        )_staterW   r,   r,   r-   r4      s   zProtocol.statec                 C  s    | j r| j d|j || _d S )Nz= connection is %s)rE   r6   rA   rY   )rW   r4   r,   r,   r-   r4      s   
c                 C  s&   | j turdS | jdu rtjS | jjS )z
        `WebSocket close code`_.

        .. _WebSocket close code:
            https://www.rfc-editor.org/rfc/rfc6455.html#section-7.1.5

        :obj:`None` if the connection isn't closed yet.

        N)r4   r2   rK   r   ABNORMAL_CLOSUREcoderZ   r,   r,   r-   
close_code   s
   

zProtocol.close_codeOptional[str]c                 C  s$   | j turdS | jdu rdS | jjS )z
        `WebSocket close reason`_.

        .. _WebSocket close reason:
            https://www.rfc-editor.org/rfc/rfc6455.html#section-7.1.6

        :obj:`None` if the connection isn't closed yet.

        N )r4   r2   rK   reasonrZ   r,   r,   r-   close_reason   s
   

zProtocol.close_reasonr	   c                 C  sf   | j tu s	J d| jdur"| jdur"| jjtv r"| jjtv r"t}nt}|| j| j| j}| j	|_
|S )a  
        Exception to raise when trying to interact with a closed connection.

        Don't raise this exception while the connection :attr:`state`
        is :attr:`~websockets.protocol.State.CLOSING`; wait until
        it's :attr:`~websockets.protocol.State.CLOSED`.

        Indeed, the exception includes the close code and reason, which are
        known only once the connection is closed.

        Raises:
            AssertionError: if the connection isn't closed yet.

        zconnection isn't closed yetN)r4   r2   rK   rL   r\   r   r   r
   rM   rV   	__cause__)rW   exc_typeexcr,   r,   r-   	close_exc   s   

zProtocol.close_excdatabytesc                 C  s   | j | t| j dS )aH  
        Receive data from the network.

        After calling this method:

        - You must call :meth:`data_to_send` and send this data to the network.
        - You should call :meth:`events_received` and process resulting events.

        Raises:
            EOFError: if :meth:`receive_eof` was called earlier.

        N)rP   	feed_datarU   rT   rW   rf   r,   r,   r-   receive_data   s   zProtocol.receive_datac                 C  s   | j   t| j dS )a  
        Receive the end of the data stream from the network.

        After calling this method:

        - You must call :meth:`data_to_send` and send this data to the network;
          it will return ``[b""]``, signaling the end of the stream, or ``[]``.
        - You aren't expected to call :meth:`events_received`; it won't return
          any new events.

        Raises:
            EOFError: if :meth:`receive_eof` was called earlier.

        N)rP   feed_eofrU   rT   rZ   r,   r,   r-   receive_eof  s   
zProtocol.receive_eoffinboolc                 C  s,   | j std| | _ | tt|| dS )a  
        Send a `Continuation frame`_.

        .. _Continuation frame:
            https://datatracker.ietf.org/doc/html/rfc6455#section-5.6

        Parameters:
            data: payload containing the same kind of data
                as the initial frame.
            fin: FIN bit; set it to :obj:`True` if this is the last frame
                of a fragmented message and to :obj:`False` otherwise.

        Raises:
            ProtocolError: if a fragmented message isn't in progress.

        unexpected continuation frameN)rG   r   
send_framer   r   rW   rf   rm   r,   r,   r-   send_continuation  s   zProtocol.send_continuationTc                 C  ,   | j rtd| | _ | tt|| dS )a  
        Send a `Text frame`_.

        .. _Text frame:
            https://datatracker.ietf.org/doc/html/rfc6455#section-5.6

        Parameters:
            data: payload containing text encoded with UTF-8.
            fin: FIN bit; set it to :obj:`False` if this is the first frame of
                a fragmented message.

        Raises:
            ProtocolError: if a fragmented message is in progress.

        expected a continuation frameN)rG   r   rp   r   r   rq   r,   r,   r-   	send_text/     zProtocol.send_textc                 C  rs   )a  
        Send a `Binary frame`_.

        .. _Binary frame:
            https://datatracker.ietf.org/doc/html/rfc6455#section-5.6

        Parameters:
            data: payload containing arbitrary binary data.
            fin: FIN bit; set it to :obj:`False` if this is the first frame of
                a fragmented message.

        Raises:
            ProtocolError: if a fragmented message is in progress.

        rt   N)rG   r   rp   r   r   rq   r,   r,   r-   send_binaryD  rv   zProtocol.send_binaryr_   r\   r`   strc                 C  sj   | j rtd|du r|dkrtdttjd}d}n	t||}| }| tt| || _	t
| _dS )a  
        Send a `Close frame`_.

        .. _Close frame:
            https://datatracker.ietf.org/doc/html/rfc6455#section-5.5.1

        Parameters:
            code: close code.
            reason: close reason.

        Raises:
            ProtocolError: if a fragmented message is being sent, if the code
                isn't valid, or if a reason is provided without a code

        rt   Nr_   z#cannot send a reason without a coder3   )rG   r   r   r   NO_STATUS_RCVD	serializerp   r   r   rL   r1   r4   rW   r\   r`   closerf   r,   r,   r-   
send_closeY  s   

zProtocol.send_closec                 C     |  tt| dS )z
        Send a `Ping frame`_.

        .. _Ping frame:
            https://datatracker.ietf.org/doc/html/rfc6455#section-5.5.2

        Parameters:
            data: payload containing arbitrary binary data.

        N)rp   r   r   ri   r,   r,   r-   	send_pingy     zProtocol.send_pingc                 C  r~   )z
        Send a `Pong frame`_.

        .. _Pong frame:
            https://datatracker.ietf.org/doc/html/rfc6455#section-5.5.3

        Parameters:
            data: payload containing arbitrary binary data.

        N)rp   r   r   ri   r,   r,   r-   	send_pong  r   zProtocol.send_pongintc                 C  sr   | j tu r!|tjkr!t||}| }| tt| || _	t
| _ | jtu r-| js-|   |  | _t| j dS )a?  
        `Fail the WebSocket connection`_.

        .. _Fail the WebSocket connection:
            https://datatracker.ietf.org/doc/html/rfc6455#section-7.1.7

        Parameters:
            code: close code
            reason: close reason

        Raises:
            ProtocolError: if the code isn't valid.
        N)r4   r0   r   r[   r   rz   rp   r   r   rL   r1   r7   r*   rO   send_eofdiscardrT   rU   r{   r,   r,   r-   fail  s   



zProtocol.failList[Event]c                 C     | j g }| _ |S )a7  
        Fetch events generated from data received from the network.

        Call this method immediately after any of the ``receive_*()`` methods.

        Process resulting events, likely by passing them to the application.

        Returns:
            List[Event]: Events read from the connection.
        )rQ   )rW   rQ   r,   r,   r-   events_received  s   zProtocol.events_receivedList[bytes]c                 C  r   )a  
        Obtain data to send to the network.

        Call this method immediately after any of the ``receive_*()``,
        ``send_*()``, or :meth:`fail` methods.

        Write resulting data to the connection.

        The empty bytestring :data:`~websockets.protocol.SEND_EOF` signals
        the end of the data stream. When you receive it, half-close the TCP
        connection.

        Returns:
            List[bytes]: Data to write to the connection.

        )rR   )rW   rR   r,   r,   r-   data_to_send  s   zProtocol.data_to_sendc                 C  s   | j tu p	| jduS )a  
        Tell if the TCP connection is expected to close soon.

        Call this method immediately after any of the ``receive_*()``,
        ``send_close()``, or :meth:`fail` methods.

        If it returns :obj:`True`, schedule closing the TCP connection after a
        short timeout if the other side hasn't already closed it.

        Returns:
            bool: Whether the TCP connection is expected to close soon.

        N)r4   r1   rN   rZ   r,   r,   r-   close_expected  s   zProtocol.close_expectedGenerator[None, None, None]c              
   c  s   zO	 | j  E dH r| jr| jd td| jdu r d}n| jdu r)| j}n| j| j }tj| j j	| j
tu || jdE dH }| jrK| jd| | | q tyn } z| tjt| || _W Y d}~nd}~w ty } z| tjt| || _W Y d}~nfd}~w ty } z| tj|j d|j  || _W Y d}~nDd}~w ty } z| tjt| || _W Y d}~n'd}~w ty } z| jjddd	 | tj || _W Y d}~nd}~ww dV  td
)a-  
        Parse incoming data into frames.

        :meth:`receive_data` and :meth:`receive_eof` run this generator
        coroutine until it needs more data or reaches EOF.

        :meth:`parse` never raises an exception. Instead, it sets the
        :attr:`parser_exc` and yields control.

        TN< EOFzunexpected end of stream)maskr5   rI   z< %sz at position zparser failed)exc_infoz"parse() shouldn't step after error)rP   at_eofrE   r6   EOFErrorr5   rF   r   rS   
read_exactr7   r*   rI   
recv_framer   r   r   PROTOCOL_ERRORrx   rV   r[   UnicodeDecodeErrorINVALID_DATAr`   startr   MESSAGE_TOO_BIG	ExceptionerrorINTERNAL_ERRORAssertionError)rW   r5   framerd   r,   r,   r-   rS     s\   


 zProtocol.parsec                 c  sx    | j tu | jksJ | j E dH s | j  | j E dH r| jr)| jd | j tu r2| 	  t
| _dV  td)z
        Discard incoming data.

        This coroutine replaces :meth:`parse`:

        - after receiving a close frame, during a normal closure (1.4);
        - after sending a close frame, during an abnormal closure (7.1.7).

        Nr   z"discard() shouldn't step after EOF)r7   r*   rO   rP   r   r   rE   r6   r+   r   r2   r4   r   rZ   r,   r,   r-   r   C  s   

zProtocol.discardr   r   c                 C  sr  |j tu s
|j tu r!| jdurtd|jrd| _nt|j| _n|j tu rA| jdu r/td|jr6d| _n{|  jt|j7  _np|j t	u rRt
t|j}| | n_|j tu rXnY|j tu rt|j| _| jtu rs| jduspJ d| _| jdur|td| jtu r| t
t|j | j| _d| _t| _| jtu r|   |  | _t| j n	td|j d| j| dS )	z-
        Process an incoming frame.

        Nrt   ro   Fzincomplete fragmented messageTzunexpected opcode: 02x)opcoder   r   rF   r   rm   lenrf   r   r   r   r   rp   r   r   rS   rK   r4   r1   rL   rM   r0   r7   r*   r   r   rT   rU   r   rQ   append)rW   r   
pong_framer,   r,   r-   r   a  sF   










zProtocol.recv_framec                 C  sT   | j turtd| j j d| jr| jd| | j|j| j	t
u | jd d S )Nz#cannot write to a WebSocket in the z statez> %s)r   rI   )r4   r0   r   rA   rE   r6   rR   r   rz   r7   r+   rI   )rW   r   r,   r,   r-   rp     s   
zProtocol.send_framec                 C  s2   | j rJ d| _ | jr| jd | jt d S )NTz> EOF)rO   rE   r6   rR   r   r#   rZ   r,   r,   r-   r     s
   
zProtocol.send_eof)
r7   r!   r4   r"   r5   r8   r6   r9   r:   r;   )r:   r"   )r4   r"   r:   r;   )r:   r8   )r:   r^   )r:   r	   )rf   rg   r:   r;   )r:   r;   )rf   rg   rm   rn   r:   r;   )T)Nr_   )r\   r8   r`   rx   r:   r;   )r_   )r\   r   r`   rx   r:   r;   )r:   r   )r:   r   )r:   rn   )r:   r   )r   r   r:   r;   )r%   r&   r'   r(   r0   rX   propertyr4   setterr]   ra   re   rj   rl   rr   ru   rw   r}   r   r   r   r   r   r   rS   r   r   rp   r   r,   r,   r,   r-   r    G   sB    D	
%


 

+



G

Rr    )4
__future__r   enumr?   r<   typingr   r   r   r   r   
exceptionsr	   r
   r   r   r   r   rI   r   framesr   r   r   r   r   r   r   r   r   r   http11r   r   streamsr   r   r   r   __all__EventIntEnumr!   r*   r+   r"   r/   r0   r1   r2   r#   r    r,   r,   r,   r-   <module>   s2     0