forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBpmnEngine.php
More file actions
167 lines (146 loc) · 4.65 KB
/
BpmnEngine.php
File metadata and controls
167 lines (146 loc) · 4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
namespace ProcessMaker;
use ProcessMaker\Models\GlobalDataStore;
use ProcessMaker\Models\ProcessRequest;
use ProcessMaker\Nayra\Contracts\Bpmn\ProcessInterface;
use ProcessMaker\Nayra\Contracts\Bpmn\StartEventInterface;
use ProcessMaker\Nayra\Contracts\Bpmn\TimerEventDefinitionInterface;
use ProcessMaker\Nayra\Contracts\Engine\EngineInterface;
use ProcessMaker\Nayra\Contracts\EventBusInterface;
use ProcessMaker\Nayra\Contracts\RepositoryInterface;
use ProcessMaker\Nayra\Engine\EngineTrait;
use ProcessMaker\Repositories\BpmnDocument;
/**
* Test implementation for EngineInterface.
*/
class BpmnEngine implements EngineInterface
{
use EngineTrait;
/**
* @var RepositoryFactoryInterface
*/
private $repository;
/**
* @var EventBusInterface
*/
private $dispatcher;
/**
* Loaded versioned definitions
*/
private $definitions = [];
public $uid;
/**
* Test engine constructor.
*
* @param RepositoryInterface $repository
* @param EventBusInterface $dispatcher
*/
public function __construct(RepositoryInterface $repository, $dispatcher)
{
$this->uid = uniqid();
$this->repository = $repository;
$this->dispatcher = $dispatcher;
$this->setDataStore(new GlobalDataStore());
}
/**
* @return EventBusInterface
*/
public function getDispatcher()
{
return $this->dispatcher;
}
/**
* @param EventBusInterface $dispatcher
*
* @return $this
*/
public function setDispatcher(EventBusInterface $dispatcher)
{
$this->dispatcher = $dispatcher;
return $this;
}
/**
* @return RepositoryInterface
*/
public function getRepository()
{
return $this->repository;
}
public function getExecutionInstances()
{
return $this->executionInstances;
}
/**
* @param RepositoryInterface $repository
*
* @return $this
*/
public function setRepository(RepositoryInterface $repository)
{
$this->repository = $repository;
return $this;
}
/**
* Load an execution instance from an external storage.
*
* @param ProcessRequest $instance
*
* @return ExecutionInstanceInterface|null
*/
public function loadProcessRequest(ProcessRequest $instance)
{
// If exists return the already loaded instance by id
foreach ($this->executionInstances as $executionInstance) {
if ($executionInstance->getId() === $instance->getKey()) {
return $executionInstance;
}
}
$definitions = $this->getDefinition($instance->processVersion ?? $instance->process);
$instance = $this->loadExecutionInstance($instance->getKey(), $definitions);
return $instance;
}
public function getDefinition($processVersion)
{
$key = $processVersion->getKey();
if (!isset($this->definitions[$key])) {
$this->definitions[$key] = $processVersion->getDefinitions(false, $this);
$this->loadProcessDefinitions($this->definitions[$key]);
}
return $this->definitions[$key];
}
/**
* Load a process definitin to the engine
*
* @param BpmnDocument $definitions
* @return void
*/
public function loadProcessDefinitions(BpmnDocument $definitions)
{
//Load the collaborations
$collaborations = $definitions->getElementsByTagNameNS(BpmnDocument::BPMN_MODEL, 'collaboration');
foreach ($collaborations as $collaboration) {
$this->loadCollaboration($collaboration->getBpmnElementInstance());
}
//Load the collaborations
$processes = $definitions->getElementsByTagNameNS(BpmnDocument::BPMN_MODEL, 'process');
foreach ($processes as $process) {
$this->loadProcess($process->getBpmnElementInstance());
}
}
public function registerStartTimerEvents(ProcessInterface $process)
{
$this->getJobManager()->enableRegisterStartEvents();
foreach ($process->getEvents() as $event) {
if ($event instanceof StartEventInterface) {
//$event->scheduleTimerEvents(null);
//$event->registerWithEngine($this);
foreach ($event->getEventDefinitions() as $eventDefinition) {
if ($eventDefinition instanceof TimerEventDefinitionInterface) {
$eventDefinition->scheduleTimerEvents($event->getOwnerProcess()->getEngine(), $event, null);
}
}
}
}
$this->getJobManager()->disableRegisterStartEvents();
}
}