-
Notifications
You must be signed in to change notification settings - Fork 2
/
StateMachineBehavior.php
276 lines (244 loc) · 7.29 KB
/
StateMachineBehavior.php
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<?php
/**
* User: Paris Theofanidis
* Date: 05/06/16
* Time: 14:04
*/
namespace ptheofan\statemachine;
use ptheofan\statemachine\exceptions\CannotGuessEventException;
use ptheofan\statemachine\exceptions\EventNotFoundException;
use ptheofan\statemachine\exceptions\InvalidSchemaException;
use ptheofan\statemachine\exceptions\StateNotFoundException;
use ptheofan\statemachine\interfaces\StateMachineContext;
use ptheofan\statemachine\interfaces\StateMachineEvent;
use yii;
use yii\base\Behavior;
use yii\base\Exception;
use yii\base\InvalidValueException;
use yii\db\ActiveRecord;
use yii\db\BaseActiveRecord;
/**
* Class StateMachineBehavior
* @package ptheofan\statemachine
*
* @property BaseActiveRecord $owner
*/
class StateMachineBehavior extends Behavior
{
/**
* @var string - the name of the physical model attribute
* ie. sm_status
*/
public $attr;
/**
* @var string - the name of the virtual model attribute
* ie. status
*/
public $virtAttr;
/**
* @var StateMachine
*/
public $sm;
/**
* @var bool
*/
private $modelDeleted = false;
/**
* @return array
*/
public function events()
{
return [
ActiveRecord::EVENT_AFTER_INSERT => 'initStateMachine',
ActiveRecord::EVENT_AFTER_DELETE => 'afterModelDelete',
];
}
/**
* @return bool
*/
public function isModelDeleted()
{
return $this->modelDeleted;
}
/**
* @param $evt
*/
public function afterModelDelete($evt)
{
$this->modelDeleted = true;
}
/**
* @param string $name
* @param bool|true $checkVars
* @return bool
*/
public function canGetProperty($name, $checkVars = true)
{
return $name === $this->virtAttr || parent::canGetProperty($name, $checkVars);
}
/**
* @param string $name
* @param bool $checkVars
* @return bool
*/
public function canSetProperty($name, $checkVars = true)
{
return $name === $this->virtAttr || parent::canSetProperty($name, $checkVars);
}
/**
* @param yii\web\IdentityInterface|null $identity
* @return StateMachineContext
* @throws \Throwable
*/
public function createContext($identity = null)
{
$m = $this->owner;
return Context::nu($this->sm, $identity, $m, $this->attr, $this->virtAttr);
}
/**
* Get the current state
*
* @return State
* @throws InvalidSchemaException
* @throws StateNotFoundException
* @throws exceptions\StateMachineNotFoundException
*/
public function getState()
{
if (!empty($this->owner->{$this->attr})) {
return $this->sm->getState($this->owner->{$this->attr});
} else {
return $this->sm->getState($this->sm->getInitialStateValue());
}
}
/**
* @param string|StateMachineEvent $event
* @param yii\web\IdentityInterface|StateMachineContext|null $identity
* @return StateMachineContext
* @throws EventNotFoundException
* @throws InvalidSchemaException
* @throws StateNotFoundException
* @throws \Exception
* @throws \Throwable
*/
public function trigger($event, $identity = null)
{
$m = $this->owner;
// State
$state = $this->sm->getState($m->{$this->attr});
// Acquire context if applicable
if ($identity instanceof StateMachineContext) {
$context = $identity;
$identity = $context->getIdentity();
} else {
$context = $this->createContext($identity);
}
// Event
if (!$event instanceof StateMachineEvent) {
$evt = $state->getEventByLabel($event, $context);
if (!$evt) {
throw new EventNotFoundException("No valid event `{$event}`".($context ? ' (with context)' : null)." found in State Machine `{$this->sm->name}`");
}
$event = $evt;
}
try {
$this->sm->transition($event, $context);
} catch (Exception $e) {
$context->attachException($e);
}
if ($context->hasErrors()) {
// Migrate the context errors to the virtual attribute
foreach ($context->getErrors() as $attr => $error) {
$m->addError($this->virtAttr, $error);
}
}
return $context;
}
/**
* @param yii\web\IdentityInterface $identity
* @return StateMachineEvent[]
* @throws \Throwable
*/
public function getTriggers($identity = null)
{
$context = $this->createContext($identity);
return $context->getPossibleEvents();
}
/**
* @return StateMachineContext
* @throws \Throwable
* @throws yii\db\Exception
*/
public function initStateMachine()
{
$this->owner->off(ActiveRecord::EVENT_AFTER_INSERT, [$this, 'initStateMachine']);
// If value already set then ignore the call
$context = $this->createContext();
$this->sm->initStateMachineAttribute($context);
return $context;
}
/**
* @return string
*/
public function __toString()
{
return (string)$this->owner->{$this->attr};
}
/**
* @param string $name
* @param mixed $value
* @throws CannotGuessEventException
* @throws EventNotFoundException
* @throws InvalidSchemaException
* @throws StateNotFoundException
* @throws \Throwable
* @throws exceptions\StateMachineNotFoundException
* @throws yii\base\UnknownPropertyException
* @throws yii\db\Exception
*/
public function __set($name, $value)
{
if ($name === $this->virtAttr) {
$m = $this->owner;
// Value did not change - ignore
if ($m->{$this->attr} === $value) {
return;
}
// First time? Initialize SM for $value state
if ($m->{$this->attr} === null && $m->getIsNewRecord()) {
if ($value !== $this->sm->getInitialStateValue()) {
throw new InvalidValueException("This attribute is just entering the State Machine and must be set to {$this->sm->getInitialStateValue()}");
}
$context = $this->initStateMachine();
} else {
// Not first time, try to trigger for $value
$state = $this->sm->getState($m->{$this->attr});
if (!$state) {
throw new InvalidSchemaException("Cannot load current state {$m->{$this->attr}}");
}
$ctx = $this->createContext();
$event = $state->guessEvent($value, $ctx);
$context = $this->trigger($event, $ctx);
}
// Migrate the context errors to the virtual attribute
foreach ($context->errors as $attr => $error) {
$m->addError($this->virtAttr, $error);
}
} else {
parent::__set($name, $value);
}
}
/**
* @param string $name
* @return mixed
* @throws yii\base\UnknownPropertyException
*/
public function __get($name)
{
if ($name === $this->virtAttr) {
return $this;
} else {
return parent::__get($name);
}
}
}