-
Notifications
You must be signed in to change notification settings - Fork 888
Expand file tree
/
Copy pathAdapterInterface.php
More file actions
556 lines (490 loc) · 15.4 KB
/
AdapterInterface.php
File metadata and controls
556 lines (490 loc) · 15.4 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
<?php
declare(strict_types=1);
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace Phinx\Db\Adapter;
use Cake\Database\Query;
use Cake\Database\Query\DeleteQuery;
use Cake\Database\Query\InsertQuery;
use Cake\Database\Query\SelectQuery;
use Cake\Database\Query\UpdateQuery;
use Phinx\Db\Table\Column;
use Phinx\Db\Table\Table;
use Phinx\Migration\MigrationInterface;
use Phinx\Util\Literal;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Adapter Interface.
*
* @method \PDO getConnection()
*/
interface AdapterInterface
{
public const PHINX_TYPE_STRING = 'string';
public const PHINX_TYPE_CHAR = 'char';
public const PHINX_TYPE_TEXT = 'text';
public const PHINX_TYPE_INTEGER = 'integer';
public const PHINX_TYPE_TINY_INTEGER = 'tinyinteger';
public const PHINX_TYPE_SMALL_INTEGER = 'smallinteger';
public const PHINX_TYPE_BIG_INTEGER = 'biginteger';
public const PHINX_TYPE_BIT = 'bit';
public const PHINX_TYPE_FLOAT = 'float';
public const PHINX_TYPE_DECIMAL = 'decimal';
public const PHINX_TYPE_DOUBLE = 'double';
public const PHINX_TYPE_DATETIME = 'datetime';
public const PHINX_TYPE_TIMESTAMP = 'timestamp';
public const PHINX_TYPE_TIME = 'time';
public const PHINX_TYPE_DATE = 'date';
public const PHINX_TYPE_BINARY = 'binary';
public const PHINX_TYPE_VARBINARY = 'varbinary';
public const PHINX_TYPE_BINARYUUID = 'binaryuuid';
public const PHINX_TYPE_BLOB = 'blob';
public const PHINX_TYPE_TINYBLOB = 'tinyblob'; // Specific to Mysql.
public const PHINX_TYPE_MEDIUMBLOB = 'mediumblob'; // Specific to Mysql
public const PHINX_TYPE_LONGBLOB = 'longblob'; // Specific to Mysql
public const PHINX_TYPE_BOOLEAN = 'boolean';
public const PHINX_TYPE_JSON = 'json';
public const PHINX_TYPE_JSONB = 'jsonb';
public const PHINX_TYPE_UUID = 'uuid';
public const PHINX_TYPE_NATIVEUUID = 'nativeuuid';
public const PHINX_TYPE_FILESTREAM = 'filestream';
// Geospatial database types
public const PHINX_TYPE_GEOMETRY = 'geometry';
public const PHINX_TYPE_GEOGRAPHY = 'geography';
public const PHINX_TYPE_POINT = 'point';
public const PHINX_TYPE_LINESTRING = 'linestring';
public const PHINX_TYPE_POLYGON = 'polygon';
public const PHINX_TYPES_GEOSPATIAL = [
self::PHINX_TYPE_GEOMETRY,
self::PHINX_TYPE_POINT,
self::PHINX_TYPE_LINESTRING,
self::PHINX_TYPE_POLYGON,
];
// only for mysql so far
public const PHINX_TYPE_MEDIUM_INTEGER = 'mediuminteger';
public const PHINX_TYPE_ENUM = 'enum';
public const PHINX_TYPE_SET = 'set';
public const PHINX_TYPE_YEAR = 'year';
// only for postgresql so far
public const PHINX_TYPE_CIDR = 'cidr';
public const PHINX_TYPE_INET = 'inet';
public const PHINX_TYPE_MACADDR = 'macaddr';
public const PHINX_TYPE_INTERVAL = 'interval';
/**
* Get all migrated version numbers.
*
* @return array<int>
*/
public function getVersions(): array;
/**
* Get all migration log entries, indexed by version creation time and sorted ascendingly by the configuration's
* version order option
*
* @return array<int, mixed>
*/
public function getVersionLog(): array;
/**
* Set adapter configuration options.
*
* @param array<string, mixed> $options Options
* @return $this
*/
public function setOptions(array $options);
/**
* Get all adapter options.
*
* @return array<string, mixed>
*/
public function getOptions(): array;
/**
* Check if an option has been set.
*
* @param string $name Name
* @return bool
*/
public function hasOption(string $name): bool;
/**
* Get a single adapter option, or null if the option does not exist.
*
* @param string $name Name
* @return mixed
*/
public function getOption(string $name): mixed;
/**
* Sets the console input.
*
* @param \Symfony\Component\Console\Input\InputInterface $input Input
* @return $this
*/
public function setInput(InputInterface $input);
/**
* Gets the console input.
*
* @return \Symfony\Component\Console\Input\InputInterface|null
*/
public function getInput(): ?InputInterface;
/**
* Sets the console output.
*
* @param \Symfony\Component\Console\Output\OutputInterface $output Output
* @return $this
*/
public function setOutput(OutputInterface $output);
/**
* Gets the console output.
*
* @return \Symfony\Component\Console\Output\OutputInterface
*/
public function getOutput(): OutputInterface;
/**
* Returns a new Phinx\Db\Table\Column using the existent data domain.
*
* @param string $columnName The desired column name
* @param string $type The type for the column. Can be a data domain type.
* @param array<string, mixed> $options Options array
* @return \Phinx\Db\Table\Column
*/
public function getColumnForType(string $columnName, string $type, array $options): Column;
/**
* Records a migration being run.
*
* @param \Phinx\Migration\MigrationInterface $migration Migration
* @param string $direction Direction
* @param string $startTime Start Time
* @param string $endTime End Time
* @return $this
*/
public function migrated(MigrationInterface $migration, string $direction, string $startTime, string $endTime);
/**
* Toggle a migration breakpoint.
*
* @param \Phinx\Migration\MigrationInterface $migration Migration
* @return $this
*/
public function toggleBreakpoint(MigrationInterface $migration);
/**
* Reset all migration breakpoints.
*
* @return int The number of breakpoints reset
*/
public function resetAllBreakpoints(): int;
/**
* Set a migration breakpoint.
*
* @param \Phinx\Migration\MigrationInterface $migration The migration target for the breakpoint set
* @return $this
*/
public function setBreakpoint(MigrationInterface $migration);
/**
* Unset a migration breakpoint.
*
* @param \Phinx\Migration\MigrationInterface $migration The migration target for the breakpoint unset
* @return $this
*/
public function unsetBreakpoint(MigrationInterface $migration);
/**
* Creates the schema table.
*
* @return void
*/
public function createSchemaTable(): void;
/**
* Returns the adapter type.
*
* @return string
*/
public function getAdapterType(): string;
/**
* Initializes the database connection.
*
* @throws \RuntimeException When the requested database driver is not installed.
* @return void
*/
public function connect(): void;
/**
* Closes the database connection.
*
* @return void
*/
public function disconnect(): void;
/**
* Does the adapter support transactions?
*
* @return bool
*/
public function hasTransactions(): bool;
/**
* Begin a transaction.
*
* @return void
*/
public function beginTransaction(): void;
/**
* Commit a transaction.
*
* @return void
*/
public function commitTransaction(): void;
/**
* Rollback a transaction.
*
* @return void
*/
public function rollbackTransaction(): void;
/**
* Executes a SQL statement and returns the number of affected rows.
*
* @param string $sql SQL
* @param array $params parameters to use for prepared query
* @return int
*/
public function execute(string $sql, array $params = []): int;
/**
* Function to be called before executing any migration actions.
*
* @param \Phinx\Db\Plan\AlterTable[][] $updateSequences List of update sequences to be executed
* @return array
*/
public function preExecuteActions(array $updateSequences): array;
/**
* Executes a list of migration actions for the given table
*
* @param \Phinx\Db\Table\Table $table The table to execute the actions for
* @param \Phinx\Db\Action\Action[] $actions The table to execute the actions for
* @return void
*/
public function executeActions(Table $table, array $actions): void;
/**
* Function to be called after executing any migration actions.
*
* @param array $tableNames List of table names that were affected by the actions
* @param array $preOptions Options that were set before executing the actions
* @return void
*/
public function postExecuteActions(array $tableNames, array $preOptions): void;
/**
* Returns a new Query object
*
* @return \Cake\Database\Query
*/
public function getQueryBuilder(string $type): Query;
/**
* Return a new SelectQuery object
*
* @return \Cake\Database\Query\SelectQuery
*/
public function getSelectBuilder(): SelectQuery;
/**
* Return a new InsertQuery object
*
* @return \Cake\Database\Query\InsertQuery
*/
public function getInsertBuilder(): InsertQuery;
/**
* Return a new UpdateQuery object
*
* @return \Cake\Database\Query\UpdateQuery
*/
public function getUpdateBuilder(): UpdateQuery;
/**
* Return a new DeleteQuery object
*
* @return \Cake\Database\Query\DeleteQuery
*/
public function getDeleteBuilder(): DeleteQuery;
/**
* Executes a SQL statement.
*
* The return type depends on the underlying adapter being used.
*
* @param string $sql SQL
* @param array $params parameters to use for prepared query
* @return mixed
*/
public function query(string $sql, array $params = []): mixed;
/**
* Executes a query and returns only one row as an array.
*
* @param string $sql SQL
* @return array|false
*/
public function fetchRow(string $sql): array|false;
/**
* Executes a query and returns an array of rows.
*
* @param string $sql SQL
* @return array
*/
public function fetchAll(string $sql): array;
/**
* Inserts data into a table.
*
* @param \Phinx\Db\Table\Table $table Table where to insert data
* @param array $row Row
* @return void
*/
public function insert(Table $table, array $row): void;
/**
* Inserts data into a table in a bulk.
*
* @param \Phinx\Db\Table\Table $table Table where to insert data
* @param array $rows Rows
* @return void
*/
public function bulkinsert(Table $table, array $rows): void;
/**
* Quotes a table name for use in a query.
*
* @param string $tableName Table name
* @return string
*/
public function quoteTableName(string $tableName): string;
/**
* Quotes a column name for use in a query.
*
* @param string $columnName Table name
* @return string
*/
public function quoteColumnName(string $columnName): string;
/**
* Checks to see if a table exists.
*
* @param string $tableName Table name
* @return bool
*/
public function hasTable(string $tableName): bool;
/**
* Creates the specified database table.
*
* @param \Phinx\Db\Table\Table $table Table
* @param \Phinx\Db\Table\Column[] $columns List of columns in the table
* @param \Phinx\Db\Table\Index[] $indexes List of indexes for the table
* @return void
*/
public function createTable(Table $table, array $columns = [], array $indexes = []): void;
/**
* Truncates the specified table
*
* @param string $tableName Table name
* @return void
*/
public function truncateTable(string $tableName): void;
/**
* Returns table columns
*
* @param string $tableName Table name
* @return list<\Phinx\Db\Table\Column>
*/
public function getColumns(string $tableName): array;
/**
* Checks to see if a column exists.
*
* @param string $tableName Table name
* @param string $columnName Column name
* @return bool
*/
public function hasColumn(string $tableName, string $columnName): bool;
/**
* Checks to see if an index exists.
*
* @param string $tableName Table name
* @param string|string[] $columns Column(s)
* @return bool
*/
public function hasIndex(string $tableName, string|array $columns): bool;
/**
* Checks to see if an index specified by name exists.
*
* @param string $tableName Table name
* @param string $indexName Index name
* @return bool
*/
public function hasIndexByName(string $tableName, string $indexName): bool;
/**
* Checks to see if the specified primary key exists.
*
* @param string $tableName Table name
* @param string|string[] $columns Column(s)
* @param string|null $constraint Constraint name
* @return bool
*/
public function hasPrimaryKey(string $tableName, string|array $columns, ?string $constraint = null): bool;
/**
* Checks to see if a foreign key exists.
*
* @param string $tableName Table name
* @param string|string[] $columns Column(s)
* @param string|null $constraint Constraint name
* @return bool
*/
public function hasForeignKey(string $tableName, string|array $columns, ?string $constraint = null): bool;
/**
* Returns an array of the supported Phinx column types.
*
* @return string[]
*/
public function getColumnTypes(): array;
/**
* Checks that the given column is of a supported type.
*
* @param \Phinx\Db\Table\Column $column Column
* @return bool
*/
public function isValidColumnType(Column $column): bool;
/**
* Converts the Phinx logical type to the adapter's SQL type.
*
* @param \Phinx\Util\Literal|string $type Type
* @param int|null $limit Limit
* @return array
*/
public function getSqlType(Literal|string $type, ?int $limit = null): array;
/**
* Creates a new database.
*
* @param string $name Database Name
* @param array<string, mixed> $options Options
* @return void
*/
public function createDatabase(string $name, array $options = []): void;
/**
* Checks to see if a database exists.
*
* @param string $name Database Name
* @return bool
*/
public function hasDatabase(string $name): bool;
/**
* Drops the specified database.
*
* @param string $name Database Name
* @return void
*/
public function dropDatabase(string $name): void;
/**
* Creates the specified schema or throws an exception
* if there is no support for it.
*
* @param string $schemaName Schema Name
* @return void
*/
public function createSchema(string $schemaName = 'public'): void;
/**
* Drops the specified schema table or throws an exception
* if there is no support for it.
*
* @param string $schemaName Schema name
* @return void
*/
public function dropSchema(string $schemaName): void;
/**
* Cast a value to a boolean appropriate for the adapter.
*
* @param mixed $value The value to be cast
* @return mixed
*/
public function castToBool(mixed $value): mixed;
}