. */ namespace Doctrine\ORM\Persisters; use Doctrine\ORM\ORMException; /** * The joined subclass persister maps a single entity instance to several tables in the * database as it is defined by Class Table Inheritance. * * @author Roman Borschel * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @version $Revision$ * @link www.doctrine-project.org * @since 2.0 */ class JoinedSubclassPersister extends StandardEntityPersister { /** Map that maps column names to the table names that own them. * This is mainly a temporary cache, used during a single request. */ private $_owningTableMap = array(); /** * {@inheritdoc} * * @override */ protected function _prepareData($entity, array &$result, $isInsert = false) { parent::_prepareData($entity, $result, $isInsert); // Populate the discriminator column if ($isInsert) { $discColumn = $this->_class->discriminatorColumn; $rootClass = $this->_em->getClassMetadata($this->_class->rootEntityName); $result[$rootClass->primaryTable['name']][$discColumn['name']] = $this->_class->discriminatorValue; } } /** * This function finds the ClassMetadata instance in a inheritance hierarchy * that is responsible for enabling versioning. * * @return mixed ClassMetadata instance or false if versioning is not enabled. */ private function _getVersionedClassMetadata() { if ($this->_class->isVersioned) { if (isset($this->_class->fieldMappings[$this->_class->versionField]['inherited'])) { $definingClassName = $this->_class->fieldMappings[$this->_class->versionField]['inherited']; $versionedClass = $this->_em->getClassMetadata($definingClassName); } else { $versionedClass = $this->_class; } return $versionedClass; } return false; } /** * Gets the name of the table that owns the column the given field is mapped to. * Does only look upwards in the hierarchy, not downwards. * * @param string $fieldName * @return string * @override */ public function getOwningTable($fieldName) { if ( ! isset($this->_owningTableMap[$fieldName])) { if (isset($this->_class->associationMappings[$fieldName])) { if (isset($this->_class->inheritedAssociationFields[$fieldName])) { $this->_owningTableMap[$fieldName] = $this->_em->getClassMetadata( $this->_class->inheritedAssociationFields[$fieldName] )->primaryTable['name']; } else { $this->_owningTableMap[$fieldName] = $this->_class->primaryTable['name']; } } else if (isset($this->_class->fieldMappings[$fieldName]['inherited'])) { $this->_owningTableMap[$fieldName] = $this->_em->getClassMetadata( $this->_class->fieldMappings[$fieldName]['inherited'] )->primaryTable['name']; } else { $this->_owningTableMap[$fieldName] = $this->_class->primaryTable['name']; } } return $this->_owningTableMap[$fieldName]; } /** * {@inheritdoc} * * @override */ public function executeInserts() { if ( ! $this->_queuedInserts) { return; } if ($isVersioned = $this->_class->isVersioned) { $versionedClass = $this->_getVersionedClassMetadata(); } $postInsertIds = array(); $idGen = $this->_class->idGenerator; $isPostInsertId = $idGen->isPostInsertGenerator(); // Prepare statement for the root table $rootClass = $this->_class->name == $this->_class->rootEntityName ? $this->_class : $this->_em->getClassMetadata($this->_class->rootEntityName); $rootPersister = $this->_em->getUnitOfWork()->getEntityPersister($rootClass->name); $rootTableName = $rootClass->primaryTable['name']; $rootTableStmt = $this->_conn->prepare($rootPersister->getInsertSql()); if ($this->_sqlLogger !== null) { $sql = array(); $sql[$rootTableName] = $rootPersister->getInsertSql(); } // Prepare statements for sub tables. $subTableStmts = array(); if ($rootClass !== $this->_class) { $subTableStmts[$this->_class->primaryTable['name']] = $this->_conn->prepare($this->getInsertSql()); if ($this->_sqlLogger !== null) { $sql[$this->_class->primaryTable['name']] = $this->getInsertSql(); } } foreach ($this->_class->parentClasses as $parentClassName) { $parentClass = $this->_em->getClassMetadata($parentClassName); $parentTableName = $parentClass->primaryTable['name']; if ($parentClass !== $rootClass) { $parentPersister = $this->_em->getUnitOfWork()->getEntityPersister($parentClassName); $subTableStmts[$parentTableName] = $this->_conn->prepare($parentPersister->getInsertSql()); if ($this->_sqlLogger !== null) { $sql[$parentTableName] = $parentPersister->getInsertSql(); } } } // Execute all inserts. For each entity: // 1) Insert on root table // 2) Insert on sub tables foreach ($this->_queuedInserts as $entity) { $insertData = array(); $this->_prepareData($entity, $insertData, true); // Execute insert on root table $paramIndex = 1; if ($this->_sqlLogger !== null) { $params = array(); foreach ($insertData[$rootTableName] as $columnName => $value) { $params[$paramIndex] = $value; $rootTableStmt->bindValue($paramIndex++, $value); } $this->_sqlLogger->logSql($sql[$rootTableName], $params); } else { foreach ($insertData[$rootTableName] as $columnName => $value) { $rootTableStmt->bindValue($paramIndex++, $value); } } $rootTableStmt->execute(); if ($isPostInsertId) { $id = $idGen->generate($this->_em, $entity); $postInsertIds[$id] = $entity; } else { $id = $this->_em->getUnitOfWork()->getEntityIdentifier($entity); } // Execute inserts on subtables. // The order doesn't matter because all child tables link to the root table via FK. foreach ($subTableStmts as $tableName => $stmt) { $data = isset($insertData[$tableName]) ? $insertData[$tableName] : array(); $paramIndex = 1; if ($this->_sqlLogger !== null) { $params = array(); foreach ((array) $id as $idVal) { $params[$paramIndex] = $idVal; $stmt->bindValue($paramIndex++, $idVal); } foreach ($data as $columnName => $value) { $params[$paramIndex] = $value; $stmt->bindValue($paramIndex++, $value); } $this->_sqlLogger->logSql($sql[$tableName], $params); } else { foreach ((array) $id as $idVal) { $stmt->bindValue($paramIndex++, $idVal); } foreach ($data as $columnName => $value) { $stmt->bindValue($paramIndex++, $value); } } $stmt->execute(); } } $rootTableStmt->closeCursor(); foreach ($subTableStmts as $stmt) { $stmt->closeCursor(); } if ($isVersioned) { $this->_assignDefaultVersionValue($versionedClass, $entity, $id); } $this->_queuedInserts = array(); return $postInsertIds; } /** * Updates an entity. * * @param object $entity The entity to update. * @override */ public function update($entity) { $updateData = array(); $this->_prepareData($entity, $updateData); $id = array_combine( $this->_class->getIdentifierColumnNames(), $this->_em->getUnitOfWork()->getEntityIdentifier($entity) ); if ($isVersioned = $this->_class->isVersioned) { $versionedClass = $this->_getVersionedClassMetadata(); $versionedTable = $versionedClass->primaryTable['name']; } if ($updateData) { foreach ($updateData as $tableName => $data) { if ($isVersioned && $versionedTable == $tableName) { $this->_doUpdate($entity, $tableName, $data, $id); } else { $this->_conn->update($tableName, $data, $id); } } if ($isVersioned && ! isset($updateData[$versionedTable])) { $this->_doUpdate($entity, $versionedTable, array(), $id); } } } /** * Deletes an entity. * * @param object $entity The entity to delete. * @override */ public function delete($entity) { $id = array_combine( $this->_class->getIdentifierColumnNames(), $this->_em->getUnitOfWork()->getEntityIdentifier($entity) ); // If the database platform supports FKs, just // delete the row from the root table. Cascades do the rest. if ($this->_conn->getDatabasePlatform()->supportsForeignKeyConstraints()) { $this->_conn->delete($this->_em->getClassMetadata($this->_class->rootEntityName) ->primaryTable['name'], $id); } else { // Delete from all tables individually, starting from this class' table up to the root table. $this->_conn->delete($this->_class->primaryTable['name'], $id); foreach ($this->_class->parentClasses as $parentClass) { $this->_conn->delete($this->_em->getClassMetadata($parentClass)->primaryTable['name'], $id); } } } /** * Gets the SELECT SQL to select one or more entities by a set of field criteria. * * @param array $criteria * @param AssociationMapping $assoc * @param string $orderBy * @return string * @override */ protected function _getSelectEntitiesSql(array &$criteria, $assoc = null, $orderBy = null) { $tableAliases = array(); $aliasIndex = 1; $idColumns = $this->_class->getIdentifierColumnNames(); $baseTableAlias = 't0'; $setResultColumnNames = empty($this->_resultColumnNames); foreach (array_merge($this->_class->subClasses, $this->_class->parentClasses) as $className) { $tableAliases[$className] = 't' . $aliasIndex++; } // Add regular columns $columnList = ''; foreach ($this->_class->fieldMappings as $fieldName => $mapping) { $tableAlias = isset($mapping['inherited']) ? $tableAliases[$mapping['inherited']] : $baseTableAlias; if ($columnList != '') $columnList .= ', '; $columnList .= $tableAlias . '.' . $this->_class->getQuotedColumnName($fieldName, $this->_platform); if ($setResultColumnNames) { $resultColumnName = $this->_platform->getSqlResultCasing($mapping['columnName']); $this->_resultColumnNames[$resultColumnName] = $mapping['columnName']; } } // Add foreign key columns foreach ($this->_class->associationMappings as $assoc2) { if ($assoc2->isOwningSide && $assoc2->isOneToOne()) { foreach ($assoc2->targetToSourceKeyColumns as $srcColumn) { $columnList .= ', ' . $assoc2->getQuotedJoinColumnName($srcColumn, $this->_platform); if ($setResultColumnNames) { $resultColumnName = $this->_platform->getSqlResultCasing($srcColumn); $this->_resultColumnNames[$resultColumnName] = $srcColumn; } } } } // Add discriminator column if ($this->_class->rootEntityName == $this->_class->name) { $columnList .= ', ' . $baseTableAlias . '.' . $this->_class->getQuotedDiscriminatorColumnName($this->_platform); } else { $columnList .= ', ' . $tableAliases[$this->_class->rootEntityName] . '.' . $this->_class->getQuotedDiscriminatorColumnName($this->_platform); } if ($setResultColumnNames) { $resultColumnName = $this->_platform->getSqlResultCasing($this->_class->discriminatorColumn['name']); $this->_resultColumnNames[$resultColumnName] = $this->_class->discriminatorColumn['name']; } // INNER JOIN parent tables $joinSql = ''; foreach ($this->_class->parentClasses as $parentClassName) { $parentClass = $this->_em->getClassMetadata($parentClassName); $tableAlias = $tableAliases[$parentClassName]; $joinSql .= ' INNER JOIN ' . $parentClass->getQuotedTableName($this->_platform) . ' ' . $tableAlias . ' ON '; $first = true; foreach ($idColumns as $idColumn) { if ($first) $first = false; else $joinSql .= ' AND '; $joinSql .= $baseTableAlias . '.' . $idColumn . ' = ' . $tableAlias . '.' . $idColumn; } } // OUTER JOIN sub tables foreach ($this->_class->subClasses as $subClassName) { $subClass = $this->_em->getClassMetadata($subClassName); $tableAlias = $tableAliases[$subClassName]; // Add subclass columns foreach ($subClass->fieldMappings as $fieldName => $mapping) { if (isset($mapping['inherited'])) { continue; } $columnList .= ', ' . $tableAlias . '.' . $subClass->getQuotedColumnName($fieldName, $this->_platform); if ($setResultColumnNames) { $resultColumnName = $this->_platform->getSqlResultCasing($mapping['columnName']); $this->_resultColumnNames[$resultColumnName] = $mapping['columnName']; } } // Add join columns (foreign keys) foreach ($subClass->associationMappings as $assoc2) { if ($assoc2->isOwningSide && $assoc2->isOneToOne() && ! isset($subClass->inheritedAssociationFields[$assoc2->sourceFieldName])) { foreach ($assoc2->targetToSourceKeyColumns as $srcColumn) { $columnList .= ', ' . $tableAlias . '.' . $assoc2->getQuotedJoinColumnName($srcColumn, $this->_platform); if ($setResultColumnNames) { $resultColumnName = $this->_platform->getSqlResultCasing($srcColumn); $this->_resultColumnNames[$resultColumnName] = $srcColumn; } } } } // Add LEFT JOIN $joinSql .= ' LEFT JOIN ' . $subClass->getQuotedTableName($this->_platform) . ' ' . $tableAlias . ' ON '; $first = true; foreach ($idColumns as $idColumn) { if ($first) $first = false; else $joinSql .= ' AND '; $joinSql .= $baseTableAlias . '.' . $idColumn . ' = ' . $tableAlias . '.' . $idColumn; } } $conditionSql = ''; foreach ($criteria as $field => $value) { if ($conditionSql != '') $conditionSql .= ' AND '; $conditionSql .= $baseTableAlias . '.'; if (isset($this->_class->columnNames[$field])) { $conditionSql .= $this->_class->getQuotedColumnName($field, $this->_platform); } else if ($assoc !== null) { $conditionSql .= $assoc->getQuotedJoinColumnName($field, $this->_platform); } else { throw ORMException::unrecognizedField($field); } $conditionSql .= ' = ?'; } $orderBySql = ''; if ($orderBy !== null) { $orderBySql = $this->_getCollectionOrderBySql($orderBy, $baseTableAlias, $tableAliases); } return 'SELECT ' . $columnList . ' FROM ' . $this->_class->getQuotedTableName($this->_platform) . ' ' . $baseTableAlias . $joinSql . ($conditionSql != '' ? ' WHERE ' . $conditionSql : '') . $orderBySql; } /** @override */ protected function _processSqlResult(array $sqlResult) { return $this->_processSqlResultInheritanceAware($sqlResult); } /** @override */ protected function _getInsertColumnList() { // Identifier columns must always come first in the column list of subclasses. $columns = $this->_class->parentClasses ? $this->_class->getIdentifierColumnNames() : array(); foreach ($this->_class->reflFields as $name => $field) { if (isset($this->_class->fieldMappings[$name]['inherited']) && ! isset($this->_class->fieldMappings[$name]['id']) || isset($this->_class->inheritedAssociationFields[$name]) || ($this->_class->isVersioned && $this->_class->versionField == $name)) { continue; } if (isset($this->_class->associationMappings[$name])) { $assoc = $this->_class->associationMappings[$name]; if ($assoc->isOneToOne() && $assoc->isOwningSide) { foreach ($assoc->targetToSourceKeyColumns as $sourceCol) { $columns[] = $assoc->getQuotedJoinColumnName($sourceCol, $this->_platform); } } } else if ($this->_class->name != $this->_class->rootEntityName || ! $this->_class->isIdGeneratorIdentity() || $this->_class->identifier[0] != $name) { $columns[] = $this->_class->getQuotedColumnName($name, $this->_platform); } } // Add discriminator column if it is the topmost class. if ($this->_class->name == $this->_class->rootEntityName) { $columns[] = $this->_class->getQuotedDiscriminatorColumnName($this->_platform); } return $columns; } }