Completed
Push — develop ( 72ba3e...de019a )
by Marco
25s queued 12s
created

MySqlSchemaManager   F

Complexity

Total Complexity 64

Size/Duplication

Total Lines 298
Duplicated Lines 0 %

Test Coverage

Coverage 82.39%

Importance

Changes 0
Metric Value
wmc 64
eloc 158
dl 0
loc 298
ccs 131
cts 159
cp 0.8239
rs 3.28
c 0
b 0
f 0

10 Methods

Rating   Name   Duplication   Size   Complexity  
A _getPortableTableDefinition() 0 3 1
A _getPortableViewDefinition() 0 3 1
A _getPortableUserDefinition() 0 5 1
A _getPortableTableIndexesList() 0 20 6
A listTableDetails() 0 21 3
B _getPortableTableForeignKeysList() 0 41 8
A _getPortableDatabaseDefinition() 0 3 1
A parseCreateOptions() 0 15 4
F _getPortableTableColumnDefinition() 0 107 32
B getMariaDb1027ColumnDefault() 0 19 7

How to fix   Complexity   

Complex Class

Complex classes like MySqlSchemaManager often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

While breaking up the class, it is a good idea to analyze how other classes use MySqlSchemaManager, and based on these observations, apply Extract Interface, too.

1
<?php
2
3
namespace Doctrine\DBAL\Schema;
4
5
use Doctrine\DBAL\Platforms\MariaDb1027Platform;
6
use Doctrine\DBAL\Platforms\MySqlPlatform;
7
use Doctrine\DBAL\Types\Type;
8
use const CASE_LOWER;
9
use function array_change_key_case;
10
use function array_shift;
11
use function array_values;
12
use function assert;
13
use function explode;
14
use function is_string;
15
use function preg_match;
16
use function str_replace;
17
use function stripslashes;
18
use function strpos;
19
use function strtok;
20
use function strtolower;
21
22
/**
23
 * Schema manager for the MySql RDBMS.
24
 */
25
class MySqlSchemaManager extends AbstractSchemaManager
26
{
27
    /**
28
     * {@inheritdoc}
29
     */
30 490
    protected function _getPortableViewDefinition($view)
31
    {
32 490
        return new View($view['TABLE_NAME'], $view['VIEW_DEFINITION']);
33
    }
34
35
    /**
36
     * {@inheritdoc}
37
     */
38 1148
    protected function _getPortableTableDefinition($table)
39
    {
40 1148
        return array_shift($table);
41
    }
42
43
    /**
44
     * {@inheritdoc}
45
     */
46
    protected function _getPortableUserDefinition($user)
47
    {
48
        return [
49
            'user' => $user['User'],
50
            'password' => $user['Password'],
51
        ];
52
    }
53
54
    /**
55
     * {@inheritdoc}
56
     */
57 1050
    protected function _getPortableTableIndexesList(array $tableIndexRows, string $tableName) : array
58
    {
59 1050
        foreach ($tableIndexRows as $k => $v) {
60 1050
            $v = array_change_key_case($v, CASE_LOWER);
61 1050
            if ($v['key_name'] === 'PRIMARY') {
62 1050
                $v['primary'] = true;
63
            } else {
64 1050
                $v['primary'] = false;
65
            }
66 1050
            if (strpos($v['index_type'], 'FULLTEXT') !== false) {
67 980
                $v['flags'] = ['FULLTEXT'];
68 1050
            } elseif (strpos($v['index_type'], 'SPATIAL') !== false) {
69 966
                $v['flags'] = ['SPATIAL'];
70
            }
71 1050
            $v['length'] = isset($v['sub_part']) ? (int) $v['sub_part'] : null;
72
73 1050
            $tableIndexRows[$k] = $v;
74
        }
75
76 1050
        return parent::_getPortableTableIndexesList($tableIndexRows, $tableName);
77
    }
78
79
    /**
80
     * {@inheritdoc}
81
     */
82 686
    protected function _getPortableDatabaseDefinition($database)
83
    {
84 686
        return $database['Database'];
85
    }
86
87
    /**
88
     * {@inheritdoc}
89
     */
90 1050
    protected function _getPortableTableColumnDefinition($tableColumn)
91
    {
92 1050
        $tableColumn = array_change_key_case($tableColumn, CASE_LOWER);
93
94 1050
        $dbType = strtolower($tableColumn['type']);
95 1050
        $dbType = strtok($dbType, '(), ');
96 1050
        assert(is_string($dbType));
97
98 1050
        $length = $tableColumn['length'] ?? strtok('(), ');
99
100 1050
        $fixed = null;
101
102 1050
        if (! isset($tableColumn['name'])) {
103 1050
            $tableColumn['name'] = '';
104
        }
105
106 1050
        $scale     = null;
107 1050
        $precision = null;
108
109 1050
        $type = $this->_platform->getDoctrineTypeMapping($dbType);
110
111
        // In cases where not connected to a database DESCRIBE $table does not return 'Comment'
112 1050
        if (isset($tableColumn['comment'])) {
113 1050
            $type                   = $this->extractDoctrineTypeFromComment($tableColumn['comment'], $type);
114 1050
            $tableColumn['comment'] = $this->removeDoctrineTypeFromComment($tableColumn['comment'], $type);
115
        }
116
117 1050
        switch ($dbType) {
118
            case 'char':
119
            case 'binary':
120 830
                $fixed = true;
121 830
                break;
122
            case 'float':
123
            case 'double':
124
            case 'real':
125
            case 'numeric':
126
            case 'decimal':
127 816
                if (preg_match('([A-Za-z]+\(([0-9]+)\,([0-9]+)\))', $tableColumn['type'], $match)) {
128 816
                    $precision = $match[1];
129 816
                    $scale     = $match[2];
130 816
                    $length    = null;
131
                }
132 816
                break;
133
            case 'tinytext':
134 844
                $length = MySqlPlatform::LENGTH_LIMIT_TINYTEXT;
135 844
                break;
136
            case 'text':
137 844
                $length = MySqlPlatform::LENGTH_LIMIT_TEXT;
138 844
                break;
139
            case 'mediumtext':
140 844
                $length = MySqlPlatform::LENGTH_LIMIT_MEDIUMTEXT;
141 844
                break;
142
            case 'tinyblob':
143
                $length = MySqlPlatform::LENGTH_LIMIT_TINYBLOB;
144
                break;
145
            case 'blob':
146 844
                $length = MySqlPlatform::LENGTH_LIMIT_BLOB;
147 844
                break;
148
            case 'mediumblob':
149 844
                $length = MySqlPlatform::LENGTH_LIMIT_MEDIUMBLOB;
150 844
                break;
151
            case 'tinyint':
152
            case 'smallint':
153
            case 'mediumint':
154
            case 'int':
155
            case 'integer':
156
            case 'bigint':
157
            case 'year':
158 1050
                $length = null;
159 1050
                break;
160
        }
161
162 1050
        if ($this->_platform instanceof MariaDb1027Platform) {
163 295
            $columnDefault = $this->getMariaDb1027ColumnDefault($this->_platform, $tableColumn['default']);
164
        } else {
165 755
            $columnDefault = $tableColumn['default'];
166
        }
167
168
        $options = [
169 1050
            'length'        => $length !== null ? (int) $length : null,
170 1050
            'unsigned'      => strpos($tableColumn['type'], 'unsigned') !== false,
171 1050
            'fixed'         => (bool) $fixed,
172 1050
            'default'       => $columnDefault,
173 1050
            'notnull'       => $tableColumn['null'] !== 'YES',
174
            'scale'         => null,
175
            'precision'     => null,
176 1050
            'autoincrement' => strpos($tableColumn['extra'], 'auto_increment') !== false,
177 1050
            'comment'       => isset($tableColumn['comment']) && $tableColumn['comment'] !== ''
178 420
                ? $tableColumn['comment']
179
                : null,
180
        ];
181
182 1050
        if ($scale !== null && $precision !== null) {
183 816
            $options['scale']     = (int) $scale;
184 816
            $options['precision'] = (int) $precision;
185
        }
186
187 1050
        $column = new Column($tableColumn['field'], Type::getType($type), $options);
188
189 1050
        if (isset($tableColumn['characterset'])) {
190 1050
            $column->setPlatformOption('charset', $tableColumn['characterset']);
191
        }
192 1050
        if (isset($tableColumn['collation'])) {
193 1050
            $column->setPlatformOption('collation', $tableColumn['collation']);
194
        }
195
196 1050
        return $column;
197
    }
198
199
    /**
200
     * Return Doctrine/Mysql-compatible column default values for MariaDB 10.2.7+ servers.
201
     *
202
     * - Since MariaDb 10.2.7 column defaults stored in information_schema are now quoted
203
     *   to distinguish them from expressions (see MDEV-10134).
204
     * - CURRENT_TIMESTAMP, CURRENT_TIME, CURRENT_DATE are stored in information_schema
205
     *   as current_timestamp(), currdate(), currtime()
206
     * - Quoted 'NULL' is not enforced by Maria, it is technically possible to have
207
     *   null in some circumstances (see https://jira.mariadb.org/browse/MDEV-14053)
208
     * - \' is always stored as '' in information_schema (normalized)
209
     *
210
     * @link https://mariadb.com/kb/en/library/information-schema-columns-table/
211
     * @link https://jira.mariadb.org/browse/MDEV-13132
212
     *
213
     * @param string|null $columnDefault default value as stored in information_schema for MariaDB >= 10.2.7
214
     */
215 295
    private function getMariaDb1027ColumnDefault(MariaDb1027Platform $platform, ?string $columnDefault) : ?string
216
    {
217 295
        if ($columnDefault === 'NULL' || $columnDefault === null) {
218 295
            return null;
219
        }
220
221 291
        if (preg_match('/^\'(.*)\'$/', $columnDefault, $matches)) {
222 207
            return stripslashes(str_replace("''", "'", $matches[1]));
223
        }
224
225 291
        switch ($columnDefault) {
226
            case 'current_timestamp()':
227 219
                return $platform->getCurrentTimestampSQL();
228
            case 'curdate()':
229 211
                return $platform->getCurrentDateSQL();
230
            case 'curtime()':
231 211
                return $platform->getCurrentTimeSQL();
232
        }
233 291
        return $columnDefault;
234
    }
235
236
    /**
237
     * {@inheritdoc}
238
     */
239 1061
    protected function _getPortableTableForeignKeysList($tableForeignKeys)
240
    {
241 1061
        $list = [];
242 1061
        foreach ($tableForeignKeys as $value) {
243 557
            $value = array_change_key_case($value, CASE_LOWER);
244 557
            if (! isset($list[$value['constraint_name']])) {
245 557
                if (! isset($value['delete_rule']) || $value['delete_rule'] === 'RESTRICT') {
246 477
                    $value['delete_rule'] = null;
247
                }
248 557
                if (! isset($value['update_rule']) || $value['update_rule'] === 'RESTRICT') {
249 477
                    $value['update_rule'] = null;
250
                }
251
252 557
                $list[$value['constraint_name']] = [
253 557
                    'name' => $value['constraint_name'],
254
                    'local' => [],
255
                    'foreign' => [],
256 557
                    'foreignTable' => $value['referenced_table_name'],
257 557
                    'onDelete' => $value['delete_rule'],
258 557
                    'onUpdate' => $value['update_rule'],
259
                ];
260
            }
261 557
            $list[$value['constraint_name']]['local'][]   = $value['column_name'];
262 557
            $list[$value['constraint_name']]['foreign'][] = $value['referenced_column_name'];
263
        }
264
265 1061
        $result = [];
266 1061
        foreach ($list as $constraint) {
267 557
            $result[] = new ForeignKeyConstraint(
268 557
                array_values($constraint['local']),
269 557
                $constraint['foreignTable'],
270 557
                array_values($constraint['foreign']),
271 557
                $constraint['name'],
272
                [
273 557
                    'onDelete' => $constraint['onDelete'],
274 557
                    'onUpdate' => $constraint['onUpdate'],
275
                ]
276
            );
277
        }
278
279 1061
        return $result;
280
    }
281
282 1050
    public function listTableDetails($tableName)
283
    {
284 1050
        $table = parent::listTableDetails($tableName);
285
286
        /** @var MySqlPlatform $platform */
287 1050
        $platform = $this->_platform;
288 1050
        $sql      = $platform->getListTableMetadataSQL($tableName);
289
290 1050
        $tableOptions = $this->_conn->fetchAssoc($sql);
291
292 1050
        $table->addOption('engine', $tableOptions['ENGINE']);
293 1050
        if ($tableOptions['TABLE_COLLATION'] !== null) {
294 1050
            $table->addOption('collation', $tableOptions['TABLE_COLLATION']);
295
        }
296 1050
        if ($tableOptions['AUTO_INCREMENT'] !== null) {
297 1050
            $table->addOption('autoincrement', $tableOptions['AUTO_INCREMENT']);
298
        }
299 1050
        $table->addOption('comment', $tableOptions['TABLE_COMMENT']);
300 1050
        $table->addOption('create_options', $this->parseCreateOptions($tableOptions['CREATE_OPTIONS']));
301
302 1050
        return $table;
303
    }
304
305
    /**
306
     * @return string[]|true[]
307
     */
308 1050
    private function parseCreateOptions(?string $string) : array
309
    {
310 1050
        $options = [];
311
312 1050
        if ($string === null || $string === '') {
313 1050
            return $options;
314
        }
315
316 728
        foreach (explode(' ', $string) as $pair) {
317 728
            $parts = explode('=', $pair, 2);
318
319 728
            $options[$parts[0]] = $parts[1] ?? true;
320
        }
321
322 728
        return $options;
323
    }
324
}
325