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
|
# -*- coding: utf-8 -*-
# Copyright (C) 2006-2008 Vodafone España, S.A.
# Copyright (C) 2008-2009 Warp Networks, S.L.
# Author: Pablo Martí
#
# 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 2 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""Plugin system for Wader"""
# import inspect # for debugging only
from dbus import Boolean, UInt32
from pytz import timezone
from time import time
from twisted.internet import defer, reactor
from twisted.internet.task import deferLater
from twisted.python import log
from twisted.plugin import IPlugin, getPlugins
from zope.interface import implements
from wader.common.consts import (MDM_INTFACE, HSO_INTFACE, CRD_INTFACE,
NET_INTFACE, USD_INTFACE,
MM_MODEM_STATE_DISABLED,
MM_MODEM_STATE_ENABLED)
import wader.common.aterrors as at
import wader.common.exceptions as ex
import wader.common.interfaces as interfaces
from wader.common.utils import flatten_list
from core.daemon import build_daemon_collection
from core.sim import SIMBaseClass
import plugins
class DevicePlugin(object):
"""Base class for all plugins"""
implements(IPlugin, interfaces.IDevicePlugin)
__properties__ = {}
# at what speed should we talk with this device?
baudrate = 115200
# Class that will initialize the SIM, by default SIMBaseClass
sim_klass = SIMBaseClass
# Response of AT+CGMM
__remote_name__ = ""
# instance of a custom adapter class if device needs customization
custom = None
# instance of the exporter class that will export AT methods
exporter = None
# dialer
dialer = 'default'
# place for device specific hints to the core
quirks = {}
def __init__(self):
super(DevicePlugin, self).__init__()
# sim instance
self.sim = None
# serial connection reference
self.sconn = None
# device internal state
self._status = MM_MODEM_STATE_DISABLED
# time SIM authentication was done
self._authtime = None
# collection of daemons
self.daemons = None
# onyl used in devices that like to share ids, like
# huawei's exxx family. It should have at least a
# 'default' key mapping to a safe device that can be
# used to identify the rest of the family
self.mapping = {}
# object path
self.opath = None
# sysfs_path
self.sysfs_path = None
# dictionary with org.freedesktop.DBus.Properties
self.props = {MDM_INTFACE: {}, HSO_INTFACE: {}, CRD_INTFACE: {},
NET_INTFACE: {}, USD_INTFACE: {}}
self.ports = None
def __repr__(self):
args = (self.__class__.__name__, self.ports)
return "<%s %s>" % args
def get_property(self, iface, name):
return self.props[iface][name]
def get_properties(self, iface=None):
if iface is None:
return self.props
return self.props[iface]
def set_property(self, iface, name, value, emit=True):
self.props[iface][name] = value
if hasattr(self.exporter, 'MmPropertiesChanged') and emit:
self.exporter.MmPropertiesChanged(iface, {name: value})
def set_status(self, status, reason=UInt32(0)):
"""Sets internal device status to ``status``"""
# # uncomment for debugging only
# caller = inspect.stack()[1]
# try:
# log.msg("set_status called by %s" % str(caller))
# finally:
# del caller
if status >= MM_MODEM_STATE_ENABLED and \
self._status < MM_MODEM_STATE_ENABLED:
self.exporter.DeviceEnabled(self.opath)
self.set_property(MDM_INTFACE, 'Enabled',
Boolean(status >= MM_MODEM_STATE_ENABLED))
self.set_property(MDM_INTFACE, 'State', status)
# Default reason is MM_MODEM_STATE_CHANGED_REASON_UNKNOWN
self.exporter.StateChanged(self._status, status, reason)
self._status = status
@property
def status(self):
"""Returns the internal device status"""
return self._status
def set_authtime(self, authtime):
self._authtime = authtime
@property
def authtime(self):
"""
Returns the time in secs (UTC) that authentication was done
or None if it's not occurred yet
"""
return self._authtime
def close(self, remove_from_conn=False, removed=False):
"""Closes the plugin and frees all the associated resources"""
log.msg("Closing plugin %s" % self)
if remove_from_conn or removed:
try:
self.exporter.remove_from_connection()
except LookupError, e:
log.err(e)
def free_resources(ign=None):
"""Frees the resources held by :meth:`initialize`"""
if self.sconn is not None and self.sconn.transport:
self.sconn.transport.unregisterProducer()
if self.ports.cport.obj is not None:
self.ports.cport.obj.loseConnection("Bye!")
self.ports.cport.obj = None
# if our device was pulled out whilst we were connected
if self.ports.dport.obj is not None:
if self.ports.dport.obj.isOpen():
self.ports.dport.obj.close()
self.ports.dport.obj = None
if self.daemons is not None and self.daemons.running:
self.daemons.stop_daemons()
d = defer.succeed(True)
d.addCallback(self.sconn.stop_traffic_monitoring)
if not removed:
d.addCallback(lambda _: self.sconn.enable_radio(False))
d.addCallback(lambda _: self.set_status(MM_MODEM_STATE_DISABLED))
d.addCallback(free_resources)
return d
def initialize(self, init_obj=None):
"""Initializes the SIM"""
def on_init(size):
if not self.daemons:
self.daemons = build_daemon_collection(self)
self.daemons.start_daemons()
d = self.sconn.init_properties()
def set_enable(_):
if self._status <= MM_MODEM_STATE_ENABLED:
self.set_status(MM_MODEM_STATE_ENABLED)
return _
d.addCallback(set_enable)
d.addCallback(lambda _: self.sconn.mal.initialize(obj=self.sconn))
d.addCallback(lambda _: size)
return d
def initialize_sim(_):
self.sim = self.sim_klass(self.sconn)
d = self.sim.initialize()
d.addCallback(on_init)
return d
# XXX: Sometimes, right after a combination of Modem.Enable operations
# and hot pluggings, the core will not reply to the first AT
# command sent, but it will to the second. This was an old comment
# and it's not certain that this still occurs; if symptoms persist
# we'll need to re-add handling for this case.
if self.authtime is None:
log.err("Being asked to initialise before auth has been checked")
raise RuntimeError
def do_init():
if not (self.sconn and self.sconn.transport):
return defer.fail(at.SerialSendFailed())
log.msg('Enabling radio and initialising SIM')
d = self.sconn.enable_radio(True)
d.addCallback(initialize_sim)
d.addErrback(log.err)
return d
remaining = (self.authtime + self.custom.auth_klass.DELAY) - time() + 1
if remaining > 0:
log.msg('Delaying SIM initialisation for %d secs' % remaining)
d = deferLater(reactor, remaining, do_init)
else:
d = do_init()
return d
def patch(self, other):
"""Patch myself in-place with the settings of another plugin"""
if not isinstance(other, DevicePlugin):
raise ValueError("Cannot patch myself with a %s" % type(other))
self.opath = other.opath
self.sysfs_path = other.sysfs_path
self.ports = other.ports
self.props = other.props.copy()
self.baudrate = other.baudrate
class RemoteDevicePlugin(DevicePlugin):
"""
Base class from which all the RemoteDevicePlugins should inherit from
"""
implements(IPlugin, interfaces.IRemoteDevicePlugin)
class OSPlugin(object):
"""Base class from which all the OSPlugins should inherit from"""
implements(IPlugin, interfaces.IOSPlugin)
dialer = None
hw_manager = None
def __init__(self):
super(OSPlugin, self).__init__()
def get_iface_stats(self, iface):
"""
Returns ``iface`` network statistics
:rtype: tuple
"""
raise NotImplementedError()
def is_valid(self):
"""Returns True if we are on the given OS/Distro"""
raise NotImplementedError()
def initialize(self):
"""Initializes the plugin"""
pass
class PluginManager(object):
"""I manage Wader's plugins"""
@classmethod
def get_plugins(cls, interface=IPlugin, package=plugins):
"""
Returns all the plugins under ``package`` that implement ``interface``
"""
return getPlugins(interface, package)
@classmethod
def get_plugin_by_remote_name(cls, name,
interface=interfaces.IDevicePlugin):
"""
Get a plugin by its remote name
:raise UnknownPluginNameError: When we don't know about the plugin
"""
for plugin in cls.get_plugins(interface, plugins):
if not hasattr(plugin, '__remote_name__'):
continue
if plugin.__remote_name__ == name:
return plugin
if name in plugin.mapping:
return plugin.mapping[name]()
raise ex.UnknownPluginNameError(name)
@classmethod
def get_plugin_by_vendor_product_id(cls, product_id, vendor_id):
"""Get a plugin by its product and vendor ids"""
log.msg("get_plugin_by_id called with 0x%04x and 0x%04x"
% (product_id, vendor_id))
for plugin in cls.get_plugins(interfaces.IDevicePlugin):
props = flatten_list(plugin.__properties__.values())
if int(product_id) in props and int(vendor_id) in props:
if not plugin.mapping:
# regular plugin
return plugin
# device has multiple personalities...
# this will just return the default plugin for
# the mapping, we keep a reference to the mapping
# once the device is properly identified by
# core.hardware.base::identify_device
_plugin = plugin.mapping['default']()
_plugin.mapping = plugin.mapping
return _plugin
return None
|