123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- <?php
- namespace Doctrine\DBAL\Schema;
- use Doctrine\DBAL\Types;
- use function array_intersect_key;
- use function array_key_exists;
- use function array_keys;
- use function array_map;
- use function array_merge;
- use function array_shift;
- use function array_unique;
- use function assert;
- use function count;
- use function get_class;
- use function strtolower;
- /**
- * Compares two Schemas and return an instance of SchemaDiff.
- */
- class Comparator
- {
- /**
- * @return SchemaDiff
- */
- public static 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 differences 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.
- *
- * @return SchemaDiff
- */
- public function compare(Schema $fromSchema, Schema $toSchema)
- {
- $diff = new SchemaDiff();
- $diff->fromSchema = $fromSchema;
- $foreignKeysToTable = [];
- foreach ($toSchema->getNamespaces() as $namespace) {
- if ($fromSchema->hasNamespace($namespace)) {
- continue;
- }
- $diff->newNamespaces[$namespace] = $namespace;
- }
- foreach ($fromSchema->getNamespaces() as $namespace) {
- if ($toSchema->hasNamespace($namespace)) {
- continue;
- }
- $diff->removedNamespaces[$namespace] = $namespace;
- }
- foreach ($toSchema->getTables() as $table) {
- $tableName = $table->getShortestName($toSchema->getName());
- if (! $fromSchema->hasTable($tableName)) {
- $diff->newTables[$tableName] = $toSchema->getTable($tableName);
- } else {
- $tableDifferences = $this->diffTable(
- $fromSchema->getTable($tableName),
- $toSchema->getTable($tableName)
- );
- if ($tableDifferences !== false) {
- $diff->changedTables[$tableName] = $tableDifferences;
- }
- }
- }
- /* Check if there are tables removed */
- foreach ($fromSchema->getTables() as $table) {
- $tableName = $table->getShortestName($fromSchema->getName());
- $table = $fromSchema->getTable($tableName);
- 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] = [];
- }
- $foreignKeysToTable[$foreignTable][] = $foreignKey;
- }
- }
- foreach ($diff->removedTables as $tableName => $table) {
- if (! isset($foreignKeysToTable[$tableName])) {
- continue;
- }
- $diff->orphanedForeignKeys = array_merge($diff->orphanedForeignKeys, $foreignKeysToTable[$tableName]);
- // deleting duplicated foreign keys present on both on the orphanedForeignKey
- // and the removedForeignKeys from changedTables
- foreach ($foreignKeysToTable[$tableName] as $foreignKey) {
- // strtolower the table name to make if compatible with getShortestName
- $localTableName = strtolower($foreignKey->getLocalTableName());
- if (! isset($diff->changedTables[$localTableName])) {
- continue;
- }
- foreach ($diff->changedTables[$localTableName]->removedForeignKeys as $key => $removedForeignKey) {
- assert($removedForeignKey instanceof ForeignKeyConstraint);
- // We check if the key is from the removed table if not we skip.
- if ($tableName !== strtolower($removedForeignKey->getForeignTableName())) {
- continue;
- }
- unset($diff->changedTables[$localTableName]->removedForeignKeys[$key]);
- }
- }
- }
- foreach ($toSchema->getSequences() as $sequence) {
- $sequenceName = $sequence->getShortestName($toSchema->getName());
- if (! $fromSchema->hasSequence($sequenceName)) {
- if (! $this->isAutoIncrementSequenceInSchema($fromSchema, $sequence)) {
- $diff->newSequences[] = $sequence;
- }
- } else {
- if ($this->diffSequence($sequence, $fromSchema->getSequence($sequenceName))) {
- $diff->changedSequences[] = $toSchema->getSequence($sequenceName);
- }
- }
- }
- foreach ($fromSchema->getSequences() as $sequence) {
- if ($this->isAutoIncrementSequenceInSchema($toSchema, $sequence)) {
- continue;
- }
- $sequenceName = $sequence->getShortestName($fromSchema->getName());
- if ($toSchema->hasSequence($sequenceName)) {
- continue;
- }
- $diff->removedSequences[] = $sequence;
- }
- return $diff;
- }
- /**
- * @param Schema $schema
- * @param Sequence $sequence
- *
- * @return bool
- */
- private function isAutoIncrementSequenceInSchema($schema, $sequence)
- {
- foreach ($schema->getTables() as $table) {
- if ($sequence->isAutoIncrementsFor($table)) {
- return true;
- }
- }
- return false;
- }
- /**
- * @return bool
- */
- public function diffSequence(Sequence $sequence1, Sequence $sequence2)
- {
- if ($sequence1->getAllocationSize() !== $sequence2->getAllocationSize()) {
- return true;
- }
- return $sequence1->getInitialValue() !== $sequence2->getInitialValue();
- }
- /**
- * Returns the difference between the tables $fromTable and $toTable.
- *
- * If there are no differences this method returns the boolean false.
- *
- * @return TableDiff|false
- */
- public function diffTable(Table $fromTable, Table $toTable)
- {
- $changes = 0;
- $tableDifferences = new TableDiff($fromTable->getName());
- $tableDifferences->fromTable = $fromTable;
- $fromTableColumns = $fromTable->getColumns();
- $toTableColumns = $toTable->getColumns();
- /* See if all the columns in "from" table exist in "to" table */
- foreach ($toTableColumns as $columnName => $column) {
- if ($fromTable->hasColumn($columnName)) {
- continue;
- }
- $tableDifferences->addedColumns[$columnName] = $column;
- $changes++;
- }
- /* See if there are any removed columns in "to" table */
- foreach ($fromTableColumns as $columnName => $column) {
- // See if column is removed in "to" table.
- if (! $toTable->hasColumn($columnName)) {
- $tableDifferences->removedColumns[$columnName] = $column;
- $changes++;
- continue;
- }
- // See if column has changed properties in "to" table.
- $changedProperties = $this->diffColumn($column, $toTable->getColumn($columnName));
- if (empty($changedProperties)) {
- continue;
- }
- $columnDiff = new ColumnDiff($column->getName(), $toTable->getColumn($columnName), $changedProperties);
- $columnDiff->fromColumn = $column;
- $tableDifferences->changedColumns[$column->getName()] = $columnDiff;
- $changes++;
- }
- $this->detectColumnRenamings($tableDifferences);
- $fromTableIndexes = $fromTable->getIndexes();
- $toTableIndexes = $toTable->getIndexes();
- /* See if all the indexes in "from" table exist in "to" table */
- foreach ($toTableIndexes as $indexName => $index) {
- if (($index->isPrimary() && $fromTable->hasPrimaryKey()) || $fromTable->hasIndex($indexName)) {
- continue;
- }
- $tableDifferences->addedIndexes[$indexName] = $index;
- $changes++;
- }
- /* See if there are any removed indexes in "to" table */
- foreach ($fromTableIndexes as $indexName => $index) {
- // See if index is removed in "to" table.
- if (
- ($index->isPrimary() && ! $toTable->hasPrimaryKey()) ||
- ! $index->isPrimary() && ! $toTable->hasIndex($indexName)
- ) {
- $tableDifferences->removedIndexes[$indexName] = $index;
- $changes++;
- continue;
- }
- // See if index has changed in "to" table.
- $toTableIndex = $index->isPrimary() ? $toTable->getPrimaryKey() : $toTable->getIndex($indexName);
- assert($toTableIndex instanceof Index);
- if (! $this->diffIndex($index, $toTableIndex)) {
- continue;
- }
- $tableDifferences->changedIndexes[$indexName] = $toTableIndex;
- $changes++;
- }
- $this->detectIndexRenamings($tableDifferences);
- $fromForeignKeys = $fromTable->getForeignKeys();
- $toForeignKeys = $toTable->getForeignKeys();
- foreach ($fromForeignKeys as $fromKey => $fromConstraint) {
- foreach ($toForeignKeys as $toKey => $toConstraint) {
- if ($this->diffForeignKey($fromConstraint, $toConstraint) === false) {
- unset($fromForeignKeys[$fromKey], $toForeignKeys[$toKey]);
- } else {
- if (strtolower($fromConstraint->getName()) === strtolower($toConstraint->getName())) {
- $tableDifferences->changedForeignKeys[] = $toConstraint;
- $changes++;
- unset($fromForeignKeys[$fromKey], $toForeignKeys[$toKey]);
- }
- }
- }
- }
- foreach ($fromForeignKeys as $fromConstraint) {
- $tableDifferences->removedForeignKeys[] = $fromConstraint;
- $changes++;
- }
- foreach ($toForeignKeys as $toConstraint) {
- $tableDifferences->addedForeignKeys[] = $toConstraint;
- $changes++;
- }
- return $changes ? $tableDifferences : false;
- }
- /**
- * Try to find columns that only changed their name, rename operations maybe cheaper than add/drop
- * however ambiguities between different possibilities should not lead to renaming at all.
- *
- * @return void
- */
- private function detectColumnRenamings(TableDiff $tableDifferences)
- {
- $renameCandidates = [];
- foreach ($tableDifferences->addedColumns as $addedColumnName => $addedColumn) {
- foreach ($tableDifferences->removedColumns as $removedColumn) {
- if (count($this->diffColumn($addedColumn, $removedColumn)) !== 0) {
- continue;
- }
- $renameCandidates[$addedColumn->getName()][] = [$removedColumn, $addedColumn, $addedColumnName];
- }
- }
- foreach ($renameCandidates as $candidateColumns) {
- if (count($candidateColumns) !== 1) {
- continue;
- }
- [$removedColumn, $addedColumn] = $candidateColumns[0];
- $removedColumnName = strtolower($removedColumn->getName());
- $addedColumnName = strtolower($addedColumn->getName());
- if (isset($tableDifferences->renamedColumns[$removedColumnName])) {
- continue;
- }
- $tableDifferences->renamedColumns[$removedColumnName] = $addedColumn;
- unset(
- $tableDifferences->addedColumns[$addedColumnName],
- $tableDifferences->removedColumns[$removedColumnName]
- );
- }
- }
- /**
- * Try to find indexes that only changed their name, rename operations maybe cheaper than add/drop
- * however ambiguities between different possibilities should not lead to renaming at all.
- *
- * @return void
- */
- private function detectIndexRenamings(TableDiff $tableDifferences)
- {
- $renameCandidates = [];
- // Gather possible rename candidates by comparing each added and removed index based on semantics.
- foreach ($tableDifferences->addedIndexes as $addedIndexName => $addedIndex) {
- foreach ($tableDifferences->removedIndexes as $removedIndex) {
- if ($this->diffIndex($addedIndex, $removedIndex)) {
- continue;
- }
- $renameCandidates[$addedIndex->getName()][] = [$removedIndex, $addedIndex, $addedIndexName];
- }
- }
- foreach ($renameCandidates as $candidateIndexes) {
- // If the current rename candidate contains exactly one semantically equal index,
- // we can safely rename it.
- // Otherwise it is unclear if a rename action is really intended,
- // therefore we let those ambiguous indexes be added/dropped.
- if (count($candidateIndexes) !== 1) {
- continue;
- }
- [$removedIndex, $addedIndex] = $candidateIndexes[0];
- $removedIndexName = strtolower($removedIndex->getName());
- $addedIndexName = strtolower($addedIndex->getName());
- if (isset($tableDifferences->renamedIndexes[$removedIndexName])) {
- continue;
- }
- $tableDifferences->renamedIndexes[$removedIndexName] = $addedIndex;
- unset(
- $tableDifferences->addedIndexes[$addedIndexName],
- $tableDifferences->removedIndexes[$removedIndexName]
- );
- }
- }
- /**
- * @return bool
- */
- public function diffForeignKey(ForeignKeyConstraint $key1, ForeignKeyConstraint $key2)
- {
- if (
- array_map('strtolower', $key1->getUnquotedLocalColumns())
- !== array_map('strtolower', $key2->getUnquotedLocalColumns())
- ) {
- return true;
- }
- if (
- array_map('strtolower', $key1->getUnquotedForeignColumns())
- !== array_map('strtolower', $key2->getUnquotedForeignColumns())
- ) {
- return true;
- }
- if ($key1->getUnqualifiedForeignTableName() !== $key2->getUnqualifiedForeignTableName()) {
- return true;
- }
- if ($key1->onUpdate() !== $key2->onUpdate()) {
- return true;
- }
- return $key1->onDelete() !== $key2->onDelete();
- }
- /**
- * Returns the difference between the columns
- *
- * If there are differences this method returns $field2, otherwise the
- * boolean false.
- *
- * @return string[]
- */
- public function diffColumn(Column $column1, Column $column2)
- {
- $properties1 = $column1->toArray();
- $properties2 = $column2->toArray();
- $changedProperties = [];
- if (get_class($properties1['type']) !== get_class($properties2['type'])) {
- $changedProperties[] = 'type';
- }
- foreach (['notnull', 'unsigned', 'autoincrement'] as $property) {
- if ($properties1[$property] === $properties2[$property]) {
- continue;
- }
- $changedProperties[] = $property;
- }
- // This is a very nasty hack to make comparator work with the legacy json_array type,
- // which should be killed in v3
- if ($this->isALegacyJsonComparison($properties1['type'], $properties2['type'])) {
- array_shift($changedProperties);
- $changedProperties[] = 'comment';
- }
- // Null values need to be checked additionally as they tell whether to create or drop a default value.
- // null != 0, null != false, null != '' etc. This affects platform's table alteration SQL generation.
- if (
- ($properties1['default'] === null) !== ($properties2['default'] === null)
- || $properties1['default'] != $properties2['default']
- ) {
- $changedProperties[] = 'default';
- }
- if (
- ($properties1['type'] instanceof Types\StringType && ! $properties1['type'] instanceof Types\GuidType) ||
- $properties1['type'] instanceof Types\BinaryType
- ) {
- // check if value of length is set at all, default value assumed otherwise.
- $length1 = $properties1['length'] ?: 255;
- $length2 = $properties2['length'] ?: 255;
- if ($length1 !== $length2) {
- $changedProperties[] = 'length';
- }
- if ($properties1['fixed'] !== $properties2['fixed']) {
- $changedProperties[] = 'fixed';
- }
- } elseif ($properties1['type'] instanceof Types\DecimalType) {
- if (($properties1['precision'] ?: 10) !== ($properties2['precision'] ?: 10)) {
- $changedProperties[] = 'precision';
- }
- if ($properties1['scale'] !== $properties2['scale']) {
- $changedProperties[] = 'scale';
- }
- }
- // A null value and an empty string are actually equal for a comment so they should not trigger a change.
- if (
- $properties1['comment'] !== $properties2['comment'] &&
- ! ($properties1['comment'] === null && $properties2['comment'] === '') &&
- ! ($properties2['comment'] === null && $properties1['comment'] === '')
- ) {
- $changedProperties[] = 'comment';
- }
- $customOptions1 = $column1->getCustomSchemaOptions();
- $customOptions2 = $column2->getCustomSchemaOptions();
- foreach (array_merge(array_keys($customOptions1), array_keys($customOptions2)) as $key) {
- if (! array_key_exists($key, $properties1) || ! array_key_exists($key, $properties2)) {
- $changedProperties[] = $key;
- } elseif ($properties1[$key] !== $properties2[$key]) {
- $changedProperties[] = $key;
- }
- }
- $platformOptions1 = $column1->getPlatformOptions();
- $platformOptions2 = $column2->getPlatformOptions();
- foreach (array_keys(array_intersect_key($platformOptions1, $platformOptions2)) as $key) {
- if ($properties1[$key] === $properties2[$key]) {
- continue;
- }
- $changedProperties[] = $key;
- }
- return array_unique($changedProperties);
- }
- /**
- * TODO: kill with fire on v3.0
- *
- * @deprecated
- */
- private function isALegacyJsonComparison(Types\Type $one, Types\Type $other): bool
- {
- if (! $one instanceof Types\JsonType || ! $other instanceof Types\JsonType) {
- return false;
- }
- return (! $one instanceof Types\JsonArrayType && $other instanceof Types\JsonArrayType)
- || (! $other instanceof Types\JsonArrayType && $one instanceof Types\JsonArrayType);
- }
- /**
- * 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.
- *
- * @return bool
- */
- public function diffIndex(Index $index1, Index $index2)
- {
- return ! ($index1->isFullfilledBy($index2) && $index2->isFullfilledBy($index1));
- }
- }
|