mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-28 10:45:07 +00:00
35fd8ffc0f
b439f69f2 Merge pull request #296 from sartography/bugfix/subprocess-access-to-data-objects 6d2a2031e update spiff subworkflow tasks too 992c38671 make data objects referenceable within subprocesses 6c8ff5cdf allow subprocesses & call activities to have different data copy policies 2b14f3a48 initialize subprocesses in _update_hook instead of _on_ready_before 791f335d5 Merge pull request #295 from sartography/improvement/remove-camunda-from-base-and-misc-cleanup 28b579beb remove a few unused, duplicative, and debugging methods 8f14d1098 remove some other unused diagrams and tests 408bc6734 rely on top level camunda parser for almost all namespace references 895b2cc9b remove camunda namespace from base bpmn parser 76ecbf7cc Merge pull request #294 from sartography/bugfix/reactivate-boundary-event 82b6c8ad4 hack to ensure timers (and other events) are reset if returned to via loop reset 590903f47 Merge pull request #292 from sartography/feature/multiinstance-refactor 537490043 fix bug & typo f31726db1 raise error on attempting to migrate workflows with MI 44e6d08d8 create spiff multiinstance task 2168c022b create camunda MI that approximates what it used to do 9894cea59 some improvements and bugfixes f857ad5d4 remove some now unused functionality & tests, create a few more tests 6fead9d04 updated serializer & fixes for most tests ec662ecdd add parallel multiinstance bd19b2a8a working sequential multiinstance 2f9c192b6 further cleanup around _update_hook 947792bf6 fix bug in exclusive gateway migration d3d87b28d add io spec to all tasks f1586e275 add support for standard loop tasks git-subtree-dir: SpiffWorkflow git-subtree-split: b439f69f23b547df4de1e8e0c636997f2fd4e33b
77 lines
2.8 KiB
Python
77 lines
2.8 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 ...task import TaskState
|
|
from .UnstructuredJoin import UnstructuredJoin
|
|
from ...specs.Simple import Simple
|
|
from ...specs.WorkflowSpec import WorkflowSpec
|
|
|
|
|
|
class _EndJoin(UnstructuredJoin):
|
|
|
|
def _check_threshold_unstructured(self, my_task, force=False):
|
|
# Look at the tree to find all ready and waiting tasks (excluding
|
|
# ourself). The EndJoin waits for everyone!
|
|
waiting_tasks = []
|
|
for task in my_task.workflow.get_tasks(TaskState.READY | TaskState.WAITING):
|
|
if task.thread_id != my_task.thread_id:
|
|
continue
|
|
if task.task_spec == my_task.task_spec:
|
|
continue
|
|
|
|
is_mine = False
|
|
w = task.workflow
|
|
if w == my_task.workflow:
|
|
is_mine = True
|
|
while w and w.outer_workflow != w:
|
|
w = w.outer_workflow
|
|
if w == my_task.workflow:
|
|
is_mine = True
|
|
if is_mine:
|
|
waiting_tasks.append(task)
|
|
|
|
return force or len(waiting_tasks) == 0, waiting_tasks
|
|
|
|
def _on_complete_hook(self, my_task):
|
|
super(_EndJoin, self)._on_complete_hook(my_task)
|
|
my_task.workflow.data.update(my_task.data)
|
|
|
|
|
|
class BpmnProcessSpec(WorkflowSpec):
|
|
"""
|
|
This class represents the specification of a BPMN process workflow. This
|
|
specialises the standard Spiff WorkflowSpec class with a few extra methods
|
|
and attributes.
|
|
"""
|
|
|
|
def __init__(self, name=None, description=None, filename=None, svg=None):
|
|
"""
|
|
Constructor.
|
|
|
|
:param svg: This provides the SVG representation of the workflow as an
|
|
LXML node. (optional)
|
|
"""
|
|
super(BpmnProcessSpec, self).__init__(name=name, filename=filename)
|
|
self.end = _EndJoin(self, '%s.EndJoin' % (self.name))
|
|
self.end.connect(Simple(self, 'End'))
|
|
self.svg = svg
|
|
self.description = description
|
|
self.io_specification = None
|
|
self.data_objects = {}
|
|
self.correlation_keys = {}
|