U kgb3@sdZdZddlZddlZddlZddlZddlmZddlm Z ddlm Z ddlm Z ej Z ej Z ejZejZejdZGd d d ZeZd d Zd dZddZddZddZddZddddZz ddlZWnek rYn XejZZdS)z.A Future class similar to the one in PEP 3148.)Future wrap_futureisfutureN) base_futures)events) exceptions)format_helpersc@seZdZdZeZdZdZdZdZ dZ dZ ddddZ e jZddZd d Zed d 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 )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/r0rrrrdonesz Future.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 r5 contextvarsZ 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 sz/Future.remove_done_callback..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) r9AssertionErrorr8r3Zset_running_or_notify_cancelr!rOr`r>rJ)r\sourcer!r>rrr_set_concurrent_future_state/s rccCsl|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)rbdestr!r>rrr_copy_future_state>s   recststtjjstdts._set_statecs2|r.dkskr"n jdSr()r8r3call_soon_threadsafe) destination) dest_looprb source_looprr_call_check_cancelhs z)_chain_future.._call_check_cancelcsJrdk rrdSdks,kr8|n|dSr()r8Z is_closedrh)rb)rgrjrirkrr_call_set_stateos z&_chain_future.._call_set_state)rrKr\r]rrNrZrB)rbrirlrmr)rgrjrirbrkr _chain_futureRs   rnr 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_futurern)r"r Z new_futurerrrr|s r)rT__all__Zconcurrent.futuresr\r?Zloggingrrrrr rr0r1r;DEBUGZ STACK_DEBUGrZ _PyFuturerZr[r`rcrernrZ_asyncio ImportErrorZ_CFuturerrrrs:     q  *