Hacked By AnonymousFox

Current Path : /opt/alt/python39/lib64/python3.9/asyncio/__pycache__/
Upload File :
Current File : //opt/alt/python39/lib64/python3.9/asyncio/__pycache__/futures.cpython-39.pyc

a

���e�6�@sdZdZddlZddlZddlZddlZddlmZddl	m
Z
ddl	mZddl	mZdd	l	m
Z
e
jZe
jZe
jZe
jZejdZGd
d�d�ZeZdd
�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�dd�ZzddlZWney�Yn0ejZZdS)z.A Future class similar to the one in PEP 3148.)�Future�wrap_future�isfuture�N)�GenericAlias�)�base_futures)�events)�
exceptions)�format_helpersc@s�eZdZdZeZdZdZdZdZ	dZ
dZdZdZ
dd�dd�ZejZdd�Zd	d
�Zee�Zedd��Zejd
d��Zdd�Zdd�Zd)dd�Zdd�Zdd�Zdd�Zdd�Z dd�Z!dd�dd �Z"d!d"�Z#d#d$�Z$d%d&�Z%d'd(�Z&e&Z'dS)*ra,This class is *almost* compatible with concurrent.futures.Future.

    Differences:

    - This class is not thread-safe.

    - result() and exception() do not take a timeout argument and
      raise an exception when the future isn't done yet.

    - Callbacks registered with add_done_callback() are always called
      via the event loop's call_soon().

    - This class is not compatible with the wait() and as_completed()
      methods in the concurrent.futures package.

    (In Python 3.4 or later we may be able to unify the implementations.)
    NF��loopcCs@|durt��|_n||_g|_|j��r<t�t�d��|_	dS)z�Initialize the future.

        The optional event_loop argument allows explicitly setting the event
        loop object used by the future. If it's not provided, the future uses
        the default event loop.
        Nr)
r�get_event_loop�_loop�
_callbacksZ	get_debugr
�
extract_stack�sys�	_getframe�_source_traceback��selfr�r�4/opt/alt/python39/lib64/python3.9/asyncio/futures.py�__init__Hs
�zFuture.__init__cCsd�|jjd�|����S)Nz<{} {}>� )�format�	__class__�__name__�join�
_repr_info�rrrr�__repr__Zs
�zFuture.__repr__cCsF|js
dS|j}|jj�d�||d�}|jr6|j|d<|j�|�dS)Nz exception was never retrieved)�message�	exception�futureZsource_traceback)�_Future__log_traceback�
_exceptionrrrrZcall_exception_handler)r�exc�contextrrr�__del__^s�
zFuture.__del__cCs|jS�N)r$rrrr�_log_tracebackpszFuture._log_tracebackcCst|�rtd��d|_dS)Nz'_log_traceback can only be set to FalseF)�bool�
ValueErrorr$)r�valrrrr*tscCs|j}|durtd��|S)z-Return the event loop the Future is bound to.Nz!Future object is not initialized.)r�RuntimeErrorrrrr�get_loopzszFuture.get_loopcCs2|jdurt��}nt�|j�}|j|_d|_|S)z�Create the CancelledError to raise if the Future is cancelled.

        This should only be called once when handling a cancellation since
        it erases the saved context exception value.
        N)�_cancel_messager	�CancelledError�_cancelled_exc�__context__�rr&rrr�_make_cancelled_error�s

zFuture._make_cancelled_errorcCs,d|_|jtkrdSt|_||_|��dS)z�Cancel the future and schedule callbacks.

        If the future is already done or cancelled, return False.  Otherwise,
        change the future's state to cancelled, schedule the callbacks and
        return True.
        FT)r$�_state�_PENDING�
_CANCELLEDr0�_Future__schedule_callbacks)r�msgrrr�cancel�s
z
Future.cancelcCsH|jdd�}|sdSg|jdd�<|D]\}}|jj|||d�q(dS)z�Internal: Ask the event loop to call all callbacks.

        The callbacks are scheduled to be called as soon as possible. Also
        clears the callback list.
        N�r')rr�	call_soon)rZ	callbacks�callback�ctxrrrZ__schedule_callbacks�szFuture.__schedule_callbackscCs
|jtkS)z(Return True if the future was cancelled.)r6r8rrrr�	cancelled�szFuture.cancelledcCs
|jtkS)z�Return True if the future is done.

        Done means either that a result / exception are available, or that the
        future was cancelled.
        )r6r7rrrr�done�szFuture.donecCsF|jtkr|��}|�|jtkr*t�d��d|_|jdur@|j�|jS)aReturn the result this future represents.

        If the future has been cancelled, raises CancelledError.  If the
        future's result isn't yet available, raises InvalidStateError.  If
        the future is done and has an exception set, this exception is raised.
        zResult is not ready.FN)	r6r8r5�	_FINISHEDr	�InvalidStateErrorr$r%�_resultr4rrr�result�s



z
Future.resultcCs6|jtkr|��}|�|jtkr*t�d��d|_|jS)a&Return the exception that was set on this future.

        The exception (or None if no exception was set) is returned only if
        the future is done.  If the future has been cancelled, raises
        CancelledError.  If the future isn't done yet, raises
        InvalidStateError.
        zException is not set.F)r6r8r5rBr	rCr$r%r4rrrr"�s


zFuture.exceptionr<cCsB|jtkr|jj|||d�n |dur.t��}|j�||f�dS)z�Add a callback to be run when the future becomes done.

        The callback is called with a single argument - the future object. If
        the future is already done when this is called, the callback is
        scheduled with call_soon.
        r<N)r6r7rr=�contextvarsZcopy_contextr�append)r�fnr'rrr�add_done_callback�s

zFuture.add_done_callbackcs<�fdd�|jD�}t|j�t|�}|r8||jdd�<|S)z}Remove all instances of a callback from the "call when done" list.

        Returns the number of callbacks removed.
        cs g|]\}}|�kr||f�qSrr)�.0�fr?�rHrr�
<listcomp>�s�z/Future.remove_done_callback.<locals>.<listcomp>N)r�len)rrHZfiltered_callbacksZ
removed_countrrLr�remove_done_callback�s
�zFuture.remove_done_callbackcCs8|jtkr t�|j�d|����||_t|_|��dS)z�Mark the future done and set its result.

        If the future is already done when this method is called, raises
        InvalidStateError.
        �: N)r6r7r	rCrDrBr9)rrErrr�
set_result�s

zFuture.set_resultcCsb|jtkr t�|j�d|����t|t�r0|�}t|�turDtd��||_t	|_|�
�d|_dS)z�Mark the future done and set an exception.

        If the future is already done when this method is called, raises
        InvalidStateError.
        rPzPStopIteration interacts badly with generators and cannot be raised into a FutureTN)r6r7r	rC�
isinstance�type�
StopIteration�	TypeErrorr%rBr9r$)rr"rrr�
set_exceptions

zFuture.set_exceptionccs,|��sd|_|V|��s$td��|��S)NTzawait wasn't used with future)rA�_asyncio_future_blockingr.rErrrr�	__await__szFuture.__await__)N)(r�
__module__�__qualname__�__doc__r7r6rDr%rrr0r2rWr$rrZ_future_repr_inforr r(�classmethodr�__class_getitem__�propertyr*�setterr/r5r;r9r@rArEr"rIrOrQrVrX�__iter__rrrrrsB


rcCs*z
|j}WntyYn0|�S|jSr))r/�AttributeErrorr)�futr/rrr�	_get_loop(s
rccCs|��rdS|�|�dS)z?Helper setting the result only if the future was not cancelled.N)r@rQ)rbrErrr�_set_result_unless_cancelled4srdcCsXt|�}|tjjur tj|j�S|tjjur8tj|j�S|tjjurPtj|j�S|SdSr))rS�
concurrent�futuresr1r	�args�TimeoutErrorrC)r&Z	exc_classrrr�_convert_future_exc;sricCs^|��sJ�|��r|��|��s(dS|��}|durH|�t|��n|��}|�|�dS)z8Copy state from a future to a concurrent.futures.Future.N)	rAr@r;Zset_running_or_notify_cancelr"rVrirErQ)re�sourcer"rErrr�_set_concurrent_future_stateGsrkcCsl|��sJ�|��rdS|��r$J�|��r6|��n2|��}|durV|�t|��n|��}|�|�dS)zqInternal helper to copy state from another Future.

    The other Future may be a concurrent.futures.Future.
    N)rAr@r;r"rVrirErQ)rj�destr"rErrr�_copy_future_stateVs
rmcs�t��st�tjj�std��t��s<t�tjj�s<td��t��rLt��nd�t��r`t��nd�dd�����fdd�}����fdd	�}��|���|�dS)
aChain two futures so that when one completes, so does the other.

    The result (or exception) of source will be copied to destination.
    If destination is cancelled, source gets cancelled too.
    Compatible with both asyncio.Future and concurrent.futures.Future.
    z(A future is required for source argumentz-A future is required for destination argumentNcSs"t|�rt||�n
t||�dSr))rrmrk)r#�otherrrr�
_set_statezsz!_chain_future.<locals>._set_statecs2|��r.�dus��ur"���n���j�dSr))r@r;�call_soon_threadsafe)�destination)�	dest_looprj�source_looprr�_call_check_cancel�s
z)_chain_future.<locals>._call_check_cancelcsJ���r�dur���rdS�dus,��ur8��|�n����|�dSr))r@Z	is_closedrp)rj)rorrrqrsrr�_call_set_state�s��z&_chain_future.<locals>._call_set_state)rrRrerfrrUrcrI)rjrqrtrur)rorrrqrjrsr�
_chain_futurejs��	
rvrcCsNt|�r|St|tjj�s(Jd|����|dur8t��}|��}t||�|S)z&Wrap concurrent.futures.Future object.z+concurrent.futures.Future is expected, got N)	rrRrerfrrr
Z
create_futurerv)r#rZ
new_futurerrrr�s�
r) r[�__all__Zconcurrent.futuresrerFZloggingr�typesr�rrr	r
rr7r8rB�DEBUGZSTACK_DEBUGrZ	_PyFuturercrdrirkrmrvrZ_asyncio�ImportErrorZ_CFuturerrrr�<module>s>
	*


Hacked By AnonymousFox1.0, Coded By AnonymousFox