-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDefaultRepository.php
More file actions
357 lines (295 loc) · 11.5 KB
/
DefaultRepository.php
File metadata and controls
357 lines (295 loc) · 11.5 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
<?php
declare(strict_types=1);
namespace Patchlevel\EventSourcing\Repository;
use Patchlevel\EventSourcing\Aggregate\AggregateRoot;
use Patchlevel\EventSourcing\Clock\SystemClock;
use Patchlevel\EventSourcing\EventBus\EventBus;
use Patchlevel\EventSourcing\Identifier\Identifier;
use Patchlevel\EventSourcing\Message\Message;
use Patchlevel\EventSourcing\Metadata\AggregateRoot\AggregateRootMetadata;
use Patchlevel\EventSourcing\Repository\MessageDecorator\MessageDecorator;
use Patchlevel\EventSourcing\Repository\StoreAdapter\StoreAdapter;
use Patchlevel\EventSourcing\Snapshot\SnapshotNotFound;
use Patchlevel\EventSourcing\Snapshot\SnapshotStore;
use Patchlevel\EventSourcing\Snapshot\SnapshotVersionInvalid;
use Patchlevel\EventSourcing\Store\Header\PlayheadHeader;
use Patchlevel\EventSourcing\Store\Header\RecordedOnHeader;
use Patchlevel\EventSourcing\Store\Stream;
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 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;
/** @param AggregateRootMetadata<T> $metadata */
public function __construct(
private readonly StoreAdapter $messageAdapter,
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();
}
/** @return T */
public function load(Identifier $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(),
),
);
}
}
$stream = null;
try {
$stream = $this->messageAdapter->load(
$this->metadata->streamName($id->toString()),
);
$firstMessage = $stream->current();
if ($firstMessage === null) {
$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);
}
$playhead = $firstMessage->header(PlayheadHeader::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(Identifier $id): bool
{
return $this->messageAdapter->count($this->metadata->streamName($id->toString())) > 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;
$streamName = $this->metadata->streamName($aggregateId);
$messages = array_map(
static function (object $event) use (
&$playhead,
$messageDecorator,
$clock,
) {
$message = Message::create($event)
->withHeader(new PlayheadHeader(++$playhead))
->withHeader(new RecordedOnHeader($clock->now()));
if ($messageDecorator) {
$message = $messageDecorator($message);
}
return $message;
},
$events,
);
try {
$this->messageAdapter->write($streamName, $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, Identifier $id): AggregateRoot
{
assert($this->snapshotStore instanceof SnapshotStore);
$aggregate = $this->snapshotStore->load($aggregateClass, $id);
$stream = null;
try {
$stream = $this->messageAdapter->load($this->metadata->streamName($id->toString()), $aggregate->playhead());
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();
}
}
}