%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/python3.8/asyncio/__pycache__/
Upload File :
Create Path :
Current File : //usr/local/lib/python3.8/asyncio/__pycache__/futures.cpython-38.pyc

U

pab3@sdZdZddlZddlZddlZddlZddlmZddlm	Z	ddlm
Z
ddlmZejZej
Z
ejZejZejdZGd	d
d
ZeZddZd
dZddZddZddZddZddddZzddlZWnek
rYnXejZZdS)z.A Future class similar to the one in PEP 3148.)Futurewrap_futureisfutureN)base_futures)events)
exceptions)format_helpersc@seZdZdZeZdZdZdZdZ	dZ
dZddddZe
jZddZd	d
ZeddZejd
dZddZddZddZddZddZddZddZddddZdd 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.)
    NFloopcCs@|dkrt|_n||_g|_|jr<ttd|_	dS)zInitialize 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)
rget_event_loop_loop
_callbacksZ	get_debugr	
extract_stacksys	_getframe_source_tracebackselfrr+/usr/local/lib/python3.8/asyncio/futures.py__init__Ds
zFuture.__init__cCsd|jjd|S)Nz<{} {}> )format	__class____name__join
_repr_inforrrr__repr__Vs
zFuture.__repr__cCsF|js
dS|j}|jjd||d}|jr6|j|d<|j|dS)Nz exception was never retrieved)message	exceptionfutureZsource_traceback)_Future__log_traceback
_exceptionrrrr
Zcall_exception_handler)rexccontextrrr__del__Zs
zFuture.__del__cCs|jSN)r#rrrr_log_tracebackjszFuture._log_tracebackcCst|rtdd|_dS)Nz'_log_traceback can only be set to FalseF)bool
ValueErrorr#)rvalrrrr)nscCs|j}|dkrtd|S)z-Return the event loop the Future is bound to.Nz!Future object is not initialized.)r
RuntimeErrorrrrrget_looptszFuture.get_loopcCs&d|_|jtkrdSt|_|dS)zCancel 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_callbacksrrrrcancel{s
z
Future.cancelcCsH|jdd}|sdSg|jdd<|D]\}}|jj|||dq(dS)zInternal: Ask the event loop to call all callbacks.

        The callbacks are scheduled to be called as soon as possible. Also
        clears the callback list.
        Nr&)rr
	call_soon)rZ	callbackscallbackctxrrrZ__schedule_callbacksszFuture.__schedule_callbackscCs
|jtkS)z(Return True if the future was cancelled.)r/r1rrrr	cancelledszFuture.cancelledcCs
|jtkS)zReturn True if the future is done.

        Done means either that a result / exception are available, or that the
        future was cancelled.
        )r/r0rrrrdoneszFuture.donecCs@|jtkrtj|jtkr$tdd|_|jdk	r:|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/r1rCancelledError	_FINISHEDInvalidStateErrorr#r$_resultrrrrresults



z
Future.resultcCs0|jtkrtj|jtkr$tdd|_|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/r1rr:r;r<r#r$rrrrr!s


zFuture.exceptionr4cCsB|jtkr|jj|||dn |dkr.t}|j||fdS)zAdd 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.
        r4N)r/r0r
r5contextvarsZcopy_contextrappend)rfnr&rrradd_done_callbacks

zFuture.add_done_callbackcs<fdd|jD}t|jt|}|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||fqSrr).0fr7rArr
<listcomp>sz/Future.remove_done_callback.<locals>.<listcomp>N)rlen)rrAZfiltered_callbacksZ
removed_countrrErremove_done_callbacks
zFuture.remove_done_callbackcCs8|jtkr t|jd|||_t|_|dS)zMark the future done and set its result.

        If the future is already done when this method is called, raises
        InvalidStateError.
        : N)r/r0rr<r=r;r2)rr>rrr
set_results

zFuture.set_resultcCsb|jtkr t|jd|t|tr0|}t|tkrDtd||_t	|_|
d|_dS)zMark the future done and set an exception.

        If the future is already done when this method is called, raises
        InvalidStateError.
        rIzPStopIteration interacts badly with generators and cannot be raised into a FutureTN)r/r0rr<
isinstancetype
StopIteration	TypeErrorr$r;r2r#)rr!rrr
set_exceptions

zFuture.set_exceptionccs,|sd|_|V|s$td|S)NTzawait wasn't used with future)r9_asyncio_future_blockingr-r>rrrr	__await__szFuture.__await__)"r
__module____qualname____doc__r0r/r=r$r
rrPr#rrZ_future_repr_inforrr'propertyr)setterr.r3r2r8r9r>r!rBrHrJrOrQ__iter__rrrrrs:

rcCs,z
|j}Wntk
rYnX|S|jSr()r.AttributeErrorr
)futr.rrr	_get_loops
rZcCs|rdS||dS)z?Helper setting the result only if the future was not cancelled.N)r8rJ)rYr>rrr_set_result_unless_cancelledsr[cCsXt|}|tjjkr tj|jS|tjjkr8tj|jS|tjjkrPtj|jS|SdSr()rL
concurrentfuturesr:rargsTimeoutErrorr<)r%Z	exc_classrrr_convert_future_exc#sr`cCs^|st|r||s(dS|}|dk	rH|t|n|}|	|dS)z8Copy state from a future to a concurrent.futures.Future.N)
r9AssertionErrorr8r3set_running_or_notify_cancelr!rOr`r>rJ)r\sourcer!r>rrr_set_concurrent_future_state/srdcCsl|st|rdS|r$t|r6|n2|}|dk	rV|t|n|}||dS)zqInternal helper to copy state from another Future.

    The other Future may be a concurrent.futures.Future.
    N)	r9rar8r3r!rOr`r>rJ)rcdestr!r>rrr_copy_future_state>s
rfcststtjjstdts<ttjjs<tdtrLtndtr`tndddfdd}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()rrfrd)r"otherrrr
_set_statebsz!_chain_future.<locals>._set_statecs2|r.dkskr"njdSr()r8r3call_soon_threadsafe)destination)	dest_looprcsource_looprr_call_check_cancelhs
z)_chain_future.<locals>._call_check_cancelcsJrdk	rrdSdks,kr8|n|dSr()r8Z	is_closedri)rc)rhrkrjrlrr_call_set_stateosz&_chain_future.<locals>._call_set_state)rrKr\r]rrNrZrB)rcrjrmrnr)rhrkrjrcrlr
_chain_futureRs	
ror
cCsNt|r|St|tjjs(td||dkr8t}|}t	|||S)z&Wrap concurrent.futures.Future object.z+concurrent.futures.Future is expected, got N)
rrKr\r]rrarrZ
create_futurero)r"rZ
new_futurerrrr|s
r)rT__all__concurrent.futuresr\r?loggingrrrrr	rr0r1r;DEBUGZSTACK_DEBUGrZ	_PyFuturerZr[r`rdrfrorZ_asyncioImportErrorZ_CFuturerrrr<module>s:
q*


Zerion Mini Shell 1.0