-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtils.php
816 lines (700 loc) · 28.1 KB
/
Utils.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
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
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
<?php
declare(strict_types=1);
namespace Draeli\Mysql;
use Draeli\Mysql\Components\AbstractConfigurationImportField;
use Draeli\Mysql\Components\ConfigurationTable;
use Draeli\Mysql\Components\ConfigurationTableField;
/**
* @package Draeli\Mysql
*/
class Utils
{
/**
* Option values : string|null
* Default : null
*/
public const LOAD_DATA_OPTION_SCHEMA = 'schema';
/**
* Option values : string|null
* Default : null
*/
public const LOAD_DATA_OPTION_CHARSET = 'charset';
/**
* Option values : 'replace'|'ignore'|null
* Default : null
* Null will get an error on duplication
*/
public const LOAD_DATA_OPTION_DUPLICATE_STRATEGY = 'duplicate_strategy';
/**
* Option values : string|null
* Default : null
* Null will be replaced with ','
*/
public const LOAD_DATA_OPTION_TERMINATED_BY = 'terminated_by';
/**
* Option values : string
* Default : null
* Null will be replaced with '"'
*/
public const LOAD_DATA_OPTION_ENCLOSED_BY = 'enclosed_by';
/**
* Option values : string
* Default : null
* Null will be replaced with '\\'
*/
public const LOAD_DATA_OPTION_ESCAPED_BY = 'escaped_by';
/**
* Option values : int|null
* Default : null
* Value null or 0 is avoided
*/
public const LOAD_DATA_OPTION_IGNORE_LINES = 'ignore_lines';
/**
* Option values : array|null
* Default : null
* Empty array or null is avoided
*/
public const LOAD_DATA_OPTION_COLUMNS = 'columns';
public const LOAD_DATA_STRATEGY_IGNORE = 'ignore';
public const LOAD_DATA_STRATEGY_REPLACE = 'replace';
public const OUT_NAME_INSERTED = 'inserted';
public const OUT_NAME_RESULT = 'result';
public const OUT_NAME_EXIST = 'exist';
public const OUT_NAME_COLLATION_NAME = 'collation_name';
public const OUT_NAME_LAST_INSERT_ID = 'last_insert_id';
public const OUT_SCHEMA_DEFAULT_CHARACTER_NAME = 'DEFAULT_CHARACTER_SET_NAME';
public const OUT_SCHEMA_DEFAULT_COLLATION_NAME = 'DEFAULT_COLLATION_NAME';
public const ALTER_ALGORITHM_INSTANT = 'INSTANT';
public const ALTER_ALGORITHM_COPY = 'COPY';
public const ALTER_ALGORITHM_REPLACE = 'REPLACE';
public const ALTER_ALGORITHM_DEFAULT = 'DEFAULT';
/** @var \DateTimeZone */
static private $UTC;
/**
* @return array
*/
public static function getCurrentDatabaseTimeoutParameters(): array
{
$toReturn = [];
foreach(self::getDatabaseTimeoutParameters() as $parameter){
$value = ini_get( $parameter );
// false is return if configuration parameter is not available
if( false !== $value ){
$toReturn[$parameter] = $value;
}
}
return $toReturn;
}
/**
* @return array
*/
private static function getDatabaseTimeoutParameters(): array
{
return ['default_socket_timeout', 'connect_timeout', 'mysql.connect_timeout', 'mysqlnd.net_read_timeout'];
}
/**
* @param string $schemaName
* @return string
*/
public static function getSqlSchemaNameQuoted(string $schemaName): string
{
return '`' . $schemaName . '`';
}
/**
* @param string $tableName
* @return string
*/
public static function getSqlTableNameQuoted(string $tableName): string
{
return '`' . $tableName . '`';
}
/**
* @param string $fieldName
* @return string
*/
public static function getSqlFieldNameQuoted(string $fieldName): string
{
return '`' . $fieldName . '`';
}
/**
* @param ConfigurationTable $configurationTable
* @return string
*/
private static function getSchemaAndTable(ConfigurationTable $configurationTable): string
{
$schemaName = $configurationTable->getSchema();
$tableName = $configurationTable->getTableName();
return self::getJoinSchemaAndTable($tableName, $schemaName);
}
/**
* @param string $tableName
* @param string|null $schemaName
* @return string
*/
public static function getJoinSchemaAndTable(string $tableName, ?string $schemaName = null): string
{
return ( null === $schemaName ? '' : self::getSqlSchemaNameQuoted($schemaName) . '.') . self::getSqlTableNameQuoted($tableName);
}
/**
* @param ConfigurationTable $configurationTable
* @param bool $ignoreExisting
* @return string SQL to create table
* @throws \Exception
*/
public static function getSqlStructureTable(ConfigurationTable $configurationTable, bool $ignoreExisting = false): string
{
$fields = $configurationTable->getFields();
if( !\count($fields) ){
throw new \LogicException('You must define at least one field!');
}
$toReturn = 'CREATE TABLE' . ( $ignoreExisting ? ' IF NOT EXISTS' : '' ) . ' ' . self::getSchemaAndTable($configurationTable) . '(';
$columns = [];
foreach($fields as $Field){
$columns[] = self::getFieldDefinition($Field);
}
$toReturn .= implode(',',$columns );
$toReturn .= ')';
$toReturn .= 'DEFAULT COLLATE ' . $configurationTable->getCollation();
$toReturn .= ' ENGINE ' . $configurationTable->getEngine();
return $toReturn;
}
/**
* @param ConfigurationTableField $Field
* @return string
* @throws \Exception
*/
private static function getFieldDefinition(ConfigurationTableField $Field): string
{
$isNullable = $Field->isNullable();
$name = $Field->getName();
$signed = $Field->getSigned();
$parts = [];
$parts[] = self::getSqlFieldNameQuoted($name);
$parts[] = self::getColumnType($Field);
if( null !== $signed ){
$parts[] = 'UNSIGNED';
}
$parts[] = $isNullable ? 'NULL': 'NOT NULL';
$defaultValue = self::getDefaultValue($Field);
$parts[] = 'DEFAULT ' . ('NULL' === $defaultValue ? 'NULL' : "'" . self::replaceQuote((string)$defaultValue) . "'");
return implode(' ', $parts);
}
/**
* Return collection of queries to create indexes
* @param ConfigurationTable $configurationTable
* @return string[] List of SQL
*/
public static function getSqlAddIndexes(ConfigurationTable $configurationTable): array
{
$schemaAndTable = self::getSchemaAndTable($configurationTable);
$begin = 'ALTER TABLE ' . $schemaAndTable . ' ADD ';
$return = [];
foreach($configurationTable->getIndexes() as $index){
$type = $index->getType();
$name = $index->getName();
$fields = $index->getFields();
if( !\count($fields) ){
throw new \LogicException('Index ' . $name . ' define without fields.');
}
$typeWord = self::getWordIndexForAlter($type);
$fieldsList = [];
foreach($fields as $fieldNameOrigin => $fieldLength){
$fieldsList[] = self::getSqlFieldNameQuoted($fieldNameOrigin) . ($fieldLength ? '(' . $fieldLength . ')' : '');
}
$return[] = $begin . $typeWord . ' ' . self::getSqlFieldNameQuoted($name) . '(' . implode(',', $fieldsList) . ')';
}
return $return;
}
/**
* @param string $tableName
* @param ConfigurationTableField $field
* @param string|null $algorithm
* @return string
*/
public static function getSqlAddColumn(string $tableName, ConfigurationTableField $field, ?string $algorithm = null): string
{
if( null === $algorithm ){
$algorithm = self::ALTER_ALGORITHM_DEFAULT;
}
if( !\in_array($algorithm, self::getListAlgorithmForAlterReplace(), true)){
throw new \InvalidArgumentException('Unknown algorithm.');
}
return 'ALTER TABLE ' . self::getSqlTableNameQuoted($tableName) . ' ADD COLUMN ' . self::getFieldDefinition($field) . ', ALGORITHM=' . $algorithm;
}
public static function getListAlgorithmForAlterReplace(): array
{
return [
self::ALTER_ALGORITHM_DEFAULT
, self::ALTER_ALGORITHM_INSTANT
, self::ALTER_ALGORITHM_COPY
, self::ALTER_ALGORITHM_REPLACE
];
}
/**
* Return keyword to use in SQL statement of ALTER
* @param string $type
* @return string
*/
private static function getWordIndexForAlter(string $type): string
{
switch($type){
case Constants::INDEX_UNIQUE:
return 'UNIQUE INDEX';
case Constants::INDEX_PRIMARY:
return 'PRIMARY KEY';
case Constants::INDEX_NORMAL:
return 'INDEX';
case Constants::INDEX_FULLTEXT:
return 'FULLTEXT INDEX';
}
throw new \InvalidArgumentException('Unsupported type ' . $type);
}
/**
* @param ConfigurationTable $configurationTable
* @param bool $errorIfNotExist
* @return string
*/
public static function getSqlDropTable(ConfigurationTable $configurationTable, bool $errorIfNotExist = false): string
{
return 'DROP TABLE' . ( $errorIfNotExist ? '' : ' IF EXISTS ') . self::getSchemaAndTable($configurationTable);
}
/**
* @param string $filePath
* @param string $tableName
* @param array $options
* See constants LOAD_DATA_OPTION_*
* @return string
*/
public static function getSqlLoadData(string $filePath, string $tableName, array $options): string
{
$duplicationStrategies = [
self::LOAD_DATA_STRATEGY_REPLACE => 'REPLACE'
, self::LOAD_DATA_STRATEGY_IGNORE => 'IGNORE'
];
$duplicationStrategy = strtolower((string)($options[self::LOAD_DATA_OPTION_DUPLICATE_STRATEGY] ?? null));
if( !\array_key_exists($duplicationStrategy, $duplicationStrategies) ){
$duplicationStrategy = null;
}
$charset = $options[self::LOAD_DATA_OPTION_CHARSET] ?? null;
// Some charset are not supported for load data, see https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-index-handling
if( null !== $charset && \in_array($charset, ['ucs2', 'utf16', 'utf16le', 'utf32'], true) ){
throw new \UnexpectedValueException('Collation inside charge "' . $charset . '" is not supported for load data.');
}
$optionsTerminatedBy = (string)($options[self::LOAD_DATA_OPTION_TERMINATED_BY] ?? ',');
$optionsEnclosedBy = (string)($options[self::LOAD_DATA_OPTION_ENCLOSED_BY] ?? '"');
$optionsEscapedBy = (string)($options[self::LOAD_DATA_OPTION_ESCAPED_BY] ?? '\\');
$schema = $options[self::LOAD_DATA_OPTION_SCHEMA] ?? null;
$sqlParts = ['LOAD DATA'];
$sqlParts[] = 'INFILE ' . "'" . $filePath . "'";
if( null !== $duplicationStrategy ){
$sqlParts[] = $duplicationStrategies[$duplicationStrategy];
}
$sqlParts[] = 'INTO TABLE ' . self::getJoinSchemaAndTable($tableName, $schema);
$sqlParts[] = 'CHARACTER SET ' . $charset;
$sqlParts[] = 'FIELDS';
$sqlParts[] = 'TERMINATED BY ' . "'" . self::quoteLoadDataFormattingOption($optionsTerminatedBy) . "'";
$sqlParts[] = 'ENCLOSED BY ' . "'" . self::quoteLoadDataFormattingOption($optionsEnclosedBy) . "'";
$sqlParts[] = 'ESCAPED BY ' . "'" . self::quoteLoadDataFormattingOption($optionsEscapedBy) . "'";
// TODO : add configuration possibility
$sqlParts[] = 'LINES';
$sqlParts[] = 'STARTING BY ' . "''";
$sqlParts[] = 'TERMINATED BY ' . "'" . '\n' . "'";
$optionIgnoreLines = (int)($options[self::LOAD_DATA_OPTION_IGNORE_LINES] ?? null);
if( $optionIgnoreLines ){
$sqlParts[] = 'IGNORE ' . $optionIgnoreLines . ' LINES';
}
$optionColumns = (array)($options[self::LOAD_DATA_OPTION_COLUMNS] ?? null);
if( $optionColumns ){
$columns = [];
foreach($optionColumns as $columnName){
$columns[] = self::getSqlFieldNameQuoted($columnName);
}
$sqlParts[] = '(' . implode(',', $columns) . ')';
}
return implode(' ', $sqlParts);
}
/**
* @param string $optionValue
* @return string
*/
private static function quoteLoadDataFormattingOption(string $optionValue): string
{
// TODO : add unit test for this case and test if each case is accepted by MySQL
// Character \ must be always treated in first place
// https://www.php.net/manual/fr/regexp.reference.escape.php
// https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-index-handling => Escape Sequence
return addcslashes($optionValue, "\\\r\n\t\f\e\7\v'");
}
/**
* @param string $collation
* @return string
*/
public static function getCharsetFromCollation(string $collation): string
{
if( preg_match('/^([^_]+)(?:_.+)?$/U', $collation, $matches) ){
return $matches[1];
}
throw new \UnexpectedValueException('Collation format "' . $collation . '" is not recognized has valid.');
}
/**
* @param ConfigurationTableField $Field
* @return string|int|float|null
* @throws \Exception
*/
private static function getDefaultValue(ConfigurationTableField $Field)
{
$type = $Field->getType();
// default value consolidated
$default = self::getDefaultForField($Field);
$isNullable = $Field->isNullable();
if( null === $default ){
if( $isNullable ) {
return 'NULL';
}
throw new \LogicException('Type ' . $type . ' is not supported.');
}
if( $default instanceof \DateTime ){
if( Constants::TYPE_DATE === $type ){
return $default->format('Y-m-d');
}
if( Constants::TYPE_TIME === $type ){
return $default->format('h:i:s');
}
if( Constants::TYPE_DATETIME === $type ){
return $default->format('Y-m-d h:i:s');
}
throw new \LogicException('No type matching for default value of type ' . \DateTime::class . ' for field "' . $Field->getName() . '"');
}
if( Constants::TYPE_INTEGER === $type ){
return (int)$default;
}
if( Constants::TYPE_FLOAT === $type ){
return (float)$default;
}
if( Constants::TYPE_BOOLEAN === $type ){
return (int)$default;
}
if( \in_array($type, [Constants::TYPE_STRING, Constants::TYPE_TEXT, Constants::TYPE_BLOB], true) ){
return "'" . str_replace(['"', "'"], ['\"', "\'"], $default) . "'";
}
throw new \LogicException('Unsupported type "' . $type . '" with value "' . $default . '"');
}
/**
* @param ConfigurationTableField $Field
* @return string
*/
private static function getColumnType(ConfigurationTableField $Field): string
{
$type = $Field->getType();
$length = $Field->getLength();
$name = $Field->getName();
switch($type){
case Constants::TYPE_INTEGER:
return 'BIGINT(20)';
case Constants::TYPE_STRING:
if( null === $length ){
throw new \LogicException('You must define a length before for ' . $name . '.');
}
return 'VARCHAR(' . $length . ')';
case Constants::TYPE_TEXT:
return 'LONGTEXT';
case Constants::TYPE_BLOB:
return 'LONGBLOB';
case Constants::TYPE_FLOAT:
return 'DOUBLE';
case Constants::TYPE_DATE:
return 'DATE';
case Constants::TYPE_DATETIME:
return 'DATETIME';
case Constants::TYPE_TIME:
return 'TIME';
case Constants::TYPE_BOOLEAN:
return 'TINYINT(1)';
}
throw new \UnexpectedValueException('Unsupported field type ' . $type);
}
/**
* get default value for field and check if necessary
* @param ConfigurationTableField $configurationTableField
* @return mixed
* @throws \Exception
*/
private static function getDefaultForField(ConfigurationTableField $configurationTableField)
{
$currentDefault = $configurationTableField->getDefault();
$isNullable = $configurationTableField->isNullable();
$type = $configurationTableField->getType();
$name = $configurationTableField->getName();
// In case default is not define…
if( null === $currentDefault ){
// column can be null, so we touch nothing
if( $isNullable ){
return $currentDefault;
}
// here value is not nullable, we take the better based on type
if( Constants::TYPE_FLOAT === $type ){
return .0;
}
if( Constants::TYPE_INTEGER === $type ){
return 0;
}
if( in_array($type, [Constants::TYPE_DATE, Constants::TYPE_TIME, Constants::TYPE_DATETIME], true) ){
return new \DateTime('0001-01-01 00:00:00', self::createUTC());
}
if( \in_array($type, [Constants::TYPE_STRING, Constants::TYPE_TEXT, Constants::TYPE_BLOB, Constants::TYPE_BOOLEAN], true) ){
return '';
}
}
// value is not null, so we perform a verification
else{
if( Constants::TYPE_FLOAT === $type ){
if( \is_string($currentDefault) ){
$currentDefault = (float)$currentDefault;
}
if( !\is_float($currentDefault) ){
throw new \LogicException('Default value for target field "' . $name . '" is not a "' . Constants::TYPE_FLOAT .'".');
}
return $currentDefault;
}
if( Constants::TYPE_INTEGER === $type ){
if( \is_string($currentDefault) ){
$currentDefault = (float)$currentDefault;
}
if( !\is_int($currentDefault) ){
throw new \LogicException('Default value for target field "' . $name . '" is not an "' . Constants::TYPE_INTEGER . '".');
}
return $currentDefault;
}
if( \in_array($type, [Constants::TYPE_DATE, Constants::TYPE_TIME, Constants::TYPE_DATETIME], true) ){
if( \is_string($currentDefault) || \is_int($currentDefault) ){
return new \DateTime($currentDefault, self::createUTC());
}
if( $currentDefault instanceof \DateTime ){
return $currentDefault;
}
throw new \LogicException('Default value for target field "' . $name . '" is not supported, please provide a '. \DateTime::class . ', "' . Constants::TYPE_STRING . '" or "' . Constants::TYPE_INTEGER . '".');
}
if( \in_array($type, [Constants::TYPE_STRING, Constants::TYPE_TEXT, Constants::TYPE_BLOB, Constants::TYPE_BOOLEAN], true) ){
if( Constants::TYPE_BOOLEAN === $type ){
if( \is_bool($currentDefault) || \is_int($currentDefault) ){
$currentDefault = (string)$currentDefault;
}
}
if( !\is_string($currentDefault) ){
throw new \LogicException('Default value for target field "' . $name . '" is not a "' . Constants::TYPE_STRING . '".');
}
return $currentDefault;
}
}
throw new \RuntimeException('Unsupported type "' . $type . '" for field "' . $name .'"');
}
/**
* @param mixed $data
* @param AbstractConfigurationImportField $field
* @return string|int
*/
public static function getDataConverted($data, AbstractConfigurationImportField $field)
{
$name = $field->getTargetName();
$type = $field->getType();
$isNullable = $field->isNullable();
if( null === $data ){
if( $isNullable ){
return null;
}
throw new \UnexpectedValueException('Field "' . $name . '" can not be nullable but data return is null.');
}
switch($type){
case Constants::TYPE_INTEGER:
return (int)$data;
case Constants::TYPE_STRING:
return (string)$data;
// when date is part of data, we have to manage weirds php case conversion…
// (details https://stackoverflow.com/questions/31827328/php-datetime-fail-to-convert-negative-iso8601-date)
case Constants::TYPE_DATETIME:
case Constants::TYPE_DATE:
$date = new \DateTime((string)$data, self::createUTC());
$timestamp = $date->getTimestamp();
// https://fr.wikipedia.org/wiki/ISO_8601 => 1583-01-02 00:00:00
if( $timestamp < -12212467200 ){
if( $isNullable ){
return null;
}
if( Constants::TYPE_DATETIME === $type ){
return '0000-00-00 00:00:00';
}
// obviously that is Constants::TYPE_DATE
return '0000-00-00';
}
if( Constants::TYPE_DATETIME === $type ){
return $date->format('Y-m-d H:i:s');
}
return $date->format('Y-m-d');
case Constants::TYPE_TIME:
return (new \DateTime((string)$data, self::createUTC()))->format('H:i:s');
case Constants::TYPE_BOOLEAN:
return (int)$data;
case Constants::TYPE_TEXT:
return (string)$data;
case Constants::TYPE_FLOAT:
return (float)$data;
case Constants::TYPE_BLOB:
return (string)$data;
}
throw new \InvalidArgumentException('Unsupported type : ' . $type . ' for field "' . $name . '" with value "' . $data . '"');
}
/**
* @return \DateTimeZone
*/
private static function createUTC(): \DateTimeZone
{
if( null === self::$UTC ) {
self::$UTC = new \DateTimeZone('UTC');
}
return self::$UTC;
}
/**
* @param string $tableName
* @return string
*/
public static function getSqlLockTableRead(string $tableName): string
{
return 'LOCK TABLES ' . self::getSqlTableNameQuoted($tableName) . ' READ';
}
/**
* @param string $tableName
* @return string
*/
public static function getSqlLockTableWrite(string $tableName): string
{
return 'LOCK TABLES ' . self::getSqlTableNameQuoted($tableName) . ' WRITE';
}
/**
* @return string
*/
public static function getSqlUnlockTables(): string
{
return 'UNLOCK TABLES';
}
/**
* @param string $tableName
* @return string
*/
public static function getSqlDisableKeys(string $tableName): string
{
return 'ALTER TABLE ' . self::getSqlTableNameQuoted($tableName) . ' DISABLE KEYS';
}
/**
* @param string $tableName
* @return string
*/
public static function getSqlEnableKeys(string $tableName): string
{
return 'ALTER TABLE ' . self::getSqlTableNameQuoted($tableName) . ' ENABLE KEYS';
}
/**
* @return string
*/
public static function getSqlCurrentSchema(): string
{
return 'SELECT DATABASE()';
}
/**
* @return string
*/
public static function getSqlRowCount(): string
{
return 'SELECT ROW_COUNT() ' . self::OUT_NAME_INSERTED;
}
/**
* @param string $tableName
* @param string|null $schemaName
* @param string|null $columnName
* @return string
*/
public static function getSqlCountRowTable(string $tableName, ?string $schemaName = null, ?string $columnName = null): string
{
return 'SELECT COUNT(' . ( null === $columnName ? '*' : self::getSqlFieldNameQuoted($columnName)) . ') ' . self::OUT_NAME_RESULT .' FROM ' . self::getJoinSchemaAndTable($tableName, $schemaName);
}
/**
* @param string $tableName
* @param string $schemaName
* @return string
*/
public static function getSqlTableCollation(string $tableName, string $schemaName): string
{
return 'SELECT TABLE_COLLATION ' . self::OUT_NAME_COLLATION_NAME . ' FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME=' . "'" . $tableName . "'" . ' AND TABLE_SCHEMA=' . "'" . self::replaceQuote($schemaName) . "'";
}
/**
* @param string $tableName
* @param string|null $schemaName
* @param string|null $collation
* null is equivalent to Constants::DEFAULT_COLLATION
* @return string
*/
public static function getSqlAlterTableCollation(string $tableName, ?string $schemaName = null, string $collation = null): string
{
if( null === $collation ){
$collation = Constants::DEFAULT_COLLATION;
}
$charset = self::getCharsetFromCollation($collation);
return 'ALTER TABLE ' . self::getJoinSchemaAndTable($tableName, $schemaName) . ' CONVERT TO CHARACTER SET ' . $charset . ' COLLATE ' . $collation;
}
/**
* @param string $schemaName
* @return string
*/
public static function getSqlSchemaDefaultCharacterName(string $schemaName): string
{
return self::setSqlSchemaInformation(self::OUT_SCHEMA_DEFAULT_CHARACTER_NAME, $schemaName);
}
/**
* @param string $schemaName
* @return string
*/
public static function getSqlSchemaDefaultCollationName(string $schemaName): string
{
return self::setSqlSchemaInformation(self::OUT_SCHEMA_DEFAULT_COLLATION_NAME, $schemaName);
}
/**
* @param string $columnName
* @param string $schemaName$schemaName
* @return string
*/
private static function setSqlSchemaInformation(string $columnName, string $schemaName): string
{
return 'SELECT ' . self::getSqlFieldNameQuoted($columnName) . ' FROM information_schema.SCHEMATA WHERE SCHEMA_NAME=' . "'" . self::replaceQuote($schemaName) . "'";
}
/**
* @param string $tableName
* @return string
*/
public static function ifExistTable(string $tableName): string
{
return 'SELECT 1 ' . self::OUT_NAME_EXIST . " FROM information_schema.TABLES WHERE TABLE_SCHEMA=schema() AND TABLE_NAME='" . self::replaceQuote($tableName) . "'";
}
/**
* @param string $tableName
* @param string $columnName
* @return string
*/
public static function ifExistColumn(string $tableName, string $columnName): string
{
return 'SELECT 1 ' . self::OUT_NAME_EXIST . " FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=schema() AND TABLE_NAME='" . self::replaceQuote($tableName) . "' AND COLUMN_NAME='" . self::replaceQuote($columnName) . "'";
}
/**
* @param string $toSanitize
* @return string
*/
private static function replaceQuote(string $toSanitize): string
{
return str_replace("'", "\'", $toSanitize);
}
/**
* @return string
*/
public static function getSqlLastInsertId(): string
{
return 'SELECT LAST_INSERT_ID() ' . self::OUT_NAME_LAST_INSERT_ID;
}
}