630 lines
25 KiB
PHP
630 lines
25 KiB
PHP
<?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\Internal\Hydration;
|
|
|
|
use Doctrine\ORM\UnitOfWork;
|
|
use PDO;
|
|
use Doctrine\ORM\Mapping\ClassMetadata;
|
|
use Doctrine\ORM\PersistentCollection;
|
|
use Doctrine\ORM\Query;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\ORM\Proxy\Proxy;
|
|
|
|
/**
|
|
* The ObjectHydrator constructs an object graph out of an SQL result set.
|
|
*
|
|
* @since 2.0
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
* @author Guilherme Blanco <guilhermeblanoc@hotmail.com>
|
|
* @author Fabio B. Silva <fabio.bat.silva@gmail.com>
|
|
*
|
|
* @internal Highly performance-sensitive code.
|
|
*/
|
|
class ObjectHydrator extends AbstractHydrator
|
|
{
|
|
/**
|
|
* Local ClassMetadata cache to avoid going to the EntityManager all the time.
|
|
* This local cache is maintained between hydration runs and not cleared.
|
|
*
|
|
* @var array
|
|
*/
|
|
private $ce = array();
|
|
|
|
/* The following parts are reinitialized on every hydration run. */
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $identifierMap;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $resultPointers;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $idTemplate;
|
|
|
|
/**
|
|
* @var integer
|
|
*/
|
|
private $resultCounter;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $rootAliases = array();
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $initializedCollections = array();
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $existingCollections = array();
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function prepare()
|
|
{
|
|
$this->identifierMap =
|
|
$this->resultPointers =
|
|
$this->idTemplate = array();
|
|
|
|
$this->resultCounter = 0;
|
|
|
|
if ( ! isset($this->_hints[UnitOfWork::HINT_DEFEREAGERLOAD])) {
|
|
$this->_hints[UnitOfWork::HINT_DEFEREAGERLOAD] = true;
|
|
}
|
|
|
|
foreach ($this->_rsm->aliasMap as $dqlAlias => $className) {
|
|
$this->identifierMap[$dqlAlias] = array();
|
|
$this->idTemplate[$dqlAlias] = '';
|
|
|
|
if ( ! isset($this->ce[$className])) {
|
|
$this->ce[$className] = $this->_em->getClassMetadata($className);
|
|
}
|
|
|
|
// Remember which associations are "fetch joined", so that we know where to inject
|
|
// collection stubs or proxies and where not.
|
|
if ( ! isset($this->_rsm->relationMap[$dqlAlias])) {
|
|
continue;
|
|
}
|
|
|
|
if ( ! isset($this->_rsm->aliasMap[$this->_rsm->parentAliasMap[$dqlAlias]])) {
|
|
throw HydrationException::parentObjectOfRelationNotFound($dqlAlias, $this->_rsm->parentAliasMap[$dqlAlias]);
|
|
}
|
|
|
|
$sourceClassName = $this->_rsm->aliasMap[$this->_rsm->parentAliasMap[$dqlAlias]];
|
|
$sourceClass = $this->getClassMetadata($sourceClassName);
|
|
$assoc = $sourceClass->associationMappings[$this->_rsm->relationMap[$dqlAlias]];
|
|
|
|
$this->_hints['fetched'][$this->_rsm->parentAliasMap[$dqlAlias]][$assoc['fieldName']] = true;
|
|
|
|
if ($assoc['type'] === ClassMetadata::MANY_TO_MANY) {
|
|
continue;
|
|
}
|
|
|
|
// Mark any non-collection opposite sides as fetched, too.
|
|
if ($assoc['mappedBy']) {
|
|
$this->_hints['fetched'][$dqlAlias][$assoc['mappedBy']] = true;
|
|
|
|
continue;
|
|
}
|
|
|
|
// handle fetch-joined owning side bi-directional one-to-one associations
|
|
if ($assoc['inversedBy']) {
|
|
$class = $this->ce[$className];
|
|
$inverseAssoc = $class->associationMappings[$assoc['inversedBy']];
|
|
|
|
if ( ! ($inverseAssoc['type'] & ClassMetadata::TO_ONE)) {
|
|
continue;
|
|
}
|
|
|
|
$this->_hints['fetched'][$dqlAlias][$inverseAssoc['fieldName']] = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function cleanup()
|
|
{
|
|
$eagerLoad = (isset($this->_hints[UnitOfWork::HINT_DEFEREAGERLOAD])) && $this->_hints[UnitOfWork::HINT_DEFEREAGERLOAD] == true;
|
|
|
|
parent::cleanup();
|
|
|
|
$this->identifierMap =
|
|
$this->initializedCollections =
|
|
$this->existingCollections =
|
|
$this->resultPointers = array();
|
|
|
|
if ($eagerLoad) {
|
|
$this->_em->getUnitOfWork()->triggerEagerLoads();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function hydrateAllData()
|
|
{
|
|
$result = array();
|
|
$cache = array();
|
|
|
|
while ($row = $this->_stmt->fetch(PDO::FETCH_ASSOC)) {
|
|
$this->hydrateRowData($row, $cache, $result);
|
|
}
|
|
|
|
// Take snapshots from all newly initialized collections
|
|
foreach ($this->initializedCollections as $coll) {
|
|
$coll->takeSnapshot();
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Initializes a related collection.
|
|
*
|
|
* @param object $entity The entity to which the collection belongs.
|
|
* @param ClassMetadata $class
|
|
* @param string $fieldName The name of the field on the entity that holds the collection.
|
|
* @param string $parentDqlAlias Alias of the parent fetch joining this collection.
|
|
*
|
|
* @return \Doctrine\ORM\PersistentCollection
|
|
*/
|
|
private function initRelatedCollection($entity, $class, $fieldName, $parentDqlAlias)
|
|
{
|
|
$oid = spl_object_hash($entity);
|
|
$relation = $class->associationMappings[$fieldName];
|
|
$value = $class->reflFields[$fieldName]->getValue($entity);
|
|
|
|
if ($value === null) {
|
|
$value = new ArrayCollection;
|
|
}
|
|
|
|
if ( ! $value instanceof PersistentCollection) {
|
|
$value = new PersistentCollection(
|
|
$this->_em, $this->ce[$relation['targetEntity']], $value
|
|
);
|
|
$value->setOwner($entity, $relation);
|
|
|
|
$class->reflFields[$fieldName]->setValue($entity, $value);
|
|
$this->_uow->setOriginalEntityProperty($oid, $fieldName, $value);
|
|
|
|
$this->initializedCollections[$oid . $fieldName] = $value;
|
|
} else if (
|
|
isset($this->_hints[Query::HINT_REFRESH]) ||
|
|
isset($this->_hints['fetched'][$parentDqlAlias][$fieldName]) &&
|
|
! $value->isInitialized()
|
|
) {
|
|
// Is already PersistentCollection, but either REFRESH or FETCH-JOIN and UNINITIALIZED!
|
|
$value->setDirty(false);
|
|
$value->setInitialized(true);
|
|
$value->unwrap()->clear();
|
|
|
|
$this->initializedCollections[$oid . $fieldName] = $value;
|
|
} else {
|
|
// Is already PersistentCollection, and DON'T REFRESH or FETCH-JOIN!
|
|
$this->existingCollections[$oid . $fieldName] = $value;
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
|
|
/**
|
|
* Gets an entity instance.
|
|
*
|
|
* @param array $data The instance data.
|
|
* @param string $dqlAlias The DQL alias of the entity's class.
|
|
*
|
|
* @return object The entity.
|
|
*
|
|
* @throws HydrationException
|
|
*/
|
|
private function getEntity(array $data, $dqlAlias)
|
|
{
|
|
$className = $this->_rsm->aliasMap[$dqlAlias];
|
|
|
|
if (isset($this->_rsm->discriminatorColumns[$dqlAlias])) {
|
|
|
|
if ( ! isset($this->_rsm->metaMappings[$this->_rsm->discriminatorColumns[$dqlAlias]])) {
|
|
throw HydrationException::missingDiscriminatorMetaMappingColumn($className, $this->_rsm->discriminatorColumns[$dqlAlias], $dqlAlias);
|
|
}
|
|
|
|
$discrColumn = $this->_rsm->metaMappings[$this->_rsm->discriminatorColumns[$dqlAlias]];
|
|
|
|
if ( ! isset($data[$discrColumn])) {
|
|
throw HydrationException::missingDiscriminatorColumn($className, $discrColumn, $dqlAlias);
|
|
}
|
|
|
|
if ($data[$discrColumn] === "") {
|
|
throw HydrationException::emptyDiscriminatorValue($dqlAlias);
|
|
}
|
|
|
|
$className = $this->ce[$className]->discriminatorMap[$data[$discrColumn]];
|
|
|
|
unset($data[$discrColumn]);
|
|
}
|
|
|
|
if (isset($this->_hints[Query::HINT_REFRESH_ENTITY]) && isset($this->rootAliases[$dqlAlias])) {
|
|
$this->registerManaged($this->ce[$className], $this->_hints[Query::HINT_REFRESH_ENTITY], $data);
|
|
}
|
|
|
|
$this->_hints['fetchAlias'] = $dqlAlias;
|
|
|
|
return $this->_uow->createEntity($className, $data, $this->_hints);
|
|
}
|
|
|
|
/**
|
|
* @param string $className
|
|
* @param array $data
|
|
*
|
|
* @return mixed
|
|
*/
|
|
private function getEntityFromIdentityMap($className, array $data)
|
|
{
|
|
// TODO: Abstract this code and UnitOfWork::createEntity() equivalent?
|
|
$class = $this->ce[$className];
|
|
|
|
/* @var $class ClassMetadata */
|
|
if ($class->isIdentifierComposite) {
|
|
$idHash = '';
|
|
foreach ($class->identifier as $fieldName) {
|
|
if (isset($class->associationMappings[$fieldName])) {
|
|
$idHash .= $data[$class->associationMappings[$fieldName]['joinColumns'][0]['name']] . ' ';
|
|
} else {
|
|
$idHash .= $data[$fieldName] . ' ';
|
|
}
|
|
}
|
|
return $this->_uow->tryGetByIdHash(rtrim($idHash), $class->rootEntityName);
|
|
} else if (isset($class->associationMappings[$class->identifier[0]])) {
|
|
return $this->_uow->tryGetByIdHash($data[$class->associationMappings[$class->identifier[0]]['joinColumns'][0]['name']], $class->rootEntityName);
|
|
} else {
|
|
return $this->_uow->tryGetByIdHash($data[$class->identifier[0]], $class->rootEntityName);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets a ClassMetadata instance from the local cache.
|
|
* If the instance is not yet in the local cache, it is loaded into the
|
|
* local cache.
|
|
*
|
|
* @param string $className The name of the class.
|
|
*
|
|
* @return ClassMetadata
|
|
*/
|
|
private function getClassMetadata($className)
|
|
{
|
|
if ( ! isset($this->ce[$className])) {
|
|
$this->ce[$className] = $this->_em->getClassMetadata($className);
|
|
}
|
|
|
|
return $this->ce[$className];
|
|
}
|
|
|
|
/**
|
|
* Hydrates a single row in an SQL result set.
|
|
*
|
|
* @internal
|
|
* First, the data of the row is split into chunks where each chunk contains data
|
|
* that belongs to a particular component/class. Afterwards, all these chunks
|
|
* are processed, one after the other. For each chunk of class data only one of the
|
|
* following code paths is executed:
|
|
*
|
|
* Path A: The data chunk belongs to a joined/associated object and the association
|
|
* is collection-valued.
|
|
* Path B: The data chunk belongs to a joined/associated object and the association
|
|
* is single-valued.
|
|
* Path C: The data chunk belongs to a root result element/object that appears in the topmost
|
|
* level of the hydrated result. A typical example are the objects of the type
|
|
* specified by the FROM clause in a DQL query.
|
|
*
|
|
* @param array $row The data of the row to process.
|
|
* @param array $cache The cache to use.
|
|
* @param array $result The result array to fill.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function hydrateRowData(array $row, array &$cache, array &$result)
|
|
{
|
|
// Initialize
|
|
$id = $this->idTemplate; // initialize the id-memory
|
|
$nonemptyComponents = array();
|
|
// Split the row data into chunks of class data.
|
|
$rowData = $this->gatherRowData($row, $cache, $id, $nonemptyComponents);
|
|
|
|
// Extract scalar values. They're appended at the end.
|
|
if (isset($rowData['scalars'])) {
|
|
$scalars = $rowData['scalars'];
|
|
|
|
unset($rowData['scalars']);
|
|
|
|
if (empty($rowData)) {
|
|
++$this->resultCounter;
|
|
}
|
|
}
|
|
|
|
// Extract "new" object constructor arguments. They're appended at the end.
|
|
if (isset($rowData['newObjects'])) {
|
|
$newObjects = $rowData['newObjects'];
|
|
|
|
unset($rowData['newObjects']);
|
|
|
|
if (empty($rowData)) {
|
|
++$this->resultCounter;
|
|
}
|
|
}
|
|
|
|
// Hydrate the data chunks
|
|
foreach ($rowData as $dqlAlias => $data) {
|
|
$entityName = $this->_rsm->aliasMap[$dqlAlias];
|
|
|
|
if (isset($this->_rsm->parentAliasMap[$dqlAlias])) {
|
|
// It's a joined result
|
|
|
|
$parentAlias = $this->_rsm->parentAliasMap[$dqlAlias];
|
|
// we need the $path to save into the identifier map which entities were already
|
|
// seen for this parent-child relationship
|
|
$path = $parentAlias . '.' . $dqlAlias;
|
|
|
|
// We have a RIGHT JOIN result here. Doctrine cannot hydrate RIGHT JOIN Object-Graphs
|
|
if ( ! isset($nonemptyComponents[$parentAlias])) {
|
|
// TODO: Add special case code where we hydrate the right join objects into identity map at least
|
|
continue;
|
|
}
|
|
|
|
// Get a reference to the parent object to which the joined element belongs.
|
|
if ($this->_rsm->isMixed && isset($this->rootAliases[$parentAlias])) {
|
|
$first = reset($this->resultPointers);
|
|
$parentObject = $first[key($first)];
|
|
} else if (isset($this->resultPointers[$parentAlias])) {
|
|
$parentObject = $this->resultPointers[$parentAlias];
|
|
} else {
|
|
// Parent object of relation not found, so skip it.
|
|
continue;
|
|
}
|
|
|
|
$parentClass = $this->ce[$this->_rsm->aliasMap[$parentAlias]];
|
|
$oid = spl_object_hash($parentObject);
|
|
$relationField = $this->_rsm->relationMap[$dqlAlias];
|
|
$relation = $parentClass->associationMappings[$relationField];
|
|
$reflField = $parentClass->reflFields[$relationField];
|
|
|
|
// Check the type of the relation (many or single-valued)
|
|
if ( ! ($relation['type'] & ClassMetadata::TO_ONE)) {
|
|
$reflFieldValue = $reflField->getValue($parentObject);
|
|
// PATH A: Collection-valued association
|
|
if (isset($nonemptyComponents[$dqlAlias])) {
|
|
$collKey = $oid . $relationField;
|
|
if (isset($this->initializedCollections[$collKey])) {
|
|
$reflFieldValue = $this->initializedCollections[$collKey];
|
|
} else if ( ! isset($this->existingCollections[$collKey])) {
|
|
$reflFieldValue = $this->initRelatedCollection($parentObject, $parentClass, $relationField, $parentAlias);
|
|
}
|
|
|
|
$indexExists = isset($this->identifierMap[$path][$id[$parentAlias]][$id[$dqlAlias]]);
|
|
$index = $indexExists ? $this->identifierMap[$path][$id[$parentAlias]][$id[$dqlAlias]] : false;
|
|
$indexIsValid = $index !== false ? isset($reflFieldValue[$index]) : false;
|
|
|
|
if ( ! $indexExists || ! $indexIsValid) {
|
|
if (isset($this->existingCollections[$collKey])) {
|
|
// Collection exists, only look for the element in the identity map.
|
|
if ($element = $this->getEntityFromIdentityMap($entityName, $data)) {
|
|
$this->resultPointers[$dqlAlias] = $element;
|
|
} else {
|
|
unset($this->resultPointers[$dqlAlias]);
|
|
}
|
|
} else {
|
|
$element = $this->getEntity($data, $dqlAlias);
|
|
|
|
if (isset($this->_rsm->indexByMap[$dqlAlias])) {
|
|
$indexValue = $row[$this->_rsm->indexByMap[$dqlAlias]];
|
|
$reflFieldValue->hydrateSet($indexValue, $element);
|
|
$this->identifierMap[$path][$id[$parentAlias]][$id[$dqlAlias]] = $indexValue;
|
|
} else {
|
|
$reflFieldValue->hydrateAdd($element);
|
|
$reflFieldValue->last();
|
|
$this->identifierMap[$path][$id[$parentAlias]][$id[$dqlAlias]] = $reflFieldValue->key();
|
|
}
|
|
// Update result pointer
|
|
$this->resultPointers[$dqlAlias] = $element;
|
|
}
|
|
} else {
|
|
// Update result pointer
|
|
$this->resultPointers[$dqlAlias] = $reflFieldValue[$index];
|
|
}
|
|
} else if ( ! $reflFieldValue) {
|
|
$reflFieldValue = $this->initRelatedCollection($parentObject, $parentClass, $relationField, $parentAlias);
|
|
} else if ($reflFieldValue instanceof PersistentCollection && $reflFieldValue->isInitialized() === false) {
|
|
$reflFieldValue->setInitialized(true);
|
|
}
|
|
|
|
} else {
|
|
// PATH B: Single-valued association
|
|
$reflFieldValue = $reflField->getValue($parentObject);
|
|
if ( ! $reflFieldValue || isset($this->_hints[Query::HINT_REFRESH]) || ($reflFieldValue instanceof Proxy && !$reflFieldValue->__isInitialized__)) {
|
|
// we only need to take action if this value is null,
|
|
// we refresh the entity or its an unitialized proxy.
|
|
if (isset($nonemptyComponents[$dqlAlias])) {
|
|
$element = $this->getEntity($data, $dqlAlias);
|
|
$reflField->setValue($parentObject, $element);
|
|
$this->_uow->setOriginalEntityProperty($oid, $relationField, $element);
|
|
$targetClass = $this->ce[$relation['targetEntity']];
|
|
|
|
if ($relation['isOwningSide']) {
|
|
// TODO: Just check hints['fetched'] here?
|
|
// If there is an inverse mapping on the target class its bidirectional
|
|
if ($relation['inversedBy']) {
|
|
$inverseAssoc = $targetClass->associationMappings[$relation['inversedBy']];
|
|
if ($inverseAssoc['type'] & ClassMetadata::TO_ONE) {
|
|
$targetClass->reflFields[$inverseAssoc['fieldName']]->setValue($element, $parentObject);
|
|
$this->_uow->setOriginalEntityProperty(spl_object_hash($element), $inverseAssoc['fieldName'], $parentObject);
|
|
}
|
|
} else if ($parentClass === $targetClass && $relation['mappedBy']) {
|
|
// Special case: bi-directional self-referencing one-one on the same class
|
|
$targetClass->reflFields[$relationField]->setValue($element, $parentObject);
|
|
}
|
|
} else {
|
|
// For sure bidirectional, as there is no inverse side in unidirectional mappings
|
|
$targetClass->reflFields[$relation['mappedBy']]->setValue($element, $parentObject);
|
|
$this->_uow->setOriginalEntityProperty(spl_object_hash($element), $relation['mappedBy'], $parentObject);
|
|
}
|
|
// Update result pointer
|
|
$this->resultPointers[$dqlAlias] = $element;
|
|
} else {
|
|
$this->_uow->setOriginalEntityProperty($oid, $relationField, null);
|
|
$reflField->setValue($parentObject, null);
|
|
}
|
|
// else leave $reflFieldValue null for single-valued associations
|
|
} else {
|
|
// Update result pointer
|
|
$this->resultPointers[$dqlAlias] = $reflFieldValue;
|
|
}
|
|
}
|
|
} else {
|
|
// PATH C: Its a root result element
|
|
$this->rootAliases[$dqlAlias] = true; // Mark as root alias
|
|
$entityKey = $this->_rsm->entityMappings[$dqlAlias] ?: 0;
|
|
|
|
// if this row has a NULL value for the root result id then make it a null result.
|
|
if ( ! isset($nonemptyComponents[$dqlAlias]) ) {
|
|
if ($this->_rsm->isMixed) {
|
|
$result[] = array($entityKey => null);
|
|
} else {
|
|
$result[] = null;
|
|
}
|
|
$resultKey = $this->resultCounter;
|
|
++$this->resultCounter;
|
|
continue;
|
|
}
|
|
|
|
// check for existing result from the iterations before
|
|
if ( ! isset($this->identifierMap[$dqlAlias][$id[$dqlAlias]])) {
|
|
$element = $this->getEntity($rowData[$dqlAlias], $dqlAlias);
|
|
|
|
if ($this->_rsm->isMixed) {
|
|
$element = array($entityKey => $element);
|
|
}
|
|
|
|
if (isset($this->_rsm->indexByMap[$dqlAlias])) {
|
|
$resultKey = $row[$this->_rsm->indexByMap[$dqlAlias]];
|
|
|
|
if (isset($this->_hints['collection'])) {
|
|
$this->_hints['collection']->hydrateSet($resultKey, $element);
|
|
}
|
|
|
|
$result[$resultKey] = $element;
|
|
} else {
|
|
$resultKey = $this->resultCounter;
|
|
++$this->resultCounter;
|
|
|
|
if (isset($this->_hints['collection'])) {
|
|
$this->_hints['collection']->hydrateAdd($element);
|
|
}
|
|
|
|
$result[] = $element;
|
|
}
|
|
|
|
$this->identifierMap[$dqlAlias][$id[$dqlAlias]] = $resultKey;
|
|
|
|
// Update result pointer
|
|
$this->resultPointers[$dqlAlias] = $element;
|
|
|
|
} else {
|
|
// Update result pointer
|
|
$index = $this->identifierMap[$dqlAlias][$id[$dqlAlias]];
|
|
$this->resultPointers[$dqlAlias] = $result[$index];
|
|
$resultKey = $index;
|
|
/*if ($this->_rsm->isMixed) {
|
|
$result[] = $result[$index];
|
|
++$this->_resultCounter;
|
|
}*/
|
|
}
|
|
}
|
|
}
|
|
|
|
// Append scalar values to mixed result sets
|
|
if (isset($scalars)) {
|
|
if ( ! isset($resultKey) ) {
|
|
if (isset($this->_rsm->indexByMap['scalars'])) {
|
|
$resultKey = $row[$this->_rsm->indexByMap['scalars']];
|
|
} else {
|
|
$resultKey = $this->resultCounter - 1;
|
|
}
|
|
}
|
|
|
|
foreach ($scalars as $name => $value) {
|
|
$result[$resultKey][$name] = $value;
|
|
}
|
|
}
|
|
|
|
// Append new object to mixed result sets
|
|
if (isset($newObjects)) {
|
|
if ( ! isset($resultKey) ) {
|
|
$resultKey = $this->resultCounter - 1;
|
|
}
|
|
|
|
$count = count($newObjects);
|
|
|
|
foreach ($newObjects as $objIndex => $newObject) {
|
|
$class = $newObject['class'];
|
|
$args = $newObject['args'];
|
|
$obj = $class->newInstanceArgs($args);
|
|
|
|
if ($count === 1) {
|
|
$result[$resultKey] = $obj;
|
|
|
|
continue;
|
|
}
|
|
|
|
$result[$resultKey][$objIndex] = $obj;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* When executed in a hydrate() loop we may have to clear internal state to
|
|
* decrease memory consumption.
|
|
*
|
|
* @param mixed $eventArgs
|
|
*
|
|
* @return void
|
|
*/
|
|
public function onClear($eventArgs)
|
|
{
|
|
parent::onClear($eventArgs);
|
|
|
|
$aliases = array_keys($this->identifierMap);
|
|
$this->identifierMap = array();
|
|
|
|
foreach ($aliases as $alias) {
|
|
$this->identifierMap[$alias] = array();
|
|
}
|
|
}
|
|
}
|