rally/rally/task/context.py

229 lines
7.5 KiB
Python

# Copyright 2014: Mirantis Inc.
# 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.
import abc
import copy
import jsonschema
import six
from rally.common import logging
from rally.common.plugin import plugin
from rally.common import utils
from rally import exceptions
from rally.task import functional
LOG = logging.getLogger(__name__)
def configure(name, order, hidden=False):
"""Context class wrapper.
Each context class has to be wrapped by configure() wrapper. It
sets essential configuration of context classes. Actually this wrapper just
adds attributes to the class.
:param name: Name of the class, used in the input task
:param order: As far as we can use multiple context classes that sometimes
depend on each other we have to specify order of execution.
Contexts with smaller order are run first
:param hidden: If it is true you won't be able to specify context via
task config
"""
def wrapper(cls):
cls = plugin.configure(name=name)(cls)
cls._meta_set("order", order)
cls._meta_set("hidden", hidden)
return cls
return wrapper
@plugin.base()
@six.add_metaclass(abc.ABCMeta)
class Context(plugin.Plugin, functional.FunctionalMixin,
utils.RandomNameGeneratorMixin):
"""This class is a factory for context classes.
Every context class should be a subclass of this class and implement
2 abstract methods: setup() and cleanup()
It covers:
1) proper setting up of context config
2) Auto discovering & get by name
3) Validation by CONFIG_SCHEMA
4) Order of context creation
"""
RESOURCE_NAME_FORMAT = "c_rally_XXXXXXXX_XXXXXXXX"
CONFIG_SCHEMA = {}
def __init__(self, ctx):
config = ctx.get("config", {}).get(self.get_name(), {})
# NOTE(amaretskiy): self.config is a constant data and must be
# immutable or write-protected type to prevent
# unexpected changes in runtime
if type(config) == dict:
if hasattr(self, "DEFAULT_CONFIG"):
for key, value in self.DEFAULT_CONFIG.items():
config.setdefault(key, value)
self.config = utils.LockedDict(config)
elif type(config) == list:
self.config = tuple(config)
else:
# NOTE(amaretskiy): It is improbable that config can be a None,
# number, boolean or even string,
# however we handle this
self.config = config
self.context = ctx
self.task = self.context.get("task", {})
def __lt__(self, other):
return self.get_order() < other.get_order()
def __gt__(self, other):
return self.get_order() > other.get_order()
def __eq__(self, other):
return self.get_order() == other.get_order()
def __ne__(self, other):
return not self.__eq__(other)
@classmethod
def validate(cls, config, non_hidden=False):
# TODO(boris-42): This is going to be replaced with common validation
# mechanism (generalization of scenario validation)
if non_hidden and cls._meta_get("hidden"):
raise exceptions.PluginNotFound(name=cls.get_name(),
namespace="context")
jsonschema.validate(config, cls.CONFIG_SCHEMA)
@classmethod
def get_order(cls):
return cls._meta_get("order")
@abc.abstractmethod
def setup(self):
"""Prepare environment for test.
This method is executed only once before load generation.
self.config contains input arguments of this context
self.context contains information that will be passed to scenario
The goal of this method is to perform all operation to prepare
environment and store information to self.context that is required
by scenario.
"""
@abc.abstractmethod
def cleanup(self):
"""Clean up environment after load generation.
This method is run once after load generation is done to cleanup
environment.
self.config contains input arguments of this context
self.context contains information that was passed to scenario
"""
def map_for_scenario(self, context_obj):
"""Maps global context to context that is used by scenario.
This method is run each time to create scenario context which is
actually just sub set of global context.
One of sample where this method is useful is users context.
We have set of users and tenants but each scenario should have access
to context of single user in single tenant.
"""
return context_obj
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, exc_traceback):
self.cleanup()
class ContextManager(object):
"""Create context environment and run method inside it."""
def __init__(self, context_obj):
self._visited = []
self.context_obj = context_obj
@staticmethod
def validate(ctx, non_hidden=False):
for name, config in six.iteritems(ctx):
Context.get(name).validate(config, non_hidden=non_hidden)
def _get_sorted_context_lst(self):
ctxlst = map(Context.get, self.context_obj["config"])
return sorted(map(lambda ctx: ctx(self.context_obj), ctxlst))
def setup(self):
"""Creates benchmark environment from config."""
self._visited = []
for ctx in self._get_sorted_context_lst():
self._visited.append(ctx)
ctx.setup()
return self.context_obj
def cleanup(self):
"""Destroys benchmark environment."""
ctxlst = self._visited or self._get_sorted_context_lst()
for ctx in ctxlst[::-1]:
try:
ctx.cleanup()
except Exception as e:
LOG.error("Context %s failed during cleanup." % ctx.get_name())
LOG.exception(e)
def map_for_scenario(self):
"""Returns scenario's specific context from full context.
Each context class is able to map context object data as it want.
E.g. users context will pick one user and it's tenant for each
scenario run.
This method iterates over all context classes used in task
and performs transformation of each of them to full context, order of
transformation is the same as order of context creation.
"""
# NOTE(boris-42): Original context_obj is read only and should not
# be modified
context_obj = copy.deepcopy(self.context_obj)
for ctx in self._get_sorted_context_lst():
context_obj = ctx.map_for_scenario(context_obj)
return context_obj
def __enter__(self):
try:
self.setup()
except Exception:
self.cleanup()
raise
def __exit__(self, exc_type, exc_value, exc_traceback):
self.cleanup()