157 lines
5.1 KiB
PHP
157 lines
5.1 KiB
PHP
<?php
|
|
/*
|
|
* $Id$
|
|
*
|
|
* 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 LGPL. For more information, see
|
|
* <http://www.phpdoctrine.org>.
|
|
*/
|
|
|
|
/**
|
|
* Hydration strategy used for creating graphs of entities.
|
|
*
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
* @link www.phpdoctrine.org
|
|
* @since 1.0
|
|
* @version $Revision$
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
* @todo Rename to ObjectDriver
|
|
*/
|
|
class Doctrine_ORM_Internal_Hydration_ObjectDriver
|
|
{
|
|
/** Collections initialized by the driver */
|
|
protected $_collections = array();
|
|
/** Memory for initialized relations */
|
|
private $_initializedRelations = array();
|
|
/** Null object */
|
|
private $_nullObject;
|
|
/** The EntityManager */
|
|
private $_em;
|
|
|
|
public function __construct(Doctrine_EntityManager $em)
|
|
{
|
|
$this->_nullObject = Doctrine_ORM_Internal_Null::$INSTANCE;
|
|
$this->_em = $em;
|
|
}
|
|
|
|
public function getElementCollection($component)
|
|
{
|
|
$coll = new Doctrine_Collection($component);
|
|
$this->_collections[] = $coll;
|
|
|
|
return $coll;
|
|
}
|
|
|
|
public function getLastKey($coll)
|
|
{
|
|
// check needed because of mixed results
|
|
if (is_array($coll)) {
|
|
end($coll);
|
|
return key($coll);
|
|
} else {
|
|
$coll->end();
|
|
return $coll->key();
|
|
}
|
|
}
|
|
|
|
public function initRelatedCollection(Doctrine_ORM_Entity $entity, $name)
|
|
{
|
|
if ( ! isset($this->_initializedRelations[$entity->getOid()][$name])) {
|
|
$relation = $entity->getClass()->getAssociationMapping($name);
|
|
$relatedClass = $this->_em->getClassMetadata($relation->getTargetEntityName());
|
|
$coll = $this->getElementCollection($relatedClass->getClassName());
|
|
$coll->_setOwner($entity, $relation);
|
|
$coll->_setHydrationFlag(true);
|
|
$entity->_internalSetReference($name, $coll, true);
|
|
$this->_initializedRelations[$entity->getOid()][$name] = true;
|
|
}
|
|
}
|
|
|
|
public function registerCollection(Doctrine_Collection $coll)
|
|
{
|
|
$this->_collections[] = $coll;
|
|
}
|
|
|
|
public function getNullPointer()
|
|
{
|
|
return $this->_nullObject;
|
|
}
|
|
|
|
public function getElement(array $data, $className)
|
|
{
|
|
return $this->_em->createEntity($className, $data);
|
|
}
|
|
|
|
public function addRelatedIndexedElement(Doctrine_ORM_Entity $entity1, $property,
|
|
Doctrine_ORM_Entity $entity2, $indexField)
|
|
{
|
|
$entity1->_internalGetReference($property)->add($entity2, $entity2->_internalGetField($indexField));
|
|
}
|
|
|
|
public function addRelatedElement(Doctrine_ORM_Entity $entity1, $property,
|
|
Doctrine_ORM_Entity $entity2)
|
|
{
|
|
$entity1->_internalGetReference($property)->add($entity2);
|
|
}
|
|
|
|
public function setRelatedElement(Doctrine_ORM_Entity $entity1, $property, $entity2)
|
|
{
|
|
$entity1->_internalSetReference($property, $entity2, true);
|
|
}
|
|
|
|
public function isIndexKeyInUse(Doctrine_ORM_Entity $entity, $assocField, $indexField)
|
|
{
|
|
return $entity->_internalGetReference($assocField)->contains($indexField);
|
|
}
|
|
|
|
public function isFieldSet(Doctrine_ORM_Entity $entity, $field)
|
|
{
|
|
return $entity->contains($field);
|
|
}
|
|
|
|
public function getFieldValue(Doctrine_ORM_Entity $entity, $field)
|
|
{
|
|
return $entity->_internalGetField($field);
|
|
}
|
|
|
|
public function getReferenceValue(Doctrine_ORM_Entity $entity, $field)
|
|
{
|
|
return $entity->_internalGetReference($field);
|
|
}
|
|
|
|
public function addElementToIndexedCollection($coll, $entity, $keyField)
|
|
{
|
|
$coll->add($entity, $entity->_internalGetField($keyField));
|
|
}
|
|
|
|
public function addElementToCollection($coll, $entity)
|
|
{
|
|
$coll->add($entity);
|
|
}
|
|
|
|
public function flush()
|
|
{
|
|
// take snapshots from all initialized collections
|
|
foreach ($this->_collections as $coll) {
|
|
$coll->_takeSnapshot();
|
|
$coll->_setHydrationFlag(false);
|
|
}
|
|
$this->_collections = array();
|
|
$this->_initializedRelations = array();
|
|
}
|
|
|
|
}
|