Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

265 lines
7.9 KiB

13 years ago
<?php
/**
13 years ago
* Driver class file.
13 years ago
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.yiiframework.com/
13 years ago
* @copyright Copyright &copy; 2008-2012 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
13 years ago
namespace yii\db\dao;
13 years ago
use yii\db\Exception;
13 years ago
/**
13 years ago
* Driver is the base class for all database driver classes.
13 years ago
*
13 years ago
* Driver implements the DBMS-specific methods to support retrieving meta data of a database.
13 years ago
*
* @property QueryBuilder $queryBuilder the query builder for this connection.
* @property array $tableNames the names of all tables in this database.
* @property array $tableSchemas the meta data for all tables in this database.
13 years ago
*
* @author Qiang Xue <qiang.xue@gmail.com>
13 years ago
* @since 2.0
13 years ago
*/
13 years ago
abstract class Driver extends \yii\base\Object
13 years ago
{
13 years ago
/**
13 years ago
* @var Connection the database connection
13 years ago
*/
13 years ago
public $connection;
13 years ago
/**
* @var array list of ALL table names in the database
*/
13 years ago
private $_tableNames = array();
13 years ago
/**
* @var array list of loaded table meta data (table name => TableSchema)
*/
13 years ago
private $_tables = array();
13 years ago
/**
* @var QueryBuilder the query builder for this database
*/
13 years ago
private $_builder;
/**
* Loads the metadata for the specified table.
* @param string $name table name
13 years ago
* @return TableSchema DBMS-dependent table metadata, null if the table does not exist.
13 years ago
*/
13 years ago
abstract protected function loadTableSchema($name);
13 years ago
/**
* Constructor.
13 years ago
* @param Connection $connection database connection.
13 years ago
*/
13 years ago
public function __construct($connection)
13 years ago
{
13 years ago
$this->connection = $connection;
13 years ago
}
/**
* Obtains the metadata for the named table.
13 years ago
* @param string $name table name. The table name may contain schema name if any. Do not quote the table name.
13 years ago
* @param boolean $refresh whether to reload the table schema even if it is found in the cache.
13 years ago
* @return TableSchema table metadata. Null if the named table does not exist.
13 years ago
*/
13 years ago
public function getTableSchema($name, $refresh = false)
13 years ago
{
13 years ago
if (isset($this->_tables[$name]) && !$refresh) {
13 years ago
return $this->_tables[$name];
13 years ago
}
13 years ago
13 years ago
$db = $this->connection;
13 years ago
13 years ago
$realName = $db->expandTablePrefix($name);
13 years ago
// temporarily disable query caching
if ($db->queryCachingDuration >= 0) {
$qcDuration = $db->queryCachingDuration;
$db->queryCachingDuration = -1;
}
13 years ago
if (!in_array($name, $db->schemaCachingExclude, true) && $db->schemaCachingDuration >= 0 && ($cache = \Yii::$application->getComponent($db->schemaCacheID)) !== null) {
$key = $this->getCacheKey($name);
if ($refresh || ($table = $cache->get($key)) === false) {
13 years ago
$table = $this->loadTableSchema($realName);
if ($table !== null) {
$cache->set($key, $table, $db->schemaCachingDuration);
13 years ago
}
}
13 years ago
$this->_tables[$name] = $table;
13 years ago
} else {
13 years ago
$this->_tables[$name] = $table = $this->loadTableSchema($realName);
}
13 years ago
13 years ago
if (isset($qcDuration)) { // re-enable query caching
$db->queryCachingDuration = $qcDuration;
13 years ago
}
13 years ago
return $table;
13 years ago
}
/**
13 years ago
* Returns the cache key for the specified table name.
* @param string $name the table name
* @return string the cache key
*/
public function getCacheKey($name)
{
return __CLASS__ . "/{$this->connection->dsn}/{$this->connection->username}/{$name}";
}
/**
13 years ago
* Returns the metadata for all tables in the database.
* @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema.
* @return array the metadata for all tables in the database.
13 years ago
* Each array element is an instance of [[TableSchema]] (or its child class).
13 years ago
*/
13 years ago
public function getTableSchemas($schema = '')
13 years ago
{
$tables = array();
13 years ago
foreach ($this->getTableNames($schema) as $name) {
if (($table = $this->getTableSchema($name)) !== null) {
$tables[] = $table;
}
13 years ago
}
return $tables;
}
/**
* Returns all table names in the database.
* @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema.
* If not empty, the returned table names will be prefixed with the schema name.
13 years ago
* @param boolean $refresh whether to fetch the latest available table names. If this is false,
* table names fetched previously (if available) will be returned.
13 years ago
* @return array all table names in the database.
*/
13 years ago
public function getTableNames($schema = '', $refresh = false)
13 years ago
{
13 years ago
if (!isset($this->_tableNames[$schema]) || $refresh) {
13 years ago
$this->_tableNames[$schema] = $this->findTableNames($schema);
13 years ago
}
13 years ago
return $this->_tableNames[$schema];
}
/**
13 years ago
* @return QueryBuilder the query builder for this connection.
13 years ago
*/
13 years ago
public function getQueryBuilder()
13 years ago
{
13 years ago
if ($this->_builder === null) {
$this->_builder = $this->createQueryBuilder();
}
return $this->_builder;
13 years ago
}
/**
* Refreshes the schema.
13 years ago
* This method cleans up the cached table schema and names
* so that they can be recreated to reflect the database schema change.
* @param string $tableName the name of the table that needs to be refreshed.
* If null, all currently loaded tables will be refreshed.
13 years ago
*/
13 years ago
public function refresh($tableName = null)
13 years ago
{
13 years ago
$db = $this->connection;
13 years ago
if ($db->schemaCachingDuration >= 0 && ($cache = \Yii::$application->getComponent($db->schemaCacheID)) !== null) {
13 years ago
if ($tableName === null) {
foreach ($this->_tables as $name => $table) {
$cache->delete($this->getCacheKey($name));
}
$this->_tables = array();
} else {
$cache->delete($this->getCacheKey($tableName));
unset($this->_tables[$tableName]);
13 years ago
}
}
}
/**
* Quotes a table name for use in a query.
* If the table name contains schema prefix, the prefix will also be properly quoted.
* @param string $name table name
* @return string the properly quoted table name
* @see quoteSimpleTableName
*/
public function quoteTableName($name)
{
13 years ago
if (strpos($name, '.') === false) {
13 years ago
return $this->quoteSimpleTableName($name);
13 years ago
}
13 years ago
$parts = explode('.', $name);
13 years ago
foreach ($parts as $i => $part) {
13 years ago
$parts[$i] = $this->quoteSimpleTableName($part);
13 years ago
}
13 years ago
return implode('.', $parts);
}
/**
* Quotes a simple table name for use in a query.
* A simple table name does not schema prefix.
* @param string $name table name
* @return string the properly quoted table name
*/
public function quoteSimpleTableName($name)
{
13 years ago
return strpos($name, "'") !== false ? $name : "'" . $name . "'";
13 years ago
}
/**
* Quotes a column name for use in a query.
* If the column name contains prefix, the prefix will also be properly quoted.
* @param string $name column name
* @return string the properly quoted column name
* @see quoteSimpleColumnName
*/
public function quoteColumnName($name)
{
13 years ago
if (($pos = strrpos($name, '.')) !== false) {
13 years ago
$prefix = $this->quoteTableName(substr($name, 0, $pos)) . '.';
$name = substr($name, $pos + 1);
13 years ago
} else {
13 years ago
$prefix = '';
13 years ago
}
13 years ago
return $prefix . $this->quoteSimpleColumnName($name);
13 years ago
}
/**
* Quotes a simple column name for use in a query.
* A simple column name does not contain prefix.
* @param string $name column name
* @return string the properly quoted column name
*/
public function quoteSimpleColumnName($name)
{
13 years ago
return strpos($name, '"') !== false || $name === '*' ? $name : '"' . $name . '"';
13 years ago
}
/**
13 years ago
* Creates a query builder for the database.
* This method may be overridden by child classes to create a DBMS-specific query builder.
* @return QueryBuilder query builder instance
13 years ago
*/
13 years ago
public function createQueryBuilder()
13 years ago
{
13 years ago
return new QueryBuilder($this->connection);
13 years ago
}
/**
* Returns all table names in the database.
* This method should be overridden by child classes in order to support this feature
* because the default implementation simply throws an exception.
* @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema.
* If not empty, the returned table names will be prefixed with the schema name.
* @return array all table names in the database.
*/
protected function findTableNames($schema = '')
{
13 years ago
throw new Exception(get_class($this) . 'does not support fetching all table names.');
13 years ago
}
}