|
1
|
|
|
<?php |
|
2
|
|
|
/****************************************************************************** |
|
3
|
|
|
* Copyright (c) 2016 Constantin Galbenu <[email protected]> * |
|
4
|
|
|
******************************************************************************/ |
|
5
|
|
|
|
|
6
|
|
|
namespace Gica\Cqrs\Command; |
|
7
|
|
|
|
|
8
|
|
|
|
|
9
|
|
|
use Gica\Cqrs\Aggregate\AggregateRepository; |
|
10
|
|
|
use Gica\Cqrs\Command; |
|
11
|
|
|
use Gica\Cqrs\Command\CommandDispatcher\AuthenticatedIdentityReaderService; |
|
12
|
|
|
use Gica\Cqrs\Command\CommandDispatcher\ConcurrentProofFunctionCaller; |
|
13
|
|
|
use Gica\Cqrs\Command\Exception\CommandValidationFailed; |
|
14
|
|
|
use Gica\Cqrs\Command\ValueObject\CommandHandlerAndAggregate; |
|
15
|
|
|
use Gica\Cqrs\Event; |
|
16
|
|
|
use Gica\Cqrs\Event\EventDispatcher; |
|
17
|
|
|
use Gica\Cqrs\Event\EventsApplier\EventsApplierOnAggregate; |
|
18
|
|
|
use Gica\Cqrs\Event\EventWithMetaData; |
|
19
|
|
|
use Gica\Cqrs\Event\MetaData; |
|
20
|
|
|
use Gica\Cqrs\Event\ScheduledEvent; |
|
21
|
|
|
use Gica\Cqrs\FutureEventsStore; |
|
22
|
|
|
use Gica\Cqrs\ScheduledCommandStore; |
|
23
|
|
|
use Gica\Cqrs\Scheduling\ScheduledCommand; |
|
24
|
|
|
use Gica\Cqrs\Scheduling\ScheduledMessage; |
|
25
|
|
|
|
|
26
|
|
|
class CommandDispatcher |
|
27
|
|
|
{ |
|
28
|
|
|
const MAXIMUM_SAVE_RETRIES = 50; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* @var CommandSubscriber |
|
32
|
|
|
*/ |
|
33
|
|
|
private $commandSubscriber; |
|
34
|
|
|
/** |
|
35
|
|
|
* @var EventDispatcher |
|
36
|
|
|
*/ |
|
37
|
|
|
private $eventDispatcher; |
|
38
|
|
|
/** |
|
39
|
|
|
* @var CommandApplier |
|
40
|
|
|
*/ |
|
41
|
|
|
private $commandApplier; |
|
42
|
|
|
/** |
|
43
|
|
|
* @var AggregateRepository |
|
44
|
|
|
*/ |
|
45
|
|
|
private $aggregateRepository; |
|
46
|
|
|
/** |
|
47
|
|
|
* @var ConcurrentProofFunctionCaller |
|
48
|
|
|
*/ |
|
49
|
|
|
private $concurrentProofFunctionCaller; |
|
50
|
|
|
/** |
|
51
|
|
|
* @var CommandValidator |
|
52
|
|
|
*/ |
|
53
|
|
|
private $commandValidator; |
|
54
|
|
|
/** |
|
55
|
|
|
* @var AuthenticatedIdentityReaderService |
|
56
|
|
|
*/ |
|
57
|
|
|
private $authenticatedIdentityServiceReader; |
|
58
|
|
|
/** |
|
59
|
|
|
* @var FutureEventsStore |
|
60
|
|
|
*/ |
|
61
|
|
|
private $futureEventsStore; |
|
62
|
|
|
/** |
|
63
|
|
|
* @var EventsApplierOnAggregate |
|
64
|
5 |
|
*/ |
|
65
|
|
|
private $eventsApplierOnAggregate; |
|
66
|
|
|
/** |
|
67
|
|
|
* @var ScheduledCommandStore|null |
|
68
|
|
|
*/ |
|
69
|
|
|
private $scheduledCommandStore; |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* @param CommandSubscriber $commandSubscriber |
|
73
|
|
|
* @param EventDispatcher $eventDispatcher |
|
74
|
|
|
* @param CommandApplier $commandApplier |
|
75
|
|
|
* @param AggregateRepository $aggregateRepository |
|
76
|
5 |
|
* @param ConcurrentProofFunctionCaller $functionCaller |
|
77
|
5 |
|
* @param CommandValidator $commandValidator |
|
78
|
5 |
|
* @param AuthenticatedIdentityReaderService $authService |
|
79
|
5 |
|
* @param FutureEventsStore|null $futureEventsStore |
|
80
|
5 |
|
* @param ScheduledCommandStore|null $commandStore |
|
81
|
5 |
|
* @param EventsApplierOnAggregate $eventsApplier |
|
82
|
5 |
|
*/ |
|
83
|
5 |
|
public function __construct( |
|
84
|
5 |
|
CommandSubscriber $commandSubscriber, |
|
85
|
5 |
|
EventDispatcher $eventDispatcher, |
|
86
|
|
|
CommandApplier $commandApplier, |
|
87
|
4 |
|
AggregateRepository $aggregateRepository, |
|
88
|
|
|
ConcurrentProofFunctionCaller $functionCaller, |
|
89
|
4 |
|
CommandValidator $commandValidator, |
|
90
|
|
|
AuthenticatedIdentityReaderService $authService, |
|
91
|
4 |
|
?FutureEventsStore $futureEventsStore = null, |
|
92
|
1 |
|
EventsApplierOnAggregate $eventsApplier, |
|
93
|
|
|
?ScheduledCommandStore $commandStore = null |
|
94
|
|
|
) |
|
95
|
|
|
{ |
|
96
|
3 |
|
$this->commandSubscriber = $commandSubscriber; |
|
97
|
3 |
|
$this->eventDispatcher = $eventDispatcher; |
|
98
|
3 |
|
$this->commandApplier = $commandApplier; |
|
99
|
|
|
$this->aggregateRepository = $aggregateRepository; |
|
100
|
2 |
|
$this->concurrentProofFunctionCaller = $functionCaller; |
|
101
|
2 |
|
$this->commandValidator = $commandValidator; |
|
102
|
|
|
$this->authenticatedIdentityServiceReader = $authService; |
|
103
|
|
|
$this->futureEventsStore = $futureEventsStore; |
|
104
|
2 |
|
$this->eventsApplierOnAggregate = $eventsApplier; |
|
105
|
2 |
|
$this->scheduledCommandStore = $commandStore; |
|
106
|
|
|
} |
|
107
|
3 |
|
|
|
108
|
|
|
public function dispatchCommand(Command $command) |
|
109
|
3 |
|
{ |
|
110
|
|
|
$errors = $this->commandValidator->validateCommand($command); |
|
111
|
3 |
|
|
|
112
|
|
|
if (!empty($errors)) { |
|
113
|
2 |
|
throw new CommandValidationFailed($errors); |
|
114
|
|
|
} |
|
115
|
2 |
|
|
|
116
|
|
|
/** @var EventWithMetaData[] $eventsWithMetaData */ |
|
117
|
2 |
|
/** @var ScheduledCommand[] $scheduledCommands */ |
|
118
|
|
|
|
|
119
|
|
|
list($eventsWithMetaData, $futureEventsWithMeta, $scheduledCommands) = $this->concurrentProofFunctionCaller->executeFunction(function () use ($command) { |
|
120
|
|
|
return $this->tryDispatchCommandAndSaveAggregate($command); |
|
121
|
|
|
}, self::MAXIMUM_SAVE_RETRIES); |
|
122
|
|
|
|
|
123
|
|
|
foreach ($eventsWithMetaData as $eventWithMetaData) { |
|
124
|
2 |
|
$this->eventDispatcher->dispatchEvent($eventWithMetaData); |
|
125
|
|
|
} |
|
126
|
2 |
|
|
|
127
|
2 |
|
if ($this->futureEventsStore) { |
|
128
|
|
|
$this->futureEventsStore->scheduleEvents($futureEventsWithMeta); |
|
129
|
2 |
|
} |
|
130
|
2 |
|
|
|
131
|
1 |
|
if ($this->scheduledCommandStore && $scheduledCommands) { |
|
|
|
|
|
|
132
|
|
|
$this->scheduledCommandStore->scheduleCommands($scheduledCommands); |
|
133
|
2 |
|
} |
|
134
|
|
|
} |
|
135
|
|
|
|
|
136
|
|
|
private function tryDispatchCommandAndSaveAggregate(Command $command) |
|
137
|
2 |
|
{ |
|
138
|
|
|
$handlerAndAggregate = $this->loadCommandHandlerAndAggregate($command); |
|
139
|
|
|
|
|
140
|
4 |
|
$eventsWithMetaData = $this->applyCommandAndReturnEvents($command, $handlerAndAggregate); |
|
141
|
|
|
|
|
142
|
|
|
list($eventsForNow, $eventsForTheFuture, $scheduledCommands) = $this->splitMessagesByType($eventsWithMetaData); |
|
143
|
4 |
|
|
|
144
|
4 |
|
$this->aggregateRepository->saveAggregate($command->getAggregateId(), $handlerAndAggregate->getAggregate(), $eventsForNow); |
|
145
|
1 |
|
|
|
146
|
|
|
return [$eventsForNow, $eventsForTheFuture, $scheduledCommands]; |
|
147
|
3 |
|
} |
|
148
|
3 |
|
|
|
149
|
2 |
|
/** |
|
150
|
1 |
|
* @param EventWithMetaData[]|ScheduledCommand[] $messages |
|
151
|
1 |
|
* @return array |
|
152
|
|
|
*/ |
|
153
|
|
|
private function splitMessagesByType($messages) |
|
154
|
|
|
{ |
|
155
|
4 |
|
$nowEvents = []; |
|
156
|
|
|
$futureEvents = []; |
|
157
|
4 |
|
$scheduledCommands = []; |
|
158
|
|
|
|
|
159
|
4 |
|
foreach ($messages as $message) { |
|
160
|
|
|
if ($this->isScheduledCommand($message)) { |
|
161
|
4 |
|
$scheduledCommands[] = $message; |
|
162
|
|
|
} else if ($this->isScheduledEvent($message->getEvent())) { |
|
|
|
|
|
|
163
|
|
|
$futureEvents[] = $message; |
|
164
|
2 |
|
} else { |
|
165
|
|
|
$nowEvents[] = $message; |
|
166
|
2 |
|
} |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
return [$nowEvents, $futureEvents, $scheduledCommands]; |
|
170
|
|
|
} |
|
171
|
|
|
|
|
172
|
|
|
public function canExecuteCommand(Command $command): bool |
|
173
|
|
|
{ |
|
174
|
4 |
|
try { |
|
175
|
|
|
$errors = $this->commandValidator->validateCommand($command); |
|
176
|
4 |
|
if (!empty($errors)) { |
|
177
|
4 |
|
return false; |
|
178
|
|
|
} |
|
179
|
4 |
|
$handlerAndAggregate = $this->loadCommandHandlerAndAggregate($command); |
|
180
|
|
|
$this->applyCommandAndReturnEvents($command, $handlerAndAggregate); |
|
181
|
4 |
|
return true; |
|
182
|
|
|
} catch (\Exception $exception) { |
|
183
|
|
|
return false; |
|
184
|
4 |
|
} |
|
185
|
|
|
} |
|
186
|
4 |
|
|
|
187
|
2 |
|
private function loadCommandHandlerAndAggregate(Command $command): CommandHandlerAndAggregate |
|
188
|
|
|
{ |
|
189
|
2 |
|
$handler = $this->commandSubscriber->getHandlerForCommand($command); |
|
190
|
2 |
|
|
|
191
|
|
|
$aggregate = $this->aggregateRepository->loadAggregate($handler->getHandlerClass(), $command->getAggregateId()); |
|
192
|
|
|
|
|
193
|
2 |
|
return new CommandHandlerAndAggregate($handler, $aggregate); |
|
194
|
|
|
} |
|
195
|
|
|
|
|
196
|
2 |
|
private function decorateEventWithMetaData(Event $event, MetaData $metaData): EventWithMetaData |
|
197
|
|
|
{ |
|
198
|
|
|
return new EventWithMetaData($event, $metaData); |
|
199
|
2 |
|
} |
|
200
|
|
|
|
|
201
|
2 |
|
/** |
|
202
|
|
|
* @param Command $command |
|
203
|
|
|
* @param CommandHandlerAndAggregate $handlerAndAggregate |
|
204
|
4 |
|
* @return EventWithMetaData[]|ScheduledCommand[] |
|
205
|
|
|
*/ |
|
206
|
4 |
|
private function applyCommandAndReturnEvents(Command $command, CommandHandlerAndAggregate $handlerAndAggregate) |
|
207
|
4 |
|
{ |
|
208
|
|
|
$aggregate = $handlerAndAggregate->getAggregate(); |
|
209
|
4 |
|
$handler = $handlerAndAggregate->getCommandHandler(); |
|
210
|
4 |
|
|
|
211
|
|
|
$metaData = $this->factoryMetadata($command, $aggregate); |
|
212
|
|
|
|
|
213
|
|
|
$newMessageGenerator = $this->commandApplier->applyCommand($aggregate, $command, $handler->getMethodName()); |
|
214
|
|
|
|
|
215
|
|
|
/** @var EventWithMetaData[]|ScheduledCommand[] $eventsWithMetaData */ |
|
216
|
|
|
$eventsWithMetaData = []; |
|
217
|
|
|
|
|
218
|
|
|
foreach ($newMessageGenerator as $message) { |
|
219
|
|
|
if ($this->isScheduledCommand($message)) { |
|
220
|
|
|
$eventsWithMetaData[] = $message; |
|
221
|
|
|
} else { |
|
222
|
|
|
$eventWithMetaData = $this->decorateEventWithMetaData($message, $metaData); |
|
223
|
|
|
if (!$this->isScheduledMessage($message)) { |
|
224
|
|
|
$this->eventsApplierOnAggregate->applyEventsOnAggregate($aggregate, [$eventWithMetaData]); |
|
225
|
|
|
} |
|
226
|
|
|
$eventsWithMetaData[] = $eventWithMetaData; |
|
227
|
|
|
} |
|
228
|
|
|
} |
|
229
|
|
|
|
|
230
|
|
|
return $eventsWithMetaData; |
|
231
|
|
|
} |
|
232
|
|
|
|
|
233
|
|
|
private function isScheduledEvent($event): bool |
|
234
|
|
|
{ |
|
235
|
|
|
return $event instanceof ScheduledEvent; |
|
236
|
|
|
} |
|
237
|
|
|
|
|
238
|
|
|
private function isScheduledCommand($message): bool |
|
239
|
|
|
{ |
|
240
|
|
|
return $message instanceof ScheduledCommand; |
|
241
|
|
|
} |
|
242
|
|
|
|
|
243
|
|
|
private function isScheduledMessage($message): bool |
|
244
|
|
|
{ |
|
245
|
|
|
return $message instanceof ScheduledMessage; |
|
246
|
|
|
} |
|
247
|
|
|
|
|
248
|
|
|
private function factoryMetadata(Command $command, $aggregate): MetaData |
|
249
|
|
|
{ |
|
250
|
|
|
return new MetaData( |
|
251
|
|
|
$command->getAggregateId(), |
|
252
|
|
|
get_class($aggregate), |
|
253
|
|
|
new \DateTimeImmutable(), |
|
254
|
|
|
$this->authenticatedIdentityServiceReader->getAuthenticatedIdentityId()); |
|
255
|
|
|
} |
|
256
|
|
|
} |
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)or! empty(...)instead.