2014-11-13 14:38:41 +01:00
|
|
|
#!/usr/bin/python2 -O
|
2015-01-19 18:03:23 +01:00
|
|
|
# vim: fileencoding=utf-8
|
|
|
|
|
|
|
|
#
|
|
|
|
# The Qubes OS Project, https://www.qubes-os.org/
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
|
|
|
|
# Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.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 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.
|
|
|
|
#
|
2014-11-13 14:38:41 +01:00
|
|
|
|
2014-11-13 18:10:27 +01:00
|
|
|
'''Qubes events.
|
|
|
|
|
|
|
|
Events are fired when something happens, like VM start or stop, property change
|
|
|
|
etc.
|
|
|
|
'''
|
|
|
|
|
2014-11-13 14:38:41 +01:00
|
|
|
import collections
|
|
|
|
|
|
|
|
|
2015-01-12 14:57:24 +01:00
|
|
|
def handler(*events):
|
2014-12-09 14:14:24 +01:00
|
|
|
'''Event handler decorator factory.
|
2014-11-13 18:10:27 +01:00
|
|
|
|
|
|
|
To hook an event, decorate a method in your plugin class with this
|
|
|
|
decorator.
|
|
|
|
|
2014-12-17 13:36:58 +01:00
|
|
|
It probably makes no sense to specify more than one handler for specific
|
|
|
|
event in one class, because handlers are not run concurrently and there is
|
|
|
|
no guarantee of the order of execution.
|
|
|
|
|
2014-12-09 14:14:24 +01:00
|
|
|
.. note::
|
|
|
|
For hooking events from extensions, see :py:func:`qubes.ext.handler`.
|
|
|
|
|
2014-11-13 18:10:27 +01:00
|
|
|
:param str event: event type
|
|
|
|
'''
|
|
|
|
|
2015-01-20 14:41:19 +01:00
|
|
|
def decorator(func):
|
|
|
|
func.ha_events = events
|
|
|
|
return func
|
2014-11-13 14:38:41 +01:00
|
|
|
|
|
|
|
return decorator
|
|
|
|
|
2014-12-09 14:14:24 +01:00
|
|
|
|
2015-01-20 14:41:19 +01:00
|
|
|
def ishandler(obj):
|
2014-11-13 18:10:27 +01:00
|
|
|
'''Test if a method is hooked to an event.
|
|
|
|
|
|
|
|
:param object o: suspected hook
|
|
|
|
:return: :py:obj:`True` when function is a hook, :py:obj:`False` otherwise
|
|
|
|
:rtype: bool
|
|
|
|
'''
|
|
|
|
|
2015-01-20 14:41:19 +01:00
|
|
|
return callable(obj) \
|
|
|
|
and hasattr(obj, 'ha_events')
|
2014-11-13 14:38:41 +01:00
|
|
|
|
2014-11-13 18:10:27 +01:00
|
|
|
|
2014-12-09 14:14:24 +01:00
|
|
|
class EmitterMeta(type):
|
|
|
|
'''Metaclass for :py:class:`Emitter`'''
|
|
|
|
def __init__(cls, name, bases, dict_):
|
2015-01-20 16:32:25 +01:00
|
|
|
super(EmitterMeta, cls).__init__(name, bases, dict_)
|
2014-12-09 14:14:24 +01:00
|
|
|
cls.__handlers__ = collections.defaultdict(set)
|
|
|
|
|
|
|
|
try:
|
2015-01-21 12:50:00 +01:00
|
|
|
propnames = set(prop.__name__ for prop in cls.property_list())
|
2014-12-09 14:14:24 +01:00
|
|
|
except AttributeError:
|
|
|
|
propnames = set()
|
2014-11-13 18:10:27 +01:00
|
|
|
|
2015-01-12 14:57:24 +01:00
|
|
|
for attr in dict_:
|
2014-12-09 14:14:24 +01:00
|
|
|
if attr in propnames:
|
|
|
|
# we have to be careful, not to getattr() on properties which
|
|
|
|
# may be unset
|
|
|
|
continue
|
2014-11-13 18:10:27 +01:00
|
|
|
|
2015-01-12 14:57:24 +01:00
|
|
|
attr = dict_[attr]
|
2014-12-09 14:14:24 +01:00
|
|
|
if not ishandler(attr):
|
|
|
|
continue
|
|
|
|
|
2015-01-12 14:57:24 +01:00
|
|
|
for event in attr.ha_events:
|
|
|
|
cls.add_handler(event, attr)
|
|
|
|
|
|
|
|
|
|
|
|
class Emitter(object):
|
2015-01-19 18:03:23 +01:00
|
|
|
'''Subject that can emit events.
|
2015-06-24 15:02:49 +02:00
|
|
|
|
|
|
|
By default all events are disabled not to interfere with loading from XML.
|
|
|
|
To enable event dispatch, set :py:attr:`events_enabled` to :py:obj:`True`.
|
2015-01-12 14:57:24 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
__metaclass__ = EmitterMeta
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(Emitter, self).__init__(*args, **kwargs)
|
2015-09-17 12:08:03 +02:00
|
|
|
if not hasattr(self, 'events_enabled'):
|
|
|
|
self.events_enabled = False
|
2014-12-09 14:14:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
2015-01-20 14:41:19 +01:00
|
|
|
def add_handler(cls, event, func):
|
2015-01-19 18:03:23 +01:00
|
|
|
'''Add event handler to subject's class.
|
2014-12-09 14:14:24 +01:00
|
|
|
|
|
|
|
:param str event: event identificator
|
|
|
|
:param collections.Callable handler: handler callable
|
|
|
|
'''
|
|
|
|
|
2015-01-19 19:02:28 +01:00
|
|
|
# pylint: disable=no-member
|
2015-01-20 14:41:19 +01:00
|
|
|
cls.__handlers__[event].add(func)
|
2014-12-09 14:14:24 +01:00
|
|
|
|
|
|
|
|
2014-12-29 13:07:20 +01:00
|
|
|
def _fire_event_in_order(self, order, event, *args, **kwargs):
|
|
|
|
'''Fire event for classes in given order.
|
2014-12-09 14:14:24 +01:00
|
|
|
|
2014-12-29 13:07:20 +01:00
|
|
|
Do not use this method. Use :py:meth:`fire_event` or
|
|
|
|
:py:meth:`fire_event_pre`.
|
2014-12-09 14:14:24 +01:00
|
|
|
'''
|
2014-11-13 18:10:27 +01:00
|
|
|
|
2014-12-09 18:34:00 +01:00
|
|
|
if not self.events_enabled:
|
|
|
|
return
|
|
|
|
|
2014-12-29 13:07:20 +01:00
|
|
|
for cls in order:
|
2014-12-17 13:36:58 +01:00
|
|
|
if not hasattr(cls, '__handlers__'):
|
|
|
|
continue
|
2015-01-20 14:41:19 +01:00
|
|
|
for func in sorted(cls.__handlers__[event],
|
2015-01-19 17:06:30 +01:00
|
|
|
key=(lambda handler: hasattr(handler, 'ha_bound')),
|
|
|
|
reverse=True):
|
2015-01-20 14:41:19 +01:00
|
|
|
func(self, event, *args, **kwargs)
|
2014-12-29 13:07:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
def fire_event(self, event, *args, **kwargs):
|
|
|
|
'''Call all handlers for an event.
|
|
|
|
|
|
|
|
Handlers are called for class and all parent classess, in **reversed**
|
|
|
|
method resolution order. For each class first are called bound handlers
|
|
|
|
(specified in class definition), then handlers from extensions. Aside
|
|
|
|
from above, remaining order is undefined.
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
:py:meth:`fire_event_pre`
|
|
|
|
|
|
|
|
:param str event: event identificator
|
|
|
|
|
|
|
|
All *args* and *kwargs* are passed verbatim. They are different for
|
|
|
|
different events.
|
|
|
|
'''
|
|
|
|
|
2015-01-19 17:06:30 +01:00
|
|
|
self._fire_event_in_order(reversed(self.__class__.__mro__), event,
|
|
|
|
*args, **kwargs)
|
2014-12-29 13:07:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
def fire_event_pre(self, event, *args, **kwargs):
|
|
|
|
'''Call all handlers for an event.
|
|
|
|
|
|
|
|
Handlers are called for class and all parent classess, in **true**
|
|
|
|
method resolution order. This is intended for ``-pre-`` events, where
|
|
|
|
order of invocation should be reversed.
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
:py:meth:`fire_event`
|
|
|
|
|
|
|
|
:param str event: event identificator
|
|
|
|
|
|
|
|
All *args* and *kwargs* are passed verbatim. They are different for
|
|
|
|
different events.
|
|
|
|
'''
|
|
|
|
|
2015-01-19 17:06:30 +01:00
|
|
|
self._fire_event_in_order(self.__class__.__mro__, event,
|
|
|
|
*args, **kwargs)
|