123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 |
- <?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 LGPL. For more information, see
- * <http://www.doctrine-project.org>.
- */
- namespace Doctrine\ORM\Internal\Hydration;
- use PDO,
- Doctrine\DBAL\Connection,
- Doctrine\DBAL\Types\Type,
- Doctrine\ORM\EntityManager,
- Doctrine\ORM\Mapping\ClassMetadata;
- /**
- * Base class for all hydrators. A hydrator is a class that provides some form
- * of transformation of an SQL result set into another structure.
- *
- * @since 2.0
- * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
- * @author Roman Borschel <roman@code-factory.org>
- * @author Guilherme Blanco <guilhermeblanoc@hotmail.com>
- */
- abstract class AbstractHydrator
- {
- /** @var ResultSetMapping The ResultSetMapping. */
- protected $_rsm;
- /** @var EntityManager The EntityManager instance. */
- protected $_em;
- /** @var AbstractPlatform The dbms Platform instance */
- protected $_platform;
- /** @var UnitOfWork The UnitOfWork of the associated EntityManager. */
- protected $_uow;
- /** @var array The cache used during row-by-row hydration. */
- protected $_cache = array();
- /** @var Statement The statement that provides the data to hydrate. */
- protected $_stmt;
- /** @var array The query hints. */
- protected $_hints;
- /**
- * Initializes a new instance of a class derived from <tt>AbstractHydrator</tt>.
- *
- * @param \Doctrine\ORM\EntityManager $em The EntityManager to use.
- */
- public function __construct(EntityManager $em)
- {
- $this->_em = $em;
- $this->_platform = $em->getConnection()->getDatabasePlatform();
- $this->_uow = $em->getUnitOfWork();
- }
- /**
- * Initiates a row-by-row hydration.
- *
- * @param object $stmt
- * @param object $resultSetMapping
- *
- * @return IterableResult
- */
- public function iterate($stmt, $resultSetMapping, array $hints = array())
- {
- $this->_stmt = $stmt;
- $this->_rsm = $resultSetMapping;
- $this->_hints = $hints;
- $this->prepare();
- return new IterableResult($this);
- }
- /**
- * Hydrates all rows returned by the passed statement instance at once.
- *
- * @param object $stmt
- * @param object $resultSetMapping
- * @return mixed
- */
- public function hydrateAll($stmt, $resultSetMapping, array $hints = array())
- {
- $this->_stmt = $stmt;
- $this->_rsm = $resultSetMapping;
- $this->_hints = $hints;
- $this->prepare();
- $result = $this->hydrateAllData();
- $this->cleanup();
- return $result;
- }
- /**
- * Hydrates a single row returned by the current statement instance during
- * row-by-row hydration with {@link iterate()}.
- *
- * @return mixed
- */
- public function hydrateRow()
- {
- $row = $this->_stmt->fetch(PDO::FETCH_ASSOC);
- if ( ! $row) {
- $this->cleanup();
- return false;
- }
- $result = array();
- $this->hydrateRowData($row, $this->_cache, $result);
- return $result;
- }
- /**
- * Excutes one-time preparation tasks, once each time hydration is started
- * through {@link hydrateAll} or {@link iterate()}.
- */
- protected function prepare()
- {}
- /**
- * Excutes one-time cleanup tasks at the end of a hydration that was initiated
- * through {@link hydrateAll} or {@link iterate()}.
- */
- protected function cleanup()
- {
- $this->_rsm = null;
- $this->_stmt->closeCursor();
- $this->_stmt = null;
- }
- /**
- * Hydrates a single row from the current statement instance.
- *
- * Template method.
- *
- * @param array $data The row data.
- * @param array $cache The cache to use.
- * @param mixed $result The result to fill.
- */
- protected function hydrateRowData(array $data, array &$cache, array &$result)
- {
- throw new HydrationException("hydrateRowData() not implemented by this hydrator.");
- }
- /**
- * Hydrates all rows from the current statement instance at once.
- */
- abstract protected function hydrateAllData();
- /**
- * Processes a row of the result set.
- *
- * Used for identity-based hydration (HYDRATE_OBJECT and HYDRATE_ARRAY).
- * Puts the elements of a result row into a new array, grouped by the dql alias
- * they belong to. The column names in the result set are mapped to their
- * field names during this procedure as well as any necessary conversions on
- * the values applied. Scalar values are kept in a specfic key 'scalars'.
- *
- * @param array $data SQL Result Row
- * @param array &$cache Cache for column to field result information
- * @param array &$id Dql-Alias => ID-Hash
- * @param array &$nonemptyComponents Does this DQL-Alias has at least one non NULL value?
- *
- * @return array An array with all the fields (name => value) of the data row,
- * grouped by their component alias.
- */
- protected function gatherRowData(array $data, array &$cache, array &$id, array &$nonemptyComponents)
- {
- $rowData = array();
- foreach ($data as $key => $value) {
- // Parse each column name only once. Cache the results.
- if ( ! isset($cache[$key])) {
- switch (true) {
- // NOTE: Most of the times it's a field mapping, so keep it first!!!
- case (isset($this->_rsm->fieldMappings[$key])):
- $fieldName = $this->_rsm->fieldMappings[$key];
- $classMetadata = $this->_em->getClassMetadata($this->_rsm->declaringClasses[$key]);
- $cache[$key]['fieldName'] = $fieldName;
- $cache[$key]['type'] = Type::getType($classMetadata->fieldMappings[$fieldName]['type']);
- $cache[$key]['isIdentifier'] = $classMetadata->isIdentifier($fieldName);
- $cache[$key]['dqlAlias'] = $this->_rsm->columnOwnerMap[$key];
- break;
- case (isset($this->_rsm->scalarMappings[$key])):
- $cache[$key]['fieldName'] = $this->_rsm->scalarMappings[$key];
- $cache[$key]['type'] = Type::getType($this->_rsm->typeMappings[$key]);
- $cache[$key]['isScalar'] = true;
- break;
- case (isset($this->_rsm->metaMappings[$key])):
- // Meta column (has meaning in relational schema only, i.e. foreign keys or discriminator columns).
- $fieldName = $this->_rsm->metaMappings[$key];
- $classMetadata = $this->_em->getClassMetadata($this->_rsm->aliasMap[$this->_rsm->columnOwnerMap[$key]]);
- $cache[$key]['isMetaColumn'] = true;
- $cache[$key]['fieldName'] = $fieldName;
- $cache[$key]['dqlAlias'] = $this->_rsm->columnOwnerMap[$key];
- $cache[$key]['isIdentifier'] = isset($this->_rsm->isIdentifierColumn[$cache[$key]['dqlAlias']][$key]);
- break;
- default:
- // this column is a left over, maybe from a LIMIT query hack for example in Oracle or DB2
- // maybe from an additional column that has not been defined in a NativeQuery ResultSetMapping.
- continue 2;
- }
- }
- if (isset($cache[$key]['isScalar'])) {
- $value = $cache[$key]['type']->convertToPHPValue($value, $this->_platform);
- $rowData['scalars'][$cache[$key]['fieldName']] = $value;
- continue;
- }
- $dqlAlias = $cache[$key]['dqlAlias'];
- if ($cache[$key]['isIdentifier']) {
- $id[$dqlAlias] .= '|' . $value;
- }
- if (isset($cache[$key]['isMetaColumn'])) {
- if ( ! isset($rowData[$dqlAlias][$cache[$key]['fieldName']]) && $value !== null) {
- $rowData[$dqlAlias][$cache[$key]['fieldName']] = $value;
- if ($cache[$key]['isIdentifier']) {
- $nonemptyComponents[$dqlAlias] = true;
- }
- }
- continue;
- }
- // in an inheritance hierarchy the same field could be defined several times.
- // We overwrite this value so long we dont have a non-null value, that value we keep.
- // Per definition it cannot be that a field is defined several times and has several values.
- if (isset($rowData[$dqlAlias][$cache[$key]['fieldName']]) && $value === null) {
- continue;
- }
- $rowData[$dqlAlias][$cache[$key]['fieldName']] = $cache[$key]['type']->convertToPHPValue($value, $this->_platform);
- if ( ! isset($nonemptyComponents[$dqlAlias]) && $value !== null) {
- $nonemptyComponents[$dqlAlias] = true;
- }
- }
- return $rowData;
- }
- /**
- * Processes a row of the result set.
- *
- * Used for HYDRATE_SCALAR. This is a variant of _gatherRowData() that
- * simply converts column names to field names and properly converts the
- * values according to their types. The resulting row has the same number
- * of elements as before.
- *
- * @param array $data
- * @param array $cache
- *
- * @return array The processed row.
- */
- protected function gatherScalarRowData(&$data, &$cache)
- {
- $rowData = array();
- foreach ($data as $key => $value) {
- // Parse each column name only once. Cache the results.
- if ( ! isset($cache[$key])) {
- switch (true) {
- // NOTE: During scalar hydration, most of the times it's a scalar mapping, keep it first!!!
- case (isset($this->_rsm->scalarMappings[$key])):
- $cache[$key]['fieldName'] = $this->_rsm->scalarMappings[$key];
- $cache[$key]['isScalar'] = true;
- break;
- case (isset($this->_rsm->fieldMappings[$key])):
- $fieldName = $this->_rsm->fieldMappings[$key];
- $classMetadata = $this->_em->getClassMetadata($this->_rsm->declaringClasses[$key]);
- $cache[$key]['fieldName'] = $fieldName;
- $cache[$key]['type'] = Type::getType($classMetadata->fieldMappings[$fieldName]['type']);
- $cache[$key]['dqlAlias'] = $this->_rsm->columnOwnerMap[$key];
- break;
- case (isset($this->_rsm->metaMappings[$key])):
- // Meta column (has meaning in relational schema only, i.e. foreign keys or discriminator columns).
- $cache[$key]['isMetaColumn'] = true;
- $cache[$key]['fieldName'] = $this->_rsm->metaMappings[$key];
- $cache[$key]['dqlAlias'] = $this->_rsm->columnOwnerMap[$key];
- break;
- default:
- // this column is a left over, maybe from a LIMIT query hack for example in Oracle or DB2
- // maybe from an additional column that has not been defined in a NativeQuery ResultSetMapping.
- continue 2;
- }
- }
- $fieldName = $cache[$key]['fieldName'];
- switch (true) {
- case (isset($cache[$key]['isScalar'])):
- $rowData[$fieldName] = $value;
- break;
- case (isset($cache[$key]['isMetaColumn'])):
- $rowData[$cache[$key]['dqlAlias'] . '_' . $fieldName] = $value;
- break;
- default:
- $value = $cache[$key]['type']->convertToPHPValue($value, $this->_platform);
- $rowData[$cache[$key]['dqlAlias'] . '_' . $fieldName] = $value;
- }
- }
- return $rowData;
- }
- /**
- * Register entity as managed in UnitOfWork.
- *
- * @param \Doctrine\ORM\Mapping\ClassMetadata $class
- * @param object $entity
- * @param array $data
- *
- * @todo The "$id" generation is the same of UnitOfWork#createEntity. Remove this duplication somehow
- */
- protected function registerManaged(ClassMetadata $class, $entity, array $data)
- {
- if ($class->isIdentifierComposite) {
- $id = array();
- foreach ($class->identifier as $fieldName) {
- if (isset($class->associationMappings[$fieldName])) {
- $id[$fieldName] = $data[$class->associationMappings[$fieldName]['joinColumns'][0]['name']];
- } else {
- $id[$fieldName] = $data[$fieldName];
- }
- }
- } else {
- if (isset($class->associationMappings[$class->identifier[0]])) {
- $id = array($class->identifier[0] => $data[$class->associationMappings[$class->identifier[0]]['joinColumns'][0]['name']]);
- } else {
- $id = array($class->identifier[0] => $data[$class->identifier[0]]);
- }
- }
- $this->_em->getUnitOfWork()->registerManaged($entity, $id, $data);
- }
- }
|