os-faults/os_faults/registry.py

80 lines
2.3 KiB
Python

# 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 inspect
import os
import sys
from oslo_utils import importutils
from os_faults.api import base_driver
from os_faults.api import error
from os_faults import drivers
DRIVERS = {}
def _import_modules_from_package():
drivers_folder = os.path.dirname(drivers.__file__)
library_root = os.path.normpath(os.path.join(
os.path.join(drivers_folder, os.pardir), os.pardir))
for root, dirs, files in os.walk(drivers_folder):
for filename in files:
if filename.startswith('__') or not filename.endswith('.py'):
continue
relative_path = os.path.relpath(os.path.join(root, filename),
library_root)
name = os.path.splitext(relative_path)[0] # remove extension
module_name = '.'.join(name.split(os.sep)) # convert / to .
if module_name not in sys.modules:
module = importutils.import_module(module_name)
sys.modules[module_name] = module
else:
module = sys.modules[module_name]
yield module
def _list_drivers():
modules = _import_modules_from_package()
for module in modules:
class_info_list = inspect.getmembers(module, inspect.isclass)
for class_info in class_info_list:
klazz = class_info[1]
if issubclass(klazz, base_driver.BaseDriver):
yield klazz
def get_drivers():
global DRIVERS
if not DRIVERS:
DRIVERS = dict((k.get_driver_name(), k) for k in _list_drivers())
return DRIVERS
def get_driver(name):
all_drivers = get_drivers()
if name not in all_drivers:
raise error.OSFDriverNotFound('Driver %s is not found' % name)
return all_drivers[name]