nfv/nfv/nfv-vim/nfv_vim/instance_fsm/_instance_state_fail.py

79 lines
2.5 KiB
Python
Executable File

#
# Copyright (c) 2015-2016 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
from nfv_common import debug
from nfv_common import state_machine
from nfv_vim.instance_fsm._instance_defs import INSTANCE_EVENT
from nfv_vim.instance_fsm._instance_defs import INSTANCE_STATE
from nfv_vim.instance_fsm._instance_tasks import FailTask
DLOG = debug.debug_get_logger('nfv_vim.state_machine.instance')
class FailState(state_machine.State):
"""
Instance - Fail State
"""
def __init__(self, name):
super(FailState, self).__init__(name)
def enter(self, instance):
"""
Entering fail state
"""
DLOG.info("Entering state (%s) for %s." % (self.name, instance.name))
instance.task = FailTask(instance)
instance.task.start()
def exit(self, instance):
"""
Exiting fail state
"""
DLOG.info("Exiting state (%s) for %s." % (self.name, instance.name))
if isinstance(instance.task, FailTask):
instance.task.abort()
def transition(self, instance, event, event_data, to_state):
"""
Transition from the fail state
"""
pass
def handle_event(self, instance, event, event_data=None):
"""
Handle event while in the fail state
"""
if INSTANCE_EVENT.TASK_STOP == event:
return INSTANCE_STATE.INITIAL
elif INSTANCE_EVENT.TASK_COMPLETED == event:
if instance.is_failed():
DLOG.debug("Fail instance completed for %s." % instance.name)
return INSTANCE_STATE.INITIAL
elif INSTANCE_EVENT.TASK_FAILED == event:
DLOG.info("Fail instance failed for %s." % instance.name)
return INSTANCE_STATE.INITIAL
elif INSTANCE_EVENT.TASK_TIMEOUT == event:
DLOG.info("Fail instance timed out for %s." % instance.name)
return INSTANCE_STATE.INITIAL
elif INSTANCE_EVENT.NFVI_DISABLED == event:
if not instance.task.inprogress() and instance.is_failed():
DLOG.debug("Fail instance completed for %s." % instance.name)
return INSTANCE_STATE.INITIAL
elif INSTANCE_EVENT.AUDIT == event:
if not instance.task.inprogress() and instance.is_failed():
DLOG.debug("Fail instance completed for %s." % instance.name)
return INSTANCE_STATE.INITIAL
else:
DLOG.verbose("Ignoring %s event for %s." % (event, instance.name))
return self.name