123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759 |
- <?php
- /*
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * This software consists of voluntary contributions made by many individuals
- * and is licensed under the MIT license. For more information, see
- * <http://www.doctrine-project.org>.
- */
- namespace Doctrine\ORM;
- use Doctrine\Common\Collections\AbstractLazyCollection;
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\Common\Collections\Criteria;
- use Doctrine\Common\Collections\Selectable;
- use Doctrine\ORM\Mapping\ClassMetadata;
- use RuntimeException;
- use function array_combine;
- use function array_diff_key;
- use function array_map;
- use function array_udiff_assoc;
- use function array_walk;
- use function get_class;
- use function is_object;
- use function spl_object_hash;
- /**
- * A PersistentCollection represents a collection of elements that have persistent state.
- *
- * Collections of entities represent only the associations (links) to those entities.
- * That means, if the collection is part of a many-many mapping and you remove
- * entities from the collection, only the links in the relation table are removed (on flush).
- * Similarly, if you remove entities from a collection that is part of a one-many
- * mapping this will only result in the nulling out of the foreign keys on flush.
- *
- * @phpstan-template TKey
- * @psalm-template TKey of array-key
- * @psalm-template T
- * @template-implements Collection<TKey,T>
- */
- final class PersistentCollection extends AbstractLazyCollection implements Selectable
- {
- /**
- * A snapshot of the collection at the moment it was fetched from the database.
- * This is used to create a diff of the collection at commit time.
- *
- * @psalm-var array<string|int, mixed>
- */
- private $snapshot = [];
- /**
- * The entity that owns this collection.
- *
- * @var object
- */
- private $owner;
- /**
- * The association mapping the collection belongs to.
- * This is currently either a OneToManyMapping or a ManyToManyMapping.
- *
- * @psalm-var array<string, mixed>
- */
- private $association;
- /**
- * The EntityManager that manages the persistence of the collection.
- *
- * @var EntityManagerInterface
- */
- private $em;
- /**
- * The name of the field on the target entities that points to the owner
- * of the collection. This is only set if the association is bi-directional.
- *
- * @var string
- */
- private $backRefFieldName;
- /**
- * The class descriptor of the collection's entity type.
- *
- * @var ClassMetadata
- */
- private $typeClass;
- /**
- * Whether the collection is dirty and needs to be synchronized with the database
- * when the UnitOfWork that manages its persistent state commits.
- *
- * @var bool
- */
- private $isDirty = false;
- /**
- * Creates a new persistent collection.
- *
- * @param EntityManagerInterface $em The EntityManager the collection will be associated with.
- * @param ClassMetadata $class The class descriptor of the entity type of this collection.
- *
- * @psalm-param Collection<TKey, T> $collection The collection elements.
- */
- public function __construct(EntityManagerInterface $em, $class, Collection $collection)
- {
- $this->collection = $collection;
- $this->em = $em;
- $this->typeClass = $class;
- $this->initialized = true;
- }
- /**
- * INTERNAL:
- * Sets the collection's owning entity together with the AssociationMapping that
- * describes the association between the owner and the elements of the collection.
- *
- * @param object $entity
- *
- * @return void
- *
- * @psalm-param array<string, mixed> $assoc
- */
- public function setOwner($entity, array $assoc)
- {
- $this->owner = $entity;
- $this->association = $assoc;
- $this->backRefFieldName = $assoc['inversedBy'] ?: $assoc['mappedBy'];
- }
- /**
- * INTERNAL:
- * Gets the collection owner.
- *
- * @return object
- */
- public function getOwner()
- {
- return $this->owner;
- }
- /**
- * @return Mapping\ClassMetadata
- */
- public function getTypeClass()
- {
- return $this->typeClass;
- }
- /**
- * INTERNAL:
- * Adds an element to a collection during hydration. This will automatically
- * complete bidirectional associations in the case of a one-to-many association.
- *
- * @param mixed $element The element to add.
- *
- * @return void
- */
- public function hydrateAdd($element)
- {
- $this->collection->add($element);
- // If _backRefFieldName is set and its a one-to-many association,
- // we need to set the back reference.
- if ($this->backRefFieldName && $this->association['type'] === ClassMetadata::ONE_TO_MANY) {
- // Set back reference to owner
- $this->typeClass->reflFields[$this->backRefFieldName]->setValue(
- $element,
- $this->owner
- );
- $this->em->getUnitOfWork()->setOriginalEntityProperty(
- spl_object_hash($element),
- $this->backRefFieldName,
- $this->owner
- );
- }
- }
- /**
- * INTERNAL:
- * Sets a keyed element in the collection during hydration.
- *
- * @param mixed $key The key to set.
- * @param mixed $element The element to set.
- *
- * @return void
- */
- public function hydrateSet($key, $element)
- {
- $this->collection->set($key, $element);
- // If _backRefFieldName is set, then the association is bidirectional
- // and we need to set the back reference.
- if ($this->backRefFieldName && $this->association['type'] === ClassMetadata::ONE_TO_MANY) {
- // Set back reference to owner
- $this->typeClass->reflFields[$this->backRefFieldName]->setValue(
- $element,
- $this->owner
- );
- }
- }
- /**
- * Initializes the collection by loading its contents from the database
- * if the collection is not yet initialized.
- *
- * @return void
- */
- public function initialize()
- {
- if ($this->initialized || ! $this->association) {
- return;
- }
- $this->doInitialize();
- $this->initialized = true;
- }
- /**
- * INTERNAL:
- * Tells this collection to take a snapshot of its current state.
- *
- * @return void
- */
- public function takeSnapshot()
- {
- $this->snapshot = $this->collection->toArray();
- $this->isDirty = false;
- }
- /**
- * INTERNAL:
- * Returns the last snapshot of the elements in the collection.
- *
- * @psalm-return array<string|int, mixed> The last snapshot of the elements.
- */
- public function getSnapshot()
- {
- return $this->snapshot;
- }
- /**
- * INTERNAL:
- * getDeleteDiff
- *
- * @return mixed[]
- */
- public function getDeleteDiff()
- {
- return array_udiff_assoc(
- $this->snapshot,
- $this->collection->toArray(),
- static function ($a, $b): int {
- return $a === $b ? 0 : 1;
- }
- );
- }
- /**
- * INTERNAL:
- * getInsertDiff
- *
- * @return mixed[]
- */
- public function getInsertDiff()
- {
- return array_udiff_assoc(
- $this->collection->toArray(),
- $this->snapshot,
- static function ($a, $b): int {
- return $a === $b ? 0 : 1;
- }
- );
- }
- /**
- * INTERNAL: Gets the association mapping of the collection.
- *
- * @psalm-return array<string, mixed>
- */
- public function getMapping()
- {
- return $this->association;
- }
- /**
- * Marks this collection as changed/dirty.
- *
- * @return void
- */
- private function changed()
- {
- if ($this->isDirty) {
- return;
- }
- $this->isDirty = true;
- if (
- $this->association !== null &&
- $this->association['isOwningSide'] &&
- $this->association['type'] === ClassMetadata::MANY_TO_MANY &&
- $this->owner &&
- $this->em->getClassMetadata(get_class($this->owner))->isChangeTrackingNotify()
- ) {
- $this->em->getUnitOfWork()->scheduleForDirtyCheck($this->owner);
- }
- }
- /**
- * Gets a boolean flag indicating whether this collection is dirty which means
- * its state needs to be synchronized with the database.
- *
- * @return bool TRUE if the collection is dirty, FALSE otherwise.
- */
- public function isDirty()
- {
- return $this->isDirty;
- }
- /**
- * Sets a boolean flag, indicating whether this collection is dirty.
- *
- * @param bool $dirty Whether the collection should be marked dirty or not.
- *
- * @return void
- */
- public function setDirty($dirty)
- {
- $this->isDirty = $dirty;
- }
- /**
- * Sets the initialized flag of the collection, forcing it into that state.
- *
- * @param bool $bool
- *
- * @return void
- */
- public function setInitialized($bool)
- {
- $this->initialized = $bool;
- }
- /**
- * {@inheritdoc}
- *
- * @return object
- */
- public function remove($key)
- {
- // TODO: If the keys are persistent as well (not yet implemented)
- // and the collection is not initialized and orphanRemoval is
- // not used we can issue a straight SQL delete/update on the
- // association (table). Without initializing the collection.
- $removed = parent::remove($key);
- if (! $removed) {
- return $removed;
- }
- $this->changed();
- if (
- $this->association !== null &&
- $this->association['type'] & ClassMetadata::TO_MANY &&
- $this->owner &&
- $this->association['orphanRemoval']
- ) {
- $this->em->getUnitOfWork()->scheduleOrphanRemoval($removed);
- }
- return $removed;
- }
- /**
- * {@inheritdoc}
- */
- public function removeElement($element)
- {
- $removed = parent::removeElement($element);
- if (! $removed) {
- return $removed;
- }
- $this->changed();
- if (
- $this->association !== null &&
- $this->association['type'] & ClassMetadata::TO_MANY &&
- $this->owner &&
- $this->association['orphanRemoval']
- ) {
- $this->em->getUnitOfWork()->scheduleOrphanRemoval($element);
- }
- return $removed;
- }
- /**
- * {@inheritdoc}
- */
- public function containsKey($key)
- {
- if (
- ! $this->initialized && $this->association['fetch'] === ClassMetadata::FETCH_EXTRA_LAZY
- && isset($this->association['indexBy'])
- ) {
- $persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
- return $this->collection->containsKey($key) || $persister->containsKey($this, $key);
- }
- return parent::containsKey($key);
- }
- /**
- * {@inheritdoc}
- */
- public function contains($element)
- {
- if (! $this->initialized && $this->association['fetch'] === ClassMetadata::FETCH_EXTRA_LAZY) {
- $persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
- return $this->collection->contains($element) || $persister->contains($this, $element);
- }
- return parent::contains($element);
- }
- /**
- * {@inheritdoc}
- */
- public function get($key)
- {
- if (
- ! $this->initialized
- && $this->association['fetch'] === ClassMetadata::FETCH_EXTRA_LAZY
- && isset($this->association['indexBy'])
- ) {
- if (! $this->typeClass->isIdentifierComposite && $this->typeClass->isIdentifier($this->association['indexBy'])) {
- return $this->em->find($this->typeClass->name, $key);
- }
- return $this->em->getUnitOfWork()->getCollectionPersister($this->association)->get($this, $key);
- }
- return parent::get($key);
- }
- /**
- * {@inheritdoc}
- */
- public function count()
- {
- if (! $this->initialized && $this->association !== null && $this->association['fetch'] === ClassMetadata::FETCH_EXTRA_LAZY) {
- $persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
- return $persister->count($this) + ($this->isDirty ? $this->collection->count() : 0);
- }
- return parent::count();
- }
- /**
- * {@inheritdoc}
- */
- public function set($key, $value)
- {
- parent::set($key, $value);
- $this->changed();
- if (is_object($value) && $this->em) {
- $this->em->getUnitOfWork()->cancelOrphanRemoval($value);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function add($value)
- {
- $this->collection->add($value);
- $this->changed();
- if (is_object($value) && $this->em) {
- $this->em->getUnitOfWork()->cancelOrphanRemoval($value);
- }
- return true;
- }
- /* ArrayAccess implementation */
- /**
- * {@inheritdoc}
- */
- public function offsetExists($offset)
- {
- return $this->containsKey($offset);
- }
- /**
- * {@inheritdoc}
- */
- public function offsetGet($offset)
- {
- return $this->get($offset);
- }
- /**
- * {@inheritdoc}
- */
- public function offsetSet($offset, $value)
- {
- if (! isset($offset)) {
- $this->add($value);
- return;
- }
- $this->set($offset, $value);
- }
- /**
- * {@inheritdoc}
- *
- * @return object
- */
- public function offsetUnset($offset)
- {
- return $this->remove($offset);
- }
- /**
- * {@inheritdoc}
- */
- public function isEmpty()
- {
- return $this->collection->isEmpty() && $this->count() === 0;
- }
- /**
- * {@inheritdoc}
- */
- public function clear()
- {
- if ($this->initialized && $this->isEmpty()) {
- $this->collection->clear();
- return;
- }
- $uow = $this->em->getUnitOfWork();
- if (
- $this->association['type'] & ClassMetadata::TO_MANY &&
- $this->association['orphanRemoval'] &&
- $this->owner
- ) {
- // we need to initialize here, as orphan removal acts like implicit cascadeRemove,
- // hence for event listeners we need the objects in memory.
- $this->initialize();
- foreach ($this->collection as $element) {
- $uow->scheduleOrphanRemoval($element);
- }
- }
- $this->collection->clear();
- $this->initialized = true; // direct call, {@link initialize()} is too expensive
- if ($this->association['isOwningSide'] && $this->owner) {
- $this->changed();
- $uow->scheduleCollectionDeletion($this);
- $this->takeSnapshot();
- }
- }
- /**
- * Called by PHP when this collection is serialized. Ensures that only the
- * elements are properly serialized.
- *
- * Internal note: Tried to implement Serializable first but that did not work well
- * with circular references. This solution seems simpler and works well.
- *
- * @return string[]
- *
- * @psalm-return array{0: string, 1: string}
- */
- public function __sleep(): array
- {
- return ['collection', 'initialized'];
- }
- /**
- * Extracts a slice of $length elements starting at position $offset from the Collection.
- *
- * If $length is null it returns all elements from $offset to the end of the Collection.
- * Keys have to be preserved by this method. Calling this method will only return the
- * selected slice and NOT change the elements contained in the collection slice is called on.
- *
- * @param int $offset
- * @param int|null $length
- *
- * @psalm-return array<TKey,T>
- */
- public function slice($offset, $length = null)
- {
- if (! $this->initialized && ! $this->isDirty && $this->association['fetch'] === ClassMetadata::FETCH_EXTRA_LAZY) {
- $persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
- return $persister->slice($this, $offset, $length);
- }
- return parent::slice($offset, $length);
- }
- /**
- * Cleans up internal state of cloned persistent collection.
- *
- * The following problems have to be prevented:
- * 1. Added entities are added to old PC
- * 2. New collection is not dirty, if reused on other entity nothing
- * changes.
- * 3. Snapshot leads to invalid diffs being generated.
- * 4. Lazy loading grabs entities from old owner object.
- * 5. New collection is connected to old owner and leads to duplicate keys.
- *
- * @return void
- */
- public function __clone()
- {
- if (is_object($this->collection)) {
- $this->collection = clone $this->collection;
- }
- $this->initialize();
- $this->owner = null;
- $this->snapshot = [];
- $this->changed();
- }
- /**
- * Selects all elements from a selectable that match the expression and
- * return a new collection containing these elements.
- *
- * @return Collection<TKey, T>
- *
- * @throws RuntimeException
- */
- public function matching(Criteria $criteria)
- {
- if ($this->isDirty) {
- $this->initialize();
- }
- if ($this->initialized) {
- return $this->collection->matching($criteria);
- }
- if ($this->association['type'] === ClassMetadata::MANY_TO_MANY) {
- $persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
- return new ArrayCollection($persister->loadCriteria($this, $criteria));
- }
- $builder = Criteria::expr();
- $ownerExpression = $builder->eq($this->backRefFieldName, $this->owner);
- $expression = $criteria->getWhereExpression();
- $expression = $expression ? $builder->andX($expression, $ownerExpression) : $ownerExpression;
- $criteria = clone $criteria;
- $criteria->where($expression);
- $criteria->orderBy($criteria->getOrderings() ?: $this->association['orderBy'] ?? []);
- $persister = $this->em->getUnitOfWork()->getEntityPersister($this->association['targetEntity']);
- return $this->association['fetch'] === ClassMetadata::FETCH_EXTRA_LAZY
- ? new LazyCriteriaCollection($persister, $criteria)
- : new ArrayCollection($persister->loadCriteria($criteria));
- }
- /**
- * Retrieves the wrapped Collection instance.
- *
- * @return Collection<TKey, T>
- */
- public function unwrap()
- {
- return $this->collection;
- }
- /**
- * {@inheritdoc}
- */
- protected function doInitialize()
- {
- // Has NEW objects added through add(). Remember them.
- $newlyAddedDirtyObjects = [];
- if ($this->isDirty) {
- $newlyAddedDirtyObjects = $this->collection->toArray();
- }
- $this->collection->clear();
- $this->em->getUnitOfWork()->loadCollection($this);
- $this->takeSnapshot();
- if ($newlyAddedDirtyObjects) {
- $this->restoreNewObjectsInDirtyCollection($newlyAddedDirtyObjects);
- }
- }
- /**
- * @param object[] $newObjects
- *
- * Note: the only reason why this entire looping/complexity is performed via `spl_object_hash`
- * is because we want to prevent using `array_udiff()`, which is likely to cause very
- * high overhead (complexity of O(n^2)). `array_diff_key()` performs the operation in
- * core, which is faster than using a callback for comparisons
- */
- private function restoreNewObjectsInDirtyCollection(array $newObjects): void
- {
- $loadedObjects = $this->collection->toArray();
- $newObjectsByOid = array_combine(array_map('spl_object_hash', $newObjects), $newObjects);
- $loadedObjectsByOid = array_combine(array_map('spl_object_hash', $loadedObjects), $loadedObjects);
- $newObjectsThatWereNotLoaded = array_diff_key($newObjectsByOid, $loadedObjectsByOid);
- if ($newObjectsThatWereNotLoaded) {
- // Reattach NEW objects added through add(), if any.
- array_walk($newObjectsThatWereNotLoaded, [$this->collection, 'add']);
- $this->isDirty = true;
- }
- }
- }
|