Spade
Mini Shell
| Directory:~$ /lib64/python3.6/asyncio/__pycache__/ |
| [Home] [System Details] [Kill Me] |
3
\>�@s
dZddddddgZddlZddlZddlZddlZd d
lmZd dlm Z d dlm
Z
ejZejZej
Z
ejZejZejZejZejd ZGd
d�d�ZGdd�d�ZeZdd�Zdd�Zdd�Zdd�Zdd�dd�ZyddlZWnek
r�YnXejZZdS)z.A Future class similar to the one in PEP
3148.�CancelledError�TimeoutError�InvalidStateError�Future�wrap_future�isfuture�N�)�base_futures)�compat)�eventsc@s4eZdZdZdZdd�Zdd �Zd
d�Zdd
�ZdS)�_TracebackLoggera
Helper to log a traceback upon destruction if not cleared.
This solves a nasty problem with Futures and Tasks that have an
exception set: if nobody asks for the exception, the exception is
never logged. This violates the Zen of Python: 'Errors should
never pass silently. Unless explicitly silenced.'
However, we don't want to log the exception as soon as
set_exception() is called: if the calling code is written
properly, it will get the exception and handle it properly. But
we *do* want to log it if result() or exception() was never called
-- otherwise developers waste a lot of time wondering why their
buggy code fails silently.
An earlier attempt added a __del__() method to the Future class
itself, but this backfired because the presence of __del__()
prevents garbage collection from breaking cycles. A way out of
this catch-22 is to avoid having a __del__() method on the Future
class itself, but instead to have a reference to a helper object
with a __del__() method that logs the traceback, where we ensure
that the helper object doesn't participate in cycles, and only the
Future has a reference to it.
The helper object is added when set_exception() is called. When
the Future is collected, and the helper is present, the helper
object is also collected, and its __del__() method will log the
traceback. When the Future's result() or exception() method is
called (and a helper object is present), it removes the helper
object, after calling its clear() method to prevent it from
logging.
One downside is that we do a fair amount of work to extract the
traceback from the exception, even when it is never logged. It
would seem cheaper to just store the exception object, but that
references the traceback, which references stack frames, which may
reference the Future, which references the _TracebackLogger, and
then the _TracebackLogger would be included in a cycle, which is
what we're trying to avoid! As an optimization, we don't
immediately format the exception; we only do the work when
activate() is called, which call is delayed until after all the
Future's callbacks have run. Since usually a Future has at least
one callback (typically set by 'yield from') and usually that
callback extracts the callback, thereby removing the need to
format the exception.
PS. I don't claim credit for this solution. I first heard of it
in a discussion about closing files when they are collected.
�loop�source_traceback�exc�tbcCs
|j|_|j|_||_d|_dS)N)�_loopr
�_source_tracebackrrr)�self�futurer�r�/usr/lib64/python3.6/futures.py�__init__Rsz_TracebackLogger.__init__cCs,|j}|dk r(d|_tj|j||j�|_dS)N)r� traceback�format_exception� __class__�
__traceback__r)rrrrr�activateXs
z_TracebackLogger.activatecCsd|_d|_dS)N)rr)rrrr�clear_sz_TracebackLogger.clearcCsb|jr^d}|jr:djtj|j��}|d7}|d|j�7}|dj|j�j�7}|jjd|i�dS)Nz*Future/Task
exception was never retrieved
�z0Future/Task created at (most recent call last):
z%s
�message)rr�joinr�format_list�rstripr
�call_exception_handler)r�msg�srcrrr�__del__csz_TracebackLogger.__del__N)r
rrr) �__name__�
__module__�__qualname__�__doc__� __slots__rrrr&rrrrrs0rc@s�eZdZdZeZdZdZdZdZ dZ
dZdd�dd�Ze
jZdd�ZejrRd d
�Zdd�Zd
d�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd
�Zejr�eZ 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)r
cCs@|dkrtj�|_n||_g|_|jj�r<tjtjd��|_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_loopr�
_callbacksZ get_debug�
extract_stack�sys� _getframer)rr
rrrr�s
zFuture.__init__cCsd|jjdj|j��fS)Nz<%s %s>�
)rr'r �
_repr_info)rrrr�__repr__�szFuture.__repr__cCsD|js
dS|j}d|jj||d�}|jr4|j|d<|jj|�dS)Nz %s exception
was never retrieved)r� exceptionrr)�_log_traceback�
_exceptionrr'rrr#)rr�contextrrrr&�s
zFuture.__del__cCs&d|_|jtkrdSt|_|j�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)r5�_state�_PENDING�
_CANCELLED�_schedule_callbacks)rrrr�cancel�s
z
Future.cancelcCsD|jdd�}|sdSg|jdd�<x|D]}|jj||�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-r� call_soon)rZ callbacks�callbackrrrr;�s
zFuture._schedule_callbackscCs
|jtkS)z(Return True if the future was
cancelled.)r8r:)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.
)r8r9)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)r8r:r� _FINISHEDrr5r6�_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)r8r:rrArr5r6)rrrrr4�s
zFuture.exceptioncCs*|jtkr|jj||�n|jj|�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.
N)r8r9rr=r-�append)r�fnrrr�add_done_callbacks
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.
csg|]}|�kr|�qSrr)�.0�f)rErr�
<listcomp>sz/Future.remove_done_callback.<locals>.<listcomp>N)r-�len)rrEZfiltered_callbacksZ
removed_countr)rEr�remove_done_callbacks
zFuture.remove_done_callbackcCs4|jtkrtdj|j|���||_t|_|j�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)r8r9r�formatrBrAr;)rrCrrr�
set_result s
zFuture.set_resultcCs�|jtkrtdj|j|���t|t�r,|�}t|�tkr@td��||_t |_|j
�tjrbd|_
nt||�|_|jj|jj�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)r8r9rrL�
isinstance�type�
StopIteration� TypeErrorr6rAr;r
�PY34r5rZ
_tb_loggerrr=r)rr4rrr�
set_exception,s
zFuture.set_exceptionccs|j�sd|_|V|j�S)NT)r@�_asyncio_future_blockingrC)rrrr�__iter__DszFuture.__iter__)!r'r(r)r*r9r8rBr6rrrTr5rr Z_future_repr_infor2r3r
rRr&r<r;r?r@rCr4rFrKrMrSrUZPY35� __await__rrrrrns4
cCs|j�rdS|j|�dS)z?Helper
setting the result only if the future was not
cancelled.N)r?rM)ZfutrCrrr�_set_result_unless_cancelledSsrWcCsN|j�r|j�|j�sdS|j�}|dk r8|j|�n|j�}|j|�dS)z8Copy
state from a future to a
concurrent.futures.Future.N)r?r<Zset_running_or_notify_cancelr4rSrCrM)�
concurrent�sourcer4rCrrr�_set_concurrent_future_stateZsrZcCsP|j�rdS|j�r|j�n.|j�}|dk r:|j|�n|j�}|j|�dS)zqInternal
helper to copy state from another Future.
The other Future may be a concurrent.futures.Future.
N)r?r<r4rSrCrM)rY�destr4rCrrr�_copy_future_stateis
r\cs�t��r"t�tjj�r"td��t��rDt�tjj�rDtd��t��rR�jnd�t��rd�jnd�dd�����fdd�}����fdd �}�j|��j|�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)rr\rZ)r�otherrrr�
_set_state�sz!_chain_future.<locals>._set_statecs2|j�r.�dks��kr"�j�n�j�j�dS)N)r?r<�call_soon_threadsafe)�destination)� dest_looprY�source_looprr�_call_check_cancel�s
z)_chain_future.<locals>._call_check_cancelcsJ�j�r�dk r�j�rdS�dks,��kr8��|�n�j��|�dS)N)r?Z is_closedr_)rY)r^rar`rbrr�_call_set_state�sz&_chain_future.<locals>._call_set_state)rrNrXZfuturesrrQrrF)rYr`rcrdr)r^rar`rYrbr�
_chain_future}s
re)r
cCs2t|�r|S|dkrtj�}|j�}t||�|S)z&Wrap
concurrent.futures.Future object.N)rrr,Z
create_futurere)rr
Z
new_futurerrrr�s
)r*�__all__�concurrent.futuresrXZloggingr/rrr r
rrrrrr9r:rA�DEBUGZSTACK_DEBUGrrZ _PyFuturerWrZr\rerZ_asyncio�ImportErrorZ_CFuturerrrr�<module>s>
Pc*