488cc340ef
SPDKDRIVER is a virtual interface which provides common methods
for specific drivers (such as: VHOSTDRIVER, NVMFDRIVER, etc.).
For this reason, the Cyborg agent should invoke these drivers
via py-spdk[0] to communicate with the backend SPDK-base app server.
The py-spdk is management lib for SPDK applications which need to
be imported into the cyborg, so we put the pyspdk lib into cyborg/
cyborg/accelerator/drivers/spdk/util/. There are some unit tests
we added in cyborg/cyborg/tests/unit/accelerator/drivers/spdk/.
Now We are first implementing the unit tests of
test_discover_accelerator() and test_accelerator_list(),
and the rest will be added later.
For example:
When the Cyborg agent call the NVMFDRIVER.discover_accelerator(),
the return value we get is:
{
'server': 'nvmf_tgt',
'bdevs': [{
"num_blocks": 131072,
"name": "nvme1",
"block_size": 512,
......
}]
'subsystems': [{
"core": 0,
"nqn": "nqn.2018-01.org.nvmexpress.discovery",
"hosts": [],
......
}]
}
[0] The implementation of py-spdk is subbmitted to
https://review.gerrithub.io/#/c/379741/, please visit it.
Change-Id: I2d0e4dc6b58e725584d22ee85961877a870c68a7
167 lines
5.7 KiB
Python
167 lines
5.7 KiB
Python
# Copyright (c) 2012 Rackspace Hosting
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
"""Configuration support for all drivers. from openstack/cyborg"""
|
|
|
|
from oslo_config import cfg
|
|
|
|
CONF = cfg.CONF
|
|
SHARED_CONF_GROUP = 'backend_defaults'
|
|
|
|
|
|
class DefaultGroupConfiguration(object):
|
|
"""Get config options from only DEFAULT."""
|
|
|
|
def __init__(self):
|
|
# set the local conf so that __call__'s know what to use
|
|
self.local_conf = CONF
|
|
|
|
def _ensure_config_values(self, accelerator_opts):
|
|
CONF.register_opts(accelerator_opts, group=None)
|
|
|
|
def append_config_values(self, accelerator_opts):
|
|
self._ensure_config_values(accelerator_opts)
|
|
|
|
def safe_get(self, value):
|
|
"""get default group value from CONF
|
|
|
|
:param value: value.
|
|
:return: get default group value from CONF.
|
|
"""
|
|
try:
|
|
return self.__getattr__(value)
|
|
except cfg.NoSuchOptError:
|
|
return None
|
|
|
|
def __getattr__(self, value):
|
|
"""Don't use self.local_conf to avoid reentrant call to __getattr__()
|
|
|
|
:param value: value.
|
|
:return: getattr(local_conf, value).
|
|
"""
|
|
local_conf = object.__getattribute__(self, 'local_conf')
|
|
return getattr(local_conf, value)
|
|
|
|
|
|
class BackendGroupConfiguration(object):
|
|
def __init__(self, accelerator_opts, config_group=None):
|
|
"""Initialize configuration.
|
|
|
|
This takes care of grafting the implementation's config
|
|
values into the config group and shared defaults. We will try to
|
|
pull values from the specified 'config_group', but fall back to
|
|
defaults from the SHARED_CONF_GROUP.
|
|
"""
|
|
self.config_group = config_group
|
|
|
|
# set the local conf so that __call__'s know what to use
|
|
self._ensure_config_values(accelerator_opts)
|
|
self.backend_conf = CONF._get(self.config_group)
|
|
self.shared_backend_conf = CONF._get(SHARED_CONF_GROUP)
|
|
|
|
def _safe_register(self, opt, group):
|
|
try:
|
|
CONF.register_opt(opt, group=group)
|
|
except cfg.DuplicateOptError:
|
|
pass # If it's already registered ignore it
|
|
|
|
def _ensure_config_values(self, accelerator_opts):
|
|
"""Register the options in the shared group.
|
|
|
|
When we go to get a config option we will try the backend specific
|
|
group first and fall back to the shared group. We override the default
|
|
from all the config options for the backend group so we can know if it
|
|
was set or not.
|
|
"""
|
|
for opt in accelerator_opts:
|
|
self._safe_register(opt, SHARED_CONF_GROUP)
|
|
# Assuming they aren't the same groups, graft on the options into
|
|
# the backend group and override its default value.
|
|
if self.config_group != SHARED_CONF_GROUP:
|
|
self._safe_register(opt, self.config_group)
|
|
CONF.set_default(opt.name, None, group=self.config_group)
|
|
|
|
def append_config_values(self, accelerator_opts):
|
|
self._ensure_config_values(accelerator_opts)
|
|
|
|
def set_default(self, opt_name, default):
|
|
CONF.set_default(opt_name, default, group=SHARED_CONF_GROUP)
|
|
|
|
def get(self, key, default=None):
|
|
return getattr(self, key, default)
|
|
|
|
def safe_get(self, value):
|
|
"""get config_group value from CONF
|
|
|
|
:param value: value.
|
|
:return: get config_group value from CONF.
|
|
"""
|
|
|
|
try:
|
|
return self.__getattr__(value)
|
|
except cfg.NoSuchOptError:
|
|
return None
|
|
|
|
def __getattr__(self, opt_name):
|
|
"""Don't use self.X to avoid reentrant call to __getattr__()
|
|
|
|
:param opt_name: opt_name.
|
|
:return: opt_value.
|
|
"""
|
|
backend_conf = object.__getattribute__(self, 'backend_conf')
|
|
opt_value = getattr(backend_conf, opt_name)
|
|
if opt_value is None:
|
|
shared_conf = object.__getattribute__(self, 'shared_backend_conf')
|
|
opt_value = getattr(shared_conf, opt_name)
|
|
return opt_value
|
|
|
|
|
|
class Configuration(object):
|
|
def __init__(self, accelerator_opts, config_group=None):
|
|
"""Initialize configuration.
|
|
|
|
This shim will allow for compatibility with the DEFAULT
|
|
style of backend configuration which is used by some of the users
|
|
of this configuration helper, or by the volume drivers that have
|
|
all been forced over to the config_group style.
|
|
"""
|
|
self.config_group = config_group
|
|
if config_group:
|
|
self.conf = BackendGroupConfiguration(accelerator_opts,
|
|
config_group)
|
|
else:
|
|
self.conf = DefaultGroupConfiguration()
|
|
|
|
def append_config_values(self, accelerator_opts):
|
|
self.conf.append_config_values(accelerator_opts)
|
|
|
|
def safe_get(self, value):
|
|
"""get value from CONF
|
|
|
|
:param value: value.
|
|
:return: get value from CONF.
|
|
"""
|
|
|
|
return self.conf.safe_get(value)
|
|
|
|
def __getattr__(self, value):
|
|
"""Don't use self.conf to avoid reentrant call to __getattr__()
|
|
|
|
:param value: value.
|
|
:return: getattr(conf, value).
|
|
"""
|
|
conf = object.__getattribute__(self, 'conf')
|
|
return getattr(conf, value)
|