In this changeset, I implemented the logic which cancels any audit or action plan whose goal has been re-synced (upon restarting the Decision Engine). Partially Implements: blueprint efficacy-indicator Change-Id: I95d2739eb552d4a7a02c822b11844591008f648e
285 lines
12 KiB
Python
285 lines
12 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright 2013 IBM Corp.
|
|
#
|
|
# 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.
|
|
|
|
"""
|
|
An :ref:`Action Plan <action_plan_definition>` is a flow of
|
|
:ref:`Actions <action_definition>` that should be executed in order to satisfy
|
|
a given :ref:`Goal <goal_definition>`.
|
|
|
|
An :ref:`Action Plan <action_plan_definition>` is generated by Watcher when an
|
|
:ref:`Audit <audit_definition>` is successful which implies that the
|
|
:ref:`Strategy <strategy_definition>`
|
|
which was used has found a :ref:`Solution <solution_definition>` to achieve the
|
|
:ref:`Goal <goal_definition>` of this :ref:`Audit <audit_definition>`.
|
|
|
|
In the default implementation of Watcher, an
|
|
:ref:`Action Plan <action_plan_definition>`
|
|
is only composed of successive :ref:`Actions <action_definition>`
|
|
(i.e., a Workflow of :ref:`Actions <action_definition>` belonging to a unique
|
|
branch).
|
|
|
|
However, Watcher provides abstract interfaces for many of its components,
|
|
allowing other implementations to generate and handle more complex
|
|
:ref:`Action Plan(s) <action_plan_definition>`
|
|
composed of two types of Action Item(s):
|
|
|
|
- simple :ref:`Actions <action_definition>`: atomic tasks, which means it
|
|
can not be split into smaller tasks or commands from an OpenStack point of
|
|
view.
|
|
- composite Actions: which are composed of several simple
|
|
:ref:`Actions <action_definition>`
|
|
ordered in sequential and/or parallel flows.
|
|
|
|
An :ref:`Action Plan <action_plan_definition>` may be described using
|
|
standard workflow model description formats such as
|
|
`Business Process Model and Notation 2.0 (BPMN 2.0) <http://www.omg.org/spec/BPMN/2.0/>`_
|
|
or `Unified Modeling Language (UML) <http://www.uml.org/>`_.
|
|
|
|
An :ref:`Action Plan <action_plan_definition>` has a life-cycle and its current
|
|
state may be one of the following:
|
|
|
|
- **RECOMMENDED** : the :ref:`Action Plan <action_plan_definition>` is waiting
|
|
for a validation from the :ref:`Administrator <administrator_definition>`
|
|
- **ONGOING** : the :ref:`Action Plan <action_plan_definition>` is currently
|
|
being processed by the :ref:`Watcher Applier <watcher_applier_definition>`
|
|
- **SUCCEEDED** : the :ref:`Action Plan <action_plan_definition>` has been
|
|
executed successfully (i.e. all :ref:`Actions <action_definition>` that it
|
|
contains have been executed successfully)
|
|
- **FAILED** : an error occured while executing the
|
|
:ref:`Action Plan <action_plan_definition>`
|
|
- **DELETED** : the :ref:`Action Plan <action_plan_definition>` is still
|
|
stored in the :ref:`Watcher database <watcher_database_definition>` but is
|
|
not returned any more through the Watcher APIs.
|
|
- **CANCELLED** : the :ref:`Action Plan <action_plan_definition>` was in
|
|
**PENDING** or **ONGOING** state and was cancelled by the
|
|
:ref:`Administrator <administrator_definition>`
|
|
""" # noqa
|
|
|
|
from watcher.common import exception
|
|
from watcher.common import utils
|
|
from watcher.db import api as dbapi
|
|
from watcher.objects import action as action_objects
|
|
from watcher.objects import base
|
|
from watcher.objects import efficacy_indicator as indicator_objects
|
|
from watcher.objects import utils as obj_utils
|
|
|
|
|
|
class State(object):
|
|
RECOMMENDED = 'RECOMMENDED'
|
|
PENDING = 'PENDING'
|
|
ONGOING = 'ONGOING'
|
|
FAILED = 'FAILED'
|
|
SUCCEEDED = 'SUCCEEDED'
|
|
DELETED = 'DELETED'
|
|
CANCELLED = 'CANCELLED'
|
|
|
|
|
|
class ActionPlan(base.WatcherObject):
|
|
# Version 1.0: Initial version
|
|
VERSION = '1.0'
|
|
|
|
dbapi = dbapi.get_instance()
|
|
|
|
fields = {
|
|
'id': int,
|
|
'uuid': obj_utils.str_or_none,
|
|
'audit_id': obj_utils.int_or_none,
|
|
'strategy_id': obj_utils.int_or_none,
|
|
'first_action_id': obj_utils.int_or_none,
|
|
'state': obj_utils.str_or_none,
|
|
'global_efficacy': obj_utils.dict_or_none,
|
|
}
|
|
|
|
@staticmethod
|
|
def _from_db_object(action_plan, db_action_plan):
|
|
"""Converts a database entity to a formal object."""
|
|
for field in action_plan.fields:
|
|
action_plan[field] = db_action_plan[field]
|
|
|
|
action_plan.obj_reset_changes()
|
|
return action_plan
|
|
|
|
@staticmethod
|
|
def _from_db_object_list(db_objects, cls, context):
|
|
"""Converts a list of database entities to a list of formal objects."""
|
|
return [ActionPlan._from_db_object(
|
|
cls(context), obj) for obj in db_objects]
|
|
|
|
@classmethod
|
|
def get(cls, context, action_plan_id):
|
|
"""Find a action_plan based on its id or uuid and return a Action object.
|
|
|
|
:param action_plan_id: the id *or* uuid of a action_plan.
|
|
:returns: a :class:`Action` object.
|
|
"""
|
|
if utils.is_int_like(action_plan_id):
|
|
return cls.get_by_id(context, action_plan_id)
|
|
elif utils.is_uuid_like(action_plan_id):
|
|
return cls.get_by_uuid(context, action_plan_id)
|
|
else:
|
|
raise exception.InvalidIdentity(identity=action_plan_id)
|
|
|
|
@classmethod
|
|
def get_by_id(cls, context, action_plan_id):
|
|
"""Find a action_plan based on its integer id and return a Action object.
|
|
|
|
:param action_plan_id: the id of a action_plan.
|
|
:returns: a :class:`Action` object.
|
|
"""
|
|
db_action_plan = cls.dbapi.get_action_plan_by_id(
|
|
context, action_plan_id)
|
|
action_plan = ActionPlan._from_db_object(
|
|
cls(context), db_action_plan)
|
|
return action_plan
|
|
|
|
@classmethod
|
|
def get_by_uuid(cls, context, uuid):
|
|
"""Find a action_plan based on uuid and return a :class:`Action` object.
|
|
|
|
:param uuid: the uuid of a action_plan.
|
|
:param context: Security context
|
|
:returns: a :class:`Action` object.
|
|
"""
|
|
db_action_plan = cls.dbapi.get_action_plan_by_uuid(context, uuid)
|
|
action_plan = ActionPlan._from_db_object(cls(context), db_action_plan)
|
|
return action_plan
|
|
|
|
@classmethod
|
|
def list(cls, context, limit=None, marker=None, filters=None,
|
|
sort_key=None, sort_dir=None):
|
|
"""Return a list of Action objects.
|
|
|
|
:param context: Security context.
|
|
:param limit: maximum number of resources to return in a single result.
|
|
:param marker: pagination marker for large data sets.
|
|
:param filters: Filters to apply. Defaults to None.
|
|
:param sort_key: column to sort results by.
|
|
:param sort_dir: direction to sort. "asc" or "desc".
|
|
:returns: a list of :class:`ActionPlan` object.
|
|
|
|
"""
|
|
db_action_plans = cls.dbapi.get_action_plan_list(context,
|
|
limit=limit,
|
|
marker=marker,
|
|
filters=filters,
|
|
sort_key=sort_key,
|
|
sort_dir=sort_dir)
|
|
return ActionPlan._from_db_object_list(db_action_plans, cls, context)
|
|
|
|
def create(self, context=None):
|
|
"""Create a Action record in the DB.
|
|
|
|
:param context: Security context. NOTE: This should only
|
|
be used internally by the indirection_api.
|
|
Unfortunately, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Action(context)
|
|
|
|
"""
|
|
values = self.obj_get_changes()
|
|
db_action_plan = self.dbapi.create_action_plan(values)
|
|
self._from_db_object(self, db_action_plan)
|
|
|
|
def destroy(self, context=None):
|
|
"""Delete the action plan from the DB.
|
|
|
|
:param context: Security context. NOTE: This should only
|
|
be used internally by the indirection_api.
|
|
Unfortunately, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Action(context)
|
|
"""
|
|
related_efficacy_indicators = indicator_objects.EfficacyIndicator.list(
|
|
context=self._context,
|
|
filters={"action_plan_uuid": self.uuid})
|
|
|
|
# Cascade soft_delete of related efficacy indicators
|
|
for related_efficacy_indicator in related_efficacy_indicators:
|
|
related_efficacy_indicator.destroy()
|
|
|
|
self.dbapi.destroy_action_plan(self.uuid)
|
|
self.obj_reset_changes()
|
|
|
|
def save(self, context=None):
|
|
"""Save updates to this Action plan.
|
|
|
|
Updates will be made column by column based on the result
|
|
of self.what_changed().
|
|
|
|
:param context: Security context. NOTE: This should only
|
|
be used internally by the indirection_api.
|
|
Unfortunately, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Action(context)
|
|
"""
|
|
updates = self.obj_get_changes()
|
|
self.dbapi.update_action_plan(self.uuid, updates)
|
|
|
|
self.obj_reset_changes()
|
|
|
|
def refresh(self, context=None):
|
|
"""Loads updates for this Action plan.
|
|
|
|
Loads a action_plan with the same uuid from the database and
|
|
checks for updated attributes. Updates are applied from
|
|
the loaded action_plan column by column, if there are any updates.
|
|
|
|
:param context: Security context. NOTE: This should only
|
|
be used internally by the indirection_api.
|
|
Unfortunately, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Action(context)
|
|
"""
|
|
current = self.__class__.get_by_uuid(self._context, uuid=self.uuid)
|
|
for field in self.fields:
|
|
if (hasattr(self, base.get_attrname(field)) and
|
|
self[field] != current[field]):
|
|
self[field] = current[field]
|
|
|
|
def soft_delete(self, context=None):
|
|
"""Soft Delete the Action plan from the DB.
|
|
|
|
:param context: Security context. NOTE: This should only
|
|
be used internally by the indirection_api.
|
|
Unfortunately, RPC requires context as the first
|
|
argument, even though we don't use it.
|
|
A context should be set when instantiating the
|
|
object, e.g.: Audit(context)
|
|
"""
|
|
related_actions = action_objects.Action.list(
|
|
context=self._context,
|
|
filters={"action_plan_uuid": self.uuid})
|
|
|
|
# Cascade soft_delete of related actions
|
|
for related_action in related_actions:
|
|
related_action.soft_delete()
|
|
|
|
related_efficacy_indicators = indicator_objects.EfficacyIndicator.list(
|
|
context=self._context,
|
|
filters={"action_plan_uuid": self.uuid})
|
|
|
|
# Cascade soft_delete of related efficacy indicators
|
|
for related_efficacy_indicator in related_efficacy_indicators:
|
|
related_efficacy_indicator.soft_delete()
|
|
|
|
self.dbapi.soft_delete_action_plan(self.uuid)
|
|
self.state = State.DELETED
|
|
self.save()
|