AlkantarClanX12

Your IP : 3.133.108.47


Current Path : /proc/self/root/opt/alt/python35/lib64/python3.5/__pycache__/
Upload File :
Current File : //proc/self/root/opt/alt/python35/lib64/python3.5/__pycache__/sched.cpython-35.pyc



��YfH�@s�dZddlZddlZddlmZyddlZWnek
r^ddlZYnXddlmZ	dgZ
Gdd�dedd��Ze�Z
Gd	d�d�ZdS)
a�A generally useful event scheduler class.

Each instance of this class manages its own queue.
No multi-threading is implied; you are supposed to hack that
yourself, or use a single instance per application.

Each instance is parametrized with two functions, one that is
supposed to return the current time, one that is supposed to
implement a delay.  You can implement real-time scheduling by
substituting time and sleep from built-in module time, or you can
implement simulated time by writing your own functions.  This can
also be used to integrate scheduling with STDWIN events; the delay
function is allowed to modify the queue.  Time can be expressed as
integers or floating point numbers, as long as it is consistent.

Events are specified by tuples (time, priority, action, argument, kwargs).
As in UNIX, lower priority numbers mean higher priority; in this
way the queue can be maintained as a priority queue.  Execution of the
event means calling the action function, passing it the argument
sequence in "argument" (remember that in Python, multiple function
arguments are be packed in a sequence) and keyword parameters in "kwargs".
The action function may be an instance method so it
has another way to reference private data (besides global variables).
�N)�
namedtuple)�	monotonic�	schedulerc@sLeZdZdd�Zdd�Zdd�Zdd�Zd	d
�ZdS)�EventcCs"|j|jf|j|jfkS)N)�time�priority)�s�o�r
�*/opt/alt/python35/lib64/python3.5/sched.py�__eq__+szEvent.__eq__cCs"|j|jf|j|jfkS)N)rr)rr	r
r
r�__lt__,szEvent.__lt__cCs"|j|jf|j|jfkS)N)rr)rr	r
r
r�__le__-szEvent.__le__cCs"|j|jf|j|jfkS)N)rr)rr	r
r
r�__gt__.szEvent.__gt__cCs"|j|jf|j|jfkS)N)rr)rr	r
r
r�__ge__/szEvent.__ge__N)�__name__�
__module__�__qualname__rr
rrrr
r
r
rr*s
rz(time, priority, action, argument, kwargsc@s�eZdZeejdd�Zfedd�Zfedd�Z	dd�Z
d	d
�Zddd
�Ze
dd��ZdS)rcCs.g|_tj�|_||_||_dS)zGInitialize a new instance, passing the time and delay
        functionsN)�_queue�	threading�RLock�_lock�timefunc�	delayfunc)�selfrrr
r
r�__init__5s		zscheduler.__init__c
CsR|tkri}t|||||�}|j�tj|j|�WdQRX|S)z�Enter a new event in the queue at an absolute time.

        Returns an ID for the event which can be used to remove it,
        if necessary.

        N)�	_sentinelrr�heapq�heappushr)rrr�action�argument�kwargs�eventr
r
r�enterabs=s
zscheduler.enterabscCs)|j�|}|j|||||�S)z{A variant that specifies the time as a relative time.

        This is actually the more commonly used interface.

        )rr#)r�delayrrr r!rr
r
r�enterKszscheduler.enterc	Cs5|j�%|jj|�tj|j�WdQRXdS)z�Remove an event from the queue.

        This must be presented the ID as returned by enter().
        If the event is not in the queue, this raises ValueError.

        N)rr�remover�heapify)rr"r
r
r�cancelTs
zscheduler.cancelc	Cs|j�
|jSWdQRXdS)z!Check whether the queue is empty.N)rr)rr
r
r�empty_s
zscheduler.emptyTcCs�|j}|j}|j}|j}tj}x�|�S|s>P|d\}}}	}
}|�}||krud}
nd}
||�WdQRX|
r�|s�||S|||�q0|	|
|�|d�q0WdS)aExecute events until the queue is empty.
        If blocking is False executes the scheduled events due to
        expire soonest (if any) and then return the deadline of the
        next scheduled call in the scheduler.

        When there is a positive delay until the first event, the
        delay function is called and the event is left in the queue;
        otherwise, the event is removed from the queue and executed
        (its action function is called, passing it the argument).  If
        the delay function returns prematurely, it is simply
        restarted.

        It is legal for both the delay function and the action
        function to modify the queue or to raise an exception;
        exceptions are not caught but the scheduler's state remains
        well-defined so run() may be called again.

        A questionable hack is added to allow other threads to run:
        just after an event is executed, a delay of 0 is executed, to
        avoid monopolizing the CPU when other threads are also
        runnable.

        rTFN)rrrrr�heappop)rZblocking�lock�qrr�poprrrr r!Znowr$r
r
r�runds*							
z
scheduler.runc
CsG|j�|jdd�}WdQRXtttj|gt|���S)z�An ordered list of upcoming events.

        Events are named tuples with fields for:
            time, priority, action, arguments, kwargs

        N)rr�list�maprr*�len)rZeventsr
r
r�queue�s
zscheduler.queueN)rrr�_timerZsleeprrr#r%r(r)r.�propertyr2r
r
r
rr3s	2)�__doc__rr�collectionsrr�ImportErrorZdummy_threadingrr3�__all__r�objectrrr
r
r
r�<module>s