a DOg6@sdZdZddlZddlZddlZddlZddlmZddl m Z ddl m Z ddl m Z dd l m Z e jZe jZe jZe jZejdZGd d d ZeZd d ZddZddZddZddZddZddddZz ddlZWneyYn 0ejZZdS)z.A Future class similar to the one in PEP 3148.)Future wrap_futureisfutureN) GenericAlias) base_futures)events) exceptions)format_helpersc@seZdZdZeZdZdZdZdZ dZ dZ dZ dZ ddddZejZddZd d ZeeZed d Zejd d ZddZddZd)ddZddZddZddZddZ ddZ!dddd 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.) NFloopcCs@|durt|_n||_g|_|jr )format __class____name__join _repr_inforrrr__repr__Zs  zFuture.__repr__cCsF|js dS|j}|jjd||d}|jr6|j|d<|j|dS)Nz exception was never retrieved)message exceptionfutureZsource_traceback)_Future__log_traceback _exceptionrrrrZcall_exception_handler)rexccontextrrr__del__^s  zFuture.__del__cCs|jSN)r$rrrr_log_tracebackpszFuture._log_tracebackcCst|rtdd|_dS)Nz'_log_traceback can only be set to FalseF)bool ValueErrorr$)rvalrrrr*tscCs|j}|durtd|S)z-Return the event loop the Future is bound to.Nz!Future object is not initialized.)r RuntimeErrorrrrrget_loopzszFuture.get_loopcCs2|jdurt}n t|j}|j|_d|_|S)zCreate 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_errors    zFuture._make_cancelled_errorcCs,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 _CANCELLEDr0_Future__schedule_callbacks)rmsgrrrcancels 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.)r6r8rrrr 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. )r6r7rrrrdonesz Future.donecCsF|jtkr|}||jtkr*tdd|_|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%_resultr4rrrresults    z Future.resultcCs6|jtkr|}||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)r6r8r5rBr rCr$r%r4rrrr"s   zFuture.exceptionr<cCsB|jtkr|jj|||dn |dur.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. r<N)r6r7rr= 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).0fr?rHrr sz/Future.remove_done_callback..N)rlen)rrHZfiltered_callbacksZ removed_countrrLrremove_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)r6r7r rCrDrBr9)rrErrr set_results  zFuture.set_resultcCsb|jtkr t|jd|t|tr0|}t|turDtd||_t |_| d|_ dS)zMark 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 isinstancetype 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|jS|tjjur8tj|jS|tjjurPtj|jS|SdSr))rS concurrentfuturesr1r args TimeoutErrorrC)r&Z exc_classrrr_convert_future_exc;s      ricCsR|r||sdS|}|dur<|t|n|}||dS)z8Copy state from a future to a concurrent.futures.Future.N)r@r;Zset_running_or_notify_cancelr"rVrirErQ)resourcer"rErrr_set_concurrent_future_stateGsrkcCsT|r dS|r|n2|}|dur>|t|n|}||dS)zqInternal helper to copy state from another Future. The other Future may be a concurrent.futures.Future. N)r@r;r"rVrirErQ)rjdestr"rErrr_copy_future_stateVs rmcststtjjstdts._set_statecs2|r.dusur"n jdSr))r@r;call_soon_threadsafe) destination) dest_looprj source_looprr_call_check_cancels z)_chain_future.._call_check_cancelcsJrdurrdSdus,ur8|n|dSr))r@Z is_closedrp)rj)rorrrqrsrr_call_set_states z&_chain_future.._call_set_state)rrRrerfrrUrcrI)rjrqrtrur)rorrrqrjrsr _chain_futurejs   rvr cCs2t|r |S|durt}|}t|||S)z&Wrap concurrent.futures.Future object.N)rrr Z create_futurerv)r#r Z new_futurerrrrs r) r[__all__Zconcurrent.futuresrerFZloggingrtypesrrrr r rr7r8rBDEBUGZ STACK_DEBUGrZ _PyFuturercrdrirkrmrvrZ_asyncio ImportErrorZ_CFuturerrrrs>         *