Newer
Older
import logging
import traceback
from traits.api import List, Unicode, Bool, Type, Either, Instance
from force_bdss.data_sources.base_data_source_factory import \
BaseDataSourceFactory
from force_bdss.mco.base_mco_factory import BaseMCOFactory
from force_bdss.notification_listeners.base_notification_listener_factory \
import \
BaseNotificationListenerFactory
from force_bdss.ui_hooks.base_ui_hooks_factory import BaseUIHooksFactory
from .notification_listeners.i_notification_listener_factory import \
INotificationListenerFactory
from .ids import ExtensionPointID, plugin_id
from .data_sources.i_data_source_factory import IDataSourceFactory
from .mco.i_mco_factory import IMCOFactory
from .ui_hooks.i_ui_hooks_factory import IUIHooksFactory
"""Base class for extension plugins, that is, plugins that are
provided by external contributors.
It provides a set of slots to be populated that end up contributing
to the application extension points. To use the class, simply inherit it
in your plugin, and reimplement the methods as from example::
class MyPlugin(BaseExtensionPlugin):
id = plugin_id("enthought", "plugin_name", 0)
def get_factory_classes(self):
return [
MyDataSourceFactory1,
MyDataSourceFactory2,
MyMCOFactory
#: Reports if the plugin loaded its factories successfully or not.
broken = Bool(False)
#: The error message generated by the factory instantiations
error_msg = Unicode()
#: The error traceback generated by the factory instantiations.
error_tb = Unicode()
#: A list of all the factory classes to export.
factory_classes = List(
Either(Type(BaseDataSourceFactory),
Type(BaseMCOFactory),
Type(BaseNotificationListenerFactory),
#: A list of available Multi Criteria Optimizers this plugin exports.
contributes_to=ExtensionPointID.MCO_FACTORIES
#: A list of the available Data Sources this plugin exports.
contributes_to=ExtensionPointID.DATA_SOURCE_FACTORIES
#: A list of the available notification listeners this plugin exports
notification_listener_factories = List(
INotificationListenerFactory,
contributes_to=ExtensionPointID.NOTIFICATION_LISTENER_FACTORIES
#: A list of the available ui hooks this plugin exports
ui_hooks_factories = List(
IUIHooksFactory,
contributes_to=ExtensionPointID.UI_HOOKS_FACTORIES
)
#: The logger.
_logger = Instance(logging.Logger)
def __init__(self, *args, **kwargs):
super(BaseExtensionPlugin, self).__init__(*args, **kwargs)
self.factory_classes = self.get_factory_classes()
self.mco_factories[:] = [
cls(self)
for cls in self._factory_by_type(BaseMCOFactory)]
self.data_source_factories[:] = [
cls(self)
for cls in self._factory_by_type(BaseDataSourceFactory)]
self.notification_listener_factories[:] = [
cls(self)
for cls in self._factory_by_type(
BaseNotificationListenerFactory)
]
self.ui_hooks_factories[:] = [
cls(self)
for cls in self._factory_by_type(BaseUIHooksFactory)
]
except Exception as e:
self._logger.exception(e)
self.error_msg = str(e)
self.error_tb = traceback.format_exc()
self.broken = True
self.mco_factories[:] = []
self.data_source_factories[:] = []
self.notification_listener_factories[:] = []
self.ui_hooks_factories[:] = []
def get_factory_classes(self):
"""Must return a list of factory classes that this plugin exports.
"""
raise NotImplementedError(
"get_factory_classes was not implemented in plugin {}".format(
self.__class__))
def _factory_by_type(self, type_):
"""Returns all the factories of the given type"""
return [cls for cls in self.factory_classes if issubclass(cls, type_)]
def __logger_default(self):
return logging.getLogger(self.__class__.__name__)