summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/agent/env/vswitch_plugins/manager.py
blob: 00115dfdc30223c13604baf940bcbd8bad3f8a7f (plain)
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
"""
Created on 2015-9-15

@author: y00228926
"""
import stevedore


class VswitchPluginManager(object):
    def __init__(self):
        self.plugin = None
        self.mgr = stevedore.extension.ExtensionManager(namespace="vswitch.plugins", invoke_on_load=True)

    def clean(self):
        if self.plugin:
            self.plugin.clean()
            self.plugin = None
        for plugin in self.mgr.names():
            self.mgr[plugin].obj.clean()
        return True

    def get_vs_plugin(self, plugin):
        if plugin in self.mgr.names():
            ext = self.mgr[plugin]
            self.plugin = ext.obj
            return self.plugin
        else:
            raise Exception("unsupported vswitch plugin: %s" % plugin)

    def get_supported_plugins(self):
        return self.mgr.names()