-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Comparator.php
435 lines (354 loc) · 14.3 KB
/
Comparator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Schema;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use function array_map;
use function assert;
use function count;
use function strtolower;
/**
* Compares two Schemas and return an instance of SchemaDiff.
*/
class Comparator
{
/** @internal The comparator can be only instantiated by a schema manager. */
public function __construct(private readonly AbstractPlatform $platform)
{
}
/**
* Returns the differences between the schemas.
*/
public function compareSchemas(Schema $oldSchema, Schema $newSchema): SchemaDiff
{
$createdSchemas = [];
$droppedSchemas = [];
$createdTables = [];
$alteredTables = [];
$droppedTables = [];
$createdSequences = [];
$alteredSequences = [];
$droppedSequences = [];
foreach ($newSchema->getNamespaces() as $newNamespace) {
if ($oldSchema->hasNamespace($newNamespace)) {
continue;
}
$createdSchemas[] = $newNamespace;
}
foreach ($oldSchema->getNamespaces() as $oldNamespace) {
if ($newSchema->hasNamespace($oldNamespace)) {
continue;
}
$droppedSchemas[] = $oldNamespace;
}
foreach ($newSchema->getTables() as $newTable) {
$newTableName = $newTable->getShortestName($newSchema->getName());
if (! $oldSchema->hasTable($newTableName)) {
$createdTables[] = $newSchema->getTable($newTableName);
} else {
$tableDiff = $this->compareTables(
$oldSchema->getTable($newTableName),
$newSchema->getTable($newTableName),
);
if (! $tableDiff->isEmpty()) {
$alteredTables[] = $tableDiff;
}
}
}
// Check if there are tables removed
foreach ($oldSchema->getTables() as $oldTable) {
$oldTableName = $oldTable->getShortestName($oldSchema->getName());
$oldTable = $oldSchema->getTable($oldTableName);
if ($newSchema->hasTable($oldTableName)) {
continue;
}
$droppedTables[] = $oldTable;
}
foreach ($newSchema->getSequences() as $newSequence) {
$newSequenceName = $newSequence->getShortestName($newSchema->getName());
if (! $oldSchema->hasSequence($newSequenceName)) {
if (! $this->isAutoIncrementSequenceInSchema($oldSchema, $newSequence)) {
$createdSequences[] = $newSequence;
}
} else {
if ($this->diffSequence($newSequence, $oldSchema->getSequence($newSequenceName))) {
$alteredSequences[] = $newSchema->getSequence($newSequenceName);
}
}
}
foreach ($oldSchema->getSequences() as $oldSequence) {
if ($this->isAutoIncrementSequenceInSchema($newSchema, $oldSequence)) {
continue;
}
$oldSequenceName = $oldSequence->getShortestName($oldSchema->getName());
if ($newSchema->hasSequence($oldSequenceName)) {
continue;
}
$droppedSequences[] = $oldSequence;
}
return new SchemaDiff(
$createdSchemas,
$droppedSchemas,
$createdTables,
$alteredTables,
$droppedTables,
$createdSequences,
$alteredSequences,
$droppedSequences,
);
}
private function isAutoIncrementSequenceInSchema(Schema $schema, Sequence $sequence): bool
{
foreach ($schema->getTables() as $table) {
if ($sequence->isAutoIncrementsFor($table)) {
return true;
}
}
return false;
}
public function diffSequence(Sequence $sequence1, Sequence $sequence2): bool
{
if ($sequence1->getAllocationSize() !== $sequence2->getAllocationSize()) {
return true;
}
return $sequence1->getInitialValue() !== $sequence2->getInitialValue();
}
/**
* Compares the tables and returns the difference between them.
*/
public function compareTables(Table $oldTable, Table $newTable): TableDiff
{
$addedColumns = [];
$modifiedColumns = [];
$droppedColumns = [];
$addedIndexes = [];
$modifiedIndexes = [];
$droppedIndexes = [];
$addedForeignKeys = [];
$modifiedForeignKeys = [];
$droppedForeignKeys = [];
$oldColumns = $oldTable->getColumns();
$newColumns = $newTable->getColumns();
// See if all the columns in the old table exist in the new table
foreach ($newColumns as $newColumn) {
$newColumnName = strtolower($newColumn->getName());
if ($oldTable->hasColumn($newColumnName)) {
continue;
}
$addedColumns[$newColumnName] = $newColumn;
}
// See if there are any removed columns in the new table
foreach ($oldColumns as $oldColumn) {
$oldColumnName = strtolower($oldColumn->getName());
// See if column is removed in the new table.
if (! $newTable->hasColumn($oldColumnName)) {
$droppedColumns[$oldColumnName] = $oldColumn;
continue;
}
$newColumn = $newTable->getColumn($oldColumnName);
if ($this->columnsEqual($oldColumn, $newColumn)) {
continue;
}
$modifiedColumns[$oldColumnName] = new ColumnDiff($oldColumn, $newColumn);
}
$renamedColumnNames = $newTable->getRenamedColumns();
foreach ($addedColumns as $addedColumnName => $addedColumn) {
if (! isset($renamedColumnNames[$addedColumn->getName()])) {
continue;
}
$removedColumnName = strtolower($renamedColumnNames[$addedColumn->getName()]);
// Explicitly renamed columns need to be diffed, because their types can also have changed
$modifiedColumns[$removedColumnName] = new ColumnDiff(
$droppedColumns[$removedColumnName],
$addedColumn,
);
unset(
$addedColumns[$addedColumnName],
$droppedColumns[$removedColumnName],
);
}
$this->detectRenamedColumns($modifiedColumns, $addedColumns, $droppedColumns);
$oldIndexes = $oldTable->getIndexes();
$newIndexes = $newTable->getIndexes();
// See if all the indexes from the old table exist in the new one
foreach ($newIndexes as $newIndexName => $newIndex) {
if (($newIndex->isPrimary() && $oldTable->getPrimaryKey() !== null) || $oldTable->hasIndex($newIndexName)) {
continue;
}
$addedIndexes[$newIndexName] = $newIndex;
}
// See if there are any removed indexes in the new table
foreach ($oldIndexes as $oldIndexName => $oldIndex) {
// See if the index is removed in the new table.
if (
($oldIndex->isPrimary() && $newTable->getPrimaryKey() === null) ||
! $oldIndex->isPrimary() && ! $newTable->hasIndex($oldIndexName)
) {
$droppedIndexes[$oldIndexName] = $oldIndex;
continue;
}
// See if index has changed in the new table.
$newIndex = $oldIndex->isPrimary() ? $newTable->getPrimaryKey() : $newTable->getIndex($oldIndexName);
assert($newIndex instanceof Index);
if (! $this->diffIndex($oldIndex, $newIndex)) {
continue;
}
$modifiedIndexes[] = $newIndex;
}
$renamedIndexes = $this->detectRenamedIndexes($addedIndexes, $droppedIndexes);
$oldForeignKeys = $oldTable->getForeignKeys();
$newForeignKeys = $newTable->getForeignKeys();
foreach ($oldForeignKeys as $oldKey => $oldForeignKey) {
foreach ($newForeignKeys as $newKey => $newForeignKey) {
if ($this->diffForeignKey($oldForeignKey, $newForeignKey) === false) {
unset($oldForeignKeys[$oldKey], $newForeignKeys[$newKey]);
} else {
if (strtolower($oldForeignKey->getName()) === strtolower($newForeignKey->getName())) {
$modifiedForeignKeys[] = $newForeignKey;
unset($oldForeignKeys[$oldKey], $newForeignKeys[$newKey]);
}
}
}
}
foreach ($oldForeignKeys as $oldForeignKey) {
$droppedForeignKeys[] = $oldForeignKey;
}
foreach ($newForeignKeys as $newForeignKey) {
$addedForeignKeys[] = $newForeignKey;
}
return new TableDiff(
$oldTable,
addedColumns: $addedColumns,
changedColumns: $modifiedColumns,
droppedColumns: $droppedColumns,
addedIndexes: $addedIndexes,
modifiedIndexes: $modifiedIndexes,
droppedIndexes: $droppedIndexes,
renamedIndexes: $renamedIndexes,
addedForeignKeys: $addedForeignKeys,
modifiedForeignKeys: $modifiedForeignKeys,
droppedForeignKeys: $droppedForeignKeys,
);
}
/**
* 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.
*
* @param array<string,ColumnDiff> $modifiedColumns
* @param array<string,Column> $addedColumns
* @param array<string,Column> $removedColumns
*/
private function detectRenamedColumns(array &$modifiedColumns, array &$addedColumns, array &$removedColumns): void
{
/** @var array<string, array<array<Column>>> $candidatesByName */
$candidatesByName = [];
foreach ($addedColumns as $addedColumnName => $addedColumn) {
foreach ($removedColumns as $removedColumn) {
if (! $this->columnsEqual($addedColumn, $removedColumn)) {
continue;
}
$candidatesByName[$addedColumnName][] = [$removedColumn, $addedColumn];
}
}
foreach ($candidatesByName as $addedColumnName => $candidates) {
if (count($candidates) !== 1) {
continue;
}
[$oldColumn, $newColumn] = $candidates[0];
$oldColumnName = strtolower($oldColumn->getName());
if (isset($modifiedColumns[$oldColumnName])) {
continue;
}
$modifiedColumns[$oldColumnName] = new ColumnDiff(
$oldColumn,
$newColumn,
);
unset(
$addedColumns[$addedColumnName],
$removedColumns[$oldColumnName],
);
}
}
/**
* 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.
*
* @param array<string,Index> $addedIndexes
* @param array<string,Index> $removedIndexes
*
* @return array<string,Index>
*/
private function detectRenamedIndexes(array &$addedIndexes, array &$removedIndexes): array
{
$candidatesByName = [];
// Gather possible rename candidates by comparing each added and removed index based on semantics.
foreach ($addedIndexes as $addedIndexName => $addedIndex) {
foreach ($removedIndexes as $removedIndex) {
if ($this->diffIndex($addedIndex, $removedIndex)) {
continue;
}
$candidatesByName[$addedIndex->getName()][] = [$removedIndex, $addedIndex, $addedIndexName];
}
}
$renamedIndexes = [];
foreach ($candidatesByName as $candidates) {
// 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($candidates) !== 1) {
continue;
}
[$removedIndex, $addedIndex] = $candidates[0];
$removedIndexName = strtolower($removedIndex->getName());
$addedIndexName = strtolower($addedIndex->getName());
if (isset($renamedIndexes[$removedIndexName])) {
continue;
}
$renamedIndexes[$removedIndexName] = $addedIndex;
unset(
$addedIndexes[$addedIndexName],
$removedIndexes[$removedIndexName],
);
}
return $renamedIndexes;
}
protected function diffForeignKey(ForeignKeyConstraint $key1, ForeignKeyConstraint $key2): bool
{
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();
}
/**
* Compares the definitions of the given columns
*/
protected function columnsEqual(Column $column1, Column $column2): bool
{
return $this->platform->columnsEqual($column1, $column2);
}
/**
* Finds the difference between the indexes $index1 and $index2.
*
* Compares $index1 with $index2 and returns true if there are any
* differences or false in case there are no differences.
*/
protected function diffIndex(Index $index1, Index $index2): bool
{
return ! ($index1->isFulfilledBy($index2) && $index2->isFulfilledBy($index1));
}
}