| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- <?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;
- use InvalidArgumentException;
- use PDO;
- /**
- * Represents a database driver containing all specificities for
- * a database engine including its SQL dialect.
- *
- * @property \PDO|null $_connection
- */
- abstract class Driver
- {
- /**
- * Configuration data.
- *
- * @var array
- */
- protected $_config;
- /**
- * Base configuration that is merged into the user
- * supplied configuration data.
- *
- * @var array
- */
- protected $_baseConfig = [];
- /**
- * Indicates whether or not the driver is doing automatic identifier quoting
- * for all queries
- *
- * @var bool
- */
- protected $_autoQuoting = false;
- /**
- * Constructor
- *
- * @param array $config The configuration for the driver.
- * @throws \InvalidArgumentException
- */
- public function __construct($config = [])
- {
- if (empty($config['username']) && !empty($config['login'])) {
- throw new InvalidArgumentException(
- 'Please pass "username" instead of "login" for connecting to the database'
- );
- }
- $config += $this->_baseConfig;
- $this->_config = $config;
- if (!empty($config['quoteIdentifiers'])) {
- $this->enableAutoQuoting();
- }
- }
- /**
- * Establishes a connection to the database server
- *
- * @return bool true on success
- */
- abstract public function connect();
- /**
- * Disconnects from database server
- *
- * @return void
- */
- abstract public function disconnect();
- /**
- * Returns correct connection resource or object that is internally used
- * If first argument is passed,
- *
- * @param null|\PDO $connection The connection object
- * @return \PDO
- */
- abstract public function connection($connection = null);
- /**
- * Returns whether php is able to use this driver for connecting to database
- *
- * @return bool true if it is valid to use this driver
- */
- abstract public function enabled();
- /**
- * Prepares a sql statement to be executed
- *
- * @param string|\Cake\Database\Query $query The query to convert into a statement.
- * @return \Cake\Database\StatementInterface
- */
- abstract public function prepare($query);
- /**
- * Starts a transaction
- *
- * @return bool true on success, false otherwise
- */
- abstract public function beginTransaction();
- /**
- * Commits a transaction
- *
- * @return bool true on success, false otherwise
- */
- abstract public function commitTransaction();
- /**
- * Rollsback a transaction
- *
- * @return bool true on success, false otherwise
- */
- abstract public function rollbackTransaction();
- /**
- * Get the SQL for releasing a save point.
- *
- * @param string $name The table name
- * @return string
- */
- abstract public function releaseSavePointSQL($name);
- /**
- * Get the SQL for creating a save point.
- *
- * @param string $name The table name
- * @return string
- */
- abstract public function savePointSQL($name);
- /**
- * Get the SQL for rollingback a save point.
- *
- * @param string $name The table name
- * @return string
- */
- abstract public function rollbackSavePointSQL($name);
- /**
- * Get the SQL for disabling foreign keys
- *
- * @return string
- */
- abstract public function disableForeignKeySQL();
- /**
- * Get the SQL for enabling foreign keys
- *
- * @return string
- */
- abstract public function enableForeignKeySQL();
- /**
- * Returns whether the driver supports adding or dropping constraints
- * to already created tables.
- *
- * @return bool true if driver supports dynamic constraints
- */
- abstract public function supportsDynamicConstraints();
- /**
- * Returns whether this driver supports save points for nested transactions
- *
- * @return bool true if save points are supported, false otherwise
- */
- public function supportsSavePoints()
- {
- return true;
- }
- /**
- * Returns a value in a safe representation to be used in a query string
- *
- * @param mixed $value The value to quote.
- * @param string $type Type to be used for determining kind of quoting to perform
- * @return string
- */
- abstract public function quote($value, $type);
- /**
- * Checks if the driver supports quoting
- *
- * @return bool
- */
- public function supportsQuoting()
- {
- return true;
- }
- /**
- * Returns a callable function that will be used to transform a passed Query object.
- * This function, in turn, will return an instance of a Query object that has been
- * transformed to accommodate any specificities of the SQL dialect in use.
- *
- * @param string $type the type of query to be transformed
- * (select, insert, update, delete)
- * @return callable
- */
- abstract public function queryTranslator($type);
- /**
- * Get the schema dialect.
- *
- * Used by Cake\Database\Schema package to reflect schema and
- * generate schema.
- *
- * If all the tables that use this Driver specify their
- * own schemas, then this may return null.
- *
- * @return \Cake\Database\Schema\BaseSchema
- */
- abstract public function schemaDialect();
- /**
- * Quotes a database identifier (a column name, table name, etc..) to
- * be used safely in queries without the risk of using reserved words
- *
- * @param string $identifier The identifier expression to quote.
- * @return string
- */
- abstract public function quoteIdentifier($identifier);
- /**
- * Escapes values for use in schema definitions.
- *
- * @param mixed $value The value to escape.
- * @return string String for use in schema definitions.
- */
- public function schemaValue($value)
- {
- if ($value === null) {
- return 'NULL';
- }
- if ($value === false) {
- return 'FALSE';
- }
- if ($value === true) {
- return 'TRUE';
- }
- if (is_float($value)) {
- return str_replace(',', '.', (string)$value);
- }
- if ((is_int($value) || $value === '0') || (
- is_numeric($value) && strpos($value, ',') === false &&
- $value[0] !== '0' && strpos($value, 'e') === false)
- ) {
- return (string)$value;
- }
- return $this->_connection->quote($value, PDO::PARAM_STR);
- }
- /**
- * Returns the schema name that's being used
- *
- * @return string
- */
- public function schema()
- {
- return $this->_config['schema'];
- }
- /**
- * Returns last id generated for a table or sequence in database
- *
- * @param string|null $table table name or sequence to get last insert value from
- * @param string|null $column the name of the column representing the primary key
- * @return string|int
- */
- public function lastInsertId($table = null, $column = null)
- {
- return $this->_connection->lastInsertId($table, $column);
- }
- /**
- * Check whether or not the driver is connected.
- *
- * @return bool
- */
- public function isConnected()
- {
- return $this->_connection !== null;
- }
- /**
- * Sets whether or not this driver should automatically quote identifiers
- * in queries.
- *
- * @param bool $enable Whether to enable auto quoting
- * @return $this
- */
- public function enableAutoQuoting($enable = true)
- {
- $this->_autoQuoting = (bool)$enable;
- return $this;
- }
- /**
- * Returns whether or not this driver should automatically quote identifiers
- * in queries
- *
- * @return bool
- */
- public function isAutoQuotingEnabled()
- {
- return $this->_autoQuoting;
- }
- /**
- * Returns whether or not this driver should automatically quote identifiers
- * in queries
- *
- * If called with a boolean argument, it will toggle the auto quoting setting
- * to the passed value
- *
- * @deprecated 3.4.0 use enableAutoQuoting()/isAutoQuotingEnabled() instead.
- * @param bool|null $enable Whether to enable auto quoting
- * @return bool
- */
- public function autoQuoting($enable = null)
- {
- if ($enable !== null) {
- $this->enableAutoQuoting($enable);
- }
- return $this->isAutoQuotingEnabled();
- }
- /**
- * Transforms the passed query to this Driver's dialect and returns an instance
- * of the transformed query and the full compiled SQL string
- *
- * @param \Cake\Database\Query $query The query to compile.
- * @param \Cake\Database\ValueBinder $generator The value binder to use.
- * @return array containing 2 entries. The first entity is the transformed query
- * and the second one the compiled SQL
- */
- public function compileQuery(Query $query, ValueBinder $generator)
- {
- $processor = $this->newCompiler();
- $translator = $this->queryTranslator($query->type());
- $query = $translator($query);
- return [$query, $processor->compile($query, $generator)];
- }
- /**
- * Returns an instance of a QueryCompiler
- *
- * @return \Cake\Database\QueryCompiler
- */
- public function newCompiler()
- {
- return new QueryCompiler();
- }
- /**
- * Destructor
- */
- public function __destruct()
- {
- $this->_connection = null;
- }
- /**
- * Returns an array that can be used to describe the internal state of this
- * object.
- *
- * @return array
- */
- public function __debugInfo()
- {
- return [
- 'connected' => $this->_connection !== null
- ];
- }
- }
|