mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-30 19:56:20 +00:00
7c219fd731
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
51 lines
1.9 KiB
Python
51 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2012 Matthew Hampton
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
# 02110-1301 USA
|
|
|
|
from .event_types import CatchingEvent
|
|
from ....task import TaskState
|
|
|
|
|
|
class StartEvent(CatchingEvent):
|
|
"""Task Spec for a bpmn:startEvent node with an optional event definition."""
|
|
|
|
def __init__(self, wf_spec, name, event_definition, **kwargs):
|
|
super(StartEvent, self).__init__(wf_spec, name, event_definition, **kwargs)
|
|
|
|
@property
|
|
def spec_type(self):
|
|
return f'{self.event_definition.event_type} Start Event'
|
|
|
|
def catch(self, my_task, event_definition):
|
|
|
|
# We might need to revisit a start event after it completes or
|
|
# if it got cancelled so we'll still catch messages even if we're finished
|
|
if my_task.state == TaskState.COMPLETED or my_task.state == TaskState.CANCELLED:
|
|
my_task.set_children_future()
|
|
my_task._set_state(TaskState.WAITING)
|
|
|
|
super(StartEvent, self).catch(my_task, event_definition)
|
|
|
|
def serialize(self, serializer):
|
|
return serializer.serialize_generic_event(self)
|
|
|
|
@classmethod
|
|
def deserialize(cls, serializer, wf_spec, s_state):
|
|
return serializer.deserialize_generic_event(wf_spec, s_state, StartEvent)
|
|
|