Hacked By AnonymousFox

Current Path : /proc/thread-self/root/proc/self/root/opt/alt/python37/lib64/python3.7/asyncio/__pycache__/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/opt/alt/python37/lib64/python3.7/asyncio/__pycache__/futures.cpython-37.pyc

B

� f2�@s�dZdZddlZddlZddlZddlZddlmZddlm	Z	ddlm
Z
ejZejZej
Z
ejZejZejZejZejdZGdd	�d	�ZeZd
d�Zdd
�Zdd�Zdd�Zdd�Zdd�dd�ZyddlZWnek
r�YnXejZZdS)z.A Future class similar to the one in PEP 3148.)�CancelledError�TimeoutError�InvalidStateError�Future�wrap_future�isfuture�N�)�base_futures)�events)�format_helpersc@s�eZdZdZeZdZdZdZdZ	dZ
dZdd�dd�Ze
jZdd�Zd	d
�Zedd��Zejd
d��Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�dd�Zdd �Zd!d"�Zd#d$�Zd%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@|dkrt��|_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/python37/lib64/python3.7/asyncio/futures.py�__init__Gs
zFuture.__init__cCsd�|jjd�|����S)Nz<{} {}>� )�format�	__class__�__name__�join�
_repr_info)rrrr�__repr__Ys
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_tracebackmszFuture._log_tracebackcCst|�rtd��d|_dS)Nz'_log_traceback can only be set to FalseF)�bool�
ValueErrorr")r�valrrrr'qscCs|j}|dkrtd��|S)z-Return the event loop the Future is bound to.Nz!Future object is not initialized.)r�RuntimeError)rrrrr�get_loopwszFuture.get_loopcCs&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�
_CANCELLED�_Future__schedule_callbacks)rrrr�cancel~s
z
Future.cancelcCsL|jdd�}|sdSg|jdd�<x"|D]\}}|jj|||d�q*WdS)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.)r-r/)rrrr�	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.
        )r-r.)rrrr�done�szFuture.donecCs<|jtkrt�|jtkr td��d|_|jdk	r6|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)r-r/r�	_FINISHEDrr"r#�_result)rrrr�result�s


z
Future.resultcCs,|jtkrt�|jtkr td��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)r-r/rr7rr"r#)rrrrr �s

zFuture.exception)r%cCsB|jtkr|jj|||d�n |dkr.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)r-r.rr2�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�fr4)r<rr�
<listcomp>�sz/Future.remove_done_callback.<locals>.<listcomp>N)r�len)rr<Zfiltered_callbacksZ
removed_countr)r<r�remove_done_callback�s

zFuture.remove_done_callbackcCs4|jtkrtd�|j|���||_t|_|��dS)z�Mark the future done and set its result.

        If the future is already done when this method is called, raises
        InvalidStateError.
        z{}: {!r}N)r-r.rrr8r7r0)rr9rrr�
set_result�s

zFuture.set_resultcCs^|jtkrtd�|j|���t|t�r,|�}t|�tkr@td��||_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.
        z{}: {!r}zPStopIteration interacts badly with generators and cannot be raised into a FutureTN)r-r.rr�
isinstance�type�
StopIteration�	TypeErrorr#r7r0r")rr rrr�
set_exception�s

zFuture.set_exceptionccs,|��sd|_|V|��s$td��|��S)NTzawait wasn't used with future)r6�_asyncio_future_blockingr+r9)rrrr�	__await__szFuture.__await__)"r�
__module__�__qualname__�__doc__r.r-r8r#rrrIr"rr	Z_future_repr_inforrr&�propertyr'�setterr,r1r0r5r6r9r r=rBrCrHrJ�__iter__rrrrr s6rcCs,y
|j}Wntk
rYnX|�S|jS)N)r,�AttributeErrorr)�futr,rrr�	_get_loops
rScCs|��rdS|�|�dS)z?Helper setting the result only if the future was not cancelled.N)r5rC)rRr9rrr�_set_result_unless_cancelledsrTcCsZ|��st�|��r|��|��s(dS|��}|dk	rD|�|�n|��}|�|�dS)z8Copy state from a future to a concurrent.futures.Future.N)	r6�AssertionErrorr5r1Zset_running_or_notify_cancelr rHr9rC)�
concurrent�sourcer r9rrr�_set_concurrent_future_state&srXcCsh|��st�|��rdS|��r$t�|��r6|��n.|��}|dk	rR|�|�n|��}|�|�dS)zqInternal helper to copy state from another Future.

    The other Future may be a concurrent.futures.Future.
    N)r6rUr5r1r rHr9rC)rW�destr r9rrr�_copy_future_state5s
rZcs�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||�dS)N)rrZrX)r!�otherrrr�
_set_stateYsz!_chain_future.<locals>._set_statecs2|��r.�dks��kr"���n���j�dS)N)r5r1�call_soon_threadsafe)�destination)�	dest_looprW�source_looprr�_call_check_cancel_s
z)_chain_future.<locals>._call_check_cancelcsJ���r�dk	r���rdS�dks,��kr8��|�n����|�dS)N)r5Z	is_closedr])rW)r\r_r^r`rr�_call_set_statefsz&_chain_future.<locals>._call_set_state)rrDrV�futuresrrGrSr=)rWr^rarbr)r\r_r^rWr`r�
_chain_futureIs

	
rd)rcCsNt|�r|St|tjj�s(td|����|dkr8t��}|��}t	||�|S)z&Wrap concurrent.futures.Future object.z+concurrent.futures.Future is expected, got N)
rrDrVrcrrUr
r
Z
create_futurerd)r!rZ
new_futurerrrrss
r)rM�__all__Zconcurrent.futuresrVr:Zloggingr�r	r
rrrrrr.r/r7�DEBUGZSTACK_DEBUGrZ	_PyFuturerSrTrXrZrdrZ_asyncio�ImportErrorZ_CFuturerrrr�<module>s<
q*


Hacked By AnonymousFox1.0, Coded By AnonymousFox