e02a0df23a
Change-Id: I29bbffcff00576ddbef1ecd283a3fad65dd5fc84
86 lines
2.2 KiB
Python
86 lines
2.2 KiB
Python
# Copyright 2012 Bouvet ASA
|
|
#
|
|
# Author: Endre Karlson <endre.karlson@bouvet.no>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
import abc
|
|
from stevedore import driver
|
|
from moniker.openstack.common import log as logging
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class Plugin(object):
|
|
__metaclass__ = abc.ABCMeta
|
|
|
|
__plugin_ns__ = None
|
|
|
|
__plugin_name__ = None
|
|
__plugin_type__ = None
|
|
|
|
def __init__(self):
|
|
self.name = self.get_canonical_name()
|
|
LOG.debug("Loaded plugin %s", self.name)
|
|
|
|
def is_enabled(self):
|
|
"""
|
|
Is this Plugin enabled?
|
|
|
|
:retval: Boolean
|
|
"""
|
|
return True
|
|
|
|
@classmethod
|
|
def get_plugin(cls, name, ns=None, invoke_on_load=False,
|
|
invoke_args=(), invoke_kwds={}):
|
|
"""
|
|
Load a plugin from namespace
|
|
"""
|
|
ns = ns or cls.__plugin_ns__
|
|
if ns is None:
|
|
raise RuntimeError('No namespace provided or __plugin_ns__ unset')
|
|
|
|
LOG.debug('Looking for plugin %s in %s', name, ns)
|
|
mgr = driver.DriverManager(ns, name)
|
|
|
|
return mgr.driver(*invoke_args, **invoke_kwds) if invoke_on_load \
|
|
else mgr.driver
|
|
|
|
@classmethod
|
|
def get_canonical_name(cls):
|
|
"""
|
|
Return the plugin name
|
|
"""
|
|
type_ = cls.get_plugin_type()
|
|
name = cls.get_plugin_name()
|
|
return "%s:%s" % (type_, name)
|
|
|
|
@classmethod
|
|
def get_plugin_name(cls):
|
|
return cls.__plugin_name__
|
|
|
|
@classmethod
|
|
def get_plugin_type(cls):
|
|
return cls.__plugin_type__
|
|
|
|
def start(self):
|
|
"""
|
|
Start this plugin
|
|
"""
|
|
|
|
def stop(self):
|
|
"""
|
|
Stop this plugin from doing anything
|
|
"""
|