Ë
    Õ±1h2  ã                  ó¨  — d Z ddlmZ ddlZddlmZ g d¢Z G d„ de«      Z G d	„ d
e«      Z	 G d„ de	«      Z
 G d„ de	«      Z G d„ de«      Z G d„ de«      Z G d„ de«      Z G d„ de«      Z G d„ de«      Z G d„ de«      Z G d„ de«      Z G d„ de«      Z G d„ d e«      Z G d!„ d"e«      Z G d#„ d$e«      Z G d%„ d&e«      Z G d'„ d(e«      Z G d)„ d*e«      Z G d+„ d,e«      Z G d-„ d.e«      Z G d/„ d0e«      Z G d1„ d2e«      Z G d3„ d4e«      Z G d5„ d6e«      Z G d7„ d8ee «      Z! G d9„ d:ee"«      Z#dd;l$m%Z%m&Z&  e e'«       d<d<d<d<d=œ¬>«       y)?aU  
:mod:`websockets.exceptions` defines the following hierarchy of exceptions.

* :exc:`WebSocketException`
    * :exc:`ConnectionClosed`
        * :exc:`ConnectionClosedOK`
        * :exc:`ConnectionClosedError`
    * :exc:`InvalidURI`
    * :exc:`InvalidProxy`
    * :exc:`InvalidHandshake`
        * :exc:`SecurityError`
        * :exc:`ProxyError`
            * :exc:`InvalidProxyMessage`
            * :exc:`InvalidProxyStatus`
        * :exc:`InvalidMessage`
        * :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ÚInvalidProxyÚInvalidHandshakeÚSecurityErrorÚ
ProxyErrorÚInvalidProxyMessageÚInvalidProxyStatusÚInvalidMessageÚInvalidStatusÚInvalidHeaderÚInvalidHeaderFormatÚInvalidHeaderValueÚInvalidOriginÚInvalidUpgradeÚNegotiationErrorÚDuplicateParameterÚInvalidParameterNameÚInvalidParameterValueÚProtocolErrorÚPayloadTooBigÚInvalidStateÚConcurrencyErrorc                  ó   — e Zd ZdZy)r   z?
    Base class for all exceptions defined by websockets.

    N©Ú__name__Ú
__module__Ú__qualname__Ú__doc__© ó    úS/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/websockets/exceptions.pyr   r   I   ó   „ òr'   r   c                  óV   — e Zd ZdZ	 d	 	 	 	 	 	 	 dd„Zd	d„Zed
d„«       Zed	d„«       Zy)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.

    Nc                óŒ   — || _         || _        || _        | j                  d u | j                   d u xs | j                  d u k(  sJ ‚y ©N©ÚrcvdÚsentÚrcvd_then_sent)Úselfr.   r/   r0   s       r(   Ú__init__zConnectionClosed.__init___   sK   € ð ˆŒ	ØˆŒ	Ø,ˆÔØ×#Ñ# tÐ+°·±¸dÐ1BÒ1WÀdÇiÁiÐSWÐFWÒXÐXÑXr'   c                ó  — | j                   €| j                  €yd| j                  › d�S | j                  €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 r-   ©r1   s    r(   Ú__str__zConnectionClosed.__str__j   s‹   € Ø�9‰9ÐØ�y‰yÐ Ø8à˜tŸy™y˜kÐ)BÐCÐCà�y‰yÐ Ø" 4§9¡9 +Ð-BÐCÐCà×&Ò&Ø& t§y¡y k°¸d¿i¹i¸[ÐIÐIà" 4§9¡9 +Ð-=¸d¿i¹i¸[ÐIÐIr'   c                ó®   — t        j                  dt        «       | j                  €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   s    r(   r=   zConnectionClosed.code{   sC   € ä�‰ðDäô	
ð
 �9‰9ÐÜ×#Ñ#×4Ñ4Ð4Ø�y‰y�~‰~Ðr'   c                ó|   — t        j                  dt        «       | j                  €y| j                  j                  S )Nz`ConnectionClosed.reason is deprecated; use Protocol.close_reason or ConnectionClosed.rcvd.reasonÚ )r7   r8   r9   r.   Úreasonr4   s    r(   r@   zConnectionClosed.reason†   s6   € ä�‰ðHäô	
ð
 �9‰9ÐØØ�y‰y×ÑÐr'   r,   )r.   úframes.Close | Noner/   rA   r0   zbool | NoneÚreturnÚNone©rB   Ústr)rB   Úint)	r"   r#   r$   r%   r2   r5   Úpropertyr=   r@   r&   r'   r(   r   r   P   sj   „ ñð$ '+ð		Yà!ð	Yð "ð	Yð $ð		Yð
 
ó	YóJð" òó ðð ò ó ñ r'   r   c                  ó   — e Zd ZdZy)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                  ó   — e Zd ZdZy)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	   œ   rI   r'   r	   c                  ó    — e Zd ZdZdd„Zdd„Zy)r
   zL
    Raised when connecting to a URI that isn't a valid WebSocket URI.

    c                ó    — || _         || _        y r,   ©ÚuriÚmsg)r1   rN   rO   s      r(   r2   zInvalidURI.__init__¬   s   € ØˆŒØˆ�r'   c                ó8   — | j                   › d| j                  › �S )Nz isn't a valid URI: rM   r4   s    r(   r5   zInvalidURI.__str__°   s   € Ø—(‘(�Ð/°·±¨zÐ:Ð:r'   N)rN   rE   rO   rE   rB   rC   rD   ©r"   r#   r$   r%   r2   r5   r&   r'   r(   r
   r
   ¦   s   „ ñó
ô;r'   r
   c                  ó    — e Zd ZdZdd„Zdd„Zy)r   z?
    Raised when connecting via a proxy that isn't valid.

    c                ó    — || _         || _        y r,   ©ÚproxyrO   )r1   rU   rO   s      r(   r2   zInvalidProxy.__init__º   s   € ØˆŒ
Øˆ�r'   c                ó8   — | j                   › d| j                  › �S )Nz isn't a valid proxy: rT   r4   s    r(   r5   zInvalidProxy.__str__¾   s   € Ø—*‘*�Ð3°D·H±H°:Ð>Ð>r'   N)rU   rE   rO   rE   rB   rC   rD   rQ   r&   r'   r(   r   r   ´   s   „ ñó
ô?r'   r   c                  ó   — e Zd ZdZy)r   zM
    Base class for exceptions raised when the opening handshake fails.

    Nr!   r&   r'   r(   r   r   Â   r)   r'   r   c                  ó   — e Zd ZdZy)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   É   rI   r'   r   c                  ó   — e Zd ZdZy)r   z5
    Raised when failing to connect to a proxy.

    Nr!   r&   r'   r(   r   r   Ó   r)   r'   r   c                  ó   — e Zd ZdZy)r   z;
    Raised when an HTTP proxy response is malformed.

    Nr!   r&   r'   r(   r   r   Ú   r)   r'   r   c                  ó    — e Zd ZdZdd„Zdd„Zy)r   z<
    Raised when an HTTP proxy rejects the connection.

    c                ó   — || _         y r,   ©Úresponse©r1   r^   s     r(   r2   zInvalidProxyStatus.__init__ç   ó	   € Ø ˆ�r'   c                ó6   — d| j                   j                  d›�S )Nz proxy rejected connection: HTTP Úd©r^   Ústatus_coder4   s    r(   r5   zInvalidProxyStatus.__str__ê   s   € Ø1°$·-±-×2KÑ2KÈAÐ1NÐOÐOr'   N©r^   zhttp11.ResponserB   rC   rD   rQ   r&   r'   r(   r   r   á   s   „ ñó
!ôPr'   r   c                  ó   — e Zd ZdZy)r   zD
    Raised when a handshake request or response is malformed.

    Nr!   r&   r'   r(   r   r   î   r)   r'   r   c                  ó    — e Zd ZdZdd„Zdd„Zy)r   zJ
    Raised when a handshake response rejects the WebSocket upgrade.

    c                ó   — || _         y r,   r]   r_   s     r(   r2   zInvalidStatus.__init__û   r`   r'   c                ó6   — d| j                   j                  d›�S )Nz+server rejected WebSocket connection: HTTP rb   rc   r4   s    r(   r5   zInvalidStatus.__str__þ   s   € à9¸$¿-¹-×:SÑ:SÐTUÐ9VÐWð	
r'   Nre   rD   rQ   r&   r'   r(   r   r   õ   s   „ ñó
!ô
r'   r   c                  ó"   — e Zd ZdZddd„Zdd„Zy)r   zK
    Raised when an HTTP header doesn't have a valid format or value.

    Nc                ó    — || _         || _        y r,   ©ÚnameÚvalue©r1   rm   rn   s      r(   r2   zInvalidHeader.__init__
  ó   € ØˆŒ	Øˆ�
r'   c                ó°   — | j                   €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: ©rn   rm   r4   s    r(   r5   zInvalidHeader.__str__  sY   € Ø�:‰:ÐØ˜dŸi™i˜[¨Ð0Ð0Ø�Z‰Z˜2ÒØ˜DŸI™I˜; gÐ.Ð.à˜dŸi™i˜[¨	°$·*±*°Ð>Ð>r'   r,   ©rm   rE   rn   ú
str | NonerB   rC   rD   rQ   r&   r'   r(   r   r     s   „ ñô
ô?r'   r   c                  ó$   ‡ — e Zd ZdZdˆ fd„Zˆ x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.

    c                ó6   •— t         ‰| �  ||› d|› d|› �«       y )Nz at z in ©Úsuperr2   )r1   rm   ÚerrorÚheaderÚposÚ	__class__s        €r(   r2   zInvalidHeaderFormat.__init__  s#   ø€ Ü‰Ñ˜ % ¨¨S¨E°°f°XÐ>Õ?r'   )
rm   rE   ry   rE   rz   rE   r{   rF   rB   rC   ©r"   r#   r$   r%   r2   Ú__classcell__©r|   s   @r(   r   r     s   ø„ ñ÷@ñ @r'   r   c                  ó   — e Zd ZdZy)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   #  s   „ òr'   r   c                  ó$   ‡ — e Zd ZdZdˆ fd„Zˆ xZS )r   zD
    Raised when the Origin header in a request isn't allowed.

    c                ó&   •— t         ‰| �  d|«       y )NÚOriginrw   )r1   Úoriginr|   s     €r(   r2   zInvalidOrigin.__init__2  s   ø€ Ü‰Ñ˜ 6Õ*r'   )r„   rt   rB   rC   r}   r   s   @r(   r   r   ,  s   ø„ ñ÷
+ñ +r'   r   c                  ó   — e Zd ZdZy)r   zF
    Raised when the Upgrade or Connection header isn't correct.

    Nr!   r&   r'   r(   r   r   6  r)   r'   r   c                  ó   — e Zd ZdZy)r   zG
    Raised when negotiating an extension or a subprotocol fails.

    Nr!   r&   r'   r(   r   r   =  r)   r'   r   c                  ó    — e Zd ZdZdd„Zdd„Zy)r   zK
    Raised when a parameter name is repeated in an extension header.

    c                ó   — || _         y r,   ©rm   ©r1   rm   s     r(   r2   zDuplicateParameter.__init__J  ó	   € Øˆ�	r'   c                ó    — d| j                   › �S )Nzduplicate parameter: r‰   r4   s    r(   r5   zDuplicateParameter.__str__M  s   € Ø& t§y¡y kÐ2Ð2r'   N©rm   rE   rB   rC   rD   rQ   r&   r'   r(   r   r   D  s   „ ñó
ô3r'   r   c                  ó    — e Zd ZdZdd„Zdd„Zy)r   zJ
    Raised when a parameter name in an extension header is invalid.

    c                ó   — || _         y r,   r‰   rŠ   s     r(   r2   zInvalidParameterName.__init__W  r‹   r'   c                ó    — d| j                   › �S )Nzinvalid parameter name: r‰   r4   s    r(   r5   zInvalidParameterName.__str__Z  s   € Ø)¨$¯)©)¨Ð5Ð5r'   Nr�   rD   rQ   r&   r'   r(   r   r   Q  s   „ ñó
ô6r'   r   c                  ó    — e Zd ZdZdd„Zdd„Zy)r   zK
    Raised when a parameter value in an extension header is invalid.

    c                ó    — || _         || _        y r,   rl   ro   s      r(   r2   zInvalidParameterValue.__init__d  rp   r'   c                ó¬   — | j                   €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: rr   r4   s    r(   r5   zInvalidParameterValue.__str__h  sU   € Ø�:‰:ÐØ1°$·)±)°Ð=Ð=Ø�Z‰Z˜2ÒØ/°·	±	¨{Ð;Ð;à1°$·)±)°¸B¸t¿z¹z¸lÐKÐKr'   Nrs   rD   rQ   r&   r'   r(   r   r   ^  s   „ ñó
ôLr'   r   c                  ó   — e Zd ZdZy)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   q  s   „ òr'   r   c                  ó<   — e Zd ZdZ	 	 d	 	 	 	 	 	 	 dd„Zdd„Zd	d„Zy)
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.

    Nc                óÚ   — t        |t        «      r*|�J ‚|�J ‚t        j                  dt        «       || _        y d | _        || _        |€J ‚|| _        d | _        | j                  |«       y )NzMPayloadTooBig(message) is deprecated; change to PayloadTooBig(size, max_size))
Ú
isinstancerE   r7   r8   r9   ÚmessageÚsizeÚmax_sizeÚcur_sizeÚset_current_size)r1   Úsize_or_messagerš   r›   s       r(   r2   zPayloadTooBig.__init__‰  sy   € ô �o¤sÔ+ØÐ#Ð#Ð#ØÐ#Ð#Ð#Ü�M‰Mð:ä"ôð
 (7ˆD�LàˆDŒLØ$3ˆDŒIØÐ'Ð'Ð'Ø!)ˆDŒMØ(,ˆDŒMØ×!Ñ! (Õ+r'   c                óÜ   — | j                   �| j                   S d}| j                  �|d| j                  › d�z  }| j                  �|d| j                  › d�z  }|d| j                  › d�z  }|S )Nzframe zwith z bytes zafter reading zexceeds limit of z bytes)r˜   r™   r›   rš   )r1   r˜   s     r(   r5   zPayloadTooBig.__str__   sz   € Ø�<‰<Ð#Ø—<‘<ÐàˆGØ�y‰yÐ$Ø˜U 4§9¡9 +¨WÐ5Ñ5�Ø�}‰}Ð(Ø˜^¨D¯M©M¨?¸'ÐBÑB�ØÐ*¨4¯=©=¨/¸Ð@Ñ@ˆGØˆNr'   c                ó^   — | j                   �J ‚|�| xj                  |z  c_        || _         y y r,   )r›   rš   )r1   r›   s     r(   rœ   zPayloadTooBig.set_current_size¬  s2   € Ø�}‰}Ð$Ð$Ð$ØÐØ�MŠM˜XÑ%�MØ$ˆD�Mð  r'   )NN)r�   zint | None | strrš   ú
int | Noner›   r    rB   rC   rD   )r›   r    rB   rC   )r"   r#   r$   r%   r2   r5   rœ   r&   r'   r(   r   r   }  sD   „ ñ	ð  $Ø#ð	,à)ð,ð ð,ð ð	,ð
 
ó,ó.
ô%r'   r   c                  ó   — e Zd ZdZy)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   ³  s   „ òr'   r   c                  ó   — e Zd ZdZy)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   Â  rI   r'   r   )r:   Úhttp11z.legacy.exceptions)ÚAbortHandshakeÚInvalidStatusCodeÚRedirectHandshakeÚWebSocketProtocolError)Údeprecated_aliases)(r%   Ú
__future__r   r7   Úimportsr   Ú__all__Ú	Exceptionr   r   r   r	   r
   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   ÚAssertionErrorr   ÚRuntimeErrorr   r?   r:   r£   Úglobalsr&   r'   r(   ú<module>r°      s›  ðñ!õF #ã å  ò€ô<˜ô ô? Ð)ô ? ôDÐ)ô ôÐ,ô ô;Ð#ô ;ô?Ð%ô ?ôÐ)ô ôÐ$ô ôÐ!ô ô˜*ô ô
P˜ô 
PôÐ%ô ô
Ð$ô 
ô?Ð$ô ?ô&	@˜-ô 	@ô˜ô ô+�Mô +ô�]ô ôÐ'ô ô
3Ð)ô 
3ô
6Ð+ô 
6ôLÐ,ô Lô&	Ð&ô 	ô3%Ð&ô 3%ôlÐ% ~ô ôÐ)¨<ô ÷ ñ ÙƒIð /Ø1Ø1Ø"6ñö	r'   