DDC-1210 - Optimize UnitOfWork collection handling internally.
This commit is contained in:
parent
7c244abc1c
commit
4474d305cb
1 changed files with 8 additions and 6 deletions
|
@ -490,8 +490,9 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
}
|
}
|
||||||
} else if ($orgValue instanceof PersistentCollection && $orgValue !== $actualValue) {
|
} else if ($orgValue instanceof PersistentCollection && $orgValue !== $actualValue) {
|
||||||
// A PersistentCollection was de-referenced, so delete it.
|
// A PersistentCollection was de-referenced, so delete it.
|
||||||
if ( ! in_array($orgValue, $this->collectionDeletions, true)) {
|
$coid = spl_object_hash($orgValue);
|
||||||
$this->collectionDeletions[] = $orgValue;
|
if ( ! isset($this->collectionDeletions[$coid]) ) {
|
||||||
|
$this->collectionDeletions[$coid] = $orgValue;
|
||||||
$changeSet[$propName] = $orgValue; // Signal changeset, to-many assocs will be ignored.
|
$changeSet[$propName] = $orgValue; // Signal changeset, to-many assocs will be ignored.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -569,10 +570,11 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
private function computeAssociationChanges($assoc, $value)
|
private function computeAssociationChanges($assoc, $value)
|
||||||
{
|
{
|
||||||
if ($value instanceof PersistentCollection && $value->isDirty()) {
|
if ($value instanceof PersistentCollection && $value->isDirty()) {
|
||||||
|
$coid = spl_object_hash($value);
|
||||||
if ($assoc['isOwningSide']) {
|
if ($assoc['isOwningSide']) {
|
||||||
$this->collectionUpdates[] = $value;
|
$this->collectionUpdates[$coid] = $value;
|
||||||
}
|
}
|
||||||
$this->visitedCollections[] = $value;
|
$this->visitedCollections[$coid] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Look through the entities, and in any of their associations, for transient (new)
|
// Look through the entities, and in any of their associations, for transient (new)
|
||||||
|
@ -1889,12 +1891,12 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
{
|
{
|
||||||
//TODO: if $coll is already scheduled for recreation ... what to do?
|
//TODO: if $coll is already scheduled for recreation ... what to do?
|
||||||
// Just remove $coll from the scheduled recreations?
|
// Just remove $coll from the scheduled recreations?
|
||||||
$this->collectionDeletions[] = $coll;
|
$this->collectionDeletions[spl_object_hash($coll)] = $coll;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function isCollectionScheduledForDeletion(PersistentCollection $coll)
|
public function isCollectionScheduledForDeletion(PersistentCollection $coll)
|
||||||
{
|
{
|
||||||
return in_array($coll, $this->collectionsDeletions, true);
|
return isset( $this->collectionsDeletions[spl_object_hash($coll)] );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue