Fix default and example paths
[cascardo/ipsilon.git] / ipsilon / util / plugin.py
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2013  Simo Sorce <simo@redhat.com>
4 #
5 # see file 'COPYING' for use and warranty information
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 import os
21 import imp
22 import cherrypy
23 import inspect
24 from ipsilon.util.data import Store
25
26
27 class Plugins(object):
28
29     def __init__(self):
30         self._providers_tree = None
31
32     def _load_class(self, tree, class_type, file_name):
33         cherrypy.log.error('Check module %s for class %s' % (file_name,
34                                                              class_type))
35         name, ext = os.path.splitext(os.path.split(file_name)[-1])
36         try:
37             if ext.lower() == '.py':
38                 mod = imp.load_source(name, file_name)
39             #elif ext.lower() == '.pyc':
40             #    mod = imp.load_compiled(name, file_name)
41             else:
42                 return
43         except Exception, e:  # pylint: disable=broad-except
44             cherrypy.log.error('Failed to load "%s" module: [%s]' % (name, e))
45             return
46
47         if hasattr(mod, class_type):
48             instance = getattr(mod, class_type)()
49             public_name = getattr(instance, 'name', name)
50             tree[public_name] = instance
51             cherrypy.log.error('Added module %s as %s' % (name, public_name))
52
53     def _load_classes(self, tree, path, class_type):
54         files = None
55         try:
56             files = os.listdir(path)
57         except Exception, e:  # pylint: disable=broad-except
58             cherrypy.log.error('No modules in %s: [%s]' % (path, e))
59             return
60
61         for name in files:
62             filename = os.path.join(path, name)
63             self._load_class(tree, class_type, filename)
64
65     def get_plugins(self, path, class_type):
66         plugins = dict()
67         self._load_classes(plugins, path, class_type)
68         return plugins
69
70
71 class PluginLoader(object):
72
73     def __init__(self, baseobj, facility, plugin_type):
74         (whitelist, config) = Store().get_plugins_config(facility)
75         if cherrypy.config.get('debug', False):
76             cherrypy.log('[%s] %s: %s' % (facility, whitelist, config))
77         if whitelist is None:
78             whitelist = []
79         if config is None:
80             config = dict()
81
82         p = Plugins()
83         (pathname, dummy) = os.path.split(inspect.getfile(baseobj))
84         self._plugins = {
85             'config': config,
86             'available': p.get_plugins(pathname, plugin_type),
87             'whitelist': whitelist,
88             'enabled': []
89         }
90
91     def get_plugin_data(self):
92         return self._plugins
93
94
95 class PluginObject(object):
96
97     def __init__(self):
98         self.name = None
99         self._config = None
100         self._options = None
101         self._data = Store()
102
103     def get_config_desc(self):
104         """ The configuration description is a dictionary that provides
105             A description of the supported configuration options, as well
106             as the default configuration option values.
107             The key is the option name, the value is an array of 3 elements:
108              - description
109              - option type
110              - default value
111         """
112         return self._options
113
114     def set_config(self, config):
115         self._config = config
116
117     def get_config_value(self, name):
118         value = None
119         if self._config:
120             value = self._config.get(name, None)
121         if not value:
122             if self._options:
123                 opt = self._options.get(name, None)
124                 if opt:
125                     value = opt[2]
126
127         if cherrypy.config.get('debug', False):
128             cherrypy.log('[%s] %s: %s' % (self.name, name, value))
129
130         return value
131
132     def set_config_value(self, option, value):
133         if not self._config:
134             self._config = dict()
135         self._config[option] = value
136
137     def get_data(self, idval=None, name=None, value=None):
138         return self._data.get_data(self.name, idval=idval, name=name,
139                                    value=value)
140
141     def save_data(self, data):
142         self._data.save_data(self.name, data)