89 lines
3.2 KiB
Python
89 lines
3.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2013 - Mirantis, Inc.
|
|
#
|
|
# 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.
|
|
|
|
from oslo_log import log as logging
|
|
|
|
from mistral.actions import action_factory as a_f
|
|
from mistral import coordination
|
|
from mistral.engine import base
|
|
from mistral import exceptions as exc
|
|
from mistral.utils import inspect_utils as i_u
|
|
from mistral.workflow import utils as wf_utils
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class DefaultExecutor(base.Executor, coordination.Service):
|
|
def __init__(self, engine_client):
|
|
self._engine_client = engine_client
|
|
|
|
coordination.Service.__init__(self, 'executor_group')
|
|
|
|
def run_action(self, action_ex_id, action_class_str, attributes,
|
|
action_params):
|
|
"""Runs action.
|
|
|
|
:param action_ex_id: Corresponding task id.
|
|
:param action_class_str: Path to action class in dot notation.
|
|
:param attributes: Attributes of action class which will be set to.
|
|
:param action_params: Action parameters.
|
|
"""
|
|
|
|
def send_error_back(error_msg):
|
|
if action_ex_id:
|
|
self._engine_client.on_action_complete(
|
|
action_ex_id,
|
|
wf_utils.Result(error=error_msg)
|
|
)
|
|
else:
|
|
return error_msg
|
|
|
|
action_cls = a_f.construct_action_class(action_class_str, attributes)
|
|
|
|
try:
|
|
action = action_cls(**action_params)
|
|
|
|
result = action.run()
|
|
|
|
# Note: it's made for backwards compatibility with already
|
|
# existing Mistral actions which don't return result as
|
|
# instance of workflow.utils.Result.
|
|
if not isinstance(result, wf_utils.Result):
|
|
result = wf_utils.Result(data=result)
|
|
|
|
if action_ex_id and (action.is_sync() or result.is_error()):
|
|
self._engine_client.on_action_complete(action_ex_id, result)
|
|
|
|
return result
|
|
except TypeError as e:
|
|
msg = ("Failed to initialize action %s. Action init params = %s."
|
|
" Actual init params = %s. More info: %s"
|
|
% (action_class_str, i_u.get_arg_list(action_cls.__init__),
|
|
action_params.keys(), e))
|
|
LOG.warn(msg)
|
|
|
|
except exc.ActionException as e:
|
|
msg = ("Failed to run action [action_ex_id=%s, action_cls='%s',"
|
|
" attributes='%s', params='%s']\n %s"
|
|
% (action_ex_id, action_cls, attributes, action_params, e))
|
|
LOG.exception(msg)
|
|
except Exception as e:
|
|
msg = str(e)
|
|
|
|
# Send error info to engine.
|
|
return send_error_back(msg)
|