/usr/share/pyshared/chirpui/common.py is in chirp 0.1.12-1.
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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | #!/usr/bin/python
#
# Copyright 2008 Dan Smith <dsmith@danplanet.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import gtk
import gobject
import threading
import time
from chirp import errors
from chirpui import reporting
class Editor(gobject.GObject):
__gsignals__ = {
'changed' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),
'usermsg' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE,
(gobject.TYPE_STRING,)),
}
root = None
def __init__(self):
gobject.GObject.__init__(self)
def focus(self):
pass
gobject.type_register(Editor)
def DBG(*args):
if False:
print " ".join(args)
VERBOSE = False
class RadioJob:
def __init__(self, cb, func, *args, **kwargs):
self.cb = cb
self.cb_args = ()
self.func = func
self.args = args
self.kwargs = kwargs
self.desc = "Working"
def __str__(self):
return "RadioJob(%s,%s,%s)" % (self.func, self.args, self.kwargs)
def set_desc(self, desc):
self.desc = desc
def set_cb_args(self, *args):
self.cb_args = args
def execute(self, radio):
try:
func = getattr(radio, self.func)
except AttributeError, e:
print "No such radio function `%s'" % self.func
return
try:
DBG("Running %s (%s %s)" % (self.func,
str(self.args),
str(self.kwargs)))
if VERBOSE:
print self.desc
result = func(*self.args, **self.kwargs)
except errors.InvalidMemoryLocation, e:
result = e
except Exception, e:
print "Exception running RadioJob: %s" % e
log_exception()
print "Job Args: %s" % str(self.args)
print "Job KWArgs: %s" % str(self.kwargs)
result = e
if self.cb:
gobject.idle_add(self.cb, result, *self.cb_args)
class RadioThread(threading.Thread, gobject.GObject):
__gsignals__ = {
"status" : (gobject.SIGNAL_RUN_LAST,
gobject.TYPE_NONE,
(gobject.TYPE_STRING,)),
}
def __init__(self, radio):
threading.Thread.__init__(self)
gobject.GObject.__init__(self)
self.__queue = {}
self.__counter = threading.Semaphore(0)
self.__enabled = True
self.__lock = threading.Lock()
self.__runlock = threading.Lock()
self.radio = radio
def _qlock(self):
self.__lock.acquire()
def _qunlock(self):
self.__lock.release()
def _qsubmit(self, job, priority):
if not self.__queue.has_key(priority):
self.__queue[priority] = []
self.__queue[priority].append(job)
self.__counter.release()
def _queue_clear_below(self, priority):
for i in range(0, priority):
if self.__queue.has_key(i) and len(self.__queue[i]) != 0:
return False
return True
def _qlock_when_idle(self, priority=10):
while True:
DBG("Attempting queue lock (%i)" % len(self.__queue))
self._qlock()
if self._queue_clear_below(priority):
return
self._qunlock()
time.sleep(0.1)
# This is the external lock, which stops any threads from running
# so that the radio can be operated synchronously
def lock(self):
self.__runlock.acquire()
def unlock(self):
self.__runlock.release()
def submit(self, job, priority=0):
self._qlock()
self._qsubmit(job, priority)
self._qunlock()
def flush(self, priority=None):
self._qlock()
if priority is None:
for i in self.__queue.keys():
self.__queue[i] = []
else:
self.__queue[priority] = []
self._qunlock()
def stop(self):
self.flush()
self.__counter.release()
self.__enabled = False
def status(self, msg):
jobs = 0
for i in dict(self.__queue):
jobs += len(self.__queue[i])
gobject.idle_add(self.emit, "status", "[%i] %s" % (jobs, msg))
def _queue_pop(self, priority):
try:
return self.__queue[priority].pop(0)
except IndexError:
return None
def run(self):
last_job_desc = "idle"
while self.__enabled:
DBG("Waiting for a job")
if last_job_desc:
self.status("Completed " + last_job_desc + " (idle)")
self.__counter.acquire()
self._qlock()
for i in sorted(self.__queue.keys()):
job = self._queue_pop(i)
if job:
DBG("Running job at priority %i" % i)
break
self._qunlock()
if job:
self.lock()
self.status(job.desc)
job.execute(self.radio)
last_job_desc = job.desc
self.unlock()
print "RadioThread exiting"
def log_exception():
import traceback
import sys
reporting.report_exception(traceback.format_exc(limit=30))
print "-- Exception: --"
traceback.print_exc(limit=30, file=sys.stdout)
print "------"
def show_error(msg, parent=None):
d = gtk.MessageDialog(buttons=gtk.BUTTONS_OK, parent=parent,
type=gtk.MESSAGE_ERROR)
d.set_property("text", msg)
if not parent:
d.set_position(gtk.WIN_POS_CENTER_ALWAYS)
d.run()
d.destroy()
def ask_yesno_question(msg, parent=None):
d = gtk.MessageDialog(buttons=gtk.BUTTONS_YES_NO, parent=parent,
type=gtk.MESSAGE_QUESTION)
d.set_property("text", msg)
if not parent:
d.set_position(gtk.WIN_POS_CENTER_ALWAYS)
r = d.run()
d.destroy()
return r == gtk.RESPONSE_YES
def combo_select(box, value):
store = box.get_model()
iter = store.get_iter_first()
while iter:
if store.get(iter, 0)[0] == value:
box.set_active_iter(iter)
return True
iter = store.iter_next(iter)
return False
|