2008-01-05 22:55:56 +03:00
|
|
|
<?php
|
2008-03-05 14:24:33 +03:00
|
|
|
/*
|
|
|
|
* $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>.
|
|
|
|
*/
|
2008-01-05 22:55:56 +03:00
|
|
|
|
2008-03-05 14:24:33 +03:00
|
|
|
/**
|
|
|
|
* The joined mapping strategy maps a single entity instance to several tables in the
|
2008-03-26 14:10:45 +03:00
|
|
|
* database as it is defined by <tt>Class Table Inheritance</tt>.
|
2008-03-05 14:24:33 +03:00
|
|
|
*
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
* @package Doctrine
|
|
|
|
* @subpackage DefaultStrategy
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @version $Revision$
|
|
|
|
* @link www.phpdoctrine.org
|
|
|
|
* @since 1.0
|
|
|
|
*/
|
2008-02-20 23:54:20 +03:00
|
|
|
class Doctrine_Mapper_JoinedStrategy extends Doctrine_Mapper_Strategy
|
2008-01-05 22:55:56 +03:00
|
|
|
{
|
2008-01-12 22:49:11 +03:00
|
|
|
protected $_columnNameFieldNameMap = array();
|
2008-01-05 22:55:56 +03:00
|
|
|
|
|
|
|
/**
|
2008-02-07 13:40:27 +03:00
|
|
|
* Inserts an entity that is part of a Class Table Inheritance hierarchy.
|
2008-01-05 22:55:56 +03:00
|
|
|
*
|
|
|
|
* @param Doctrine_Record $record record to be inserted
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2008-02-20 23:54:20 +03:00
|
|
|
public function doInsert(Doctrine_Record $record)
|
2008-01-05 22:55:56 +03:00
|
|
|
{
|
2008-02-20 23:54:20 +03:00
|
|
|
$class = $this->_mapper->getClassMetadata();
|
|
|
|
$conn = $this->_mapper->getConnection();
|
2008-01-05 22:55:56 +03:00
|
|
|
|
2008-02-20 23:54:20 +03:00
|
|
|
$dataSet = $this->_groupFieldsByDefiningClass($record);
|
2008-02-12 15:31:28 +03:00
|
|
|
$component = $class->getClassName();
|
|
|
|
$classes = $class->getParentClasses();
|
2008-01-05 22:55:56 +03:00
|
|
|
array_unshift($classes, $component);
|
2008-01-12 22:49:11 +03:00
|
|
|
|
|
|
|
try {
|
2008-02-20 23:54:20 +03:00
|
|
|
$conn->beginInternalTransaction();
|
2008-01-12 22:49:11 +03:00
|
|
|
$identifier = null;
|
|
|
|
foreach (array_reverse($classes) as $k => $parent) {
|
2008-02-20 23:54:20 +03:00
|
|
|
$parentClass = $conn->getClassMetadata($parent);
|
2008-01-12 22:49:11 +03:00
|
|
|
if ($k == 0) {
|
2008-02-12 15:31:28 +03:00
|
|
|
$identifierType = $parentClass->getIdentifierType();
|
2008-01-12 22:49:11 +03:00
|
|
|
if ($identifierType == Doctrine::IDENTIFIER_AUTOINC) {
|
2008-02-20 23:54:20 +03:00
|
|
|
$this->_insertRow($parentClass->getTableName(), $dataSet[$parent]);
|
|
|
|
$identifier = $conn->sequence->lastInsertId();
|
2008-01-12 22:49:11 +03:00
|
|
|
} else if ($identifierType == Doctrine::IDENTIFIER_SEQUENCE) {
|
2008-02-12 15:31:28 +03:00
|
|
|
$seq = $record->getClassMetadata()->getTableOption('sequenceName');
|
2008-01-12 22:49:11 +03:00
|
|
|
if ( ! empty($seq)) {
|
2008-02-24 23:31:49 +03:00
|
|
|
$id = $conn->sequence->nextId($seq);
|
|
|
|
$identifierFields = (array)$parentClass->getIdentifier();
|
|
|
|
$dataSet[$parent][$identifierFields[0]] = $id;
|
2008-02-20 23:54:20 +03:00
|
|
|
$this->_insertRow($parentClass->getTableName(), $dataSet[$parent]);
|
2008-01-12 22:49:11 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new Doctrine_Mapper_Exception("Unsupported identifier type '$identifierType'.");
|
|
|
|
}
|
|
|
|
$record->assignIdentifier($identifier);
|
|
|
|
} else {
|
|
|
|
foreach ((array) $record->identifier() as $id => $value) {
|
2008-02-12 15:31:28 +03:00
|
|
|
$dataSet[$parent][$parentClass->getColumnName($id)] = $value;
|
2008-01-12 22:49:11 +03:00
|
|
|
}
|
2008-02-20 23:54:20 +03:00
|
|
|
$this->_insertRow($parentClass->getTableName(), $dataSet[$parent]);
|
2008-01-05 22:55:56 +03:00
|
|
|
}
|
|
|
|
}
|
2008-02-20 23:54:20 +03:00
|
|
|
$conn->commit();
|
2008-01-12 22:49:11 +03:00
|
|
|
} catch (Exception $e) {
|
2008-02-20 23:54:20 +03:00
|
|
|
$conn->rollback();
|
2008-01-12 22:49:11 +03:00
|
|
|
throw $e;
|
2008-01-05 22:55:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-02-07 13:40:27 +03:00
|
|
|
* Updates an entity that is part of a Class Table Inheritance hierarchy.
|
2008-01-05 22:55:56 +03:00
|
|
|
*
|
|
|
|
* @param Doctrine_Record $record record to be updated
|
|
|
|
* @return boolean whether or not the update was successful
|
|
|
|
* @todo Move to Doctrine_Table (which will become Doctrine_Mapper).
|
|
|
|
*/
|
2008-02-20 23:54:20 +03:00
|
|
|
public function doUpdate(Doctrine_Record $record)
|
2008-01-05 22:55:56 +03:00
|
|
|
{
|
2008-02-20 23:54:20 +03:00
|
|
|
$conn = $this->_mapper->getConnection();
|
|
|
|
$classMetadata = $this->_mapper->getClassMetadata();
|
|
|
|
$identifier = $this->_convertFieldToColumnNames($record->identifier(), $classMetadata);
|
|
|
|
$dataSet = $this->_groupFieldsByDefiningClass($record);
|
|
|
|
$component = $classMetadata->getClassName();
|
|
|
|
$classes = $classMetadata->getParentClasses();
|
2008-01-12 22:49:11 +03:00
|
|
|
array_unshift($classes, $component);
|
2008-01-05 22:55:56 +03:00
|
|
|
|
2008-01-12 22:49:11 +03:00
|
|
|
foreach ($record as $field => $value) {
|
|
|
|
if ($value instanceof Doctrine_Record) {
|
|
|
|
if ( ! $value->exists()) {
|
|
|
|
$value->save();
|
2008-01-05 22:55:56 +03:00
|
|
|
}
|
2008-01-12 22:49:11 +03:00
|
|
|
$record->set($field, $value->getIncremented());
|
2008-01-05 22:55:56 +03:00
|
|
|
}
|
2008-01-12 22:49:11 +03:00
|
|
|
}
|
2008-01-05 22:55:56 +03:00
|
|
|
|
2008-01-12 22:49:11 +03:00
|
|
|
foreach (array_reverse($classes) as $class) {
|
2008-02-20 23:54:20 +03:00
|
|
|
$parentTable = $conn->getClassMetadata($class);
|
|
|
|
$this->_updateRow($parentTable->getTableName(), $dataSet[$class], $identifier);
|
2008-01-05 22:55:56 +03:00
|
|
|
}
|
|
|
|
|
2008-01-12 22:49:11 +03:00
|
|
|
$record->assignIdentifier(true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-02-07 13:40:27 +03:00
|
|
|
/**
|
|
|
|
* Deletes an entity that is part of a Class Table Inheritance hierarchy.
|
|
|
|
*
|
|
|
|
*/
|
2008-02-20 23:54:20 +03:00
|
|
|
public function doDelete(Doctrine_Record $record)
|
2008-01-12 22:49:11 +03:00
|
|
|
{
|
2008-02-20 23:54:20 +03:00
|
|
|
$conn = $this->_mapper->getConnection();
|
2008-01-12 22:49:11 +03:00
|
|
|
try {
|
2008-02-20 23:54:20 +03:00
|
|
|
$class = $this->_mapper->getClassMetadata();
|
2008-01-12 22:49:11 +03:00
|
|
|
$conn->beginInternalTransaction();
|
2008-03-23 14:30:29 +03:00
|
|
|
$this->_deleteComposites($record);
|
2008-01-12 22:49:11 +03:00
|
|
|
|
|
|
|
$record->state(Doctrine_Record::STATE_TDIRTY);
|
|
|
|
|
2008-02-12 15:31:28 +03:00
|
|
|
$identifier = $this->_convertFieldToColumnNames($record->identifier(), $class);
|
2008-03-23 14:30:29 +03:00
|
|
|
|
|
|
|
// run deletions, starting from the class, upwards the hierarchy
|
|
|
|
$conn->delete($class->getTableName(), $identifier);
|
2008-02-12 15:31:28 +03:00
|
|
|
foreach ($class->getParentClasses() as $parent) {
|
|
|
|
$parentClass = $conn->getClassMetadata($parent);
|
2008-02-20 23:54:20 +03:00
|
|
|
$this->_deleteRow($parentClass->getTableName(), $identifier);
|
2008-01-12 22:49:11 +03:00
|
|
|
}
|
2008-03-23 14:30:29 +03:00
|
|
|
|
2008-01-12 22:49:11 +03:00
|
|
|
$record->state(Doctrine_Record::STATE_TCLEAN);
|
|
|
|
|
2008-02-20 23:54:20 +03:00
|
|
|
$this->_mapper->removeRecord($record);
|
2008-01-12 22:49:11 +03:00
|
|
|
$conn->commit();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$conn->rollback();
|
|
|
|
throw $e;
|
|
|
|
}
|
2008-01-05 22:55:56 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-02-07 13:40:27 +03:00
|
|
|
* Adds all parent classes as INNER JOINs and subclasses as OUTER JOINs
|
|
|
|
* to the query.
|
2008-01-05 22:55:56 +03:00
|
|
|
*
|
2008-02-07 13:40:27 +03:00
|
|
|
* Callback that is invoked during the SQL construction process.
|
2008-01-05 22:55:56 +03:00
|
|
|
*
|
2008-02-07 13:40:27 +03:00
|
|
|
* @return array The custom joins in the format <className> => <joinType>
|
2008-01-05 22:55:56 +03:00
|
|
|
*/
|
|
|
|
public function getCustomJoins()
|
|
|
|
{
|
2008-01-12 22:49:11 +03:00
|
|
|
$customJoins = array();
|
2008-02-20 23:54:20 +03:00
|
|
|
$classMetadata = $this->_mapper->getClassMetadata();
|
|
|
|
foreach ($classMetadata->getParentClasses() as $parentClass) {
|
2008-01-12 22:49:11 +03:00
|
|
|
$customJoins[$parentClass] = 'INNER';
|
|
|
|
}
|
2008-03-26 14:10:45 +03:00
|
|
|
foreach ($classMetadata->getSubclasses() as $subClass) {
|
2008-02-20 23:54:20 +03:00
|
|
|
if ($subClass != $this->_mapper->getComponentName()) {
|
2008-01-12 22:49:11 +03:00
|
|
|
$customJoins[$subClass] = 'LEFT';
|
|
|
|
}
|
|
|
|
}
|
2008-02-07 13:40:27 +03:00
|
|
|
|
2008-01-12 22:49:11 +03:00
|
|
|
return $customJoins;
|
|
|
|
}
|
|
|
|
|
2008-02-07 13:40:27 +03:00
|
|
|
/**
|
|
|
|
* Adds the discriminator column to the selected fields in a query as well as
|
|
|
|
* all fields of subclasses. In Class Table Inheritance the default behavior is that
|
|
|
|
* all subclasses are joined in through OUTER JOINs when querying a base class.
|
|
|
|
*
|
|
|
|
* Callback that is invoked during the SQL construction process.
|
|
|
|
*
|
|
|
|
* @return array An array with the field names that will get added to the query.
|
|
|
|
*/
|
2008-01-12 22:49:11 +03:00
|
|
|
public function getCustomFields()
|
|
|
|
{
|
2008-02-20 23:54:20 +03:00
|
|
|
$classMetadata = $this->_mapper->getClassMetadata();
|
|
|
|
$conn = $this->_mapper->getConnection();
|
|
|
|
$fields = array($classMetadata->getInheritanceOption('discriminatorColumn'));
|
|
|
|
if ($classMetadata->getSubclasses()) {
|
|
|
|
foreach ($classMetadata->getSubclasses() as $subClass) {
|
2008-03-26 14:10:45 +03:00
|
|
|
$fields = array_merge($conn->getClassMetadata($subClass)->getFieldNames(), $fields);
|
2008-01-12 22:49:11 +03:00
|
|
|
}
|
|
|
|
}
|
2008-02-07 13:40:27 +03:00
|
|
|
|
2008-01-12 22:49:11 +03:00
|
|
|
return array_unique($fields);
|
2008-01-05 22:55:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function getFieldNames()
|
|
|
|
{
|
|
|
|
if ($this->_fieldNames) {
|
|
|
|
return $this->_fieldNames;
|
|
|
|
}
|
|
|
|
|
2008-02-20 23:54:20 +03:00
|
|
|
$fieldNames = $this->_mapper->getClassMetadata()->getFieldNames();
|
2008-01-12 22:49:11 +03:00
|
|
|
$this->_fieldNames = array_unique($fieldNames);
|
2008-01-05 22:55:56 +03:00
|
|
|
|
|
|
|
return $fieldNames;
|
|
|
|
}
|
|
|
|
|
2008-02-07 13:40:27 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2008-01-12 22:49:11 +03:00
|
|
|
public function getFieldName($columnName)
|
|
|
|
{
|
|
|
|
if (isset($this->_columnNameFieldNameMap[$columnName])) {
|
|
|
|
return $this->_columnNameFieldNameMap[$columnName];
|
|
|
|
}
|
|
|
|
|
2008-02-20 23:54:20 +03:00
|
|
|
$classMetadata = $this->_mapper->getClassMetadata();
|
|
|
|
$conn = $this->_mapper->getConnection();
|
|
|
|
|
|
|
|
if ($classMetadata->hasColumn($columnName)) {
|
|
|
|
$this->_columnNameFieldNameMap[$columnName] = $classMetadata->getFieldName($columnName);
|
2008-01-12 22:49:11 +03:00
|
|
|
return $this->_columnNameFieldNameMap[$columnName];
|
|
|
|
}
|
|
|
|
|
2008-03-17 16:26:34 +03:00
|
|
|
foreach ($classMetadata->getSubclasses() as $subClass) {
|
2008-02-20 23:54:20 +03:00
|
|
|
$subTable = $conn->getClassMetadata($subClass);
|
2008-01-12 22:49:11 +03:00
|
|
|
if ($subTable->hasColumn($columnName)) {
|
|
|
|
$this->_columnNameFieldNameMap[$columnName] = $subTable->getFieldName($columnName);
|
|
|
|
return $this->_columnNameFieldNameMap[$columnName];
|
|
|
|
}
|
|
|
|
}
|
2008-02-04 00:29:57 +03:00
|
|
|
|
2008-01-12 22:49:11 +03:00
|
|
|
throw new Doctrine_Mapper_Exception("No field name found for column name '$columnName'.");
|
|
|
|
}
|
|
|
|
|
2008-02-07 13:40:27 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @todo Looks like this better belongs into the ClassMetadata class.
|
|
|
|
*/
|
2008-03-17 16:26:34 +03:00
|
|
|
public function getOwningClass($fieldName)
|
2008-02-20 23:54:20 +03:00
|
|
|
{
|
|
|
|
$conn = $this->_mapper->getConnection();
|
|
|
|
$classMetadata = $this->_mapper->getClassMetadata();
|
|
|
|
if ($classMetadata->hasField($fieldName) && ! $classMetadata->isInheritedField($fieldName)) {
|
|
|
|
return $classMetadata;
|
2008-01-12 22:49:11 +03:00
|
|
|
}
|
|
|
|
|
2008-02-20 23:54:20 +03:00
|
|
|
foreach ($classMetadata->getParentClasses() as $parentClass) {
|
|
|
|
$parentTable = $conn->getClassMetadata($parentClass);
|
2008-02-04 00:29:57 +03:00
|
|
|
if ($parentTable->hasField($fieldName) && ! $parentTable->isInheritedField($fieldName)) {
|
2008-01-12 22:49:11 +03:00
|
|
|
return $parentTable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-20 23:54:20 +03:00
|
|
|
foreach ((array)$classMetadata->getSubclasses() as $subClass) {
|
|
|
|
$subTable = $conn->getClassMetadata($subClass);
|
2008-02-04 00:29:57 +03:00
|
|
|
if ($subTable->hasField($fieldName) && ! $subTable->isInheritedField($fieldName)) {
|
2008-01-12 22:49:11 +03:00
|
|
|
return $subTable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-17 16:26:34 +03:00
|
|
|
throw new Doctrine_Mapper_Exception("Unable to find defining class of field '$fieldName'.");
|
2008-01-12 22:49:11 +03:00
|
|
|
}
|
|
|
|
|
2008-01-05 22:55:56 +03:00
|
|
|
/**
|
2008-02-07 13:40:27 +03:00
|
|
|
* Analyzes the fields of the entity and creates a map in which the field names
|
|
|
|
* are grouped by the class names they belong to.
|
|
|
|
*
|
2008-03-17 16:26:34 +03:00
|
|
|
* @return array
|
2008-01-05 22:55:56 +03:00
|
|
|
*/
|
2008-02-20 23:54:20 +03:00
|
|
|
protected function _groupFieldsByDefiningClass(Doctrine_Record $record)
|
2008-01-05 22:55:56 +03:00
|
|
|
{
|
2008-02-20 23:54:20 +03:00
|
|
|
$conn = $this->_mapper->getConnection();
|
|
|
|
$classMetadata = $this->_mapper->getClassMetadata();
|
2008-01-05 22:55:56 +03:00
|
|
|
$dataSet = array();
|
2008-02-20 23:54:20 +03:00
|
|
|
$component = $classMetadata->getClassName();
|
2008-01-05 22:55:56 +03:00
|
|
|
$array = $record->getPrepared();
|
|
|
|
|
2008-02-20 23:54:20 +03:00
|
|
|
$classes = array_merge(array($component), $classMetadata->getParentClasses());
|
2008-01-05 22:55:56 +03:00
|
|
|
|
|
|
|
foreach ($classes as $class) {
|
2008-02-07 13:40:27 +03:00
|
|
|
$dataSet[$class] = array();
|
2008-02-20 23:54:20 +03:00
|
|
|
$parentClassMetadata = $conn->getClassMetadata($class);
|
|
|
|
foreach ($parentClassMetadata->getColumns() as $columnName => $definition) {
|
2008-02-04 00:29:57 +03:00
|
|
|
if ((isset($definition['primary']) && $definition['primary'] === true) ||
|
|
|
|
(isset($definition['inherited']) && $definition['inherited'] === true)) {
|
2008-01-05 22:55:56 +03:00
|
|
|
continue;
|
|
|
|
}
|
2008-02-20 23:54:20 +03:00
|
|
|
$fieldName = $classMetadata->getFieldName($columnName);
|
2008-02-07 13:40:27 +03:00
|
|
|
if ( ! array_key_exists($fieldName, $array)) {
|
|
|
|
continue;
|
|
|
|
}
|
2008-02-12 15:31:28 +03:00
|
|
|
$dataSet[$class][$columnName] = $array[$fieldName];
|
2008-01-05 22:55:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $dataSet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|