Failed Conditions
Push — master ( ac0e13...24dbc4 )
by Sergei
22s queued 15s
created

src/Schema/AbstractSchemaManager.php (1 issue)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\DBAL\Schema;
6
7
use Doctrine\DBAL\Connection;
8
use Doctrine\DBAL\ConnectionException;
9
use Doctrine\DBAL\DBALException;
10
use Doctrine\DBAL\Event\SchemaColumnDefinitionEventArgs;
11
use Doctrine\DBAL\Event\SchemaIndexDefinitionEventArgs;
12
use Doctrine\DBAL\Events;
13
use Doctrine\DBAL\Exception\DatabaseRequired;
14
use Doctrine\DBAL\Platforms\AbstractPlatform;
15
use Doctrine\DBAL\Platforms\Exception\NotSupported;
16
use Throwable;
17
use function array_filter;
18
use function array_intersect;
19
use function array_map;
20
use function array_shift;
21
use function array_values;
22
use function assert;
23
use function count;
24
use function is_array;
25
use function preg_match;
26
use function strtolower;
27
28
/**
29
 * Base class for schema managers. Schema managers are used to inspect and/or
30
 * modify the database schema/structure.
31
 */
32
abstract class AbstractSchemaManager
33
{
34
    /**
35
     * Holds instance of the Doctrine connection for this schema manager.
36
     *
37
     * @var Connection
38
     */
39
    protected $_conn;
40
41
    /**
42
     * Holds instance of the database platform used for this schema manager.
43
     *
44
     * @var AbstractPlatform
45
     */
46
    protected $_platform;
47
48
    /**
49
     * Constructor. Accepts the Connection instance to manage the schema for.
50
     */
51
    public function __construct(Connection $conn, ?AbstractPlatform $platform = null)
52
    {
53
        $this->_conn     = $conn;
54
        $this->_platform = $platform ?: $this->_conn->getDatabasePlatform();
55
    }
56
57
    /**
58
     * Returns the associated platform.
59
     */
60
    public function getDatabasePlatform() : AbstractPlatform
61
    {
62
        return $this->_platform;
63
    }
64
65
    /**
66
     * Tries any method on the schema manager. Normally a method throws an
67
     * exception when your DBMS doesn't support it or if an error occurs.
68
     * This method allows you to try and method on your SchemaManager
69
     * instance and will return false if it does not work or is not supported.
70
     *
71
     * <code>
72
     * $result = $sm->tryMethod('dropView', 'view_name');
73
     * </code>
74
     *
75
     * @param mixed ...$arguments
76
     *
77
     * @return mixed
78
     */
79
    public function tryMethod(string $method, ...$arguments)
80
    {
81
        try {
82
            return $this->$method(...$arguments);
83
        } catch (Throwable $e) {
84
            return false;
85
        }
86
    }
87
88
    /**
89
     * Lists the available databases for this connection.
90
     *
91
     * @return array<int, string>
92
     */
93
    public function listDatabases() : array
94
    {
95
        $sql = $this->_platform->getListDatabasesSQL();
96
97
        $databases = $this->_conn->fetchAll($sql);
98
99
        return $this->_getPortableDatabasesList($databases);
100
    }
101
102
    /**
103
     * Returns a list of all namespaces in the current database.
104
     *
105
     * @return array<int, string>
106
     */
107
    public function listNamespaceNames() : array
108
    {
109
        $sql = $this->_platform->getListNamespacesSQL();
110
111
        $namespaces = $this->_conn->fetchAll($sql);
112
113
        return $this->getPortableNamespacesList($namespaces);
114
    }
115
116
    /**
117
     * Lists the available sequences for this connection.
118
     *
119
     * @return array<int, Sequence>
120
     */
121
    public function listSequences(?string $database = null) : array
122
    {
123
        $database = $this->ensureDatabase(
124
            $database ?? $this->_conn->getDatabase(),
125
            __METHOD__
126
        );
127
128
        $sql = $this->_platform->getListSequencesSQL($database);
129
130
        $sequences = $this->_conn->fetchAll($sql);
131
132
        return $this->filterAssetNames($this->_getPortableSequencesList($sequences));
133
    }
134
135
    /**
136
     * Lists the columns for a given table.
137
     *
138
     * In contrast to other libraries and to the old version of Doctrine,
139
     * this column definition does try to contain the 'primary' field for
140
     * the reason that it is not portable across different RDBMS. Use
141
     * {@see listTableIndexes($tableName)} to retrieve the primary key
142
     * of a table. Where a RDBMS specifies more details, these are held
143
     * in the platformDetails array.
144
     *
145
     * @return array<string, Column>
146
     */
147
    public function listTableColumns(string $table, ?string $database = null) : array
148
    {
149
        $database = $this->ensureDatabase(
150
            $database ?? $this->_conn->getDatabase(),
151
            __METHOD__
152
        );
153
154
        $sql = $this->_platform->getListTableColumnsSQL($table, $database);
155
156
        $tableColumns = $this->_conn->fetchAll($sql);
157
158
        return $this->_getPortableTableColumnList($table, $database, $tableColumns);
159
    }
160
161
    /**
162
     * Lists the indexes for a given table returning an array of Index instances.
163
     *
164
     * Keys of the portable indexes list are all lower-cased.
165
     *
166
     * @return array<string, Index>
167
     */
168
    public function listTableIndexes(string $table) : array
169
    {
170
        $sql = $this->_platform->getListTableIndexesSQL($table, $this->_conn->getDatabase());
171
172
        $tableIndexes = $this->_conn->fetchAll($sql);
173
174
        return $this->_getPortableTableIndexesList($tableIndexes, $table);
175
    }
176
177
    /**
178
     * Returns true if all the given tables exist.
179
     *
180
     * @param array<int, string> $tableNames
181
     */
182
    public function tablesExist(array $tableNames) : bool
183
    {
184
        $tableNames = array_map('strtolower', $tableNames);
185
186
        return count($tableNames) === count(array_intersect($tableNames, array_map('strtolower', $this->listTableNames())));
187
    }
188
189
    public function tableExists(string $tableName) : bool
190
    {
191
        return $this->tablesExist([$tableName]);
192
    }
193
194
    /**
195
     * Returns a list of all tables in the current database.
196
     *
197
     * @return array<int, string>
198
     */
199
    public function listTableNames() : array
200
    {
201
        $sql = $this->_platform->getListTablesSQL();
202
203
        $tables     = $this->_conn->fetchAll($sql);
204
        $tableNames = $this->_getPortableTablesList($tables);
205
206
        return $this->filterAssetNames($tableNames);
207
    }
208
209
    /**
210
     * Filters asset names if they are configured to return only a subset of all
211
     * the found elements.
212
     *
213
     * @param array<int, mixed> $assetNames
214
     *
215
     * @return array<int, mixed>
216
     */
217
    protected function filterAssetNames(array $assetNames) : array
218
    {
219
        $filter = $this->_conn->getConfiguration()->getSchemaAssetsFilter();
220
        if (! $filter) {
221
            return $assetNames;
222
        }
223
224
        return array_values(array_filter($assetNames, $filter));
225
    }
226
227
    /**
228
     * Lists the tables for this connection.
229
     *
230
     * @return array<int, Table>
231
     */
232
    public function listTables() : array
233
    {
234
        $tableNames = $this->listTableNames();
235
236
        $tables = [];
237
        foreach ($tableNames as $tableName) {
238
            $tables[] = $this->listTableDetails($tableName);
239
        }
240
241
        return $tables;
242
    }
243
244
    public function listTableDetails(string $tableName) : Table
245
    {
246
        $columns     = $this->listTableColumns($tableName);
247
        $foreignKeys = [];
248
249
        if ($this->_platform->supportsForeignKeyConstraints()) {
250
            $foreignKeys = $this->listTableForeignKeys($tableName);
251
        }
252
253
        $indexes = $this->listTableIndexes($tableName);
254
255
        return new Table($tableName, $columns, $indexes, [], $foreignKeys, []);
256
    }
257
258
    /**
259
     * Lists the views this connection has.
260
     *
261
     * @return array<string, View>
262
     */
263
    public function listViews() : array
264
    {
265
        $database = $this->ensureDatabase(
266
            $this->_conn->getDatabase(),
267
            __METHOD__
268
        );
269
270
        $sql   = $this->_platform->getListViewsSQL($database);
271
        $views = $this->_conn->fetchAll($sql);
272
273
        return $this->_getPortableViewsList($views);
274
    }
275
276
    /**
277
     * Lists the foreign keys for the given table.
278
     *
279
     * @return array<int|string, ForeignKeyConstraint>
280
     */
281
    public function listTableForeignKeys(string $table, ?string $database = null) : array
282
    {
283
        if ($database === null) {
284
            $database = $this->_conn->getDatabase();
285
        }
286
287
        $sql              = $this->_platform->getListTableForeignKeysSQL($table, $database);
288
        $tableForeignKeys = $this->_conn->fetchAll($sql);
289
290
        return $this->_getPortableTableForeignKeysList($tableForeignKeys);
291
    }
292
293
    /* drop*() Methods */
294
295
    /**
296
     * Drops a database.
297
     *
298
     * NOTE: You can not drop the database this SchemaManager is currently connected to.
299
     */
300
    public function dropDatabase(string $database) : void
301
    {
302
        $this->_execSql($this->_platform->getDropDatabaseSQL($database));
303
    }
304
305
    /**
306
     * Drops the given table.
307
     */
308
    public function dropTable(string $tableName) : void
309
    {
310
        $this->_execSql($this->_platform->getDropTableSQL($tableName));
311
    }
312
313
    /**
314
     * Drops the index from the given table.
315
     *
316
     * @param Index|string $index The name of the index.
317
     * @param Table|string $table The name of the table.
318
     */
319
    public function dropIndex($index, $table) : void
320
    {
321
        if ($index instanceof Index) {
322
            $index = $index->getQuotedName($this->_platform);
323
        }
324
325
        $this->_execSql($this->_platform->getDropIndexSQL($index, $table));
326
    }
327
328
    /**
329
     * Drops the constraint from the given table.
330
     *
331
     * @param Table|string $table The name of the table.
332
     */
333
    public function dropConstraint(Constraint $constraint, $table) : void
334
    {
335
        $this->_execSql($this->_platform->getDropConstraintSQL($constraint, $table));
336
    }
337
338
    /**
339
     * Drops a foreign key from a table.
340
     *
341
     * @param ForeignKeyConstraint|string $foreignKey The name of the foreign key.
342
     * @param Table|string                $table      The name of the table with the foreign key.
343
     */
344
    public function dropForeignKey($foreignKey, $table) : void
345
    {
346
        $this->_execSql($this->_platform->getDropForeignKeySQL($foreignKey, $table));
347
    }
348
349
    /**
350
     * Drops a sequence with a given name.
351
     */
352
    public function dropSequence(string $name) : void
353
    {
354
        $this->_execSql($this->_platform->getDropSequenceSQL($name));
355
    }
356
357
    /**
358
     * Drops a view.
359
     */
360
    public function dropView(string $name) : void
361
    {
362
        $this->_execSql($this->_platform->getDropViewSQL($name));
363
    }
364
365
    /* create*() Methods */
366
367
    /**
368
     * Creates a new database.
369
     */
370
    public function createDatabase(string $database) : void
371
    {
372
        $this->_execSql($this->_platform->getCreateDatabaseSQL($database));
373
    }
374
375
    /**
376
     * Creates a new table.
377
     */
378
    public function createTable(Table $table) : void
379
    {
380
        $createFlags = AbstractPlatform::CREATE_INDEXES|AbstractPlatform::CREATE_FOREIGNKEYS;
381
        $this->_execSql($this->_platform->getCreateTableSQL($table, $createFlags));
382
    }
383
384
    /**
385
     * Creates a new sequence.
386
     *
387
     * @throws ConnectionException If something fails at database level.
388
     */
389
    public function createSequence(Sequence $sequence) : void
390
    {
391
        $this->_execSql($this->_platform->getCreateSequenceSQL($sequence));
392
    }
393
394
    /**
395
     * Creates a constraint on a table.
396
     *
397
     * @param Table|string $table
398
     */
399
    public function createConstraint(Constraint $constraint, $table) : void
400
    {
401
        $this->_execSql($this->_platform->getCreateConstraintSQL($constraint, $table));
402
    }
403
404
    /**
405
     * Creates a new index on a table.
406
     *
407
     * @param Table|string $table The name of the table on which the index is to be created.
408
     */
409
    public function createIndex(Index $index, $table) : void
410
    {
411
        $this->_execSql($this->_platform->getCreateIndexSQL($index, $table));
412
    }
413
414
    /**
415
     * Creates a new foreign key.
416
     *
417
     * @param ForeignKeyConstraint $foreignKey The ForeignKey instance.
418
     * @param Table|string         $table      The name of the table on which the foreign key is to be created.
419
     */
420
    public function createForeignKey(ForeignKeyConstraint $foreignKey, $table) : void
421
    {
422
        $this->_execSql($this->_platform->getCreateForeignKeySQL($foreignKey, $table));
423
    }
424
425
    /**
426
     * Creates a new view.
427
     */
428
    public function createView(View $view) : void
429
    {
430
        $this->_execSql($this->_platform->getCreateViewSQL($view->getQuotedName($this->_platform), $view->getSql()));
431
    }
432
433
    /* dropAndCreate*() Methods */
434
435
    /**
436
     * Drops and creates a constraint.
437
     *
438
     * @see dropConstraint()
439
     * @see createConstraint()
440
     *
441
     * @param Table|string $table
442
     */
443
    public function dropAndCreateConstraint(Constraint $constraint, $table) : void
444
    {
445
        $this->tryMethod('dropConstraint', $constraint, $table);
446
        $this->createConstraint($constraint, $table);
447
    }
448
449
    /**
450
     * Drops and creates a new index on a table.
451
     *
452
     * @param Table|string $table The name of the table on which the index is to be created.
453
     */
454
    public function dropAndCreateIndex(Index $index, $table) : void
455
    {
456
        $this->tryMethod('dropIndex', $index->getQuotedName($this->_platform), $table);
457
        $this->createIndex($index, $table);
458
    }
459
460
    /**
461
     * Drops and creates a new foreign key.
462
     *
463
     * @param ForeignKeyConstraint $foreignKey An associative array that defines properties of the foreign key to be created.
464
     * @param Table|string         $table      The name of the table on which the foreign key is to be created.
465
     */
466
    public function dropAndCreateForeignKey(ForeignKeyConstraint $foreignKey, $table) : void
467
    {
468
        $this->tryMethod('dropForeignKey', $foreignKey, $table);
469
        $this->createForeignKey($foreignKey, $table);
470
    }
471
472
    /**
473
     * Drops and create a new sequence.
474
     *
475
     * @throws ConnectionException If something fails at database level.
476
     */
477
    public function dropAndCreateSequence(Sequence $sequence) : void
478
    {
479
        $this->tryMethod('dropSequence', $sequence->getQuotedName($this->_platform));
480
        $this->createSequence($sequence);
481
    }
482
483
    /**
484
     * Drops and creates a new table.
485
     */
486
    public function dropAndCreateTable(Table $table) : void
487
    {
488
        $this->tryMethod('dropTable', $table->getQuotedName($this->_platform));
489
        $this->createTable($table);
490
    }
491
492
    /**
493
     * Drops and creates a new database.
494
     */
495
    public function dropAndCreateDatabase(string $database) : void
496
    {
497
        $this->tryMethod('dropDatabase', $database);
498
        $this->createDatabase($database);
499
    }
500
501
    /**
502
     * Drops and creates a new view.
503
     */
504
    public function dropAndCreateView(View $view) : void
505
    {
506
        $this->tryMethod('dropView', $view->getQuotedName($this->_platform));
507
        $this->createView($view);
508
    }
509
510
    /* alterTable() Methods */
511
512
    /**
513
     * Alters an existing tables schema.
514
     */
515
    public function alterTable(TableDiff $tableDiff) : void
516
    {
517
        $queries = $this->_platform->getAlterTableSQL($tableDiff);
518
519
        if (! is_array($queries) || ! count($queries)) {
520
            return;
521
        }
522
523
        foreach ($queries as $ddlQuery) {
524
            $this->_execSql($ddlQuery);
525
        }
526
    }
527
528
    /**
529
     * Renames a given table to another name.
530
     */
531
    public function renameTable(string $name, string $newName) : void
532
    {
533
        $tableDiff          = new TableDiff($name);
534
        $tableDiff->newName = $newName;
535
        $this->alterTable($tableDiff);
536
    }
537
538
    /**
539
     * Methods for filtering return values of list*() methods to convert
540
     * the native DBMS data definition to a portable Doctrine definition
541
     */
542
543
    /**
544
     * @param array<int, mixed> $databases
545
     *
546
     * @return array<int, string>
547
     */
548
    protected function _getPortableDatabasesList(array $databases) : array
549
    {
550
        $list = [];
551
        foreach ($databases as $value) {
552
            $value = $this->_getPortableDatabaseDefinition($value);
553
554
            if (! $value) {
555
                continue;
556
            }
557
558
            $list[] = $value;
559
        }
560
561
        return $list;
562
    }
563
564
    /**
565
     * Converts a list of namespace names from the native DBMS data definition to a portable Doctrine definition.
566
     *
567
     * @param array<int, array<int, mixed>> $namespaces The list of namespace names in the native DBMS data definition.
568
     *
569
     * @return array<int, string>
570
     */
571
    protected function getPortableNamespacesList(array $namespaces) : array
572
    {
573
        $namespacesList = [];
574
575
        foreach ($namespaces as $namespace) {
576
            $namespacesList[] = $this->getPortableNamespaceDefinition($namespace);
577
        }
578
579
        return $namespacesList;
580
    }
581
582
    /**
583
     * @param array<string, string> $database
584
     */
585
    protected function _getPortableDatabaseDefinition(array $database) : string
586
    {
587
        assert(! empty($database));
588
589
        return array_shift($database);
590
    }
591
592
    /**
593
     * Converts a namespace definition from the native DBMS data definition to a portable Doctrine definition.
594
     *
595
     * @param array<string|int, mixed> $namespace The native DBMS namespace definition.
596
     */
597
    protected function getPortableNamespaceDefinition(array $namespace) : string
598
    {
599
        return array_shift($namespace);
600
    }
601
602
    /**
603
     * @param array<int, array<string, mixed>> $sequences
604
     *
605
     * @return array<int, Sequence>
606
     */
607
    protected function _getPortableSequencesList(array $sequences) : array
608
    {
609
        $list = [];
610
611
        foreach ($sequences as $value) {
612
            $list[] = $this->_getPortableSequenceDefinition($value);
613
        }
614
615
        return $list;
616
    }
617
618
    /**
619
     * @param array<string, mixed> $sequence
620
     *
621
     * @throws DBALException
622
     */
623
    protected function _getPortableSequenceDefinition(array $sequence) : Sequence
624
    {
625
        throw NotSupported::new('Sequences');
626
    }
627
628
    /**
629
     * Independent of the database the keys of the column list result are lowercased.
630
     *
631
     * The name of the created column instance however is kept in its case.
632
     *
633
     * @param array<int, array<string, mixed>> $tableColumns
634
     *
635
     * @return array<string, Column>
636
     */
637
    protected function _getPortableTableColumnList(string $table, string $database, array $tableColumns) : array
638
    {
639
        $eventManager = $this->_platform->getEventManager();
640
641
        $list = [];
642
        foreach ($tableColumns as $tableColumn) {
643
            $column           = null;
644
            $defaultPrevented = false;
645
646
            if ($eventManager !== null && $eventManager->hasListeners(Events::onSchemaColumnDefinition)) {
647
                $eventArgs = new SchemaColumnDefinitionEventArgs($tableColumn, $table, $database, $this->_conn);
648
                $eventManager->dispatchEvent(Events::onSchemaColumnDefinition, $eventArgs);
649
650
                $defaultPrevented = $eventArgs->isDefaultPrevented();
651
                $column           = $eventArgs->getColumn();
652
            }
653
654
            if (! $defaultPrevented) {
655
                $column = $this->_getPortableTableColumnDefinition($tableColumn);
656
            }
657
658
            if (! $column) {
659
                continue;
660
            }
661
662
            $name        = strtolower($column->getQuotedName($this->_platform));
663
            $list[$name] = $column;
664
        }
665
666
        return $list;
667
    }
668
669
    /**
670
     * Gets Table Column Definition.
671
     *
672
     * @param array<string, mixed> $tableColumn
673
     */
674
    abstract protected function _getPortableTableColumnDefinition(array $tableColumn) : Column;
675
676
    /**
677
     * Aggregates and groups the index results according to the required data result.
678
     *
679
     * @param array<int, array<string, mixed>> $tableIndexRows
680
     *
681
     * @return array<string, Index>
682
     */
683
    protected function _getPortableTableIndexesList(array $tableIndexRows, string $tableName) : array
684
    {
685
        $result = [];
686
        foreach ($tableIndexRows as $tableIndex) {
687
            $indexName = $keyName = $tableIndex['key_name'];
688
            if ($tableIndex['primary']) {
689
                $keyName = 'primary';
690
            }
691
692
            $keyName = strtolower($keyName);
693
694
            if (! isset($result[$keyName])) {
695
                $options = [
696
                    'lengths' => [],
697
                ];
698
699
                if (isset($tableIndex['where'])) {
700
                    $options['where'] = $tableIndex['where'];
701
                }
702
703
                $result[$keyName] = [
704
                    'name' => $indexName,
705
                    'columns' => [],
706
                    'unique' => ! $tableIndex['non_unique'],
707
                    'primary' => $tableIndex['primary'],
708
                    'flags' => $tableIndex['flags'] ?? [],
709
                    'options' => $options,
710
                ];
711
            }
712
713
            $result[$keyName]['columns'][]            = $tableIndex['column_name'];
714
            $result[$keyName]['options']['lengths'][] = $tableIndex['length'] ?? null;
715
        }
716
717
        $eventManager = $this->_platform->getEventManager();
718
719
        $indexes = [];
720
        foreach ($result as $indexKey => $data) {
721
            $index            = null;
722
            $defaultPrevented = false;
723
724
            if ($eventManager !== null && $eventManager->hasListeners(Events::onSchemaIndexDefinition)) {
725
                $eventArgs = new SchemaIndexDefinitionEventArgs($data, $tableName, $this->_conn);
726
                $eventManager->dispatchEvent(Events::onSchemaIndexDefinition, $eventArgs);
727
728
                $defaultPrevented = $eventArgs->isDefaultPrevented();
729
                $index            = $eventArgs->getIndex();
730
            }
731
732
            if (! $defaultPrevented) {
733
                $index = new Index($data['name'], $data['columns'], $data['unique'], $data['primary'], $data['flags'], $data['options']);
734
            }
735
736
            if (! $index) {
737
                continue;
738
            }
739
740
            $indexes[$indexKey] = $index;
741
        }
742
743
        return $indexes;
744
    }
745
746
    /**
747
     * @param array<int, array<string, mixed>> $tables
748
     *
749
     * @return array<int, string>
750
     */
751
    protected function _getPortableTablesList(array $tables) : array
752
    {
753
        $list = [];
754
        foreach ($tables as $value) {
755
            $value = $this->_getPortableTableDefinition($value);
756
757
            if (! $value) {
758
                continue;
759
            }
760
761
            $list[] = $value;
762
        }
763
764
        return $list;
765
    }
766
767
    /**
768
     * @param array<string, string> $table
769
     */
770
    protected function _getPortableTableDefinition(array $table) : string
771
    {
772
        assert(! empty($table));
773
774
        return array_shift($table);
775
    }
776
777
    /**
778
     * @param array<int, array<string, mixed>> $users
779
     *
780
     * @return array<int, array<string, mixed>>
781
     */
782
    protected function _getPortableUsersList(array $users) : array
783
    {
784
        $list = [];
785
        foreach ($users as $value) {
786
            $value = $this->_getPortableUserDefinition($value);
787
788
            if (! $value) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $value of type array<string,mixed> is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
789
                continue;
790
            }
791
792
            $list[] = $value;
793
        }
794
795
        return $list;
796
    }
797
798
    /**
799
     * @param array<string, mixed> $user
800
     *
801
     * @return array<string, mixed>
802
     */
803
    protected function _getPortableUserDefinition(array $user) : array
804
    {
805
        return $user;
806
    }
807
808
    /**
809
     * @param array<int, array<string, mixed>> $views
810
     *
811
     * @return array<string, View>
812
     */
813
    protected function _getPortableViewsList(array $views) : array
814
    {
815
        $list = [];
816
        foreach ($views as $value) {
817
            $view        = $this->_getPortableViewDefinition($value);
818
            $name        = strtolower($view->getQuotedName($this->_platform));
819
            $list[$name] = $view;
820
        }
821
822
        return $list;
823
    }
824
825
    /**
826
     * @param array<string, mixed> $view
827
     */
828
    protected function _getPortableViewDefinition(array $view) : View
829
    {
830
        throw NotSupported::new('Views');
831
    }
832
833
    /**
834
     * @param array<int|string, array<string, mixed>> $tableForeignKeys
835
     *
836
     * @return array<int, ForeignKeyConstraint>
837
     */
838
    protected function _getPortableTableForeignKeysList(array $tableForeignKeys) : array
839
    {
840
        $list = [];
841
842
        foreach ($tableForeignKeys as $value) {
843
            $list[] = $this->_getPortableTableForeignKeyDefinition($value);
844
        }
845
846
        return $list;
847
    }
848
849
    /**
850
     * @param array<string, mixed> $tableForeignKey
851
     */
852
    protected function _getPortableTableForeignKeyDefinition(array $tableForeignKey) : ForeignKeyConstraint
853
    {
854
        throw NotSupported::new('ForeignKey');
855
    }
856
857
    /**
858
     * @param array<int, string>|string $sql
859
     */
860
    protected function _execSql($sql) : void
861
    {
862
        foreach ((array) $sql as $query) {
863
            $this->_conn->executeUpdate($query);
864
        }
865
    }
866
867
    /**
868
     * Creates a schema instance for the current database.
869
     */
870
    public function createSchema() : Schema
871
    {
872
        $namespaces = [];
873
874
        if ($this->_platform->supportsSchemas()) {
875
            $namespaces = $this->listNamespaceNames();
876
        }
877
878
        $sequences = [];
879
880
        if ($this->_platform->supportsSequences()) {
881
            $sequences = $this->listSequences();
882
        }
883
884
        $tables = $this->listTables();
885
886
        return new Schema($tables, $sequences, $this->createSchemaConfig(), $namespaces);
887
    }
888
889
    /**
890
     * Creates the configuration for this schema.
891
     */
892
    public function createSchemaConfig() : SchemaConfig
893
    {
894
        $schemaConfig = new SchemaConfig();
895
        $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
896
897
        $searchPaths = $this->getSchemaSearchPaths();
898
        if (isset($searchPaths[0])) {
899
            $schemaConfig->setName($searchPaths[0]);
900
        }
901
902
        $params = $this->_conn->getParams();
903
        if (! isset($params['defaultTableOptions'])) {
904
            $params['defaultTableOptions'] = [];
905
        }
906
907
        if (! isset($params['defaultTableOptions']['charset']) && isset($params['charset'])) {
908
            $params['defaultTableOptions']['charset'] = $params['charset'];
909
        }
910
911
        $schemaConfig->setDefaultTableOptions($params['defaultTableOptions']);
912
913
        return $schemaConfig;
914
    }
915
916
    /**
917
     * The search path for namespaces in the currently connected database.
918
     *
919
     * The first entry is usually the default namespace in the Schema. All
920
     * further namespaces contain tables/sequences which can also be addressed
921
     * with a short, not full-qualified name.
922
     *
923
     * For databases that don't support subschema/namespaces this method
924
     * returns the name of the currently connected database.
925
     *
926
     * @return array<int, string>
927
     */
928
    public function getSchemaSearchPaths() : array
929
    {
930
        $database = $this->_conn->getDatabase();
931
932
        if ($database !== null) {
933
            return [$database];
934
        }
935
936
        return [];
937
    }
938
939
    /**
940
     * Given a table comment this method tries to extract a type hint for Doctrine Type. If the type hint is found,
941
     * it's removed from the comment.
942
     *
943
     * @return string|null The extracted Doctrine type or NULL of the type hint was not found.
944
     */
945
    final protected function extractDoctrineTypeFromComment(?string &$comment) : ?string
946
    {
947
        if ($comment === null || ! preg_match('/(.*)\(DC2Type:(((?!\)).)+)\)(.*)/', $comment, $match)) {
948
            return null;
949
        }
950
951
        $comment = $match[1] . $match[4];
952
953
        return $match[2];
954
    }
955
956
    /**
957
     * @throws DatabaseRequired
958
     */
959
    private function ensureDatabase(?string $database, string $methodName) : string
960
    {
961
        if ($database === null) {
962
            throw DatabaseRequired::new($methodName);
963
        }
964
965
        return $database;
966
    }
967
}
968