o
    j                     @  s   U d dl mZ dZd dlZd dlmZ d dlmZ d dlm	Z	m
Z
mZmZmZmZmZ d dlmZ dd	lmZ e	r?dd
lmZ edZedZd$ddZd$ddZd$ddZeedddG dd dZd%ddZe Zded< G dd dejZ G d d! d!ee Z!G d"d# d#ee Z"dS )&    )annotations)EventLoopTokenRunvarTokenRunVar
checkpointcheckpoint_if_cancelledcancel_shielded_checkpointcurrent_tokenN)	dataclass)TracebackType)TYPE_CHECKINGAnyGenericLiteralTypeVarfinaloverload)WeakKeyDictionary   )get_async_backend)AsyncBackendTDreturnNonec                        t   I dH  dS )z
    Check for cancellation and allow the scheduler to switch to another task.

    Equivalent to (but more efficient than)::

        await checkpoint_if_cancelled()
        await cancel_shielded_checkpoint()

    .. versionadded:: 3.0

    N)r   r    r   r   L/home/djax/ivt_ai_plugin/venv/lib/python3.10/site-packages/anyio/lowlevel.pyr         r   c                     r   )z
    Enter a checkpoint if the enclosing cancel scope has been cancelled.

    This does not allow the scheduler to switch to a different task.

    .. versionadded:: 3.0

    N)r   r   r   r   r   r   r   +   s   	r   c                     r   )z
    Allow the scheduler to switch to another task but without checking for cancellation.

    Equivalent to (but potentially more efficient than)::

        with CancelScope(shield=True):
            await checkpoint()

    .. versionadded:: 3.0

    N)r   r   r   r   r   r   r   7   r   r   TF)frozenreprc                   @  s"   e Zd ZU dZded< ded< dS )r   za
    An opaque object that holds a reference to an event loop.

    .. versionadded:: 4.11.0
    ztype[AsyncBackend]backend_classobjectnative_tokenN)__name__
__module____qualname____doc____annotations__r   r   r   r   r   F   s   
 r   c                  C  s   t  } |  }t| |S )z
    Return a token object that can be used to call code in the current event loop from
    another thread.

    :raises NoEventLoopError: if no supported asynchronous event loop is running in the
        current thread

    .. versionadded:: 4.11.0

    )r   r	   r   )r!   	raw_tokenr   r   r   r	   S   s   
r	   z1WeakKeyDictionary[object, dict[RunVar[Any], Any]]	_run_varsc                   @  s   e Zd Ze ZdS )_NoValueSetN)r$   r%   r&   enumautoNO_VALUE_SETr   r   r   r   r+   f   s    r+   c                   @  s2   e Zd ZdZdZdddZdddZdddZdS )r   z
    A token that can be used to restore a :class:`RunVar` to its previous value.

    Returned by :meth:`RunVar.set`. Can be used as a context manager to automatically
    reset the variable on exit, or passed directly to :meth:`RunVar.reset`.
    _var_value	_redeemedvar	RunVar[T]value%T | Literal[_NoValueSet.NO_VALUE_SET]c                 C  s   || _ || _d| _d S )NFr/   )selfr3   r5   r   r   r   __init__t   s   
zRunvarToken.__init__r   RunvarToken[T]c                 C  s   | S Nr   r7   r   r   r   	__enter__y      zRunvarToken.__enter__exc_typetype[BaseException] | Noneexc_valBaseException | Noneexc_tbTracebackType | Noner   c                 C  s   | j |  d S r:   )r0   reset)r7   r>   r@   rB   r   r   r   __exit__|   s   zRunvarToken.__exit__N)r3   r4   r5   r6   )r   r9   )r>   r?   r@   rA   rB   rC   r   r   )r$   r%   r&   r'   	__slots__r8   r<   rE   r   r   r   r   r   j   s    

r   c                   @  s   e Zd ZU dZdZejZded< efd"d	d
Ze	d#ddZ
ed$ddZed%ddZefd&ddZd'ddZd(ddZd)dd Zd!S )*r   a  
    Like a :class:`~contextvars.ContextVar`, except scoped to the running event loop.

    Can be used as a context manager, Just like :class:`~contextvars.ContextVar`, that
    will reset the variable to its previous value when the context block is exited.
    _name_defaultz!Literal[_NoValueSet.NO_VALUE_SET]r.   namestrdefaultr6   c                 C  s   || _ || _d S r:   rG   )r7   rJ   rL   r   r   r   r8      s   
zRunVar.__init__r   dict[RunVar[T], T]c                 C  s6   t  j}zt| W S  ty   i  }t|< | Y S w r:   )r	   r#   r*   KeyError)r7   r#   run_varsr   r   r   _current_vars   s   
zRunVar._current_varsr   T | Dc                 C     d S r:   r   r7   rL   r   r   r   get   r=   z
RunVar.getr   c                 C  rR   r:   r   r;   r   r   r   rT      r=   %D | Literal[_NoValueSet.NO_VALUE_SET]c                 C  sZ   z| j |  W S  ty#   |tjur| Y S | jtjur!| j Y S Y nw td| j d)a2  
        Return the current value of this run variable.

        :param default: a fallback value to return if no value has been set
        :return: the current value, the provided default, or the variable's own default
        :raises LookupError: if no value is set and no default is available

        zRun variable "z!" has no value and no default set)rP   rN   r   r.   rI   LookupErrorrH   rS   r   r   r   rT      s   

r5   r9   c                 C  s&   | j }t| || tj}||| < |S )z
        Set the value of this run variable for the current event loop.

        :param value: the new value
        :return: a token that can be used to restore the previous value

        )rP   r   rT   r   r.   )r7   r5   current_varstokenr   r   r   set   s   z
RunVar.setrX   r   c                 C  sb   |j | ur	td|jrtd|jtju r&z| j| = W n ty%   Y nw |j| j| < d|_dS )a  
        Restore this run variable to the value it held before the matching :meth:`set`.

        :param token: the token returned by :meth:`set`
        :raises ValueError: if the token belongs to a different :class:`RunVar` or the token
            has already been used

        z)This token does not belong to this RunVarz This token has already been usedTN)r0   
ValueErrorr2   r1   r+   r.   rP   rN   )r7   rX   r   r   r   rD      s   
	
zRunVar.resetc                 C  s   d| j dS )Nz<RunVar name=>)rH   r;   r   r   r   __repr__   s   zRunVar.__repr__N)rJ   rK   rL   r6   )r   rM   )rL   r   r   rQ   )r   r   )rL   rU   r   rQ   )r5   r   r   r9   )rX   r9   r   r   )r   rK   )r$   r%   r&   r'   rF   r+   r.   r(   r8   propertyrP   r   rT   rY   rD   r\   r   r   r   r   r      s"   
 

r   )r   r   )r   r   )#
__future__r   __all__r,   dataclassesr
   typesr   typingr   r   r   r   r   r   r   weakrefr   _core._eventloopr   abcr   r   r   r   r   r   r   r	   r*   r(   Enumr+   r   r   r   r   r   r   <module>   s.    
$




