2007-01-02 18:24:43 +03:00
|
|
|
<?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
|
2012-05-26 16:37:00 +04:00
|
|
|
* and is licensed under the MIT license. For more information, see
|
2009-02-04 19:35:36 +03:00
|
|
|
* <http://www.doctrine-project.org>.
|
2007-01-02 18:24:43 +03:00
|
|
|
*/
|
2008-05-01 13:41:47 +04:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM;
|
2008-05-30 16:09:24 +04:00
|
|
|
|
2014-01-05 16:11:25 +04:00
|
|
|
use Closure;
|
2015-01-21 08:10:05 +03:00
|
|
|
use Doctrine\Common\Collections\AbstractLazyCollection;
|
2012-06-19 02:01:03 +04:00
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
use Doctrine\Common\Collections\Selectable;
|
|
|
|
use Doctrine\Common\Collections\Criteria;
|
2014-01-05 16:11:25 +04:00
|
|
|
use Doctrine\ORM\Mapping\ClassMetadata;
|
|
|
|
use Doctrine\ORM\Mapping\ClassMetadataInfo;
|
2009-01-29 20:00:44 +03:00
|
|
|
|
2007-01-02 18:24:43 +03:00
|
|
|
/**
|
2009-01-29 20:00:44 +03:00
|
|
|
* A PersistentCollection represents a collection of elements that have persistent state.
|
2009-07-02 15:48:44 +04:00
|
|
|
*
|
2009-01-29 20:00:44 +03:00
|
|
|
* Collections of entities represent only the associations (links) to those entities.
|
2008-08-16 23:40:59 +04:00
|
|
|
* That means, if the collection is part of a many-many mapping and you remove
|
2009-02-06 20:16:39 +03:00
|
|
|
* entities from the collection, only the links in the relation table are removed (on flush).
|
2008-08-16 23:40:59 +04:00
|
|
|
* Similarly, if you remove entities from a collection that is part of a one-many
|
2009-06-23 21:50:13 +04:00
|
|
|
* mapping this will only result in the nulling out of the foreign keys on flush.
|
2007-01-02 18:24:43 +03:00
|
|
|
*
|
2009-01-04 19:15:32 +03:00
|
|
|
* @since 2.0
|
2008-08-16 23:40:59 +04:00
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-07-28 15:43:42 +04:00
|
|
|
* @author Giorgio Sironi <piccoloprincipeazzurro@gmail.com>
|
2012-09-07 05:29:45 +04:00
|
|
|
* @author Stefano Rodriguez <stefano.rodriguez@fubles.com>
|
2007-01-02 18:24:43 +03:00
|
|
|
*/
|
2015-01-21 08:10:05 +03:00
|
|
|
final class PersistentCollection extends AbstractLazyCollection implements Selectable
|
2009-07-02 15:48:44 +04:00
|
|
|
{
|
2007-05-16 23:20:55 +04:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* 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.
|
2008-01-12 22:49:11 +03:00
|
|
|
*
|
2008-07-21 00:13:24 +04:00
|
|
|
* @var array
|
2007-05-16 23:20:55 +04:00
|
|
|
*/
|
2010-07-08 02:20:54 +04:00
|
|
|
private $snapshot = array();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-01-02 18:24:43 +03:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* The entity that owns this collection.
|
2009-07-02 15:48:44 +04:00
|
|
|
*
|
2009-01-14 00:56:43 +03:00
|
|
|
* @var object
|
2007-01-02 18:24:43 +03:00
|
|
|
*/
|
2010-07-08 02:20:54 +04:00
|
|
|
private $owner;
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-01-02 18:24:43 +03:00
|
|
|
/**
|
2008-07-21 00:13:24 +04:00
|
|
|
* The association mapping the collection belongs to.
|
|
|
|
* This is currently either a OneToManyMapping or a ManyToManyMapping.
|
2008-01-12 22:49:11 +03:00
|
|
|
*
|
2010-12-04 21:44:10 +03:00
|
|
|
* @var array
|
2007-01-02 18:24:43 +03:00
|
|
|
*/
|
2010-12-04 21:49:05 +03:00
|
|
|
private $association;
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2008-07-04 20:32:19 +04:00
|
|
|
/**
|
2008-08-31 22:27:16 +04:00
|
|
|
* The EntityManager that manages the persistence of the collection.
|
2008-07-04 20:32:19 +04:00
|
|
|
*
|
2014-12-05 16:02:47 +03:00
|
|
|
* @var \Doctrine\ORM\EntityManagerInterface
|
2008-07-04 20:32:19 +04:00
|
|
|
*/
|
2010-12-04 21:49:05 +03:00
|
|
|
private $em;
|
2009-07-02 15:48:44 +04:00
|
|
|
|
2008-08-31 22:27:16 +04:00
|
|
|
/**
|
|
|
|
* The name of the field on the target entities that points to the owner
|
2009-05-03 22:07:57 +04:00
|
|
|
* of the collection. This is only set if the association is bi-directional.
|
2008-08-31 22:27:16 +04:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2010-07-08 02:20:54 +04:00
|
|
|
private $backRefFieldName;
|
2007-01-02 18:24:43 +03:00
|
|
|
|
2009-01-29 20:00:44 +03:00
|
|
|
/**
|
2009-08-31 20:21:29 +04:00
|
|
|
* The class descriptor of the collection's entity type.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @var ClassMetadata
|
2009-01-29 20:00:44 +03:00
|
|
|
*/
|
2010-07-08 02:20:54 +04:00
|
|
|
private $typeClass;
|
2009-01-15 16:30:44 +03:00
|
|
|
|
2009-02-04 19:35:36 +03:00
|
|
|
/**
|
|
|
|
* Whether the collection is dirty and needs to be synchronized with the database
|
|
|
|
* when the UnitOfWork that manages its persistent state commits.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2010-07-08 02:20:54 +04:00
|
|
|
private $isDirty = false;
|
2009-07-02 15:48:44 +04:00
|
|
|
|
2007-01-02 18:24:43 +03:00
|
|
|
/**
|
2008-08-31 22:27:16 +04:00
|
|
|
* Creates a new persistent collection.
|
2011-11-01 00:17:01 +04:00
|
|
|
*
|
2015-04-03 01:45:46 +03:00
|
|
|
* @param EntityManagerInterface $em The EntityManager the collection will be associated with.
|
|
|
|
* @param ClassMetadata $class The class descriptor of the entity type of this collection.
|
2015-04-03 17:26:38 +03:00
|
|
|
* @param Collection $collection The collection elements.
|
2007-01-02 18:24:43 +03:00
|
|
|
*/
|
2015-04-03 17:26:38 +03:00
|
|
|
public function __construct(EntityManagerInterface $em, $class, Collection $collection)
|
2007-01-02 18:24:43 +03:00
|
|
|
{
|
2015-04-03 17:26:38 +03:00
|
|
|
$this->collection = $collection;
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->em = $em;
|
|
|
|
$this->typeClass = $class;
|
|
|
|
$this->initialized = true;
|
2007-01-02 18:24:43 +03:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-01-02 18:24:43 +03:00
|
|
|
/**
|
2008-07-04 20:32:19 +04:00
|
|
|
* INTERNAL:
|
2009-08-31 20:21:29 +04:00
|
|
|
* Sets the collection's owning entity together with the AssociationMapping that
|
|
|
|
* describes the association between the owner and the elements of the collection.
|
2007-01-02 18:24:43 +03:00
|
|
|
*
|
2009-01-14 00:56:43 +03:00
|
|
|
* @param object $entity
|
2012-12-01 20:28:06 +04:00
|
|
|
* @param array $assoc
|
|
|
|
*
|
|
|
|
* @return void
|
2007-01-02 18:24:43 +03:00
|
|
|
*/
|
2010-08-09 15:13:21 +04:00
|
|
|
public function setOwner($entity, array $assoc)
|
2007-01-02 18:24:43 +03:00
|
|
|
{
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->owner = $entity;
|
|
|
|
$this->association = $assoc;
|
2010-08-09 15:13:21 +04:00
|
|
|
$this->backRefFieldName = $assoc['inversedBy'] ?: $assoc['mappedBy'];
|
2007-01-02 18:24:43 +03:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-01-02 18:24:43 +03:00
|
|
|
/**
|
2008-07-04 20:32:19 +04:00
|
|
|
* INTERNAL:
|
2008-12-18 17:08:11 +03:00
|
|
|
* Gets the collection owner.
|
2007-01-02 18:24:43 +03:00
|
|
|
*
|
2009-01-14 00:56:43 +03:00
|
|
|
* @return object
|
2007-01-02 18:24:43 +03:00
|
|
|
*/
|
2009-02-04 19:35:36 +03:00
|
|
|
public function getOwner()
|
2007-01-02 18:24:43 +03:00
|
|
|
{
|
2010-07-08 02:20:54 +04:00
|
|
|
return $this->owner;
|
2007-01-02 18:24:43 +03:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2012-12-01 20:28:06 +04:00
|
|
|
/**
|
|
|
|
* @return Mapping\ClassMetadata
|
|
|
|
*/
|
2009-11-21 21:52:02 +03:00
|
|
|
public function getTypeClass()
|
|
|
|
{
|
2010-07-08 02:20:54 +04:00
|
|
|
return $this->typeClass;
|
2009-11-21 21:52:02 +03:00
|
|
|
}
|
2009-02-04 19:35:36 +03:00
|
|
|
|
2009-07-02 15:48:44 +04:00
|
|
|
/**
|
|
|
|
* INTERNAL:
|
2009-08-31 20:21:29 +04:00
|
|
|
* Adds an element to a collection during hydration. This will automatically
|
2010-02-27 20:48:18 +03:00
|
|
|
* complete bidirectional associations in the case of a one-to-many association.
|
2011-11-01 00:17:01 +04:00
|
|
|
*
|
2009-07-28 15:43:42 +04:00
|
|
|
* @param mixed $element The element to add.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @return void
|
2009-07-02 15:48:44 +04:00
|
|
|
*/
|
2009-07-28 20:36:24 +04:00
|
|
|
public function hydrateAdd($element)
|
2009-07-02 15:48:44 +04:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->collection->add($element);
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2010-04-10 02:00:36 +04:00
|
|
|
// If _backRefFieldName is set and its a one-to-many association,
|
|
|
|
// we need to set the back reference.
|
2011-11-30 18:57:54 +04:00
|
|
|
if ($this->backRefFieldName && $this->association['type'] === ClassMetadata::ONE_TO_MANY) {
|
2009-07-02 15:48:44 +04:00
|
|
|
// Set back reference to owner
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->typeClass->reflFields[$this->backRefFieldName]->setValue(
|
|
|
|
$element, $this->owner
|
|
|
|
);
|
|
|
|
|
2010-07-08 02:20:54 +04:00
|
|
|
$this->em->getUnitOfWork()->setOriginalEntityProperty(
|
2011-11-29 20:29:17 +04:00
|
|
|
spl_object_hash($element), $this->backRefFieldName, $this->owner
|
|
|
|
);
|
2008-08-31 22:27:16 +04:00
|
|
|
}
|
2007-01-02 18:24:43 +03:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2008-08-16 23:40:59 +04:00
|
|
|
/**
|
2009-07-02 15:48:44 +04:00
|
|
|
* INTERNAL:
|
|
|
|
* Sets a keyed element in the collection during hydration.
|
2008-08-16 23:40:59 +04:00
|
|
|
*
|
2012-12-01 20:28:06 +04:00
|
|
|
* @param mixed $key The key to set.
|
|
|
|
* @param mixed $element The element to set.
|
|
|
|
*
|
|
|
|
* @return void
|
2008-08-16 23:40:59 +04:00
|
|
|
*/
|
2009-08-31 20:21:29 +04:00
|
|
|
public function hydrateSet($key, $element)
|
2008-08-16 23:40:59 +04:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->collection->set($key, $element);
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2009-08-31 20:21:29 +04:00
|
|
|
// If _backRefFieldName is set, then the association is bidirectional
|
|
|
|
// and we need to set the back reference.
|
2011-11-30 18:57:54 +04:00
|
|
|
if ($this->backRefFieldName && $this->association['type'] === ClassMetadata::ONE_TO_MANY) {
|
2009-08-31 20:21:29 +04:00
|
|
|
// Set back reference to owner
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->typeClass->reflFields[$this->backRefFieldName]->setValue(
|
|
|
|
$element, $this->owner
|
|
|
|
);
|
2009-08-31 20:21:29 +04:00
|
|
|
}
|
2008-08-16 23:40:59 +04:00
|
|
|
}
|
2009-05-07 17:54:01 +04:00
|
|
|
|
2009-07-21 19:53:58 +04:00
|
|
|
/**
|
2009-07-28 20:36:24 +04:00
|
|
|
* Initializes the collection by loading its contents from the database
|
|
|
|
* if the collection is not yet initialized.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @return void
|
2009-07-21 19:53:58 +04:00
|
|
|
*/
|
2010-10-31 09:06:53 +03:00
|
|
|
public function initialize()
|
2009-05-17 23:27:12 +04:00
|
|
|
{
|
2011-11-29 20:29:17 +04:00
|
|
|
if ($this->initialized || ! $this->association) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->doInitialize();
|
2011-11-29 20:29:17 +04:00
|
|
|
|
|
|
|
$this->initialized = true;
|
2007-01-02 18:24:43 +03:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-01-02 18:24:43 +03:00
|
|
|
/**
|
2009-05-03 14:58:16 +04:00
|
|
|
* INTERNAL:
|
|
|
|
* Tells this collection to take a snapshot of its current state.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @return void
|
2007-05-16 23:20:55 +04:00
|
|
|
*/
|
2009-02-07 20:02:13 +03:00
|
|
|
public function takeSnapshot()
|
2007-05-16 23:20:55 +04:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->snapshot = $this->collection->toArray();
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->isDirty = false;
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-16 23:20:55 +04:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* INTERNAL:
|
2009-01-14 00:56:43 +03:00
|
|
|
* Returns the last snapshot of the elements in the collection.
|
2007-05-16 23:20:55 +04:00
|
|
|
*
|
2009-01-14 00:56:43 +03:00
|
|
|
* @return array The last snapshot of the elements.
|
2007-05-16 23:20:55 +04:00
|
|
|
*/
|
2009-02-07 20:02:13 +03:00
|
|
|
public function getSnapshot()
|
2007-05-16 23:20:55 +04:00
|
|
|
{
|
2010-07-08 02:20:54 +04:00
|
|
|
return $this->snapshot;
|
2007-05-16 23:20:55 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-11-16 01:45:09 +03:00
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* INTERNAL:
|
|
|
|
* getDeleteDiff
|
2007-11-16 01:45:09 +03:00
|
|
|
*
|
2008-08-16 23:40:59 +04:00
|
|
|
* @return array
|
2007-11-16 01:45:09 +03:00
|
|
|
*/
|
2007-05-17 01:28:33 +04:00
|
|
|
public function getDeleteDiff()
|
|
|
|
{
|
2011-11-29 20:29:17 +04:00
|
|
|
return array_udiff_assoc(
|
|
|
|
$this->snapshot,
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->collection->toArray(),
|
2011-11-29 20:29:17 +04:00
|
|
|
function($a, $b) { return $a === $b ? 0 : 1; }
|
|
|
|
);
|
2007-05-17 01:28:33 +04:00
|
|
|
}
|
2007-11-16 01:45:09 +03:00
|
|
|
|
|
|
|
/**
|
2009-11-08 14:07:49 +03:00
|
|
|
* INTERNAL:
|
|
|
|
* getInsertDiff
|
2007-11-16 01:45:09 +03:00
|
|
|
*
|
2008-08-16 23:40:59 +04:00
|
|
|
* @return array
|
2007-11-16 01:45:09 +03:00
|
|
|
*/
|
2007-05-17 01:28:33 +04:00
|
|
|
public function getInsertDiff()
|
|
|
|
{
|
2011-11-29 20:29:17 +04:00
|
|
|
return array_udiff_assoc(
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->collection->toArray(),
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->snapshot,
|
|
|
|
function($a, $b) { return $a === $b ? 0 : 1; }
|
|
|
|
);
|
2007-05-17 01:28:33 +04:00
|
|
|
}
|
2009-07-02 15:48:44 +04:00
|
|
|
|
2007-11-05 21:05:17 +03:00
|
|
|
/**
|
2008-08-31 22:27:16 +04:00
|
|
|
* INTERNAL: Gets the association mapping of the collection.
|
2009-07-02 15:48:44 +04:00
|
|
|
*
|
2012-07-24 13:37:57 +04:00
|
|
|
* @return array
|
2007-11-05 21:05:17 +03:00
|
|
|
*/
|
2008-08-16 23:40:59 +04:00
|
|
|
public function getMapping()
|
2007-11-05 21:05:17 +03:00
|
|
|
{
|
2010-07-08 02:20:54 +04:00
|
|
|
return $this->association;
|
2007-11-05 21:05:17 +03:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2009-07-21 19:53:58 +04:00
|
|
|
/**
|
|
|
|
* Marks this collection as changed/dirty.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @return void
|
2009-07-21 19:53:58 +04:00
|
|
|
*/
|
2010-07-08 02:20:54 +04:00
|
|
|
private function changed()
|
2008-08-16 23:40:59 +04:00
|
|
|
{
|
2011-11-29 20:29:17 +04:00
|
|
|
if ($this->isDirty) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->isDirty = true;
|
|
|
|
|
|
|
|
if ($this->association !== null &&
|
|
|
|
$this->association['isOwningSide'] &&
|
2011-11-30 18:57:54 +04:00
|
|
|
$this->association['type'] === ClassMetadata::MANY_TO_MANY &&
|
2012-02-18 03:40:42 +04:00
|
|
|
$this->owner &&
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->em->getClassMetadata(get_class($this->owner))->isChangeTrackingNotify()) {
|
|
|
|
$this->em->getUnitOfWork()->scheduleForDirtyCheck($this->owner);
|
2010-03-29 17:20:41 +04:00
|
|
|
}
|
2009-02-02 14:55:50 +03:00
|
|
|
}
|
2009-05-03 14:58:16 +04:00
|
|
|
|
|
|
|
/**
|
2010-07-15 17:52:42 +04:00
|
|
|
* Gets a boolean flag indicating whether this collection is dirty which means
|
2009-05-03 14:58:16 +04:00
|
|
|
* its state needs to be synchronized with the database.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the collection is dirty, FALSE otherwise.
|
|
|
|
*/
|
2009-02-02 14:55:50 +03:00
|
|
|
public function isDirty()
|
|
|
|
{
|
2010-07-08 02:20:54 +04:00
|
|
|
return $this->isDirty;
|
2009-02-02 14:55:50 +03:00
|
|
|
}
|
2009-05-03 14:58:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a boolean flag, indicating whether this collection is dirty.
|
|
|
|
*
|
|
|
|
* @param boolean $dirty Whether the collection should be marked dirty or not.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @return void
|
2009-05-03 14:58:16 +04:00
|
|
|
*/
|
2009-02-02 14:55:50 +03:00
|
|
|
public function setDirty($dirty)
|
|
|
|
{
|
2010-07-08 02:20:54 +04:00
|
|
|
$this->isDirty = $dirty;
|
2008-06-15 19:56:28 +04:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2009-07-25 20:33:29 +04:00
|
|
|
/**
|
2009-08-31 20:21:29 +04:00
|
|
|
* Sets the initialized flag of the collection, forcing it into that state.
|
2011-11-01 00:17:01 +04:00
|
|
|
*
|
2009-08-31 20:21:29 +04:00
|
|
|
* @param boolean $bool
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @return void
|
2009-07-25 20:33:29 +04:00
|
|
|
*/
|
|
|
|
public function setInitialized($bool)
|
|
|
|
{
|
2010-07-08 02:20:54 +04:00
|
|
|
$this->initialized = $bool;
|
2009-07-25 20:33:29 +04:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2009-07-28 15:43:42 +04:00
|
|
|
/**
|
2009-07-28 20:36:24 +04:00
|
|
|
* {@inheritdoc}
|
2009-07-28 15:43:42 +04:00
|
|
|
*/
|
|
|
|
public function remove($key)
|
|
|
|
{
|
2009-11-19 16:12:00 +03:00
|
|
|
// 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.
|
2015-01-21 08:10:05 +03:00
|
|
|
$removed = parent::remove($key);
|
2011-11-29 20:29:17 +04:00
|
|
|
|
|
|
|
if ( ! $removed) {
|
|
|
|
return $removed;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->changed();
|
|
|
|
|
|
|
|
if ($this->association !== null &&
|
2012-02-20 13:33:16 +04:00
|
|
|
$this->association['type'] & ClassMetadata::TO_MANY &&
|
2012-04-16 07:03:19 +04:00
|
|
|
$this->owner &&
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->association['orphanRemoval']) {
|
|
|
|
$this->em->getUnitOfWork()->scheduleOrphanRemoval($removed);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
2010-04-30 19:30:27 +04:00
|
|
|
|
2009-07-28 15:43:42 +04:00
|
|
|
return $removed;
|
|
|
|
}
|
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2009-07-28 15:43:42 +04:00
|
|
|
public function removeElement($element)
|
|
|
|
{
|
2011-11-29 20:29:17 +04:00
|
|
|
if ( ! $this->initialized && $this->association['fetch'] === Mapping\ClassMetadataInfo::FETCH_EXTRA_LAZY) {
|
2015-01-21 08:10:05 +03:00
|
|
|
if ($this->collection->contains($element)) {
|
|
|
|
return $this->collection->removeElement($element);
|
2011-11-29 20:29:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
|
|
|
|
|
|
|
|
if ($persister->removeElement($this, $element)) {
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
$removed = parent::removeElement($element);
|
2011-11-29 20:29:17 +04:00
|
|
|
|
|
|
|
if ( ! $removed) {
|
|
|
|
return $removed;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->changed();
|
|
|
|
|
|
|
|
if ($this->association !== null &&
|
2012-02-20 13:33:16 +04:00
|
|
|
$this->association['type'] & ClassMetadata::TO_MANY &&
|
2012-04-16 07:03:19 +04:00
|
|
|
$this->owner &&
|
2011-11-29 20:29:17 +04:00
|
|
|
$this->association['orphanRemoval']) {
|
|
|
|
$this->em->getUnitOfWork()->scheduleOrphanRemoval($element);
|
2010-08-08 19:13:03 +04:00
|
|
|
}
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2010-08-08 19:13:03 +04:00
|
|
|
return $removed;
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2009-07-28 15:43:42 +04:00
|
|
|
public function containsKey($key)
|
|
|
|
{
|
2014-02-06 15:27:12 +04:00
|
|
|
if (! $this->initialized && $this->association['fetch'] === Mapping\ClassMetadataInfo::FETCH_EXTRA_LAZY
|
|
|
|
&& isset($this->association['indexBy'])) {
|
|
|
|
$persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->collection->containsKey($key) || $persister->containsKey($this, $key);
|
2014-02-06 15:27:12 +04:00
|
|
|
}
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return parent::containsKey($key);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-07-28 20:36:24 +04:00
|
|
|
* {@inheritdoc}
|
2009-07-28 15:43:42 +04:00
|
|
|
*/
|
|
|
|
public function contains($element)
|
|
|
|
{
|
2011-11-30 18:57:54 +04:00
|
|
|
if ( ! $this->initialized && $this->association['fetch'] === Mapping\ClassMetadataInfo::FETCH_EXTRA_LAZY) {
|
2011-11-29 20:29:17 +04:00
|
|
|
$persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->collection->contains($element) || $persister->contains($this, $element);
|
2010-12-29 14:27:14 +03:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return parent::contains($element);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2009-07-28 15:43:42 +04:00
|
|
|
public function get($key)
|
|
|
|
{
|
2013-06-20 11:29:56 +04:00
|
|
|
if ( ! $this->initialized
|
|
|
|
&& $this->association['fetch'] === Mapping\ClassMetadataInfo::FETCH_EXTRA_LAZY
|
|
|
|
&& isset($this->association['indexBy'])
|
|
|
|
) {
|
2013-06-20 16:00:58 +04:00
|
|
|
if (!$this->typeClass->isIdentifierComposite && $this->typeClass->isIdentifier($this->association['indexBy'])) {
|
|
|
|
return $this->em->find($this->typeClass->name, $key);
|
2013-06-20 15:45:38 +04:00
|
|
|
}
|
|
|
|
|
2013-06-20 12:20:16 +04:00
|
|
|
return $this->em->getUnitOfWork()->getCollectionPersister($this->association)->get($this, $key);
|
2013-06-20 11:29:56 +04:00
|
|
|
}
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return parent::get($key);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-07-28 20:36:24 +04:00
|
|
|
* {@inheritdoc}
|
2009-07-28 15:43:42 +04:00
|
|
|
*/
|
|
|
|
public function count()
|
|
|
|
{
|
2011-11-30 18:57:54 +04:00
|
|
|
if ( ! $this->initialized && $this->association['fetch'] === Mapping\ClassMetadataInfo::FETCH_EXTRA_LAZY) {
|
2011-11-29 20:29:17 +04:00
|
|
|
$persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return $persister->count($this) + ($this->isDirty ? $this->collection->count() : 0);
|
2010-12-04 21:44:10 +03:00
|
|
|
}
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return parent::count();
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-07-28 20:36:24 +04:00
|
|
|
* {@inheritdoc}
|
2009-07-28 15:43:42 +04:00
|
|
|
*/
|
|
|
|
public function set($key, $value)
|
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
parent::set($key, $value);
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2010-07-08 02:20:54 +04:00
|
|
|
$this->changed();
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-07-28 20:36:24 +04:00
|
|
|
* {@inheritdoc}
|
2009-07-28 15:43:42 +04:00
|
|
|
*/
|
|
|
|
public function add($value)
|
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->collection->add($value);
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2010-07-08 02:20:54 +04:00
|
|
|
$this->changed();
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
return true;
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
/* ArrayAccess implementation */
|
2009-07-28 15:43:42 +04:00
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2015-01-21 08:10:05 +03:00
|
|
|
public function offsetExists($offset)
|
2009-07-28 15:43:42 +04:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->containsKey($offset);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2015-01-21 08:10:05 +03:00
|
|
|
public function offsetGet($offset)
|
2009-07-28 15:43:42 +04:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->get($offset);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2015-01-21 08:10:05 +03:00
|
|
|
public function offsetSet($offset, $value)
|
2009-07-28 15:43:42 +04:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
if ( ! isset($offset)) {
|
|
|
|
return $this->add($value);
|
|
|
|
}
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->set($offset, $value);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2015-01-21 08:10:05 +03:00
|
|
|
public function offsetUnset($offset)
|
2009-07-28 15:43:42 +04:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->remove($offset);
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2010-01-05 14:45:38 +03:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2015-01-21 08:10:05 +03:00
|
|
|
public function isEmpty()
|
2010-01-05 14:45:38 +03:00
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->collection->isEmpty() && $this->count() === 0;
|
2010-01-05 14:45:38 +03:00
|
|
|
}
|
2009-07-28 15:43:42 +04:00
|
|
|
|
|
|
|
/**
|
2009-07-28 20:36:24 +04:00
|
|
|
* {@inheritdoc}
|
2009-07-28 15:43:42 +04:00
|
|
|
*/
|
|
|
|
public function clear()
|
|
|
|
{
|
2010-07-08 19:30:39 +04:00
|
|
|
if ($this->initialized && $this->isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-29 20:29:17 +04:00
|
|
|
|
|
|
|
$uow = $this->em->getUnitOfWork();
|
|
|
|
|
2012-04-16 07:03:19 +04:00
|
|
|
if ($this->association['type'] & ClassMetadata::TO_MANY &&
|
|
|
|
$this->association['orphanRemoval'] &&
|
|
|
|
$this->owner) {
|
2011-11-18 18:44:06 +04:00
|
|
|
// we need to initialize here, as orphan removal acts like implicit cascadeRemove,
|
|
|
|
// hence for event listeners we need the objects in memory.
|
|
|
|
$this->initialize();
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
foreach ($this->collection as $element) {
|
2011-11-29 20:29:17 +04:00
|
|
|
$uow->scheduleOrphanRemoval($element);
|
2010-07-08 19:30:39 +04:00
|
|
|
}
|
|
|
|
}
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
$this->collection->clear();
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2011-06-19 11:39:34 +04:00
|
|
|
$this->initialized = true; // direct call, {@link initialize()} is too expensive
|
2011-11-29 20:29:17 +04:00
|
|
|
|
2012-11-25 22:13:32 +04:00
|
|
|
if ($this->association['isOwningSide'] && $this->owner) {
|
2010-07-08 02:20:54 +04:00
|
|
|
$this->changed();
|
2011-11-29 20:29:17 +04:00
|
|
|
|
|
|
|
$uow->scheduleCollectionDeletion($this);
|
|
|
|
|
2010-07-03 18:55:56 +04:00
|
|
|
$this->takeSnapshot();
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|
2009-05-07 21:56:09 +04:00
|
|
|
}
|
2011-11-01 00:17:01 +04:00
|
|
|
|
2009-07-28 20:36:24 +04:00
|
|
|
/**
|
|
|
|
* Called by PHP when this collection is serialized. Ensures that only the
|
|
|
|
* elements are properly serialized.
|
|
|
|
*
|
2015-03-15 18:53:34 +03:00
|
|
|
* Internal note: Tried to implement Serializable first but that did not work well
|
|
|
|
* with circular references. This solution seems simpler and works well.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
2015-03-15 18:53:34 +03:00
|
|
|
* @return array
|
2009-07-28 20:36:24 +04:00
|
|
|
*/
|
|
|
|
public function __sleep()
|
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
return array('collection', 'initialized');
|
2009-07-28 20:36:24 +04:00
|
|
|
}
|
2010-08-24 23:56:29 +04:00
|
|
|
|
|
|
|
/**
|
2012-12-15 00:12:56 +04:00
|
|
|
* Extracts a slice of $length elements starting at position $offset from the Collection.
|
2010-08-24 23:56:29 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2012-12-01 20:28:06 +04:00
|
|
|
* @param int $offset
|
|
|
|
* @param int|null $length
|
2011-11-29 20:29:17 +04:00
|
|
|
*
|
2010-08-24 23:56:29 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function slice($offset, $length = null)
|
|
|
|
{
|
2011-11-29 20:29:17 +04:00
|
|
|
if ( ! $this->initialized && ! $this->isDirty && $this->association['fetch'] === Mapping\ClassMetadataInfo::FETCH_EXTRA_LAZY) {
|
|
|
|
$persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
|
2011-11-01 00:34:22 +04:00
|
|
|
|
2011-11-29 20:29:17 +04:00
|
|
|
return $persister->slice($this, $offset, $length);
|
2010-12-04 21:44:10 +03:00
|
|
|
}
|
|
|
|
|
2015-01-21 08:10:05 +03:00
|
|
|
return parent::slice($offset, $length);
|
2010-08-24 23:56:29 +04:00
|
|
|
}
|
2012-02-18 03:40:42 +04:00
|
|
|
|
|
|
|
/**
|
2012-12-15 00:12:56 +04:00
|
|
|
* Cleans up internal state of cloned persistent collection.
|
2012-02-18 03:40:42 +04:00
|
|
|
*
|
|
|
|
* 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.
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @return void
|
2012-02-18 03:40:42 +04:00
|
|
|
*/
|
|
|
|
public function __clone()
|
|
|
|
{
|
2015-01-21 08:10:05 +03:00
|
|
|
if (is_object($this->collection)) {
|
|
|
|
$this->collection = clone $this->collection;
|
2012-02-18 03:40:42 +04:00
|
|
|
}
|
2012-03-15 09:15:47 +04:00
|
|
|
|
2012-05-24 20:53:34 +04:00
|
|
|
$this->initialize();
|
|
|
|
|
|
|
|
$this->owner = null;
|
2012-02-18 03:40:42 +04:00
|
|
|
$this->snapshot = array();
|
2012-04-16 07:03:19 +04:00
|
|
|
|
2012-02-18 03:40:42 +04:00
|
|
|
$this->changed();
|
|
|
|
}
|
2012-06-19 02:01:03 +04:00
|
|
|
|
|
|
|
/**
|
2012-12-15 00:12:56 +04:00
|
|
|
* Selects all elements from a selectable that match the expression and
|
2012-06-19 02:01:03 +04:00
|
|
|
* return a new collection containing these elements.
|
|
|
|
*
|
|
|
|
* @param \Doctrine\Common\Collections\Criteria $criteria
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
2012-06-19 02:01:03 +04:00
|
|
|
* @return Collection
|
2012-12-01 20:28:06 +04:00
|
|
|
*
|
|
|
|
* @throws \RuntimeException
|
2012-06-19 02:01:03 +04:00
|
|
|
*/
|
|
|
|
public function matching(Criteria $criteria)
|
|
|
|
{
|
2013-03-13 01:48:56 +04:00
|
|
|
if ($this->isDirty) {
|
|
|
|
$this->initialize();
|
|
|
|
}
|
|
|
|
|
2012-06-19 02:01:03 +04:00
|
|
|
if ($this->initialized) {
|
2015-01-21 08:10:05 +03:00
|
|
|
return $this->collection->matching($criteria);
|
2012-06-19 02:01:03 +04:00
|
|
|
}
|
|
|
|
|
2013-12-22 19:30:46 +04:00
|
|
|
if ($this->association['type'] === ClassMetadata::MANY_TO_MANY) {
|
|
|
|
$persister = $this->em->getUnitOfWork()->getCollectionPersister($this->association);
|
2014-01-20 12:13:41 +04:00
|
|
|
|
2013-12-22 20:00:56 +04:00
|
|
|
return new ArrayCollection($persister->loadCriteria($this, $criteria));
|
2012-06-19 02:01:03 +04:00
|
|
|
}
|
|
|
|
|
2012-08-01 23:37:22 +04:00
|
|
|
$builder = Criteria::expr();
|
2013-05-09 15:24:36 +04:00
|
|
|
$ownerExpression = $builder->eq($this->backRefFieldName, $this->owner);
|
2012-06-19 02:01:03 +04:00
|
|
|
$expression = $criteria->getWhereExpression();
|
|
|
|
$expression = $expression ? $builder->andX($expression, $ownerExpression) : $ownerExpression;
|
|
|
|
|
2014-12-04 18:08:21 +03:00
|
|
|
$criteria = clone $criteria;
|
2012-06-19 02:01:03 +04:00
|
|
|
$criteria->where($expression);
|
|
|
|
|
|
|
|
$persister = $this->em->getUnitOfWork()->getEntityPersister($this->association['targetEntity']);
|
|
|
|
|
2014-05-16 08:22:11 +04:00
|
|
|
return ($this->association['fetch'] === ClassMetadataInfo::FETCH_EXTRA_LAZY)
|
|
|
|
? new LazyCriteriaCollection($persister, $criteria)
|
|
|
|
: new ArrayCollection($persister->loadCriteria($criteria));
|
2012-06-19 02:01:03 +04:00
|
|
|
}
|
2015-01-21 08:10:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the wrapped Collection instance.
|
|
|
|
*
|
|
|
|
* @return \Doctrine\Common\Collections\Collection
|
|
|
|
*/
|
|
|
|
public function unwrap()
|
|
|
|
{
|
|
|
|
return $this->collection;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
protected function doInitialize()
|
|
|
|
{
|
|
|
|
// Has NEW objects added through add(). Remember them.
|
|
|
|
$newObjects = array();
|
|
|
|
|
|
|
|
if ($this->isDirty) {
|
|
|
|
$newObjects = $this->collection->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->collection->clear();
|
|
|
|
$this->em->getUnitOfWork()->loadCollection($this);
|
|
|
|
$this->takeSnapshot();
|
|
|
|
|
|
|
|
// Reattach NEW objects added through add(), if any.
|
|
|
|
if ($newObjects) {
|
|
|
|
foreach ($newObjects as $obj) {
|
|
|
|
$this->collection->add($obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->isDirty = true;
|
|
|
|
}
|
|
|
|
}
|
2009-07-28 15:43:42 +04:00
|
|
|
}
|