o
    `^hb)                     @  s  d Z ddlmZ ddlZddlZddlmZ g dZG dd deZ	G d	d
 d
e	Z
G dd de
ZG dd de
ZG dd de	ZG dd de	ZG dd deZG dd deZG dd deZG dd deZG dd deZG dd deZG dd  d eZG d!d" d"eZG d#d$ d$eZG d%d& d&eZG d'd( d(eZG d)d* d*e	ZG d+d, d,e	ZG d-d. d.e	eZG d/d0 d0e	eZej rdd1l!m"Z"m#Z#m$Z$m%Z% eZ&nee' d2d2d2d2d2d3d4 dd5l(m)Z)m*Z* dS )6a  
:mod:`websockets.exceptions` defines the following hierarchy of exceptions.

* :exc:`WebSocketException`
    * :exc:`ConnectionClosed`
        * :exc:`ConnectionClosedOK`
        * :exc:`ConnectionClosedError`
    * :exc:`InvalidURI`
    * :exc:`InvalidHandshake`
        * :exc:`SecurityError`
        * :exc:`InvalidMessage` (legacy)
        * :exc:`InvalidStatus`
        * :exc:`InvalidStatusCode` (legacy)
        * :exc:`InvalidHeader`
            * :exc:`InvalidHeaderFormat`
            * :exc:`InvalidHeaderValue`
            * :exc:`InvalidOrigin`
            * :exc:`InvalidUpgrade`
        * :exc:`NegotiationError`
            * :exc:`DuplicateParameter`
            * :exc:`InvalidParameterName`
            * :exc:`InvalidParameterValue`
        * :exc:`AbortHandshake` (legacy)
        * :exc:`RedirectHandshake` (legacy)
    * :exc:`ProtocolError` (Sans-I/O)
    * :exc:`PayloadTooBig` (Sans-I/O)
    * :exc:`InvalidState` (Sans-I/O)
    * :exc:`ConcurrencyError`

    )annotationsN   )lazy_import)WebSocketExceptionConnectionClosedConnectionClosedOKConnectionClosedError
InvalidURIInvalidHandshakeSecurityErrorInvalidMessageInvalidStatusInvalidStatusCodeInvalidHeaderInvalidHeaderFormatInvalidHeaderValueInvalidOriginInvalidUpgradeNegotiationErrorDuplicateParameterInvalidParameterNameInvalidParameterValueAbortHandshakeRedirectHandshakeProtocolErrorWebSocketProtocolErrorPayloadTooBigInvalidStateConcurrencyErrorc                   @     e Zd ZdZdS )r   z?
    Base class for all exceptions defined by websockets.

    N__name__
__module____qualname____doc__ r%   r%   S/home/air/shanriGPT/back/venv/lib/python3.10/site-packages/websockets/exceptions.pyr   F       r   c                   @  sD   e Zd ZdZ	ddd
dZdddZedddZedddZdS )r   a  
    Raised when trying to interact with a closed connection.

    Attributes:
        rcvd: If a close frame was received, its code and reason are available
            in ``rcvd.code`` and ``rcvd.reason``.
        sent: If a close frame was sent, its code and reason are available
            in ``sent.code`` and ``sent.reason``.
        rcvd_then_sent: If close frames were received and sent, this attribute
            tells in which order this happened, from the perspective of this
            side of the connection.

    Nrcvdframes.Close | Nonesentrcvd_then_sentbool | NonereturnNonec                 C  s8   || _ || _|| _| jd u | j d u p| jd u ksJ d S Nr(   r*   r+   )selfr(   r*   r+   r%   r%   r&   __init__\   s   &zConnectionClosed.__init__strc                 C  sl   | j d u r| jd u rdS d| j dS | jd u rd| j  dS | jr,d| j  d| j S d| j d| j  S )Nzno close frame received or sentzsent z; no close frame receivedz	received z; no close frame sentz; then sent z; then received r0   r1   r%   r%   r&   __str__g   s   


zConnectionClosed.__str__intc                 C  s&   t dt | jd u rtjjS | jjS )NzZConnectionClosed.code is deprecated; use Protocol.close_code or ConnectionClosed.rcvd.code)warningswarnDeprecationWarningr(   frames	CloseCodeABNORMAL_CLOSUREcoder4   r%   r%   r&   r=   x   s   
zConnectionClosed.codec                 C  s"   t dt | jd u rdS | jjS )Nz`ConnectionClosed.reason is deprecated; use Protocol.close_reason or ConnectionClosed.rcvd.reason )r7   r8   r9   r(   reasonr4   r%   r%   r&   r?      s   
zConnectionClosed.reasonr/   )r(   r)   r*   r)   r+   r,   r-   r.   r-   r3   )r-   r6   )	r!   r"   r#   r$   r2   r5   propertyr=   r?   r%   r%   r%   r&   r   M   s    

r   c                   @  r   )r   z
    Like :exc:`ConnectionClosed`, when the connection terminated properly.

    A close code with code 1000 (OK) or 1001 (going away) or without a code was
    received and sent.

    Nr    r%   r%   r%   r&   r      r'   r   c                   @  r   )r   z
    Like :exc:`ConnectionClosed`, when the connection terminated with an error.

    A close frame with a code other than 1000 (OK) or 1001 (going away) was
    received or sent, or the closing handshake didn't complete properly.

    Nr    r%   r%   r%   r&   r      r'   r   c                   @  s$   e Zd ZdZdddZdd	d
ZdS )r	   zL
    Raised when connecting to a URI that isn't a valid WebSocket URI.

    urir3   msgr-   r.   c                 C     || _ || _d S r/   rB   rC   )r1   rB   rC   r%   r%   r&   r2         
zInvalidURI.__init__c                 C  s   | j  d| j S )Nz isn't a valid URI: rE   r4   r%   r%   r&   r5         zInvalidURI.__str__N)rB   r3   rC   r3   r-   r.   r@   r!   r"   r#   r$   r2   r5   r%   r%   r%   r&   r	          
r	   c                   @  r   )r
   zM
    Base class for exceptions raised when the opening handshake fails.

    Nr    r%   r%   r%   r&   r
      r'   r
   c                   @  r   )r   z
    Raised when a handshake request or response breaks a security rule.

    Security limits can be configured with :doc:`environment variables
    <../reference/variables>`.

    Nr    r%   r%   r%   r&   r      r'   r   c                   @  s$   e Zd ZdZdddZdd	d
ZdS )r   zJ
    Raised when a handshake response rejects the WebSocket upgrade.

    responsehttp11.Responser-   r.   c                 C  
   || _ d S r/   )rJ   )r1   rJ   r%   r%   r&   r2         
zInvalidStatus.__init__r3   c                 C  s   d| j jdS )Nz+server rejected WebSocket connection: HTTP d)rJ   status_coder4   r%   r%   r&   r5      s   zInvalidStatus.__str__N)rJ   rK   r-   r.   r@   rH   r%   r%   r%   r&   r          
r   c                   @  s&   e Zd ZdZddd	d
ZdddZdS )r   zK
    Raised when an HTTP header doesn't have a valid format or value.

    Nnamer3   value
str | Noner-   r.   c                 C  rD   r/   rQ   rR   r1   rQ   rR   r%   r%   r&   r2      rF   zInvalidHeader.__init__c                 C  sD   | j d u rd| j dS | j dkrd| j dS d| j d| j  S )Nzmissing z headerr>   zempty zinvalid z	 header: rR   rQ   r4   r%   r%   r&   r5      s
   

zInvalidHeader.__str__r/   rQ   r3   rR   rS   r-   r.   r@   rH   r%   r%   r%   r&   r      s    r   c                      s"   e Zd ZdZd fd
dZ  ZS )r   z
    Raised when an HTTP header cannot be parsed.

    The format of the header doesn't match the grammar for that header.

    rQ   r3   errorheaderposr6   r-   r.   c                   s"   t  || d| d|  d S )Nz at z in superr2   )r1   rQ   rX   rY   rZ   	__class__r%   r&   r2      s   "zInvalidHeaderFormat.__init__)
rQ   r3   rX   r3   rY   r3   rZ   r6   r-   r.   r!   r"   r#   r$   r2   __classcell__r%   r%   r]   r&   r      s    r   c                   @  r   )r   z
    Raised when an HTTP header has a wrong value.

    The format of the header is correct but the value isn't acceptable.

    Nr    r%   r%   r%   r&   r      r'   r   c                      s"   e Zd ZdZd fddZ  ZS )	r   zD
    Raised when the Origin header in a request isn't allowed.

    originrS   r-   r.   c                   s   t  d| d S )NOriginr[   )r1   ra   r]   r%   r&   r2      rG   zInvalidOrigin.__init__)ra   rS   r-   r.   r_   r%   r%   r]   r&   r      s    r   c                   @  r   )r   zF
    Raised when the Upgrade or Connection header isn't correct.

    Nr    r%   r%   r%   r&   r     r'   r   c                   @  r   )r   zG
    Raised when negotiating an extension or a subprotocol fails.

    Nr    r%   r%   r%   r&   r     r'   r   c                   @  $   e Zd ZdZdddZddd	Zd
S )r   zK
    Raised when a parameter name is repeated in an extension header.

    rQ   r3   r-   r.   c                 C  rL   r/   rQ   r1   rQ   r%   r%   r&   r2     rM   zDuplicateParameter.__init__c                 C     d| j  S )Nzduplicate parameter: rd   r4   r%   r%   r&   r5        zDuplicateParameter.__str__NrQ   r3   r-   r.   r@   rH   r%   r%   r%   r&   r     rP   r   c                   @  rc   )r   zJ
    Raised when a parameter name in an extension header is invalid.

    rQ   r3   r-   r.   c                 C  rL   r/   rd   re   r%   r%   r&   r2   %  rM   zInvalidParameterName.__init__c                 C  rf   )Nzinvalid parameter name: rd   r4   r%   r%   r&   r5   (  rg   zInvalidParameterName.__str__Nrh   r@   rH   r%   r%   r%   r&   r     rP   r   c                   @  s$   e Zd ZdZddd	Zdd
dZdS )r   zK
    Raised when a parameter value in an extension header is invalid.

    rQ   r3   rR   rS   r-   r.   c                 C  rD   r/   rT   rU   r%   r%   r&   r2   2  rF   zInvalidParameterValue.__init__c                 C  s@   | j d u rd| j S | j dkrd| j S d| j d| j  S )Nzmissing value for parameter r>   zempty value for parameter zinvalid value for parameter z: rV   r4   r%   r%   r&   r5   6  s
   

zInvalidParameterValue.__str__NrW   r@   rH   r%   r%   r%   r&   r   ,  rI   r   c                   @  r   )r   a  
    Raised when receiving or sending a frame that breaks the protocol.

    The Sans-I/O implementation raises this exception when:

    * receiving or sending a frame that contains invalid data;
    * receiving or sending an invalid sequence of frames.

    Nr    r%   r%   r%   r&   r   ?  r'   r   c                   @  r   )r   aU  
    Raised when parsing a frame with a payload that exceeds the maximum size.

    The Sans-I/O layer uses this exception internally. It doesn't bubble up to
    the I/O layer.

    The :meth:`~websockets.extensions.Extension.decode` method of extensions
    must raise :exc:`PayloadTooBig` if decoding a frame would exceed the limit.

    Nr    r%   r%   r%   r&   r   K  r'   r   c                   @  r   )r   a  
    Raised when sending a frame is forbidden in the current state.

    Specifically, the Sans-I/O layer raises this exception when:

    * sending a data frame to a connection in a state other
      :attr:`~websockets.protocol.State.OPEN`;
    * sending a control frame to a connection in a state other than
      :attr:`~websockets.protocol.State.OPEN` or
      :attr:`~websockets.protocol.State.CLOSING`.

    Nr    r%   r%   r%   r&   r   X  r'   r   c                   @  r   )r   z
    Raised when receiving or sending messages concurrently.

    WebSocket is a connection-oriented protocol. Reads must be serialized; so
    must be writes. However, reading and writing concurrently is possible.

    Nr    r%   r%   r%   r&   r   g  r'   r   )r   r   r   r   z.legacy.exceptions)r   r   r   r   r   )aliases)r:   http11)+r$   
__future__r   typingr7   importsr   __all__	Exceptionr   r   r   r   r	   r
   r   r   r   r   r   r   r   r   r   r   r   r   r   AssertionErrorr   RuntimeErrorr   TYPE_CHECKINGlegacy.exceptionsr   r   r   r   r   globalsr>   r:   rj   r%   r%   r%   r&   <module>   sP    B


	
