mς %U²Ic@s/dZdkZdgZdfd„ƒYZdS(sβ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). As in UNIX, lower priority numbers mean higher priority; in this way the queue can be maintained fully sorted. Execution of the event means calling the action function, passing it the argument. Remember that in Python, multiple function arguments can be packed in a tuple. The action function may be an instance method so it has another way to reference private data (besides global variables). Parameterless functions or methods cannot be used, however. Nt schedulercBs>tZd„Zd„Zd„Zd„Zd„Zd„ZRS(NcCsg|_||_||_dS(sGInitialize a new instance, passing the time and delay functionsN(tselftqueuettimefunct delayfunc(RRR((t"/data/zmath/lib/python2.4/sched.pyt__init__$s  cCs)||||f}ti|i|ƒ|S(s˜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( ttimetprioritytactiontargumentteventtbisecttinsortRR(RRRR R R ((Rtenterabs+scCs&|iƒ|}|i||||ƒS(s{A variant that specifies the time as a relative time. This is actually the more commonly used interface. N(RRtdelayRRRR R (RRRR R R((Rtenter6scCs|ii|ƒdS(s¬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 RuntimeError. N(RRtremoveR (RR ((Rtcancel?scCst|iƒdjS(s!Check whether the queue is empty.iN(tlenRR(R((RtemptyHscCs€|i}xp|oh|d\}}}}|iƒ}||jo|i ||ƒq |d=||Œ}|i dƒq WdS(siExecute events until the queue is empty. 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 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 questionably 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. iN( RRtqRRR R RtnowRtvoid(RRR RRR RR((RtrunLs    (t__name__t __module__RRRRRR(((RR#s   (t__doc__R t__all__R(R RR((Rt?s