Commit dd1afc7e authored by romanb's avatar romanb

hydrator cleanup and 2 new methods for ClassMetadata

parent 4e62d4a9
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
* <http://www.phpdoctrine.org>. * <http://www.phpdoctrine.org>.
*/ */
#namespace Doctrine::DBAL::Platforms; #namespace Doctrine\DBAL\Platforms;
/** /**
* The MySqlPlatform provides the behavior, features and SQL dialect of the * The MySqlPlatform provides the behavior, features and SQL dialect of the
......
...@@ -104,6 +104,8 @@ final class Doctrine_ORM_Collection extends Doctrine_Common_Collections_Collecti ...@@ -104,6 +104,8 @@ final class Doctrine_ORM_Collection extends Doctrine_Common_Collections_Collecti
*/ */
private $_hydrationFlag; private $_hydrationFlag;
private $_ownerClass;
/** /**
* Creates a new persistent collection. * Creates a new persistent collection.
*/ */
...@@ -111,8 +113,9 @@ final class Doctrine_ORM_Collection extends Doctrine_Common_Collections_Collecti ...@@ -111,8 +113,9 @@ final class Doctrine_ORM_Collection extends Doctrine_Common_Collections_Collecti
{ {
$this->_entityBaseType = $entityBaseType; $this->_entityBaseType = $entityBaseType;
$this->_em = $em; $this->_em = $em;
$this->_ownerClass = $em->getClassMetadata($entityBaseType);
if ($keyField !== null) { if ($keyField !== null) {
if ( ! $this->_em->getClassMetadata($entityBaseType)->hasField($keyField)) { if ( ! $this->_ownerClass->hasField($keyField)) {
throw new Doctrine_Exception("Invalid field '$keyField' can't be uses as key."); throw new Doctrine_Exception("Invalid field '$keyField' can't be uses as key.");
} }
$this->_keyField = $keyField; $this->_keyField = $keyField;
...@@ -227,7 +230,7 @@ final class Doctrine_ORM_Collection extends Doctrine_Common_Collections_Collecti ...@@ -227,7 +230,7 @@ final class Doctrine_ORM_Collection extends Doctrine_Common_Collections_Collecti
if ($this->_hydrationFlag) { if ($this->_hydrationFlag) {
if ($this->_backRefFieldName) { if ($this->_backRefFieldName) {
// set back reference to owner // set back reference to owner
$this->_em->getClassMetadata($this->_entityBaseType)->getReflectionProperty( $this->_ownerClass->getReflectionProperty(
$this->_backRefFieldName)->setValue($value, $this->_owner); $this->_backRefFieldName)->setValue($value, $this->_owner);
} }
} else { } else {
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
* @link www.doctrine-project.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision: 4342 $ * @version $Revision: 4342 $
* @DEPRECATED
*/ */
interface Doctrine_ORM_Entity interface Doctrine_ORM_Entity
{} {}
...@@ -594,9 +594,11 @@ class Doctrine_ORM_EntityManager ...@@ -594,9 +594,11 @@ class Doctrine_ORM_EntityManager
$this->_hydrators[$hydrationMode] = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this); $this->_hydrators[$hydrationMode] = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this);
break; break;
case Doctrine_ORM_Query::HYDRATE_SCALAR: case Doctrine_ORM_Query::HYDRATE_SCALAR:
case Doctrine_ORM_Query::HYDRATE_SINGLE_SCALAR:
$this->_hydrators[$hydrationMode] = new Doctrine_ORM_Internal_Hydration_ScalarHydrator($this); $this->_hydrators[$hydrationMode] = new Doctrine_ORM_Internal_Hydration_ScalarHydrator($this);
break; break;
case Doctrine_ORM_Query::HYDRATE_SINGLE_SCALAR:
$this->_hydrators[$hydrationMode] = new Doctrine_ORM_Internal_Hydration_SingleScalarHydrator($this);
break;
case Doctrine_ORM_Query::HYDRATE_NONE: case Doctrine_ORM_Query::HYDRATE_NONE:
$this->_hydrators[$hydrationMode] = new Doctrine_ORM_Internal_Hydration_NoneHydrator($this); $this->_hydrators[$hydrationMode] = new Doctrine_ORM_Internal_Hydration_NoneHydrator($this);
break; break;
......
...@@ -38,11 +38,11 @@ abstract class Doctrine_ORM_Internal_Hydration_AbstractHydrator ...@@ -38,11 +38,11 @@ abstract class Doctrine_ORM_Internal_Hydration_AbstractHydrator
* *
* Two dimensional array containing the map for query aliases. Main keys are component aliases. * Two dimensional array containing the map for query aliases. Main keys are component aliases.
* *
* table Table object associated with given alias. * metadata ClassMetadata object associated with given alias.
* relation Relation object owned by the parent. * relation Relation object owned by the parent.
* parent Alias of the parent. * parent Alias of the parent.
* agg Aggregates of this component. * agg Aggregates of this component.
* map Name of the column / aggregate value this component is mapped to a collection. * map Name of the column / aggregate value this component is mapped to in a collection.
*/ */
protected $_queryComponents = array(); protected $_queryComponents = array();
...@@ -100,7 +100,7 @@ abstract class Doctrine_ORM_Internal_Hydration_AbstractHydrator ...@@ -100,7 +100,7 @@ abstract class Doctrine_ORM_Internal_Hydration_AbstractHydrator
{ {
$this->_stmt = $stmt; $this->_stmt = $stmt;
$this->_prepare($parserResult); $this->_prepare($parserResult);
$result = $this->_hydrateAll($parserResult); $result = $this->_hydrateAll();
$this->_cleanup(); $this->_cleanup();
return $result; return $result;
} }
...@@ -164,7 +164,7 @@ abstract class Doctrine_ORM_Internal_Hydration_AbstractHydrator ...@@ -164,7 +164,7 @@ abstract class Doctrine_ORM_Internal_Hydration_AbstractHydrator
* *
* @param object $parserResult * @param object $parserResult
*/ */
abstract protected function _hydrateAll($parserResult); abstract protected function _hydrateAll();
/** /**
* Gets the row container used during row-by-row hydration through {@link iterate()}. * Gets the row container used during row-by-row hydration through {@link iterate()}.
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
* @version $Revision$ * @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Roman Borschel <roman@code-factory.org> * @author Roman Borschel <roman@code-factory.org>
* @DEPRECATED
*/ */
class Doctrine_ORM_Internal_Hydration_ArrayDriver class Doctrine_ORM_Internal_Hydration_ArrayDriver
{ {
......
...@@ -39,7 +39,7 @@ class Doctrine_ORM_Internal_Hydration_ArrayHydrator extends Doctrine_ORM_Interna ...@@ -39,7 +39,7 @@ class Doctrine_ORM_Internal_Hydration_ArrayHydrator extends Doctrine_ORM_Interna
} }
/** @override */ /** @override */
protected function _hydrateAll($parserResult) protected function _hydrateAll()
{ {
$s = microtime(true); $s = microtime(true);
...@@ -61,7 +61,7 @@ class Doctrine_ORM_Internal_Hydration_ArrayHydrator extends Doctrine_ORM_Interna ...@@ -61,7 +61,7 @@ class Doctrine_ORM_Internal_Hydration_ArrayHydrator extends Doctrine_ORM_Interna
// 1) Initialize // 1) Initialize
$id = $this->_idTemplate; // initialize the id-memory $id = $this->_idTemplate; // initialize the id-memory
$nonemptyComponents = array(); $nonemptyComponents = array();
$rowData = parent::_gatherRowData($data, $cache, $id, $nonemptyComponents); $rowData = $this->_gatherRowData($data, $cache, $id, $nonemptyComponents);
$rootAlias = $this->_rootAlias; $rootAlias = $this->_rootAlias;
// 2) Hydrate the data of the root entity from the current row // 2) Hydrate the data of the root entity from the current row
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Roman Borschel <roman@code-factory.org> * @author Roman Borschel <roman@code-factory.org>
* @internal All the methods in this class are performance-sentitive. * @internal All the methods in this class are performance-sentitive.
* @DEPRECATED
*/ */
class Doctrine_ORM_Internal_Hydration_ObjectDriver class Doctrine_ORM_Internal_Hydration_ObjectDriver
{ {
......
<?php <?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/** /**
* Description of ObjectHydrator * Description of ObjectHydrator
...@@ -11,7 +8,7 @@ ...@@ -11,7 +8,7 @@
*/ */
class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator
{ {
/** Collections initialized by the driver */ /** Collections initialized by the hydrator */
private $_collections = array(); private $_collections = array();
/** Memory for initialized relations */ /** Memory for initialized relations */
private $_initializedRelations = array(); private $_initializedRelations = array();
...@@ -42,8 +39,12 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -42,8 +39,12 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
} }
} }
/** @override */ /**
protected function _hydrateAll($parserResult) * {@inheritdoc}
*
* @override
*/
protected function _hydrateAll()
{ {
$s = microtime(true); $s = microtime(true);
...@@ -54,7 +55,6 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -54,7 +55,6 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
} }
$cache = array(); $cache = array();
// Process result set
while ($data = $this->_stmt->fetch(PDO::FETCH_ASSOC)) { while ($data = $this->_stmt->fetch(PDO::FETCH_ASSOC)) {
$this->_hydrateRow($data, $cache, $result); $this->_hydrateRow($data, $cache, $result);
} }
...@@ -111,7 +111,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -111,7 +111,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
} }
} }
private function getElementCollection($component) private function getCollection($component)
{ {
$coll = new Doctrine_ORM_Collection($this->_em, $component); $coll = new Doctrine_ORM_Collection($this->_em, $component);
$this->_collections[] = $coll; $this->_collections[] = $coll;
...@@ -125,7 +125,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -125,7 +125,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
if ( ! isset($this->_initializedRelations[$oid][$name])) { if ( ! isset($this->_initializedRelations[$oid][$name])) {
$relation = $classMetadata->getAssociationMapping($name); $relation = $classMetadata->getAssociationMapping($name);
$relatedClass = $this->_em->getClassMetadata($relation->getTargetEntityName()); $relatedClass = $this->_em->getClassMetadata($relation->getTargetEntityName());
$coll = $this->getElementCollection($relatedClass->getClassName()); $coll = $this->getCollection($relatedClass->getClassName());
$coll->_setOwner($entity, $relation); $coll->_setOwner($entity, $relation);
$coll->_setHydrationFlag(true); $coll->_setHydrationFlag(true);
$classMetadata->getReflectionProperty($name)->setValue($entity, $coll); $classMetadata->getReflectionProperty($name)->setValue($entity, $coll);
...@@ -142,7 +142,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -142,7 +142,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
private function getLastKey($coll) private function getLastKey($coll)
{ {
// check needed because of mixed results. // Check needed because of mixed results.
// is_object instead of is_array because is_array is slow on large arrays. // is_object instead of is_array because is_array is slow on large arrays.
if (is_object($coll)) { if (is_object($coll)) {
$coll->last(); $coll->last();
...@@ -153,9 +153,9 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -153,9 +153,9 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
} }
} }
private function getElement(array $data, $className) private function getEntity(array $data, $className)
{ {
$entity = $this->_em->getUnitOfWork()->createEntity($className, $data); $entity = $this->_uow->createEntity($className, $data);
$oid = spl_object_hash($entity); $oid = spl_object_hash($entity);
$this->_metadataMap[$oid] = $this->_em->getClassMetadata($className); $this->_metadataMap[$oid] = $this->_em->getClassMetadata($className);
return $entity; return $entity;
...@@ -169,7 +169,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -169,7 +169,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
* @param <type> $entity2 * @param <type> $entity2
* @param <type> $indexField * @param <type> $indexField
*/ */
private function addRelatedIndexedElement($entity1, $property, $entity2, $indexField) private function addRelatedIndexedEntity($entity1, $property, $entity2, $indexField)
{ {
$classMetadata1 = $this->_metadataMap[spl_object_hash($entity1)]; $classMetadata1 = $this->_metadataMap[spl_object_hash($entity1)];
$classMetadata2 = $this->_metadataMap[spl_object_hash($entity2)]; $classMetadata2 = $this->_metadataMap[spl_object_hash($entity2)];
...@@ -184,15 +184,23 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -184,15 +184,23 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
* @param <type> $property * @param <type> $property
* @param <type> $entity2 * @param <type> $entity2
*/ */
private function addRelatedElement($entity1, $property, $entity2) private function addRelatedEntity($entity1, $property, $entity2)
{ {
$classMetadata1 = $this->_metadataMap[spl_object_hash($entity1)]; $classMetadata1 = $this->_metadataMap[spl_object_hash($entity1)];
$classMetadata1->getReflectionProperty($property)->getValue($entity1)->add($entity2); $classMetadata1->getReflectionProperty($property)->getValue($entity1)->add($entity2);
} }
/**
* Checks whether a field on an entity has a non-null value.
*
* @param object $entity
* @param string $field
* @return boolean
*/
private function isFieldSet($entity, $field) private function isFieldSet($entity, $field)
{ {
return $this->_metadataMap[spl_object_hash($entity)]->getReflectionProperty($field) return $this->_metadataMap[spl_object_hash($entity)]
->getReflectionProperty($field)
->getValue($entity) !== null; ->getValue($entity) !== null;
} }
...@@ -220,7 +228,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -220,7 +228,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
$targetClass->getReflectionProperty($sourceProp)->setValue($entity2, $entity1); $targetClass->getReflectionProperty($sourceProp)->setValue($entity2, $entity1);
} }
} else { } else {
// for sure bidirectional, as there is no inverse side in unidirectional // For sure bidirectional, as there is no inverse side in unidirectional
$mappedByProp = $relation->getMappedByFieldName(); $mappedByProp = $relation->getMappedByFieldName();
$targetClass->getReflectionProperty($mappedByProp)->setValue($entity2, $entity1); $targetClass->getReflectionProperty($mappedByProp)->setValue($entity2, $entity1);
} }
...@@ -228,11 +236,8 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -228,11 +236,8 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
} }
/** /**
* Hydrates a single row. * {@inheritdoc}
* *
* @param <type> $data The row data.
* @param <type> $cache The cache to use.
* @param <type> $result The result to append to.
* @override * @override
*/ */
protected function _hydrateRow(array &$data, array &$cache, &$result) protected function _hydrateRow(array &$data, array &$cache, &$result)
...@@ -240,7 +245,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -240,7 +245,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
// 1) Initialize // 1) Initialize
$id = $this->_idTemplate; // initialize the id-memory $id = $this->_idTemplate; // initialize the id-memory
$nonemptyComponents = array(); $nonemptyComponents = array();
$rowData = parent::_gatherRowData($data, $cache, $id, $nonemptyComponents); $rowData = $this->_gatherRowData($data, $cache, $id, $nonemptyComponents);
$rootAlias = $this->_rootAlias; $rootAlias = $this->_rootAlias;
// 2) Hydrate the data of the root entity from the current row // 2) Hydrate the data of the root entity from the current row
...@@ -318,11 +323,11 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -318,11 +323,11 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
$index = $indexExists ? $this->_identifierMap[$path][$id[$parent]][$id[$dqlAlias]] : false; $index = $indexExists ? $this->_identifierMap[$path][$id[$parent]][$id[$dqlAlias]] : false;
$indexIsValid = $index !== false ? $this->isIndexKeyInUse($baseElement, $relationAlias, $index) : false; $indexIsValid = $index !== false ? $this->isIndexKeyInUse($baseElement, $relationAlias, $index) : false;
if ( ! $indexExists || ! $indexIsValid) { if ( ! $indexExists || ! $indexIsValid) {
$element = $this->getElement($data, $entityName); $element = $this->getEntity($data, $entityName);
if ($field = $this->_getCustomIndexField($dqlAlias)) { if ($field = $this->_getCustomIndexField($dqlAlias)) {
$this->addRelatedIndexedElement($baseElement, $relationAlias, $element, $field); $this->addRelatedIndexedEntity($baseElement, $relationAlias, $element, $field);
} else { } else {
$this->addRelatedElement($baseElement, $relationAlias, $element); $this->addRelatedEntity($baseElement, $relationAlias, $element);
} }
$this->_identifierMap[$path][$id[$parent]][$id[$dqlAlias]] = $this->getLastKey( $this->_identifierMap[$path][$id[$parent]][$id[$dqlAlias]] = $this->getLastKey(
$this->_metadataMap[$oid] $this->_metadataMap[$oid]
...@@ -341,7 +346,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern ...@@ -341,7 +346,7 @@ class Doctrine_ORM_Internal_Hydration_ObjectHydrator extends Doctrine_ORM_Intern
$this->setRelatedElement($baseElement, $relationAlias, null); $this->setRelatedElement($baseElement, $relationAlias, null);
} else if ( ! $this->isFieldSet($baseElement, $relationAlias)) { } else if ( ! $this->isFieldSet($baseElement, $relationAlias)) {
$this->setRelatedElement($baseElement, $relationAlias, $this->setRelatedElement($baseElement, $relationAlias,
$this->getElement($data, $entityName)); $this->getEntity($data, $entityName));
} }
} }
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
class Doctrine_ORM_Internal_Hydration_ScalarHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator class Doctrine_ORM_Internal_Hydration_ScalarHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator
{ {
/** @override */ /** @override */
protected function _hydrateAll($parserResult) protected function _hydrateAll()
{ {
$result = array(); $result = array();
$cache = array(); $cache = array();
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
class Doctrine_ORM_Internal_Hydration_SingleScalarHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator class Doctrine_ORM_Internal_Hydration_SingleScalarHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator
{ {
/** @override */ /** @override */
protected function _hydrateAll($parserResult) protected function _hydrateAll()
{ {
$cache = array(); $cache = array();
$result = $this->_stmt->fetchAll(PDO::FETCH_ASSOC); $result = $this->_stmt->fetchAll(PDO::FETCH_ASSOC);
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
* @version $Revision: 3192 $ * @version $Revision: 3192 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Roman Borschel <roman@code-factory.org> * @author Roman Borschel <roman@code-factory.org>
* @DEPRECATED
*/ */
class Doctrine_ORM_Internal_Hydration_StandardHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator class Doctrine_ORM_Internal_Hydration_StandardHydrator extends Doctrine_ORM_Internal_Hydration_AbstractHydrator
{ {
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
* @version $Revision: 4723 $ * @version $Revision: 4723 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @todo No longer needed? * @todo No longer needed?
* @DEPRECATED
*/ */
// static initializer // static initializer
Doctrine_ORM_Internal_Null::$INSTANCE = new Doctrine_ORM_Internal_Null(); Doctrine_ORM_Internal_Null::$INSTANCE = new Doctrine_ORM_Internal_Null();
......
...@@ -1499,6 +1499,32 @@ class Doctrine_ORM_Mapping_ClassMetadata ...@@ -1499,6 +1499,32 @@ class Doctrine_ORM_Mapping_ClassMetadata
return isset($this->_associationMappings[$fieldName]); return isset($this->_associationMappings[$fieldName]);
} }
/**
* Checks whether the class has a mapped association for the specified field
* and if yes, checks whether it is a single-valued association (to-one).
*
* @param string $fieldName
* @return boolean TRUE if the association exists and is single-valued, FALSE otherwise.
*/
public function isSingleValuedAssociation($fieldName)
{
return isset($this->_associationMappings[$fieldName]) &&
$this->_associationMappings[$fieldName]->isOneToOne();
}
/**
* Checks whether the class has a mapped association for the specified field
* and if yes, checks whether it is a collection-valued association (to-many).
*
* @param string $fieldName
* @return boolean TRUE if the association exists and is collection-valued, FALSE otherwise.
*/
public function isCollectionValuedAssociation($fieldName)
{
return isset($this->_associationMappings[$fieldName]) &&
! $this->_associationMappings[$fieldName]->isOneToOne();
}
/** Creates a string representation of the instance. */ /** Creates a string representation of the instance. */
public function __toString() public function __toString()
{ {
......
...@@ -304,10 +304,10 @@ class Doctrine_ORM_Query extends Doctrine_ORM_Query_Abstract ...@@ -304,10 +304,10 @@ class Doctrine_ORM_Query extends Doctrine_ORM_Query_Abstract
// Double the params if we are using limit-subquery algorithm // Double the params if we are using limit-subquery algorithm
// We always have an instance of Doctrine_ORM_Query_ParserResult on hands... // We always have an instance of Doctrine_ORM_Query_ParserResult on hands...
if ($this->_parserResult->isLimitSubqueryUsed() && /*if ($this->_parserResult->isLimitSubqueryUsed() &&
$this->_entityManager->getConnection()->getAttribute(Doctrine::ATTR_DRIVER_NAME) !== 'mysql') { $this->_entityManager->getConnection()->getAttribute(Doctrine::ATTR_DRIVER_NAME) !== 'mysql') {
$params = array_merge($params, $params); $params = array_merge($params, $params);
} }*/
// Executing the query and returning statement // Executing the query and returning statement
return $executor->execute($this->_conn, $params); return $executor->execute($this->_conn, $params);
......
...@@ -1113,7 +1113,6 @@ class Doctrine_ORM_UnitOfWork ...@@ -1113,7 +1113,6 @@ class Doctrine_ORM_UnitOfWork
* @param Doctrine\ORM\Entity $entity * @param Doctrine\ORM\Entity $entity
* @param array $data * @param array $data
* @param boolean $overrideLocalChanges * @param boolean $overrideLocalChanges
* @return void
*/ */
private function _mergeData($entity, array $data, $class, $overrideLocalChanges = false) { private function _mergeData($entity, array $data, $class, $overrideLocalChanges = false) {
if ($overrideLocalChanges) { if ($overrideLocalChanges) {
......
...@@ -50,7 +50,7 @@ class Orm_Functional_BasicCRUDTest extends Doctrine_OrmFunctionalTestCase { ...@@ -50,7 +50,7 @@ class Orm_Functional_BasicCRUDTest extends Doctrine_OrmFunctionalTestCase {
} }
public function testMore() { public function testMore() {
echo PHP_EOL . "SECOND" . PHP_EOL; #echo PHP_EOL . "SECOND" . PHP_EOL;
/*$user = new CmsUser; /*$user = new CmsUser;
$user->name = 'jon'; $user->name = 'jon';
$user->*/ $user->*/
......
...@@ -23,7 +23,6 @@ class Orm_Hydration_AllTests ...@@ -23,7 +23,6 @@ class Orm_Hydration_AllTests
{ {
$suite = new Doctrine_TestSuite('Doctrine Orm Hydration'); $suite = new Doctrine_TestSuite('Doctrine Orm Hydration');
//$suite->addTestSuite('Orm_Hydration_BasicHydrationTest');
$suite->addTestSuite('Orm_Hydration_ObjectHydratorTest'); $suite->addTestSuite('Orm_Hydration_ObjectHydratorTest');
$suite->addTestSuite('Orm_Hydration_ArrayHydratorTest'); $suite->addTestSuite('Orm_Hydration_ArrayHydratorTest');
$suite->addTestSuite('Orm_Hydration_ScalarHydratorTest'); $suite->addTestSuite('Orm_Hydration_ScalarHydratorTest');
......
...@@ -46,7 +46,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -46,7 +46,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY)); $queryComponents, $tableAliasMap));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -115,7 +115,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -115,7 +115,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -185,7 +185,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -185,7 +185,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -257,7 +257,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -257,7 +257,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -377,7 +377,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -377,7 +377,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -525,7 +525,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -525,7 +525,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -647,7 +647,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -647,7 +647,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY)); $queryComponents, $tableAliasMap));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -692,7 +692,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest ...@@ -692,7 +692,7 @@ class Orm_Hydration_ArrayHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ArrayHydrator($this->_em);
$iterableResult = $hydrator->iterate($stmt, $this->_createParserResult( $iterableResult = $hydrator->iterate($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_ARRAY)); $queryComponents, $tableAliasMap));
$rowNum = 0; $rowNum = 0;
while (($row = $iterableResult->next()) !== false) { while (($row = $iterableResult->next()) !== false) {
......
This diff is collapsed.
...@@ -19,12 +19,9 @@ class Orm_Hydration_HydrationTest extends Doctrine_OrmTestCase ...@@ -19,12 +19,9 @@ class Orm_Hydration_HydrationTest extends Doctrine_OrmTestCase
} }
/** Helper method */ /** Helper method */
protected function _createParserResult($stmt, $queryComponents, $tableToClassAliasMap, protected function _createParserResult($queryComponents, $tableToClassAliasMap, $isMixedQuery = false)
$hydrationMode, $isMixedQuery = false)
{ {
$parserResult = new Doctrine_ORM_Query_ParserResultDummy(); $parserResult = new Doctrine_ORM_Query_ParserResultDummy();
$parserResult->setDatabaseStatement($stmt);
$parserResult->setHydrationMode($hydrationMode);
$parserResult->setQueryComponents($queryComponents); $parserResult->setQueryComponents($queryComponents);
$parserResult->setTableToClassAliasMap($tableToClassAliasMap); $parserResult->setTableToClassAliasMap($tableToClassAliasMap);
$parserResult->setMixedQuery($isMixedQuery); $parserResult->setMixedQuery($isMixedQuery);
......
...@@ -46,7 +46,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -46,7 +46,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT)); $queryComponents, $tableAliasMap));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue($result instanceof Doctrine_ORM_Collection); $this->assertTrue($result instanceof Doctrine_ORM_Collection);
...@@ -117,7 +117,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -117,7 +117,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -194,7 +194,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -194,7 +194,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -268,7 +268,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -268,7 +268,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -392,7 +392,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -392,7 +392,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -536,7 +536,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -536,7 +536,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT, true)); $queryComponents, $tableAliasMap, true));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
...@@ -652,7 +652,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -652,7 +652,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT)); $queryComponents, $tableAliasMap));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
$this->assertTrue($result instanceof Doctrine_ORM_Collection); $this->assertTrue($result instanceof Doctrine_ORM_Collection);
...@@ -700,7 +700,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -700,7 +700,7 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$iterableResult = $hydrator->iterate($stmt, $this->_createParserResult( $iterableResult = $hydrator->iterate($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_OBJECT)); $queryComponents, $tableAliasMap));
$rowNum = 0; $rowNum = 0;
while (($row = $iterableResult->next()) !== false) { while (($row = $iterableResult->next()) !== false) {
...@@ -716,5 +716,78 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest ...@@ -716,5 +716,78 @@ class Orm_Hydration_ObjectHydratorTest extends Orm_Hydration_HydrationTest
++$rowNum; ++$rowNum;
} }
} }
/**
* select u.id, u.status, p.phonenumber, upper(u.name) nameUpper from User u
* join u.phonenumbers p
* =
* select u.id, u.status, p.phonenumber, upper(u.name) as u__0 from USERS u
* INNER JOIN PHONENUMBERS p ON u.id = p.user_id
*
* @dataProvider hydrationModeProvider
*/
/*public function testNewHydrationMixedQueryFetchJoinPerformance()
{
// Faked query components
$queryComponents = array(
'u' => array(
'metadata' => $this->_em->getClassMetadata('CmsUser'),
'parent' => null,
'relation' => null,
'map' => null,
'agg' => array('0' => 'nameUpper')
),
'p' => array(
'metadata' => $this->_em->getClassMetadata('CmsPhonenumber'),
'parent' => 'u',
'relation' => $this->_em->getClassMetadata('CmsUser')->getAssociationMapping('phonenumbers'),
'map' => null
)
);
// Faked table alias map
$tableAliasMap = array(
'u' => 'u',
'p' => 'p'
);
// Faked result set
$resultSet = array(
//row1
array(
'u__id' => '1',
'u__status' => 'developer',
'u__0' => 'ROMANB',
'p__phonenumber' => '42',
),
array(
'u__id' => '1',
'u__status' => 'developer',
'u__0' => 'ROMANB',
'p__phonenumber' => '43',
),
array(
'u__id' => '2',
'u__status' => 'developer',
'u__0' => 'JWAGE',
'p__phonenumber' => '91'
)
);
for ($i=4; $i<300; $i++) {
$resultSet[] = array(
'u__id' => $i,
'u__status' => 'developer',
'u__0' => 'JWAGE' . $i,
'p__phonenumber' => '91'
);
}
$stmt = new Doctrine_HydratorMockStatement($resultSet);
$hydrator = new Doctrine_ORM_Internal_Hydration_ObjectHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$queryComponents, $tableAliasMap, true));
}*/
} }
...@@ -46,7 +46,7 @@ class Orm_Hydration_ScalarHydratorTest extends Orm_Hydration_HydrationTest ...@@ -46,7 +46,7 @@ class Orm_Hydration_ScalarHydratorTest extends Orm_Hydration_HydrationTest
$hydrator = new Doctrine_ORM_Internal_Hydration_ScalarHydrator($this->_em); $hydrator = new Doctrine_ORM_Internal_Hydration_ScalarHydrator($this->_em);
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_SCALAR)); $queryComponents, $tableAliasMap));
$this->assertTrue(is_array($result)); $this->assertTrue(is_array($result));
$this->assertEquals(2, count($result)); $this->assertEquals(2, count($result));
......
...@@ -74,16 +74,16 @@ class Orm_Hydration_SingleScalarHydratorTest extends Orm_Hydration_HydrationTest ...@@ -74,16 +74,16 @@ class Orm_Hydration_SingleScalarHydratorTest extends Orm_Hydration_HydrationTest
if ($name == 'result1') { if ($name == 'result1') {
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_SINGLE_SCALAR)); $queryComponents, $tableAliasMap));
$this->assertEquals('romanb', $result); $this->assertEquals('romanb', $result);
} else if ($name == 'result2') { } else if ($name == 'result2') {
$result = $hydrator->hydrateAll($stmt, $this->_createParserResult( $result = $hydrator->hydrateAll($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_SINGLE_SCALAR)); $queryComponents, $tableAliasMap));
$this->assertEquals(1, $result); $this->assertEquals(1, $result);
} else if ($name == 'result3' || $name == 'result4') { } else if ($name == 'result3' || $name == 'result4') {
try { try {
$result = $hydrator->hydrateall($stmt, $this->_createParserResult( $result = $hydrator->hydrateall($stmt, $this->_createParserResult(
$stmt, $queryComponents, $tableAliasMap, Doctrine_ORM_Query::HYDRATE_SINGLE_SCALAR)); $queryComponents, $tableAliasMap));
$this->fail(); $this->fail();
} catch (Doctrine_ORM_Exceptions_HydrationException $ex) {} } catch (Doctrine_ORM_Exceptions_HydrationException $ex) {}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment