178 lines
4.4 KiB
Python
178 lines
4.4 KiB
Python
|
|
import threading, traceback
|
|
|
|
class StoppableThread(threading.Thread):
|
|
"""A thread which can be required to stop.
|
|
|
|
The thread run() method should periodically call the shouldRun()
|
|
method if this yields False, the finish() should be called before returning.
|
|
This is really only feasible by sub-classing.
|
|
|
|
>>> class TestThread(StoppableThread):
|
|
... def __init__(self):
|
|
... super(TestThread,self).__init__()
|
|
... self.E=threading.Event()
|
|
... def run(self):
|
|
... try:
|
|
... import time
|
|
... self.E.set()
|
|
... while self.shouldRun():
|
|
... time.sleep(0.01)
|
|
... finally:
|
|
... self.finish()
|
|
>>> T = TestThread()
|
|
>>> T.start()
|
|
>>> T.E.wait()
|
|
True
|
|
>>> T.join()
|
|
>>> T.is_alive()
|
|
False
|
|
"""
|
|
def __init__(self, max=0):
|
|
super(StoppableThread, self).__init__()
|
|
self._run, self._stop = False, False
|
|
self._sevt, self._lock = threading.Event(), threading.Lock()
|
|
|
|
def running(self):
|
|
with self._lock:
|
|
return self._run and not self._stop
|
|
|
|
def start(self):
|
|
with self._lock:
|
|
assert not self._stop
|
|
self._run = True
|
|
self._sevt.clear()
|
|
|
|
super(StoppableThread, self).start()
|
|
|
|
def join(self):
|
|
with self._lock:
|
|
if not self._run:
|
|
return
|
|
self._stop = True
|
|
|
|
self._sevt.wait()
|
|
|
|
super(StoppableThread, self).join()
|
|
|
|
def shouldRun(self):
|
|
with self._lock:
|
|
return not self._stop
|
|
|
|
def finish(self):
|
|
with self._lock:
|
|
self._run = self._stop = False
|
|
self._sevt.set()
|
|
|
|
def run(self, *args, **kws):
|
|
try:
|
|
super(StoppableThread, self).start(*args, **kws)
|
|
finally:
|
|
self.finish()
|
|
|
|
class Worker(threading.Thread):
|
|
"""A threaded work queue.
|
|
|
|
>>> w = Worker()
|
|
>>> w = Worker()
|
|
>>> w.start()
|
|
>>> w.join()
|
|
>>> import threading
|
|
>>> E = threading.Event()
|
|
>>> w = Worker()
|
|
>>> w.start()
|
|
>>> w.add(E.set)
|
|
>>> E.wait(1.0)
|
|
True
|
|
>>> w.join()
|
|
"""
|
|
def __init__(self, max=0):
|
|
super(Worker, self).__init__()
|
|
self._run, self._stop = False, None
|
|
self._lock = threading.Lock()
|
|
self._update = threading.Condition(self._lock)
|
|
self.maxQ, self._Q = max, []
|
|
|
|
def running(self):
|
|
with self._lock:
|
|
return self._run and not self._stop
|
|
|
|
def start(self):
|
|
with self._lock:
|
|
if self._run or self._stop:
|
|
return
|
|
super(Worker, self).start()
|
|
self._run = True
|
|
|
|
def join(self, flush=True):
|
|
self._update.acquire()
|
|
try:
|
|
if self._stop:
|
|
raise RuntimeError("Someone else is already trying to stop me")
|
|
|
|
self._stop = threading.Event()
|
|
self._update.notify()
|
|
|
|
self._update.release()
|
|
try:
|
|
self._stop.wait()
|
|
finally:
|
|
self._update.acquire()
|
|
|
|
self._stop = None
|
|
assert not self._run
|
|
|
|
if flush:
|
|
self._Q = []
|
|
|
|
finally:
|
|
self._update.release()
|
|
|
|
def __len__(self):
|
|
with self._lock:
|
|
return len(self._Q)
|
|
|
|
def add(self, func, args=(), kws={}):
|
|
with self._lock:
|
|
if not self._run or self._stop:
|
|
return
|
|
elif self.maxQ>0 and len(self._Q)>=self.maxQ:
|
|
raise RuntimeError('Worker queue full')
|
|
|
|
self._Q.append((func,args,kws))
|
|
self._update.notify()
|
|
|
|
def run(self):
|
|
self._update.acquire()
|
|
try:
|
|
assert self._run
|
|
|
|
while True:
|
|
|
|
while self._stop is None and len(self._Q)==0:
|
|
self._update.wait()
|
|
|
|
if self._stop is not None:
|
|
break
|
|
|
|
F, A, K = self._Q.pop(0)
|
|
|
|
self._update.release()
|
|
try:
|
|
F(*A,**K)
|
|
except:
|
|
print 'Error running',F,A,K
|
|
traceback.print_exc()
|
|
finally:
|
|
self._update.acquire()
|
|
|
|
self._run = False
|
|
self._stop.set()
|
|
|
|
finally:
|
|
self._update.release()
|
|
|
|
if __name__=='__main__':
|
|
import doctest
|
|
doctest.testmod()
|