1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

No huge if clause

This commit is contained in:
Francesc Rosàs 2012-07-23 01:14:02 +02:00 committed by Benjamin Eberlei
parent 9322ca7052
commit 1e669132c2

View file

@ -281,85 +281,81 @@ class UnitOfWork implements PropertyChangedListener
} }
} }
$anythingToDo = if ( ! ($this->entityInsertions ||
$this->entityInsertions || $this->entityDeletions ||
$this->entityDeletions || $this->entityUpdates ||
$this->entityUpdates || $this->collectionUpdates ||
$this->collectionUpdates || $this->collectionDeletions ||
$this->collectionDeletions || $this->orphanRemovals)) {
$this->orphanRemovals; $this->dispatchOnFlushEvent();
$this->dispatchPostFlushEvent();
if ($anythingToDo && $this->orphanRemovals) { return; // Nothing to do.
}
if ($this->orphanRemovals) {
foreach ($this->orphanRemovals as $orphan) { foreach ($this->orphanRemovals as $orphan) {
$this->remove($orphan); $this->remove($orphan);
} }
} }
// Raise onFlush $this->dispatchOnFlushEvent();
if ($this->evm->hasListeners(Events::onFlush)) {
$this->evm->dispatchEvent(Events::onFlush, new Event\OnFlushEventArgs($this->em));
}
if ($anythingToDo) { // Now we need a commit order to maintain referential integrity
// Now we need a commit order to maintain referential integrity $commitOrder = $this->getCommitOrder();
$commitOrder = $this->getCommitOrder();
$conn = $this->em->getConnection(); $conn = $this->em->getConnection();
$conn->beginTransaction(); $conn->beginTransaction();
try { try {
if ($this->entityInsertions) { if ($this->entityInsertions) {
foreach ($commitOrder as $class) { foreach ($commitOrder as $class) {
$this->executeInserts($class); $this->executeInserts($class);
}
} }
if ($this->entityUpdates) {
foreach ($commitOrder as $class) {
$this->executeUpdates($class);
}
}
// Extra updates that were requested by persisters.
if ($this->extraUpdates) {
$this->executeExtraUpdates();
}
// Collection deletions (deletions of complete collections)
foreach ($this->collectionDeletions as $collectionToDelete) {
$this->getCollectionPersister($collectionToDelete->getMapping())->delete($collectionToDelete);
}
// Collection updates (deleteRows, updateRows, insertRows)
foreach ($this->collectionUpdates as $collectionToUpdate) {
$this->getCollectionPersister($collectionToUpdate->getMapping())->update($collectionToUpdate);
}
// Entity deletions come last and need to be in reverse commit order
if ($this->entityDeletions) {
for ($count = count($commitOrder), $i = $count - 1; $i >= 0; --$i) {
$this->executeDeletions($commitOrder[$i]);
}
}
$conn->commit();
} catch (Exception $e) {
$this->em->close();
$conn->rollback();
throw $e;
} }
// Take new snapshots from visited collections if ($this->entityUpdates) {
foreach ($this->visitedCollections as $coll) { foreach ($commitOrder as $class) {
$coll->takeSnapshot(); $this->executeUpdates($class);
}
} }
// Extra updates that were requested by persisters.
if ($this->extraUpdates) {
$this->executeExtraUpdates();
}
// Collection deletions (deletions of complete collections)
foreach ($this->collectionDeletions as $collectionToDelete) {
$this->getCollectionPersister($collectionToDelete->getMapping())->delete($collectionToDelete);
}
// Collection updates (deleteRows, updateRows, insertRows)
foreach ($this->collectionUpdates as $collectionToUpdate) {
$this->getCollectionPersister($collectionToUpdate->getMapping())->update($collectionToUpdate);
}
// Entity deletions come last and need to be in reverse commit order
if ($this->entityDeletions) {
for ($count = count($commitOrder), $i = $count - 1; $i >= 0; --$i) {
$this->executeDeletions($commitOrder[$i]);
}
}
$conn->commit();
} catch (Exception $e) {
$this->em->close();
$conn->rollback();
throw $e;
} }
// Raise postFlush // Take new snapshots from visited collections
if ($this->evm->hasListeners(Events::postFlush)) { foreach ($this->visitedCollections as $coll) {
$this->evm->dispatchEvent(Events::postFlush, new Event\PostFlushEventArgs($this->em)); $coll->takeSnapshot();
} }
$this->dispatchPostFlushEvent();
// Clear up // Clear up
$this->entityInsertions = $this->entityInsertions =
$this->entityUpdates = $this->entityUpdates =
@ -3154,4 +3150,18 @@ class UnitOfWork implements PropertyChangedListener
return isset($this->readOnlyObjects[spl_object_hash($object)]); return isset($this->readOnlyObjects[spl_object_hash($object)]);
} }
private function dispatchOnFlushEvent()
{
if ($this->evm->hasListeners(Events::onFlush)) {
$this->evm->dispatchEvent(Events::onFlush, new Event\OnFlushEventArgs($this->em));
}
}
private function dispatchPostFlushEvent()
{
if ($this->evm->hasListeners(Events::postFlush)) {
$this->evm->dispatchEvent(Events::postFlush, new Event\PostFlushEventArgs($this->em));
}
}
} }