/usr/share/pyshared/insanity/threads.py is in python-insanity 0.0+git20110920.4750a8e8-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | # GStreamer QA system
#
# threads.py
#
# Copyright (c) 2008, Edward Hervey <bilboed@bilboed.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
"""
Convenience methods and classes for multi-threading
"""
# code from pitivi/threads.py
import threading
import gobject
import traceback
from insanity.log import error, warning, debug
class Thread(threading.Thread, gobject.GObject):
"""
GObject-powered thread
"""
__gsignals__ = {
"done" : ( gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
( ))
}
def __init__(self):
threading.Thread.__init__(self)
gobject.GObject.__init__(self)
def stop(self):
""" stop the thread, do not override """
self.abort()
self.emit("done")
def run(self):
""" thread processing """
self.process()
gobject.idle_add(self.emit, "done")
def process(self):
""" Implement this in subclasses """
raise NotImplementedError
def abort(self):
""" Abort the thread. Subclass have to implement this method ! """
pass
gobject.type_register(Thread)
class CallbackThread(Thread):
def __init__(self, callback, *args, **kwargs):
Thread.__init__(self)
self.callback = callback
self.args = args
self.kwargs = kwargs
def process(self):
self.callback(*self.args, **self.kwargs)
gobject.type_register(CallbackThread)
class ActionQueueThread(threading.Thread):
"""
Thread for serializing actions.
Actions can be added in queueAction()
If you no longer wish to use this thread, add a
notifier callback by using queueFinalAction().
The thread will exit after calling that final action.
If you wish to abort the thread, just call abort() and
the Thread will return as soon as possible.
"""
def __init__(self):
threading.Thread.__init__(self)
self._lock = threading.Condition()
# if set to True, the thread will exit even though
# there are remaining actions
self._abort = False
# if set to True, the thread will exit when there's
# no longer any actions in the queue.
self._exit = False
# list of callables with arguments/kwargs
self._queue = []
def run(self):
# do something
debug("Starting in proces...")
self._lock.acquire()
while True:
debug("queue:%d _exit:%r _abort:%r",
len(self._queue), self._exit,
self._abort)
if self._abort:
debug("aborting")
self._lock.release()
return
while len(self._queue) == 0:
debug("queue:%d _exit:%r _abort:%r",
len(self._queue), self._exit,
self._abort)
if self._exit:
self._lock.release()
return
debug("waiting for cond")
self._lock.wait()
debug("cond was triggered")
if self._abort:
self._lock.release()
return
method, args, kwargs = self._queue.pop(0)
self._lock.release()
try:
debug("about to call %r", method)
method(*args, **kwargs)
except:
error("There was a problem calling %r", method)
error(traceback.format_exc())
finally:
debug("Finished calling %r, re-acquiring lock",
method)
self._lock.acquire()
def abort(self):
self._lock.acquire()
self._abort = True
self._lock.notify()
self._lock.release()
def queueAction(self, method, *args, **kwargs):
"""
Queue an action.
Returns True if the action was queued, else False.
"""
res = False
debug("about to queue %r", method)
self._lock.acquire()
debug("Got lock to queue, _abort:%r, _exit:%r",
self._abort, self._exit)
if not self._abort and not self._exit:
self._queue.append((method, args, kwargs))
self._lock.notify()
res = True
debug("about to release lock")
self._lock.release()
debug("lock released, result:%r", res)
return res
def queueFinalAction(self, method, *args, **kwargs):
"""
Set a last action to be called.
"""
res = False
debug("about to queue %r", method)
self._lock.acquire()
debug("Got lock to queue, _abort:%r, _exit:%r",
self._abort, self._exit)
if not self._abort and not self._exit:
self._queue.append((method, args, kwargs))
res = True
self._exit = True
self._lock.notify()
debug("about to release lock")
self._lock.release()
debug("lock released, result:%r", res)
return res
class ThreadMaster(gobject.GObject):
"""
Controls all thread
"""
def __init__(self):
gobject.GObject.__init__(self)
self.threads = []
def addThread(self, threadclass, *args):
# IDEA : We might need a limit of concurrent threads ?
# ... or some priorities ?
# FIXME : we should only accept subclasses of our Thread class
debug("Adding thread of type %r" % threadclass)
thread = threadclass(*args)
thread.connect("done", self._threadDoneCb)
self.threads.append(thread)
debug("starting it...")
thread.start()
debug("started !")
def _threadDoneCb(self, thread):
debug("thread %r is done" % thread)
self.threads.remove(thread)
def stopAllThreads(self):
debug("stopping all threads")
joinedthreads = 0
while(joinedthreads < len(self.threads)):
for thread in self.threads:
debug("Trying to stop thread %r" % thread)
try:
thread.join()
joinedthreads += 1
except:
warning("what happened ??")
|