-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDefaultRepository.php
More file actions
476 lines (401 loc) · 16.1 KB
/
DefaultRepository.php
File metadata and controls
476 lines (401 loc) · 16.1 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
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<?php
declare(strict_types=1);
namespace Patchlevel\EventSourcing\Repository;
use Patchlevel\EventSourcing\Aggregate\AggregateHeader;
use Patchlevel\EventSourcing\Aggregate\AggregateRoot;
use Patchlevel\EventSourcing\Aggregate\AggregateRootId;
use Patchlevel\EventSourcing\Clock\SystemClock;
use Patchlevel\EventSourcing\EventBus\EventBus;
use Patchlevel\EventSourcing\Message\Message;
use Patchlevel\EventSourcing\Metadata\AggregateRoot\AggregateRootMetadata;
use Patchlevel\EventSourcing\Repository\MessageDecorator\MessageDecorator;
use Patchlevel\EventSourcing\Snapshot\SnapshotNotFound;
use Patchlevel\EventSourcing\Snapshot\SnapshotStore;
use Patchlevel\EventSourcing\Snapshot\SnapshotVersionInvalid;
use Patchlevel\EventSourcing\Store\Criteria\AggregateIdCriterion;
use Patchlevel\EventSourcing\Store\Criteria\AggregateNameCriterion;
use Patchlevel\EventSourcing\Store\Criteria\ArchivedCriterion;
use Patchlevel\EventSourcing\Store\Criteria\Criteria;
use Patchlevel\EventSourcing\Store\Criteria\FromPlayheadCriterion;
use Patchlevel\EventSourcing\Store\Criteria\StreamCriterion;
use Patchlevel\EventSourcing\Store\Criteria\ToPlayheadCriterion;
use Patchlevel\EventSourcing\Store\Header\PlayheadHeader;
use Patchlevel\EventSourcing\Store\Header\RecordedOnHeader;
use Patchlevel\EventSourcing\Store\Header\StreamNameHeader;
use Patchlevel\EventSourcing\Store\Store;
use Patchlevel\EventSourcing\Store\Stream;
use Patchlevel\EventSourcing\Store\StreamStartHeader;
use Patchlevel\EventSourcing\Store\StreamStore;
use Patchlevel\EventSourcing\Store\UniqueConstraintViolation;
use Psr\Clock\ClockInterface;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Throwable;
use Traversable;
use WeakMap;
use function array_map;
use function assert;
use function count;
use function is_a;
use function is_object;
use function sprintf;
/**
* @template T of AggregateRoot
* @implements Repository<T>
*/
final class DefaultRepository implements Repository
{
private ClockInterface $clock;
private LoggerInterface $logger;
/** @var WeakMap<T, bool> */
private WeakMap $aggregateIsValid;
private bool $isStreamStore;
/** @param AggregateRootMetadata<T> $metadata */
public function __construct(
private readonly Store $store,
private readonly AggregateRootMetadata $metadata,
private readonly EventBus|null $eventBus = null,
private readonly SnapshotStore|null $snapshotStore = null,
private readonly MessageDecorator|null $messageDecorator = null,
ClockInterface|null $clock = null,
LoggerInterface|null $logger = null,
) {
$this->clock = $clock ?? new SystemClock();
$this->logger = $logger ?? new NullLogger();
$this->aggregateIsValid = new WeakMap();
$this->isStreamStore = $store instanceof StreamStore;
}
/** @return T */
public function load(AggregateRootId $id): AggregateRoot
{
if ($this->snapshotStore && $this->metadata->snapshot) {
try {
$aggregate = $this->loadFromSnapshot($this->metadata->className, $id);
$this->logger->debug(
sprintf(
'Repository: Aggregate "%s" with the id "%s" loaded from snapshot.',
$this->metadata->name,
$id->toString(),
),
);
return $aggregate;
} catch (SnapshotRebuildFailed $exception) {
$this->logger->error(
sprintf(
'Repository: Aggregate "%s" with the id "%s" could not be rebuild from snapshot.',
$this->metadata->name,
$id->toString(),
),
);
$this->logger->error($exception->getMessage());
} catch (SnapshotNotFound) {
$this->logger->debug(
sprintf(
'Repository: Snapshot for aggregate "%s" with the id "%s" not found.',
$this->metadata->name,
$id->toString(),
),
);
} catch (SnapshotVersionInvalid) {
$this->logger->debug(
sprintf(
'Repository: Snapshot for aggregate "%s" with the id "%s" is invalid.',
$this->metadata->name,
$id->toString(),
),
);
}
}
if ($this->isStreamStore) {
$criteria = new Criteria(
new StreamCriterion($this->metadata->streamName($id->toString())),
new ArchivedCriterion(false),
);
} else {
$criteria = new Criteria(
new AggregateNameCriterion($this->metadata->name),
new AggregateIdCriterion($id->toString()),
new ArchivedCriterion(false),
);
}
$stream = null;
try {
$stream = $this->store->load($criteria);
$firstMessage = $stream->current();
if ($firstMessage === null) {
if ($this->metadata->autoInitializeMethod) {
$aggregate = $this->metadata->className::{$this->metadata->autoInitializeMethod}($id);
if (!is_object($aggregate) || !is_a($aggregate, $this->metadata->className, true)) {
throw new InvalidAggregate(
$this->metadata->autoInitializeMethod,
$this->metadata->className,
$aggregate,
);
}
$this->logger->debug(
sprintf(
'Repository: Auto initialize aggregate "%s" with the id "%s".',
$this->metadata->name,
$id->toString(),
),
);
$this->aggregateIsValid[$aggregate] = true;
return $aggregate;
}
$this->logger->debug(
sprintf(
'Repository: Aggregate "%s" with the id "%s" not found.',
$this->metadata->name,
$id->toString(),
),
);
throw new AggregateNotFound($this->metadata->className, $id);
}
if ($this->isStreamStore) {
$playhead = $firstMessage->header(PlayheadHeader::class)->playhead;
} else {
$playhead = $firstMessage->header(AggregateHeader::class)->playhead;
}
$aggregate = $this->metadata->className::createFromEvents(
$this->unpack($stream),
$playhead - 1,
);
if ($this->snapshotStore && $this->metadata->snapshot) {
$this->saveSnapshot($aggregate, $stream->position());
}
} finally {
$stream?->close();
}
$this->aggregateIsValid[$aggregate] = true;
$this->logger->debug(
sprintf(
'Repository: Aggregate "%s" with the id "%s" loaded from store.',
$this->metadata->name,
$id->toString(),
),
);
return $aggregate;
}
public function has(AggregateRootId $id): bool
{
if ($this->isStreamStore) {
$criteria = new Criteria(
new StreamCriterion($this->metadata->streamName($id->toString())),
);
} else {
$criteria = new Criteria(
new AggregateNameCriterion($this->metadata->name),
new AggregateIdCriterion($id->toString()),
);
}
return $this->store->count($criteria) > 0;
}
/** @param T $aggregate */
public function save(AggregateRoot $aggregate): void
{
$this->assertValidAggregate($aggregate);
$aggregateId = $aggregate->aggregateRootId()->toString();
try {
$events = $aggregate->releaseEvents();
$eventCount = count($events);
if ($eventCount === 0) {
return;
}
$playhead = $aggregate->playhead() - $eventCount;
$newAggregate = $playhead === 0;
if (!isset($this->aggregateIsValid[$aggregate]) && !$newAggregate) {
$this->logger->error(
sprintf(
'Repository: Aggregate "%s" with the id "%s" is unknown.',
$this->metadata->name,
$aggregateId,
),
);
throw new AggregateUnknown($aggregate::class, $aggregate->aggregateRootId());
}
if ($playhead < 0) {
$this->logger->error(
sprintf(
'Repository: Aggregate "%s" with the id "%s" has a playhead mismatch. Expected "%d" but got "%d".',
$this->metadata->name,
$aggregateId,
$aggregate->playhead(),
$eventCount,
),
);
throw new PlayheadMismatch(
$aggregate::class,
$aggregate->aggregateRootId(),
$aggregate->playhead(),
$eventCount,
);
}
$messageDecorator = $this->messageDecorator;
$clock = $this->clock;
$aggregateName = $this->metadata->name;
$streamName = $this->isStreamStore ? $this->metadata->streamName($aggregateId) : null;
$archiveTo = null;
$messages = array_map(
static function (object $event) use (
$aggregateName,
$aggregateId,
&$playhead,
&$archiveTo,
$messageDecorator,
$clock,
$streamName,
) {
$message = Message::create($event);
if ($streamName !== null) {
$message = $message
->withHeader(new StreamNameHeader($streamName))
->withHeader(new PlayheadHeader(++$playhead))
->withHeader(new RecordedOnHeader($clock->now()));
} else {
$message = $message->withHeader(
new AggregateHeader(
$aggregateName,
$aggregateId,
++$playhead,
$clock->now(),
),
);
}
if ($messageDecorator) {
$message = $messageDecorator($message);
}
if ($message->hasHeader(StreamStartHeader::class)) {
$archiveTo = $playhead;
}
return $message;
},
$events,
);
try {
if ($archiveTo !== null && $this->store instanceof StreamStore) {
$this->store->transactional(
function () use ($messages, $streamName, $archiveTo): void {
$this->store->save(...$messages);
$this->store->archive(
new Criteria(
new StreamCriterion($streamName),
new ToPlayheadCriterion($archiveTo),
),
);
},
);
} else {
$this->store->save(...$messages);
}
} catch (UniqueConstraintViolation) {
if ($newAggregate) {
$this->logger->error(
sprintf(
'Repository: Aggregate "%s" with the id "%s" already exists.',
$aggregate::class,
$aggregateId,
),
);
throw new AggregateAlreadyExists($aggregate::class, $aggregate->aggregateRootId());
}
$this->logger->error(
sprintf(
'Repository: Aggregate "%s" with the id "%s" is outdated.',
$aggregate::class,
$aggregateId,
),
);
throw new AggregateOutdated($aggregate::class, $aggregate->aggregateRootId());
}
$this->aggregateIsValid[$aggregate] = true;
$this->logger->debug(
sprintf(
'Repository: Aggregate "%s" with the id "%s" saved.',
$this->metadata->name,
$aggregateId,
),
);
} catch (Throwable $exception) {
$this->aggregateIsValid[$aggregate] = false;
throw $exception;
}
$this->eventBus?->dispatch(...$messages);
}
/**
* @param class-string<T> $aggregateClass
*
* @return T
*/
private function loadFromSnapshot(string $aggregateClass, AggregateRootId $id): AggregateRoot
{
assert($this->snapshotStore instanceof SnapshotStore);
$aggregate = $this->snapshotStore->load($aggregateClass, $id);
if ($this->isStreamStore) {
$criteria = new Criteria(
new StreamCriterion($this->metadata->streamName($id->toString())),
new FromPlayheadCriterion($aggregate->playhead()),
);
} else {
$criteria = new Criteria(
new AggregateNameCriterion($this->metadata->name),
new AggregateIdCriterion($id->toString()),
new FromPlayheadCriterion($aggregate->playhead()),
);
}
$stream = null;
try {
$stream = $this->store->load($criteria);
if ($stream->current() === null) {
$this->aggregateIsValid[$aggregate] = true;
return $aggregate;
}
try {
$aggregate->catchUp($this->unpack($stream));
} catch (Throwable $exception) {
throw new SnapshotRebuildFailed($aggregateClass, $id, $exception);
}
$this->saveSnapshot($aggregate, $stream->position());
} finally {
$stream?->close();
}
$this->aggregateIsValid[$aggregate] = true;
return $aggregate;
}
/** @param T $aggregate */
private function saveSnapshot(AggregateRoot $aggregate, int|null $streamPosition): void
{
assert($this->snapshotStore instanceof SnapshotStore);
if ($streamPosition === null) {
return;
}
$batchSize = (int)$this->metadata->snapshot?->batch ?: 1;
$count = $streamPosition + 1;
if ($count < $batchSize) {
return;
}
$this->logger->debug(
sprintf(
'Repository: Save snapshot for aggregate "%s" with the id "%s".',
$this->metadata->className,
$aggregate->aggregateRootId()->toString(),
),
);
$this->snapshotStore->save($aggregate);
}
private function assertValidAggregate(AggregateRoot $aggregate): void
{
if (!$aggregate instanceof $this->metadata->className) {
throw new WrongAggregate($aggregate::class, $this->metadata->className);
}
if (($this->aggregateIsValid[$aggregate] ?? null) === false) {
throw new AggregateDetached($aggregate::class, $aggregate->aggregateRootId());
}
}
/** @return Traversable<object> */
private function unpack(Stream $stream): Traversable
{
foreach ($stream as $message) {
yield $message->event();
}
}
}