-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathPlan.php
More file actions
588 lines (530 loc) · 19.6 KB
/
Plan.php
File metadata and controls
588 lines (530 loc) · 19.6 KB
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
<?php
declare(strict_types=1);
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace Migrations\Db\Plan;
use ArrayObject;
use Migrations\Db\Action\AddCheckConstraint;
use Migrations\Db\Action\AddColumn;
use Migrations\Db\Action\AddForeignKey;
use Migrations\Db\Action\AddIndex;
use Migrations\Db\Action\AddPartition;
use Migrations\Db\Action\ChangeColumn;
use Migrations\Db\Action\ChangeComment;
use Migrations\Db\Action\ChangePrimaryKey;
use Migrations\Db\Action\CreateTable;
use Migrations\Db\Action\CreateTrigger;
use Migrations\Db\Action\CreateView;
use Migrations\Db\Action\DropCheckConstraint;
use Migrations\Db\Action\DropForeignKey;
use Migrations\Db\Action\DropIndex;
use Migrations\Db\Action\DropPartition;
use Migrations\Db\Action\DropTable;
use Migrations\Db\Action\DropTrigger;
use Migrations\Db\Action\DropView;
use Migrations\Db\Action\RemoveColumn;
use Migrations\Db\Action\RenameColumn;
use Migrations\Db\Action\RenameTable;
use Migrations\Db\Action\SetPartitioning;
use Migrations\Db\Adapter\AdapterInterface;
use Migrations\Db\Plan\Solver\ActionSplitter;
use Migrations\Db\Table\TableMetadata;
/**
* A Plan takes an Intent and transforms int into a sequence of
* instructions that can be correctly executed by an AdapterInterface.
*
* The main focus of Plan is to arrange the actions in the most efficient
* way possible for the database.
*/
class Plan
{
/**
* List of tables to be created
*
* @var \Migrations\Db\Plan\NewTable[]
*/
protected array $tableCreates = [];
/**
* List of table updates
*
* @var \Migrations\Db\Plan\AlterTable[]
*/
protected array $tableUpdates = [];
/**
* List of table removals or renames
*
* @var \Migrations\Db\Plan\AlterTable[]
*/
protected array $tableMoves = [];
/**
* List of index additions or removals
*
* @var \Migrations\Db\Plan\AlterTable[]
*/
protected array $indexes = [];
/**
* List of constraint additions or removals
*
* @var \Migrations\Db\Plan\AlterTable[]
*/
protected array $constraints = [];
/**
* List of partition additions or removals
*
* @var \Migrations\Db\Plan\AlterTable[]
*/
protected array $partitions = [];
/**
* List of dropped columns
*
* @var \Migrations\Db\Plan\AlterTable[]
*/
protected array $columnRemoves = [];
/**
* List of view and trigger operations
*
* @var \Migrations\Db\Plan\AlterTable[]
*/
protected array $viewsAndTriggers = [];
/**
* Constructor
*
* @param \Migrations\Db\Plan\Intent $intent All the actions that should be executed
*/
public function __construct(Intent $intent)
{
$this->createPlan($intent->getActions());
}
/**
* Parses the given Intent and creates the separate steps to execute
*
* @param \Migrations\Db\Action\Action[] $actions The actions to use for the plan
* @return void
*/
protected function createPlan(array $actions): void
{
$this->gatherCreates($actions);
$this->gatherUpdates($actions);
$this->gatherTableMoves($actions);
$this->gatherIndexes($actions);
$this->gatherConstraints($actions);
$this->gatherPartitions($actions);
$this->gatherViewsAndTriggers($actions);
$this->resolveConflicts();
}
/**
* Returns a nested list of all the steps to execute
*
* @return \Migrations\Db\Plan\AlterTable[][]
*/
protected function updatesSequence(): array
{
return [
$this->tableUpdates,
$this->constraints,
$this->indexes,
$this->partitions,
$this->viewsAndTriggers,
$this->columnRemoves,
$this->tableMoves,
];
}
/**
* Returns a nested list of all the steps to execute in inverse order
*
* @return \Migrations\Db\Plan\AlterTable[][]
*/
protected function inverseUpdatesSequence(): array
{
return [
$this->constraints,
$this->tableMoves,
$this->viewsAndTriggers,
$this->partitions,
$this->indexes,
$this->columnRemoves,
$this->tableUpdates,
];
}
/**
* Executes this plan using the given AdapterInterface
*
* @param \Migrations\Db\Adapter\AdapterInterface $executor The executor object for the plan
* @return void
*/
public function execute(AdapterInterface $executor): void
{
foreach ($this->tableCreates as $newTable) {
$executor->createTable($newTable->getTable(), $newTable->getColumns(), $newTable->getIndexes());
}
foreach ($this->updatesSequence() as $updates) {
foreach ($updates as $update) {
$executor->executeActions($update->getTable(), $update->getActions());
}
}
}
/**
* Executes the inverse plan (rollback the actions) with the given AdapterInterface:w
*
* @param \Migrations\Db\Adapter\AdapterInterface $executor The executor object for the plan
* @return void
*/
public function executeInverse(AdapterInterface $executor): void
{
foreach ($this->inverseUpdatesSequence() as $updates) {
foreach ($updates as $update) {
$executor->executeActions($update->getTable(), $update->getActions());
}
}
foreach ($this->tableCreates as $newTable) {
$executor->createTable($newTable->getTable(), $newTable->getColumns(), $newTable->getIndexes());
}
}
/**
* Deletes certain actions from the plan if they are found to be conflicting or redundant.
*
* @return void
*/
protected function resolveConflicts(): void
{
foreach ($this->tableMoves as $alterTable) {
foreach ($alterTable->getActions() as $action) {
if ($action instanceof DropTable) {
$this->tableUpdates = $this->forgetTable($action->getTable(), $this->tableUpdates);
$this->constraints = $this->forgetTable($action->getTable(), $this->constraints);
$this->indexes = $this->forgetTable($action->getTable(), $this->indexes);
$this->partitions = $this->forgetTable($action->getTable(), $this->partitions);
$this->columnRemoves = $this->forgetTable($action->getTable(), $this->columnRemoves);
}
}
}
// Renaming a column and then changing the renamed column is something people do,
// but it is a conflicting action. Luckily solving the conflict can be done by moving
// the ChangeColumn action to another AlterTable.
$splitter = new ActionSplitter(
RenameColumn::class,
ChangeColumn::class,
function (RenameColumn $a, ChangeColumn $b) {
return $a->getNewName() === $b->getColumnName();
},
);
$tableUpdates = [];
foreach ($this->tableUpdates as $update) {
$tableUpdates = array_merge($tableUpdates, $splitter($update));
}
$this->tableUpdates = $tableUpdates;
// Dropping indexes used by foreign keys is a conflict, but one we can resolve
// if the foreign key is also scheduled to be dropped. If we can find such a case,
// we force the execution of the index drop after the foreign key is dropped.
// Changing constraint properties sometimes require dropping it and then
// creating it again with the new stuff. Unfortunately, we have already bundled
// everything together in as few AlterTable statements as we could, so we need to
// resolve this conflict manually.
$splitter = new ActionSplitter(
DropForeignKey::class,
AddForeignKey::class,
function (DropForeignKey $a, AddForeignKey $b) {
return $a->getForeignKey()->getColumns() === $b->getForeignKey()->getColumns();
},
);
$constraints = [];
foreach ($this->constraints as $constraint) {
$constraints = array_merge(
$constraints,
$splitter($this->remapContraintAndIndexConflicts($constraint)),
);
}
$this->constraints = $constraints;
}
/**
* Deletes all actions related to the given table and keeps the
* rest
*
* @param \Migrations\Db\Table\TableMetadata $table The table to find in the list of actions
* @param \Migrations\Db\Plan\AlterTable[] $actions The actions to transform
* @return \Migrations\Db\Plan\AlterTable[] The list of actions without actions for the given table
*/
protected function forgetTable(TableMetadata $table, array $actions): array
{
$result = [];
foreach ($actions as $action) {
if ($action->getTable()->getName() === $table->getName()) {
continue;
}
$result[] = $action;
}
return $result;
}
/**
* Finds all DropForeignKey actions in an AlterTable and moves
* all conflicting DropIndex action in `$this->indexes` into the
* given AlterTable.
*
* @param \Migrations\Db\Plan\AlterTable $alter The collection of actions to inspect
* @return \Migrations\Db\Plan\AlterTable The updated AlterTable object. This function
* has the side effect of changing the `$this->indexes` property.
*/
protected function remapContraintAndIndexConflicts(AlterTable $alter): AlterTable
{
$newAlter = new AlterTable($alter->getTable());
foreach ($alter->getActions() as $action) {
$newAlter->addAction($action);
if ($action instanceof DropForeignKey) {
[$this->indexes, $dropIndexActions] = $this->forgetDropIndex(
$action->getTable(),
$action->getForeignKey()->getColumns(),
$this->indexes,
);
foreach ($dropIndexActions as $dropIndexAction) {
$newAlter->addAction($dropIndexAction);
}
}
}
return $newAlter;
}
/**
* Deletes any DropIndex actions for the given table and exact columns
*
* @param \Migrations\Db\Table\TableMetadata $table The table to find in the list of actions
* @param string[] $columns The column names to match
* @param \Migrations\Db\Plan\AlterTable[] $actions The actions to transform
* @return array A tuple containing the list of actions without actions for dropping the index
* and a list of drop index actions that were removed.
*/
protected function forgetDropIndex(TableMetadata $table, array $columns, array $actions): array
{
$dropIndexActions = new ArrayObject();
$indexes = array_map(function ($alter) use ($table, $columns, $dropIndexActions) {
if ($alter->getTable()->getName() !== $table->getName()) {
return $alter;
}
$newAlter = new AlterTable($table);
foreach ($alter->getActions() as $action) {
if ($action instanceof DropIndex && $action->getIndex()->getColumns() === $columns) {
$dropIndexActions->append($action);
} else {
$newAlter->addAction($action);
}
}
return $newAlter;
}, $actions);
return [$indexes, $dropIndexActions->getArrayCopy()];
}
/**
* Deletes any RemoveColumn actions for the given table and exact columns
*
* @param \Migrations\Db\Table\TableMetadata $table The table to find in the list of actions
* @param string[] $columns The column names to match
* @param \Migrations\Db\Plan\AlterTable[] $actions The actions to transform
* @return array A tuple containing the list of actions without actions for removing the column
* and a list of remove column actions that were removed.
*/
protected function forgetRemoveColumn(TableMetadata $table, array $columns, array $actions): array
{
$removeColumnActions = new ArrayObject();
$indexes = array_map(function ($alter) use ($table, $columns, $removeColumnActions) {
if ($alter->getTable()->getName() !== $table->getName()) {
return $alter;
}
$newAlter = new AlterTable($table);
foreach ($alter->getActions() as $action) {
if ($action instanceof RemoveColumn && in_array($action->getColumn()->getName(), $columns, true)) {
$removeColumnActions->append($action);
} else {
$newAlter->addAction($action);
}
}
return $newAlter;
}, $actions);
return [$indexes, $removeColumnActions->getArrayCopy()];
}
/**
* Collects all table creation actions from the given intent
*
* @param \Migrations\Db\Action\Action[] $actions The actions to parse
* @return void
*/
protected function gatherCreates(array $actions): void
{
foreach ($actions as $action) {
if ($action instanceof CreateTable) {
$this->tableCreates[$action->getTable()->getName()] = new NewTable($action->getTable());
}
}
foreach ($actions as $action) {
if (
($action instanceof AddColumn || $action instanceof AddIndex)
&& isset($this->tableCreates[$action->getTable()->getName()])
) {
$table = $action->getTable();
if ($action instanceof AddColumn) {
$this->tableCreates[$table->getName()]->addColumn($action->getColumn());
}
if ($action instanceof AddIndex) {
$this->tableCreates[$table->getName()]->addIndex($action->getIndex());
}
}
}
}
/**
* Collects all alter table actions from the given intent
*
* @param \Migrations\Db\Action\Action[] $actions The actions to parse
* @return void
*/
protected function gatherUpdates(array $actions): void
{
foreach ($actions as $action) {
if (
!($action instanceof AddColumn)
&& !($action instanceof ChangeColumn)
&& !($action instanceof RemoveColumn)
&& !($action instanceof RenameColumn)
) {
continue;
} elseif (isset($this->tableCreates[$action->getTable()->getName()])) {
continue;
}
$table = $action->getTable();
$name = $table->getName();
if ($action instanceof RemoveColumn) {
if (!isset($this->columnRemoves[$name])) {
$this->columnRemoves[$name] = new AlterTable($table);
}
$this->columnRemoves[$name]->addAction($action);
} else {
if (!isset($this->tableUpdates[$name])) {
$this->tableUpdates[$name] = new AlterTable($table);
}
$this->tableUpdates[$name]->addAction($action);
}
}
}
/**
* Collects all alter table drop and renames from the given intent
*
* @param \Migrations\Db\Action\Action[] $actions The actions to parse
* @return void
*/
protected function gatherTableMoves(array $actions): void
{
foreach ($actions as $action) {
if (
!($action instanceof DropTable)
&& !($action instanceof RenameTable)
&& !($action instanceof ChangePrimaryKey)
&& !($action instanceof ChangeComment)
) {
continue;
}
$table = $action->getTable();
$name = $table->getName();
if (!isset($this->tableMoves[$name])) {
$this->tableMoves[$name] = new AlterTable($table);
}
$this->tableMoves[$name]->addAction($action);
}
}
/**
* Collects all index creation and drops from the given intent
*
* @param \Migrations\Db\Action\Action[] $actions The actions to parse
* @return void
*/
protected function gatherIndexes(array $actions): void
{
foreach ($actions as $action) {
if (!($action instanceof AddIndex) && !($action instanceof DropIndex)) {
continue;
} elseif (isset($this->tableCreates[$action->getTable()->getName()])) {
continue;
}
$table = $action->getTable();
$name = $table->getName();
if (!isset($this->indexes[$name])) {
$this->indexes[$name] = new AlterTable($table);
}
$this->indexes[$name]->addAction($action);
}
}
/**
* Collects all constraint creation and drops from the given intent
*
* This includes foreign keys and check constraints.
*
* @param \Migrations\Db\Action\Action[] $actions The actions to parse
* @return void
*/
protected function gatherConstraints(array $actions): void
{
foreach ($actions as $action) {
if (
!($action instanceof AddForeignKey)
&& !($action instanceof DropForeignKey)
&& !($action instanceof AddCheckConstraint)
&& !($action instanceof DropCheckConstraint)
) {
continue;
}
$table = $action->getTable();
$name = $table->getName();
if (!isset($this->constraints[$name])) {
$this->constraints[$name] = new AlterTable($table);
}
$this->constraints[$name]->addAction($action);
}
}
/**
* Collects all partition creation and drops from the given intent
*
* @param \Migrations\Db\Action\Action[] $actions The actions to parse
* @return void
*/
protected function gatherPartitions(array $actions): void
{
foreach ($actions as $action) {
if (
!($action instanceof AddPartition)
&& !($action instanceof DropPartition)
&& !($action instanceof SetPartitioning)
) {
continue;
} elseif (isset($this->tableCreates[$action->getTable()->getName()])) {
continue;
}
$table = $action->getTable();
$name = $table->getName();
if (!isset($this->partitions[$name])) {
$this->partitions[$name] = new AlterTable($table);
}
$this->partitions[$name]->addAction($action);
}
}
/**
* Collects all view and trigger creation and drops from the given intent
*
* @param \Migrations\Db\Action\Action[] $actions The actions to parse
* @return void
*/
protected function gatherViewsAndTriggers(array $actions): void
{
foreach ($actions as $action) {
if (
!($action instanceof CreateView)
&& !($action instanceof DropView)
&& !($action instanceof CreateTrigger)
&& !($action instanceof DropTrigger)
) {
continue;
}
$table = $action->getTable();
$name = $table->getName();
if (!isset($this->viewsAndTriggers[$name])) {
$this->viewsAndTriggers[$name] = new AlterTable($table);
}
$this->viewsAndTriggers[$name]->addAction($action);
}
}
}