-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBaseListener.php
More file actions
212 lines (183 loc) · 5.84 KB
/
Copy pathBaseListener.php
File metadata and controls
212 lines (183 loc) · 5.84 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
<?php
declare(strict_types=1);
namespace ADT\DoctrineComponents;
use ADT\DoctrineComponents\Entities\Entity;
use Doctrine\Common\EventSubscriber;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\Event\OnFlushEventArgs;
use Doctrine\ORM\Event\PostPersistEventArgs;
use Doctrine\ORM\Event\PostUpdateEventArgs;
use Doctrine\ORM\Event\PrePersistEventArgs;
use Doctrine\ORM\Event\PreUpdateEventArgs;
use Exception;
abstract class BaseListener implements EventSubscriber
{
private static int $transactionsStartedCount = 0;
private static bool $possibleChangesChecked = false;
protected EntityManager $em;
/** @var callable[] */
private array $postFlush = [];
/** @var callable[] */
protected array $entitiesToCompute = [];
/** @var callable[] */
protected array $entitiesToRecompute = [];
public abstract function getSubscribedEvents();
public function setEntityManager(EntityManager $em): void
{
$this->em = $em;
}
/**
* @throws Exception
*/
final public function onFlush(OnFlushEventArgs $eventArgs): void
{
self::$possibleChangesChecked = false;
EntityManager::$isFlushAllowed = false;
if (method_exists($this, 'onFlushCallback')) {
$this->onFlushCallback($eventArgs);
} else {
throw new Exception('Implement onFlushCallback first.');
}
EntityManager::$isFlushAllowed = true;
$this->recalculateEntities($eventArgs->getObjectManager());
}
/**
* @throws Exception
*/
final public function prePersist(PrePersistEventArgs $eventArgs): void
{
self::$possibleChangesChecked = false;
EntityManager::$isFlushAllowed = false;
if (method_exists($this, 'prePersistCallback')) {
$this->prePersistCallback($eventArgs);
} else {
throw new Exception('Implement prePersistCallback first.');
}
EntityManager::$isFlushAllowed = true;
$this->recalculateEntities($eventArgs->getObjectManager());
}
/**
* @throws Exception
*/
final public function postPersist(PostPersistEventArgs $eventArgs): void
{
self::$possibleChangesChecked = false;
EntityManager::$isFlushAllowed = false;
if (method_exists($this, 'postPersistCallback')) {
$this->postPersistCallback($eventArgs);
} else {
throw new Exception('Implement postPersistCallback first.');
}
EntityManager::$isFlushAllowed = true;
$this->recalculateEntities($eventArgs->getObjectManager());
}
/**
* @throws Exception
*/
final public function preUpdate(PreUpdateEventArgs $eventArgs): void
{
self::$possibleChangesChecked = false;
EntityManager::$isFlushAllowed = false;
if (method_exists($this, 'preUpdateCallback')) {
$this->preUpdateCallback($eventArgs);
} else {
throw new Exception('Implement preUpdateCallback first.');
}
EntityManager::$isFlushAllowed = true;
$this->recalculateEntities($eventArgs->getObjectManager());
}
/**
* @throws Exception
*/
final public function postUpdate(PostUpdateEventArgs $eventArgs): void
{
self::$possibleChangesChecked = false;
EntityManager::$isFlushAllowed = false;
if (method_exists($this, 'postUpdateCallback')) {
$this->postUpdateCallback($eventArgs);
} else {
throw new Exception('Implement postUpdateCallback first.');
}
EntityManager::$isFlushAllowed = true;
$this->recalculateEntities($eventArgs->getObjectManager());
}
/**
* @throws Exception
*/
final public function postFlush(): void
{
$uow = $this->em->getUnitOfWork();
if (!self::$possibleChangesChecked) {
$uow->computeChangeSets();
$changedEntities = [];
foreach (array_merge($uow->getScheduledEntityInsertions(), $uow->getScheduledEntityUpdates()) as $_entity) {
$changedEntities[] = $_entity::class . ' ' . $_entity->getId();
}
if (count($changedEntities) > 0) {
throw new Exception('You probably did not recompute all changes:' . implode('; ', $changedEntities));
}
self::$possibleChangesChecked = true;
}
while (self::$transactionsStartedCount) {
$this->commitTransaction();
}
$postFlush = $this->postFlush;
$this->postFlush = [];
foreach ($postFlush as $_callback) {
$_callback();
}
}
protected function startTransaction(): void
{
if (self::$transactionsStartedCount === 0) {
$this->em->beginTransaction();
}
self::$transactionsStartedCount++;
}
/**
* @throws Exception
*/
protected function commitTransaction(): void
{
self::$transactionsStartedCount--;
if (self::$transactionsStartedCount === -1) {
throw new Exception('No transactions are started for commit');
} elseif (self::$transactionsStartedCount === 0) {
$this->em->commit();
}
}
protected function isPropertyChanged(Entity $entity, array|string $property): bool
{
$uow = $this->em->getUnitOfWork();
$changeSet = $uow->getEntityChangeSet($entity);
foreach ((array)$property as $_property) {
if (isset($changeSet[$_property]) && $changeSet[$_property][0] !== $changeSet[$_property][1]) {
return true;
}
}
return false;
}
protected function recalculateEntities(EntityManagerInterface $em): void
{
$uniqueEntitiesToCompute = array_intersect_key($this->entitiesToCompute, array_unique(array_map('spl_object_id', $this->entitiesToCompute)));
$this->entitiesToCompute = [];
foreach ($uniqueEntitiesToCompute as $_entity) {
$this->em->getUnitOfWork()->computeChangeSet($this->em->getClassMetadata($_entity::class), $_entity);
}
$uniqueEntitiesToRecalculate = array_intersect_key($this->entitiesToRecompute, array_unique(array_map('spl_object_id', $this->entitiesToRecompute)));
$this->entitiesToRecompute = [];
foreach ($uniqueEntitiesToRecalculate as $_entity) {
$em->getUnitOfWork()->recomputeSingleEntityChangeSet($em->getClassMetadata($_entity::class), $_entity);
}
}
/**
* @throws Exception
*/
final protected function addPostFlushCallback(callable $callback): void
{
if (!in_array('postFlush', $this->getSubscribedEvents())) {
throw new Exception ('Missing postFlush subsribed event.');
}
$this->postFlush[] = $callback;
}
}