123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Database\Schema;
- use Cake\Database\Driver;
- /**
- * Base class for schema implementations.
- *
- * This class contains methods that are common across
- * the various SQL dialects.
- */
- abstract class BaseSchema
- {
- /**
- * The driver instance being used.
- *
- * @var \Cake\Database\Driver
- */
- protected $_driver;
- /**
- * Constructor
- *
- * This constructor will connect the driver so that methods like columnSql() and others
- * will fail when the driver has not been connected.
- *
- * @param \Cake\Database\Driver $driver The driver to use.
- */
- public function __construct(Driver $driver)
- {
- $driver->connect();
- $this->_driver = $driver;
- }
- /**
- * Generate an ON clause for a foreign key.
- *
- * @param string|null $on The on clause
- * @return string
- */
- protected function _foreignOnClause($on)
- {
- if ($on === TableSchema::ACTION_SET_NULL) {
- return 'SET NULL';
- }
- if ($on === TableSchema::ACTION_SET_DEFAULT) {
- return 'SET DEFAULT';
- }
- if ($on === TableSchema::ACTION_CASCADE) {
- return 'CASCADE';
- }
- if ($on === TableSchema::ACTION_RESTRICT) {
- return 'RESTRICT';
- }
- if ($on === TableSchema::ACTION_NO_ACTION) {
- return 'NO ACTION';
- }
- }
- /**
- * Convert string on clauses to the abstract ones.
- *
- * @param string $clause The on clause to convert.
- * @return string|null
- */
- protected function _convertOnClause($clause)
- {
- if ($clause === 'CASCADE' || $clause === 'RESTRICT') {
- return strtolower($clause);
- }
- if ($clause === 'NO ACTION') {
- return TableSchema::ACTION_NO_ACTION;
- }
- return TableSchema::ACTION_SET_NULL;
- }
- /**
- * Convert foreign key constraints references to a valid
- * stringified list
- *
- * @param string|array $references The referenced columns of a foreign key constraint statement
- * @return string
- */
- protected function _convertConstraintColumns($references)
- {
- if (is_string($references)) {
- return $this->_driver->quoteIdentifier($references);
- }
- return implode(', ', array_map(
- [$this->_driver, 'quoteIdentifier'],
- $references
- ));
- }
- /**
- * Generate the SQL to drop a table.
- *
- * @param \Cake\Database\Schema\TableSchema $schema Schema instance
- * @return array SQL statements to drop a table.
- */
- public function dropTableSql(TableSchema $schema)
- {
- $sql = sprintf(
- 'DROP TABLE %s',
- $this->_driver->quoteIdentifier($schema->name())
- );
- return [$sql];
- }
- /**
- * Generate the SQL to list the tables.
- *
- * @param array $config The connection configuration to use for
- * getting tables from.
- * @return array An array of (sql, params) to execute.
- */
- abstract public function listTablesSql($config);
- /**
- * Generate the SQL to describe a table.
- *
- * @param string $tableName The table name to get information on.
- * @param array $config The connection configuration.
- * @return array An array of (sql, params) to execute.
- */
- abstract public function describeColumnSql($tableName, $config);
- /**
- * Generate the SQL to describe the indexes in a table.
- *
- * @param string $tableName The table name to get information on.
- * @param array $config The connection configuration.
- * @return array An array of (sql, params) to execute.
- */
- abstract public function describeIndexSql($tableName, $config);
- /**
- * Generate the SQL to describe the foreign keys in a table.
- *
- * @param string $tableName The table name to get information on.
- * @param array $config The connection configuration.
- * @return array An array of (sql, params) to execute.
- */
- abstract public function describeForeignKeySql($tableName, $config);
- /**
- * Generate the SQL to describe table options
- *
- * @param string $tableName Table name.
- * @param array $config The connection configuration.
- * @return array SQL statements to get options for a table.
- */
- public function describeOptionsSql($tableName, $config)
- {
- return ['', ''];
- }
- /**
- * Convert field description results into abstract schema fields.
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table object to append fields to.
- * @param array $row The row data from `describeColumnSql`.
- * @return void
- */
- abstract public function convertColumnDescription(TableSchema $schema, $row);
- /**
- * Convert an index description results into abstract schema indexes or constraints.
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table object to append
- * an index or constraint to.
- * @param array $row The row data from `describeIndexSql`.
- * @return void
- */
- abstract public function convertIndexDescription(TableSchema $schema, $row);
- /**
- * Convert a foreign key description into constraints on the Table object.
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table object to append
- * a constraint to.
- * @param array $row The row data from `describeForeignKeySql`.
- * @return void
- */
- abstract public function convertForeignKeyDescription(TableSchema $schema, $row);
- /**
- * Convert options data into table options.
- *
- * @param \Cake\Database\Schema\TableSchema $schema Table instance.
- * @param array $row The row of data.
- * @return void
- */
- public function convertOptionsDescription(TableSchema $schema, $row)
- {
- }
- /**
- * Generate the SQL to create a table.
- *
- * @param \Cake\Database\Schema\TableSchema $schema Table instance.
- * @param array $columns The columns to go inside the table.
- * @param array $constraints The constraints for the table.
- * @param array $indexes The indexes for the table.
- * @return array SQL statements to create a table.
- */
- abstract public function createTableSql(TableSchema $schema, $columns, $constraints, $indexes);
- /**
- * Generate the SQL fragment for a single column in a table.
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table instance the column is in.
- * @param string $name The name of the column.
- * @return string SQL fragment.
- */
- abstract public function columnSql(TableSchema $schema, $name);
- /**
- * Generate the SQL queries needed to add foreign key constraints to the table
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table instance the foreign key constraints are.
- * @return array SQL fragment.
- */
- abstract public function addConstraintSql(TableSchema $schema);
- /**
- * Generate the SQL queries needed to drop foreign key constraints from the table
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table instance the foreign key constraints are.
- * @return array SQL fragment.
- */
- abstract public function dropConstraintSql(TableSchema $schema);
- /**
- * Generate the SQL fragments for defining table constraints.
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table instance the column is in.
- * @param string $name The name of the column.
- * @return string SQL fragment.
- */
- abstract public function constraintSql(TableSchema $schema, $name);
- /**
- * Generate the SQL fragment for a single index in a table.
- *
- * @param \Cake\Database\Schema\TableSchema $schema The table object the column is in.
- * @param string $name The name of the column.
- * @return string SQL fragment.
- */
- abstract public function indexSql(TableSchema $schema, $name);
- /**
- * Generate the SQL to truncate a table.
- *
- * @param \Cake\Database\Schema\TableSchema $schema Table instance.
- * @return array SQL statements to truncate a table.
- */
- abstract public function truncateTableSql(TableSchema $schema);
- }
|