/usr/share/pyshared/gammu/worker.py is in python-gammu 1.33.0-3.
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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | # -*- coding: UTF-8 -*-
# vim: expandtab sw=4 ts=4 sts=4:
'''
Asynchronous communication to phone.
Mostly you should use only L{GammuWorker} class, others are only helpers
which are used by this class.
'''
__author__ = 'Michal Čihař'
__email__ = 'michal@cihar.com'
__license__ = '''
Copyright © 2003 - 2010 Michal Čihař
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2 as published by
the Free Software Foundation.
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, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
'''
import gammu
import threading
import Queue
class InvalidCommand(Exception):
'''
Exception indicating invalid command.
'''
def __init__(self, value):
'''
Initializes exception.
@param value: Name of wrong command.
@type value: string
'''
Exception.__init__(self)
self.value = value
def __str__(self):
'''
Returns textual representation of exception.
'''
return 'Invalid command: "%s"' % self.value
def check_worker_command(command):
'''
Checks whether command is valid.
@param command: Name of command.
@type command: string
'''
if hasattr(gammu.StateMachine, command):
return
raise InvalidCommand(command)
class GammuCommand:
'''
Storage of single command for gammu.
'''
def __init__(self, command, params = None, percentage = 100):
'''
Creates single command instance.
'''
check_worker_command(command)
self._command = command
self._params = params
self._percentage = percentage
def get_command(self):
'''
Returns command name.
'''
return self._command
def get_params(self):
'''
Returns command params.
'''
return self._params
def get_percentage(self):
'''
Returns percentage of current task.
'''
return self._percentage
def __str__(self):
'''
Returns textual representation.
'''
if self._params is not None:
return '%s %r' % (self._command, self._params)
else:
return '%s ()' % self._command
class GammuTask:
'''
Storage of taks for gammu.
'''
def __init__(self, name, commands):
'''
Creates single command instance.
@param name: Name of task.
@type name: string
@param commands: List of commands to execute.
@type commands: list of tuples or strings
'''
self._name = name
self._list = []
self._pointer = 0
for i in range(len(commands)):
if type(commands[i]) == tuple:
cmd = commands[i][0]
try:
params = commands[i][1]
except IndexError:
params = None
else:
cmd = commands[i]
params = None
percents = 100 * (i + 1) / len(commands)
self._list.append(GammuCommand(cmd, params, percents))
def get_next(self):
'''
Returns next command to be executed as L{GammuCommand}.
'''
result = self._list[self._pointer]
self._pointer += 1
return result
def get_name(self):
'''
Returns task name.
'''
return self._name
class GammuThread(threading.Thread):
'''
Thread for phone communication.
'''
def __init__(self, queue, config, callback):
'''
Initialises thread data.
@param queue: Queue with events.
@type queue: Queue.Queue object.
@param config: Gammu configuration, same as
L{StateMachine.SetConfig} accepts.
@type config: hash
@param callback: Function which will be called upon operation
completing.
@type callback: Function, needs to accept four params: name of
completed operation, result of it, error code and percentage of
overall operation. This callback is called from different
thread, so please take care of various threading issues in other
modules you use.
'''
threading.Thread.__init__(self)
self._kill = False
self._terminate = False
self._sm = gammu.StateMachine()
self._callback = callback
self._queue = queue
self._sm.SetConfig(0, config)
def _do_command(self, name, cmd, params, percentage = 100):
'''
Executes single command on phone.
'''
func = getattr(self._sm, cmd)
error = 'ERR_NONE'
result = None
try:
if params is None:
result = func()
elif type(params) is dict:
result = func(**params)
else:
result = func(*params)
except gammu.GSMError, info:
errcode = info[0]['Code']
error = gammu.ErrorNumbers[errcode]
self._callback(name, result, error, percentage)
def run(self):
'''
Thread body, which handles phone communication. This should not
be used from outside.
'''
start = True
while not self._kill:
try:
if start:
task = GammuTask('Init', ['Init'])
start = False
else:
# Wait at most ten seconds for next command
task = self._queue.get(True, 10)
try:
while True:
cmd = task.get_next()
self._do_command(
task.get_name(),
cmd.get_command(),
cmd.get_params(),
cmd.get_percentage()
)
except IndexError:
try:
if task.name() != 'Init':
self._queue.task_done()
except AttributeError:
# This works since python 2.5
pass
except ValueError:
# This works since python 2.5
pass
except Queue.Empty:
if self._terminate:
break
# Read the device to catch possible incoming events
self._sm.ReadDevice()
def kill(self):
'''
Forces thread end without emptying queue.
'''
self._kill = True
def join(self, timeout=None):
'''
Terminates thread and waits for it.
'''
self._terminate = True
threading.Thread.join(self, timeout)
class GammuWorker:
'''
Wrapper class for asynchronous communication with Gammu. It spaws
own thread and then passes all commands to this thread. When task is
done, caller is notified via callback.
'''
def __init__(self, callback):
'''
Initializes worker class.
@param callback: See L{GammuThread.__init__} for description.
'''
self._thread = None
self._callback = callback
self._config = {}
self._lock = threading.Lock()
self._queue = Queue.Queue()
def enqueue_command(self, command, params):
'''
Enqueues command.
@param command: Command(s) to execute. Each command is tuple
containing function name and it's parameters.
@type command: tuple of list of tuples
@param params: Parameters to command.
@type params: tuple or string
'''
self._queue.put(GammuTask(command, [(command, params)]))
def enqueue_task(self, command, commands):
'''
Enqueues task.
@param command: Command(s) to execute. Each command is tuple
containing function name and it's parameters.
@type command: tuple of list of tuples
@param commands: List of commands to execute.
@type commands: list of tuples or strings
'''
self._queue.put(GammuTask(command, commands))
def enqueue(self, command, params = None, commands = None):
'''
Enqueues command or task.
@param command: Command(s) to execute. Each command is tuple
containing function name and it's parameters.
@type command: tuple of list of tuples
@param params: Parameters to command.
@type params: tuple or string
@param commands: List of commands to execute. When this is not
none, params are ignored and command is taken as task name.
@type commands: list of tuples or strings
'''
if commands is not None:
self.enqueue_task(command, commands)
else:
self.enqueue_command(command, params)
def configure(self, config):
'''
Configures gammu instance according to config.
@param config: Gammu configuration, same as
L{StateMachine.SetConfig} accepts.
@type config: hash
'''
self._config = config
def abort(self):
'''
Aborts any remaining operations.
'''
raise NotImplementedError
def initiate(self):
'''
Connects to phone.
'''
self._thread = GammuThread(self._queue, self._config, self._callback)
self._thread.start()
def terminate(self, timeout=None):
'''
Terminates phone connection.
'''
self.enqueue('Terminate')
self._thread.join(timeout)
self._thread = None
|