2014-11-13 14:38:41 +01:00
|
|
|
#!/usr/bin/python2 -O
|
|
|
|
|
2014-11-13 18:10:27 +01:00
|
|
|
'''Qubes extensions
|
|
|
|
|
|
|
|
Extensions provide additional features (like application menus) found only on
|
|
|
|
some systems. They may be OS- or architecture-dependent or custom-developed for
|
|
|
|
particular customer.
|
|
|
|
|
|
|
|
.. autoclass:: Extension
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
|
|
|
|
|
|
|
.. autoclass:: ExtensionPlugin
|
|
|
|
:members:
|
|
|
|
:show-inheritance:
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
import inspect
|
|
|
|
|
|
|
|
import qubes.events
|
|
|
|
import qubes.plugins
|
|
|
|
|
|
|
|
class ExtensionPlugin(qubes.plugins.Plugin):
|
2014-11-13 18:10:27 +01:00
|
|
|
'''Metaclass for :py:class:`Extension`'''
|
2014-11-13 14:38:41 +01:00
|
|
|
def __init__(cls, name, bases, dict_):
|
|
|
|
super(ExtensionPlugin, cls).__init__(name, bases, dict_)
|
|
|
|
cls._instance = None
|
|
|
|
|
|
|
|
def __call__(cls, *args, **kwargs):
|
|
|
|
if cls._instance is None:
|
|
|
|
cls._instance = super(ExtensionPlugin, cls).__call__(*args, **kwargs)
|
|
|
|
return cls._instance
|
|
|
|
|
|
|
|
class Extension(object):
|
2014-12-09 14:14:24 +01:00
|
|
|
'''Base class for all extensions
|
|
|
|
|
|
|
|
:param qubes.Qubes app: application object
|
|
|
|
'''
|
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
__metaclass__ = ExtensionPlugin
|
2014-12-09 14:14:24 +01:00
|
|
|
|
|
|
|
def __init__(self, app):
|
|
|
|
self.app = app
|
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
for name in dir(self):
|
|
|
|
attr = getattr(self, name)
|
2014-12-09 14:14:24 +01:00
|
|
|
if not qubes.events.ishandler(attr):
|
2014-11-13 14:38:41 +01:00
|
|
|
continue
|
|
|
|
|
2014-12-09 14:14:24 +01:00
|
|
|
if attr.ha_vm is not None:
|
|
|
|
attr.ha_vm.add_hook(attr.ha_event, attr)
|
2014-11-13 14:38:41 +01:00
|
|
|
else:
|
|
|
|
# global hook
|
2014-12-09 14:14:24 +01:00
|
|
|
self.app.add_hook(attr.ha_event, attr)
|
|
|
|
|
|
|
|
|
2015-01-12 14:57:24 +01:00
|
|
|
def handler(*events, **kwargs):
|
2014-12-09 14:14:24 +01:00
|
|
|
'''Event handler decorator factory.
|
|
|
|
|
|
|
|
To hook an event, decorate a method in your plugin class with this
|
|
|
|
decorator. You may hook both per-vm-class and global events.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
This decorator is intended only for extensions! For regular use in the
|
|
|
|
core, see py:func:`qubes.events.handler`.
|
|
|
|
|
|
|
|
:param str event: event type
|
|
|
|
:param type vm: VM to hook (leave as None to hook all VMs)
|
|
|
|
:param bool system: when :py:obj:`True`, hook is system-wide (not attached to any VM)
|
|
|
|
'''
|
|
|
|
|
|
|
|
def decorator(f):
|
2015-01-12 14:57:24 +01:00
|
|
|
f.ha_events = events
|
2014-12-09 14:14:24 +01:00
|
|
|
|
2015-01-12 14:57:24 +01:00
|
|
|
if kwargs.get('system', False):
|
2014-12-09 14:14:24 +01:00
|
|
|
f.ha_vm = None
|
2015-01-12 14:57:24 +01:00
|
|
|
elif 'vm' in kwargs:
|
|
|
|
f.ha_vm = kwargs['vm']
|
2014-12-09 14:14:24 +01:00
|
|
|
else:
|
2015-01-12 14:57:24 +01:00
|
|
|
f.ha_vm = qubes.vm.BaseVM
|
2014-12-09 14:14:24 +01:00
|
|
|
|
|
|
|
return f
|
|
|
|
|
|
|
|
return decorator
|
2014-11-13 14:38:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
__all__ = qubes.plugins.load(__file__)
|