403 lines
14 KiB
PHP
403 lines
14 KiB
PHP
<?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\DBAL\Schema;
|
|
|
|
/**
|
|
* Compare to Schemas and return an instance of SchemaDiff
|
|
*
|
|
* @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
|
|
* @license http://ez.no/licenses/new_bsd New BSD License
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
* @link www.doctrine-project.org
|
|
* @since 2.0
|
|
* @version $Revision$
|
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
*/
|
|
class Comparator
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $_checkColumnPlatformOptions = array();
|
|
|
|
/**
|
|
* @param string $optionName
|
|
*/
|
|
public function addColumnPlatformOptionCheck($optionName)
|
|
{
|
|
$this->_checkColumnPlatformOptions[] = $optionName;
|
|
}
|
|
|
|
/**
|
|
* @param Schema $fromSchema
|
|
* @param Schema $toSchema
|
|
* @return SchemaDiff
|
|
*/
|
|
static public function compareSchemas( Schema $fromSchema, Schema $toSchema )
|
|
{
|
|
$c = new self();
|
|
return $c->compare($fromSchema, $toSchema);
|
|
}
|
|
|
|
/**
|
|
* Returns a SchemaDiff object containing the differences between the schemas $fromSchema and $toSchema.
|
|
*
|
|
* The returned diferences are returned in such a way that they contain the
|
|
* operations to change the schema stored in $fromSchema to the schema that is
|
|
* stored in $toSchema.
|
|
*
|
|
* @param Schema $fromSchema
|
|
* @param Schema $toSchema
|
|
*
|
|
* @return SchemaDiff
|
|
*/
|
|
public function compare(Schema $fromSchema, Schema $toSchema)
|
|
{
|
|
if ($fromSchema->hasExplicitForeignKeyIndexes() && !$toSchema->hasExplicitForeignKeyIndexes()) {
|
|
$toSchema->visit(new \Doctrine\DBAL\Schema\Visitor\FixSchema(true));
|
|
}
|
|
|
|
$diff = new SchemaDiff();
|
|
|
|
$foreignKeysToTable = array();
|
|
|
|
foreach ( $toSchema->getTables() AS $tableName => $table ) {
|
|
if ( !$fromSchema->hasTable($tableName) ) {
|
|
$diff->newTables[$tableName] = $table;
|
|
} else {
|
|
$tableDifferences = $this->diffTable( $fromSchema->getTable($tableName), $table );
|
|
if ( $tableDifferences !== false ) {
|
|
$diff->changedTables[$tableName] = $tableDifferences;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Check if there are tables removed */
|
|
foreach ( $fromSchema->getTables() AS $tableName => $table ) {
|
|
if ( !$toSchema->hasTable($tableName) ) {
|
|
$diff->removedTables[$tableName] = $table;
|
|
}
|
|
|
|
// also remember all foreign keys that point to a specific table
|
|
foreach ($table->getForeignKeys() AS $foreignKey) {
|
|
$foreignTable = strtolower($foreignKey->getForeignTableName());
|
|
if (!isset($foreignKeysToTable[$foreignTable])) {
|
|
$foreignKeysToTable[$foreignTable] = array();
|
|
}
|
|
$foreignKeysToTable[$foreignTable][] = $foreignKey;
|
|
}
|
|
}
|
|
|
|
foreach ($diff->removedTables AS $tableName => $table) {
|
|
if (isset($foreignKeysToTable[$tableName])) {
|
|
$diff->orphanedForeignKeys = array_merge($diff->orphanedForeignKeys, $foreignKeysToTable[$tableName]);
|
|
}
|
|
}
|
|
|
|
foreach ( $toSchema->getSequences() AS $sequenceName => $sequence) {
|
|
if (!$fromSchema->hasSequence($sequenceName)) {
|
|
$diff->newSequences[] = $sequence;
|
|
} else {
|
|
if ($this->diffSequence($sequence, $fromSchema->getSequence($sequenceName))) {
|
|
$diff->changedSequences[] = $fromSchema->getSequence($sequenceName);
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($fromSchema->getSequences() AS $sequenceName => $sequence) {
|
|
if (!$toSchema->hasSequence($sequenceName)) {
|
|
$diff->removedSequences[] = $sequence;
|
|
}
|
|
}
|
|
|
|
return $diff;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param Sequence $sequence1
|
|
* @param Sequence $sequence2
|
|
*/
|
|
public function diffSequence(Sequence $sequence1, Sequence $sequence2)
|
|
{
|
|
if($sequence1->getAllocationSize() != $sequence2->getAllocationSize()) {
|
|
return true;
|
|
}
|
|
|
|
if($sequence1->getInitialValue() != $sequence2->getInitialValue()) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Returns the difference between the tables $table1 and $table2.
|
|
*
|
|
* If there are no differences this method returns the boolean false.
|
|
*
|
|
* @param Table $table1
|
|
* @param Table $table2
|
|
*
|
|
* @return bool|TableDiff
|
|
*/
|
|
public function diffTable(Table $table1, Table $table2)
|
|
{
|
|
$changes = 0;
|
|
$tableDifferences = new TableDiff($table1->getName());
|
|
|
|
$table1Columns = $table1->getColumns();
|
|
$table2Columns = $table2->getColumns();
|
|
|
|
/* See if all the fields in table 1 exist in table 2 */
|
|
foreach ( $table2Columns as $columnName => $column ) {
|
|
if ( !$table1->hasColumn($columnName) ) {
|
|
$tableDifferences->addedColumns[$columnName] = $column;
|
|
$changes++;
|
|
}
|
|
}
|
|
/* See if there are any removed fields in table 2 */
|
|
foreach ( $table1Columns as $columnName => $column ) {
|
|
if ( !$table2->hasColumn($columnName) ) {
|
|
$tableDifferences->removedColumns[$columnName] = $column;
|
|
$changes++;
|
|
}
|
|
}
|
|
foreach ( $table1Columns as $columnName => $column ) {
|
|
if ( $table2->hasColumn($columnName) ) {
|
|
$changedProperties = $this->diffColumn( $column, $table2->getColumn($columnName) );
|
|
if (count($changedProperties) ) {
|
|
$columnDiff = new ColumnDiff($column->getName(), $table2->getColumn($columnName), $changedProperties);
|
|
$tableDifferences->changedColumns[$column->getName()] = $columnDiff;
|
|
$changes++;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Try to find columns that only changed their name, rename operations maybe cheaper than add/drop
|
|
foreach ($tableDifferences->addedColumns AS $addedColumnName => $addedColumn) {
|
|
foreach ($tableDifferences->removedColumns AS $removedColumnName => $removedColumn) {
|
|
if (count($this->diffColumn($addedColumn, $removedColumn)) == 0) {
|
|
$tableDifferences->renamedColumns[$removedColumn->getName()] = $addedColumn;
|
|
unset($tableDifferences->addedColumns[$addedColumnName]);
|
|
unset($tableDifferences->removedColumns[$removedColumnName]);
|
|
}
|
|
}
|
|
}
|
|
|
|
$table1Indexes = $table1->getIndexes();
|
|
$table2Indexes = $table2->getIndexes();
|
|
|
|
foreach ($table2Indexes AS $index2Name => $index2Definition) {
|
|
foreach ($table1Indexes AS $index1Name => $index1Definition) {
|
|
if ($this->diffIndex($index1Definition, $index2Definition) === false) {
|
|
unset($table1Indexes[$index1Name]);
|
|
unset($table2Indexes[$index2Name]);
|
|
} else {
|
|
if ($index1Name == $index2Name) {
|
|
$tableDifferences->changedIndexes[$index2Name] = $table2Indexes[$index2Name];
|
|
unset($table1Indexes[$index1Name]);
|
|
unset($table2Indexes[$index2Name]);
|
|
$changes++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($table1Indexes AS $index1Name => $index1Definition) {
|
|
$tableDifferences->removedIndexes[$index1Name] = $index1Definition;
|
|
$changes++;
|
|
}
|
|
|
|
foreach ($table2Indexes AS $index2Name => $index2Definition) {
|
|
$tableDifferences->addedIndexes[$index2Name] = $index2Definition;
|
|
$changes++;
|
|
}
|
|
|
|
$fromFkeys = $table1->getForeignKeys();
|
|
$toFkeys = $table2->getForeignKeys();
|
|
|
|
foreach ($fromFkeys AS $key1 => $constraint1) {
|
|
foreach ($toFkeys AS $key2 => $constraint2) {
|
|
if($this->diffForeignKey($constraint1, $constraint2) === false) {
|
|
unset($fromFkeys[$key1]);
|
|
unset($toFkeys[$key2]);
|
|
} else {
|
|
if (strtolower($constraint1->getName()) == strtolower($constraint2->getName())) {
|
|
$tableDifferences->changedForeignKeys[] = $constraint2;
|
|
$changes++;
|
|
unset($fromFkeys[$key1]);
|
|
unset($toFkeys[$key2]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($fromFkeys AS $key1 => $constraint1) {
|
|
$tableDifferences->removedForeignKeys[] = $constraint1;
|
|
$changes++;
|
|
}
|
|
|
|
foreach ($toFkeys AS $key2 => $constraint2) {
|
|
$tableDifferences->addedForeignKeys[] = $constraint2;
|
|
$changes++;
|
|
}
|
|
|
|
return $changes ? $tableDifferences : false;
|
|
}
|
|
|
|
/**
|
|
* @param ForeignKeyConstraint $key1
|
|
* @param ForeignKeyConstraint $key2
|
|
* @return bool
|
|
*/
|
|
public function diffForeignKey(ForeignKeyConstraint $key1, ForeignKeyConstraint $key2)
|
|
{
|
|
if (array_map('strtolower', $key1->getLocalColumns()) != array_map('strtolower', $key2->getLocalColumns())) {
|
|
return true;
|
|
}
|
|
|
|
if (array_map('strtolower', $key1->getForeignColumns()) != array_map('strtolower', $key2->getForeignColumns())) {
|
|
return true;
|
|
}
|
|
|
|
if ($key1->hasOption('onUpdate') && $key->hasOption('onUpdate')) {
|
|
if ($key1->getOption('onUpdate') != $key2->getOption('onUpdate')) {
|
|
return true;
|
|
}
|
|
} else if ($key1->hasOption('onUpdate') != $key2->hasOption('onUpdate')) {
|
|
return true;
|
|
}
|
|
|
|
if ($key1->hasOption('onDelete') && $key2->hasOption('onDelete')) {
|
|
if ($key1->getOption('onDelete') != $key2->getOption('onDelete')) {
|
|
return true;
|
|
}
|
|
} else if ($key1->hasOption('onDelete') != $key2->hasOption('onDelete')) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Returns the difference between the fields $field1 and $field2.
|
|
*
|
|
* If there are differences this method returns $field2, otherwise the
|
|
* boolean false.
|
|
*
|
|
* @param Column $column1
|
|
* @param Column $column2
|
|
*
|
|
* @return array
|
|
*/
|
|
public function diffColumn(Column $column1, Column $column2)
|
|
{
|
|
$changedProperties = array();
|
|
if ( $column1->getType() != $column2->getType() ) {
|
|
$changedProperties[] = 'type';
|
|
}
|
|
|
|
if ($column1->getNotnull() != $column2->getNotnull()) {
|
|
$changedProperties[] = 'notnull';
|
|
}
|
|
|
|
if ($column1->getDefault() != $column2->getDefault()) {
|
|
$changedProperties[] = 'default';
|
|
}
|
|
|
|
if ($column1->getUnsigned() != $column2->getUnsigned()) {
|
|
$changedProperties[] = 'unsigned';
|
|
}
|
|
|
|
if ($column1->getType() instanceof \Doctrine\DBAL\Types\StringType) {
|
|
if ($column1->getLength() != $column2->getLength()) {
|
|
$changedProperties[] = 'length';
|
|
}
|
|
|
|
if ($column1->getFixed() != $column2->getFixed()) {
|
|
$changedProperties[] = 'fixed';
|
|
}
|
|
}
|
|
|
|
if ($column1->getType() instanceof \Doctrine\DBAL\Types\DecimalType) {
|
|
if ($column1->getPrecision() != $column2->getPrecision()) {
|
|
$changedProperties[] = 'precision';
|
|
}
|
|
if ($column1->getScale() != $column2->getScale()) {
|
|
$changedProperties[] = 'scale';
|
|
}
|
|
}
|
|
|
|
foreach ($this->_checkColumnPlatformOptions AS $optionName) {
|
|
if($column1->hasPlatformOption($optionName) && $column2->hasPlatformOption($optionName)) {
|
|
if ($column1->getPlatformOption($optionName) != $column2->getPlatformOption($optionName)) {
|
|
$changedProperties[] = $optionName;
|
|
}
|
|
} else if ($column1->hasPlatformOption($optionName) != $column2->hasPlatformOption($optionName)) {
|
|
$changedProperties[] = $optionName;
|
|
}
|
|
}
|
|
|
|
return $changedProperties;
|
|
}
|
|
|
|
/**
|
|
* Finds the difference between the indexes $index1 and $index2.
|
|
*
|
|
* Compares $index1 with $index2 and returns $index2 if there are any
|
|
* differences or false in case there are no differences.
|
|
*
|
|
* @param Index $index1
|
|
* @param Index $index2
|
|
* @return bool
|
|
*/
|
|
public function diffIndex(Index $index1, Index $index2)
|
|
{
|
|
if($index1->isPrimary() != $index2->isPrimary()) {
|
|
return true;
|
|
}
|
|
if($index1->isUnique() != $index2->isUnique()) {
|
|
return true;
|
|
}
|
|
|
|
// Check for removed index fields in $index2
|
|
$index1Columns = $index1->getColumns();
|
|
for($i = 0; $i < count($index1Columns); $i++) {
|
|
$indexColumn = $index1Columns[$i];
|
|
if (!$index2->hasColumnAtPosition($indexColumn, $i)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// Check for new index fields in $index2
|
|
$index2Columns = $index2->getColumns();
|
|
for($i = 0; $i < count($index2Columns); $i++) {
|
|
$indexColumn = $index2Columns[$i];
|
|
if (!$index1->hasColumnAtPosition($indexColumn, $i)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
} |