2009-04-03 15:06:58 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $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.doctrine-project.org>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Doctrine\ORM\Tools;
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
use Doctrine\DBAL\Types\Type;
|
2009-04-03 15:06:58 +04:00
|
|
|
use Doctrine\ORM\EntityManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The SchemaTool is a tool to create and/or drop database schemas based on
|
|
|
|
* <tt>ClassMetadata</tt> class descriptors.
|
|
|
|
*
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @version $Revision: 4805 $
|
|
|
|
*/
|
|
|
|
class SchemaTool
|
|
|
|
{
|
|
|
|
/** The EntityManager */
|
|
|
|
private $_em;
|
|
|
|
/** The DatabasePlatform */
|
|
|
|
private $_platform;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a new SchemaTool instance that uses the connection of the
|
|
|
|
* provided EntityManager.
|
|
|
|
*
|
|
|
|
* @param Doctrine\ORM\EntityManager $em
|
|
|
|
*/
|
|
|
|
public function __construct(EntityManager $em)
|
|
|
|
{
|
|
|
|
$this->_em = $em;
|
|
|
|
$this->_platform = $em->getConnection()->getDatabasePlatform();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates the database schema for the given array of ClassMetadata instances.
|
|
|
|
*
|
|
|
|
* @param array $classes
|
|
|
|
*/
|
|
|
|
public function createSchema(array $classes)
|
|
|
|
{
|
|
|
|
$createSchemaSql = $this->getCreateSchemaSql($classes);
|
|
|
|
$conn = $this->_em->getConnection();
|
|
|
|
foreach ($createSchemaSql as $sql) {
|
|
|
|
$conn->execute($sql);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an array of DDL statements for the specified array of ClassMetadata instances.
|
|
|
|
*
|
|
|
|
* @param array $classes
|
|
|
|
* @return array $sql
|
|
|
|
*/
|
|
|
|
public function getCreateSchemaSql(array $classes)
|
|
|
|
{
|
2009-05-05 21:20:55 +04:00
|
|
|
$sql = array(); // All SQL statements
|
|
|
|
$processedClasses = array(); // Reminder for processed classes, used for hierarchies
|
|
|
|
$foreignKeyConstraints = array(); // FK SQL statements. Appended to $sql at the end.
|
|
|
|
$sequences = array(); // Sequence SQL statements. Appended to $sql at the end.
|
2009-04-03 15:06:58 +04:00
|
|
|
|
|
|
|
foreach ($classes as $class) {
|
2009-05-14 14:03:09 +04:00
|
|
|
if (isset($processedClasses[$class->name])) {
|
2009-04-09 22:12:48 +04:00
|
|
|
continue;
|
2009-04-03 15:06:58 +04:00
|
|
|
}
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
$options = array(); // table options
|
2009-05-21 12:53:40 +04:00
|
|
|
$columns = array(); // table columns
|
2009-05-03 14:58:16 +04:00
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
if ($class->isInheritanceTypeSingleTable()) {
|
2009-05-21 12:53:40 +04:00
|
|
|
$columns = $this->_gatherColumns($class, $options);
|
|
|
|
$this->_gatherRelationsSql($class, $sql, $columns, $foreignKeyConstraints);
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
// Add the discriminator column
|
|
|
|
$discrColumnDef = $this->_getDiscriminatorColumnDefinition($class);
|
|
|
|
$columns[$discrColumnDef['name']] = $discrColumnDef;
|
|
|
|
|
|
|
|
// Aggregate all the information from all classes in the hierarchy
|
2009-05-14 14:03:09 +04:00
|
|
|
foreach ($class->parentClasses as $parentClassName) {
|
2009-04-09 22:12:48 +04:00
|
|
|
// Parent class information is already contained in this class
|
|
|
|
$processedClasses[$parentClassName] = true;
|
|
|
|
}
|
2009-05-14 14:03:09 +04:00
|
|
|
foreach ($class->subClasses as $subClassName) {
|
2009-05-03 14:58:16 +04:00
|
|
|
$subClass = $this->_em->getClassMetadata($subClassName);
|
|
|
|
$columns = array_merge($columns, $this->_gatherColumns($subClass, $options));
|
|
|
|
$this->_gatherRelationsSql($subClass, $sql, $columns, $foreignKeyConstraints);
|
2009-04-09 22:12:48 +04:00
|
|
|
$processedClasses[$subClassName] = true;
|
|
|
|
}
|
|
|
|
} else if ($class->isInheritanceTypeJoined()) {
|
2009-05-21 12:53:40 +04:00
|
|
|
// Add all non-inherited fields as columns
|
|
|
|
foreach ($class->fieldMappings as $fieldName => $mapping) {
|
|
|
|
if ( ! isset($mapping['inherited'])) {
|
|
|
|
$columns[$mapping['columnName']] = $this->_gatherColumn($class, $mapping, $options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_gatherRelationsSql($class, $sql, $columns, $foreignKeyConstraints);
|
|
|
|
|
|
|
|
// Add the discriminator column only to the root table
|
|
|
|
if ($class->name == $class->rootEntityName) {
|
|
|
|
$discrColumnDef = $this->_getDiscriminatorColumnDefinition($class);
|
|
|
|
$columns[$discrColumnDef['name']] = $discrColumnDef;
|
|
|
|
} else {
|
|
|
|
// Add an ID FK column to child tables
|
|
|
|
$idMapping = $class->fieldMappings[$class->identifier[0]];
|
|
|
|
$idColumn = $this->_gatherColumn($class, $idMapping, $options);
|
|
|
|
unset($idColumn['autoincrement']);
|
|
|
|
$columns[$idMapping['columnName']] = $idColumn;
|
|
|
|
// Add a FK constraint on the ID column
|
|
|
|
$constraint = array();
|
|
|
|
$constraint['tableName'] = $class->getTableName();
|
|
|
|
$constraint['foreignTable'] = $this->_em->getClassMetadata($class->rootEntityName)->getTableName();
|
|
|
|
$constraint['local'] = array($idMapping['columnName']);
|
|
|
|
$constraint['foreign'] = array($idMapping['columnName']);
|
|
|
|
$constraint['onDelete'] = 'CASCADE';
|
|
|
|
$foreignKeyConstraints[] = $constraint;
|
|
|
|
}
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
} else if ($class->isInheritanceTypeTablePerClass()) {
|
|
|
|
//TODO
|
2009-05-21 12:53:40 +04:00
|
|
|
} else {
|
|
|
|
$columns = $this->_gatherColumns($class, $options);
|
|
|
|
$this->_gatherRelationsSql($class, $sql, $columns, $foreignKeyConstraints);
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-04-03 15:06:58 +04:00
|
|
|
$sql = array_merge($sql, $this->_platform->getCreateTableSql($class->getTableName(), $columns, $options));
|
2009-05-14 14:03:09 +04:00
|
|
|
$processedClasses[$class->name] = true;
|
2009-05-05 21:20:55 +04:00
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
if ($class->isIdGeneratorSequence() && $class->name == $class->rootEntityName) {
|
2009-05-05 21:20:55 +04:00
|
|
|
$seqDef = $class->getSequenceGeneratorDefinition();
|
|
|
|
$sequences[] = $this->_platform->getCreateSequenceSql(
|
|
|
|
$seqDef['sequenceName'],
|
|
|
|
$seqDef['initialValue'],
|
|
|
|
$seqDef['allocationSize']
|
|
|
|
);
|
|
|
|
}
|
2009-04-03 15:06:58 +04:00
|
|
|
}
|
|
|
|
|
2009-05-05 21:20:55 +04:00
|
|
|
// Append the foreign key constraints SQL
|
2009-04-03 15:06:58 +04:00
|
|
|
if ($this->_platform->supportsForeignKeyConstraints()) {
|
|
|
|
foreach ($foreignKeyConstraints as $fkConstraint) {
|
|
|
|
$sql = array_merge($sql, (array)$this->_platform->getCreateForeignKeySql($fkConstraint['tableName'], $fkConstraint));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-05 21:20:55 +04:00
|
|
|
// Append the sequence SQL
|
|
|
|
$sql = array_merge($sql, $sequences);
|
|
|
|
|
2009-04-03 15:06:58 +04:00
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
private function _getDiscriminatorColumnDefinition($class)
|
|
|
|
{
|
2009-05-14 14:03:09 +04:00
|
|
|
$discrColumn = $class->discriminatorColumn;
|
2009-04-09 22:12:48 +04:00
|
|
|
return array(
|
|
|
|
'name' => $discrColumn['name'],
|
|
|
|
'type' => Type::getType($discrColumn['type']),
|
|
|
|
'length' => $discrColumn['length'],
|
|
|
|
'notnull' => true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
/**
|
|
|
|
* Gathers the column definitions of all field mappings found in the given class.
|
|
|
|
*
|
|
|
|
* @param ClassMetadata $class
|
|
|
|
* @param array $options
|
|
|
|
* @return array
|
|
|
|
*/
|
2009-05-03 14:58:16 +04:00
|
|
|
private function _gatherColumns($class, array &$options)
|
2009-04-09 22:12:48 +04:00
|
|
|
{
|
|
|
|
$columns = array();
|
2009-05-14 14:03:09 +04:00
|
|
|
foreach ($class->fieldMappings as $fieldName => $mapping) {
|
2009-05-21 12:53:40 +04:00
|
|
|
$columns[$mapping['columnName']] = $this->_gatherColumn($class, $mapping, $options);
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
2009-05-03 14:58:16 +04:00
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
return $columns;
|
|
|
|
}
|
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
private function _gatherColumn($class, array $mapping, array &$options)
|
|
|
|
{
|
|
|
|
$column = array();
|
|
|
|
$column['name'] = $mapping['columnName'];
|
|
|
|
$column['type'] = Type::getType($mapping['type']);
|
|
|
|
$column['length'] = $mapping['length'];
|
|
|
|
$column['notnull'] = ! $mapping['nullable'];
|
2009-07-17 22:13:03 +04:00
|
|
|
if (isset($mapping['default'])) {
|
|
|
|
$column['default'] = $mapping['default'];
|
|
|
|
}
|
2009-05-21 12:53:40 +04:00
|
|
|
if ($class->isIdentifier($mapping['fieldName'])) {
|
|
|
|
$column['primary'] = true;
|
|
|
|
$options['primary'][] = $mapping['columnName'];
|
|
|
|
if ($class->isIdGeneratorIdentity()) {
|
|
|
|
$column['autoincrement'] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $column;
|
|
|
|
}
|
|
|
|
|
2009-05-03 14:58:16 +04:00
|
|
|
private function _gatherRelationsSql($class, array &$sql, array &$columns, array &$constraints)
|
|
|
|
{
|
2009-05-21 12:53:40 +04:00
|
|
|
foreach ($class->associationMappings as $fieldName => $mapping) {
|
|
|
|
if (isset($class->inheritedAssociationFields[$fieldName])) {
|
|
|
|
continue;
|
|
|
|
}
|
2009-06-14 21:34:28 +04:00
|
|
|
|
2009-05-21 12:53:40 +04:00
|
|
|
$foreignClass = $this->_em->getClassMetadata($mapping->targetEntityName);
|
|
|
|
if ($mapping->isOneToOne() && $mapping->isOwningSide) {
|
2009-05-03 14:58:16 +04:00
|
|
|
$constraint = array();
|
|
|
|
$constraint['tableName'] = $class->getTableName();
|
|
|
|
$constraint['foreignTable'] = $foreignClass->getTableName();
|
|
|
|
$constraint['local'] = array();
|
|
|
|
$constraint['foreign'] = array();
|
|
|
|
foreach ($mapping->getJoinColumns() as $joinColumn) {
|
|
|
|
$column = array();
|
|
|
|
$column['name'] = $joinColumn['name'];
|
2009-05-13 19:19:27 +04:00
|
|
|
$column['type'] = Type::getType($foreignClass->getTypeOfColumn($joinColumn['referencedColumnName']));
|
2009-05-03 14:58:16 +04:00
|
|
|
$columns[$joinColumn['name']] = $column;
|
|
|
|
$constraint['local'][] = $joinColumn['name'];
|
|
|
|
$constraint['foreign'][] = $joinColumn['referencedColumnName'];
|
|
|
|
}
|
|
|
|
$constraints[] = $constraint;
|
2009-05-21 12:53:40 +04:00
|
|
|
} else if ($mapping->isOneToMany() && $mapping->isOwningSide) {
|
2009-05-03 14:58:16 +04:00
|
|
|
//... create join table, one-many through join table supported later
|
|
|
|
throw DoctrineException::updateMe("Not yet implemented.");
|
2009-05-21 12:53:40 +04:00
|
|
|
} else if ($mapping->isManyToMany() && $mapping->isOwningSide) {
|
2009-05-03 14:58:16 +04:00
|
|
|
// create join table
|
|
|
|
$joinTableColumns = array();
|
|
|
|
$joinTableOptions = array();
|
|
|
|
$joinTable = $mapping->getJoinTable();
|
|
|
|
$constraint1 = array();
|
|
|
|
$constraint1['tableName'] = $joinTable['name'];
|
|
|
|
$constraint1['foreignTable'] = $class->getTableName();
|
|
|
|
$constraint1['local'] = array();
|
|
|
|
$constraint1['foreign'] = array();
|
|
|
|
foreach ($joinTable['joinColumns'] as $joinColumn) {
|
|
|
|
$column = array();
|
|
|
|
$column['primary'] = true;
|
|
|
|
$joinTableOptions['primary'][] = $joinColumn['name'];
|
|
|
|
$column['name'] = $joinColumn['name'];
|
2009-05-13 19:19:27 +04:00
|
|
|
$column['type'] = Type::getType($class->getTypeOfColumn($joinColumn['referencedColumnName']));
|
2009-05-03 14:58:16 +04:00
|
|
|
$joinTableColumns[$joinColumn['name']] = $column;
|
|
|
|
$constraint1['local'][] = $joinColumn['name'];
|
|
|
|
$constraint1['foreign'][] = $joinColumn['referencedColumnName'];
|
|
|
|
}
|
|
|
|
$constraints[] = $constraint1;
|
|
|
|
|
|
|
|
$constraint2 = array();
|
|
|
|
$constraint2['tableName'] = $joinTable['name'];
|
|
|
|
$constraint2['foreignTable'] = $foreignClass->getTableName();
|
|
|
|
$constraint2['local'] = array();
|
|
|
|
$constraint2['foreign'] = array();
|
|
|
|
foreach ($joinTable['inverseJoinColumns'] as $inverseJoinColumn) {
|
|
|
|
$column = array();
|
|
|
|
$column['primary'] = true;
|
|
|
|
$joinTableOptions['primary'][] = $inverseJoinColumn['name'];
|
|
|
|
$column['name'] = $inverseJoinColumn['name'];
|
2009-05-13 19:19:27 +04:00
|
|
|
$column['type'] = Type::getType($this->_em->getClassMetadata($mapping->getTargetEntityName())
|
|
|
|
->getTypeOfColumn($inverseJoinColumn['referencedColumnName']));
|
2009-05-03 14:58:16 +04:00
|
|
|
$joinTableColumns[$inverseJoinColumn['name']] = $column;
|
|
|
|
$constraint2['local'][] = $inverseJoinColumn['name'];
|
|
|
|
$constraint2['foreign'][] = $inverseJoinColumn['referencedColumnName'];
|
|
|
|
}
|
|
|
|
$constraints[] = $constraint2;
|
|
|
|
|
|
|
|
$sql = array_merge($sql, $this->_platform->getCreateTableSql(
|
|
|
|
$joinTable['name'], $joinTableColumns, $joinTableOptions));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-03 15:06:58 +04:00
|
|
|
public function dropSchema(array $classes)
|
|
|
|
{
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDropSchemaSql(array $classes)
|
|
|
|
{
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
}
|