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.

274 lines
7.7 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\mysql;
13 years ago
use yii\db\dao\TableSchema;
13 years ago
use yii\db\dao\ColumnSchema;
13 years ago
13 years ago
/**
13 years ago
* Driver is the class for retrieving meta data from a MySQL database (version 4.1.x and 5.x).
13 years ago
*
* @author Qiang Xue <qiang.xue@gmail.com>
13 years ago
* @since 2.0
13 years ago
*/
13 years ago
class Driver extends \yii\db\dao\Driver
13 years ago
{
/**
13 years ago
* @var array mapping from physical column types (keys) to abstract column types (values)
13 years ago
*/
public $typeMap = array( // dbType => type
'tinyint' => self::TYPE_SMALLINT,
'bit' => self::TYPE_SMALLINT,
'smallint' => self::TYPE_SMALLINT,
'mediumint' => self::TYPE_INTEGER,
'int' => self::TYPE_INTEGER,
'integer' => self::TYPE_INTEGER,
'bigint' => self::TYPE_BIGINT,
'float' => self::TYPE_FLOAT,
'double' => self::TYPE_FLOAT,
'real' => self::TYPE_FLOAT,
'decimal' => self::TYPE_DECIMAL,
'numeric' => self::TYPE_DECIMAL,
'tinytext' => self::TYPE_TEXT,
'mediumtext' => self::TYPE_TEXT,
'longtext' => self::TYPE_TEXT,
'text' => self::TYPE_TEXT,
'varchar' => self::TYPE_STRING,
'string' => self::TYPE_STRING,
'char' => self::TYPE_STRING,
'datetime' => self::TYPE_DATETIME,
'year' => self::TYPE_DATE,
'date' => self::TYPE_DATE,
'time' => self::TYPE_TIME,
'timestamp' => self::TYPE_TIMESTAMP,
'enum' => self::TYPE_STRING,
);
/**
13 years ago
* Quotes a table name for use in a query.
13 years ago
* A simple table name has no schema prefix.
13 years ago
* @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.
13 years ago
* A simple column name has no prefix.
13 years ago
* @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
}
/**
* Loads the metadata for the specified table.
* @param string $name table name
13 years ago
* @return \yii\db\dao\TableSchema driver dependent table metadata. Null if the table does not exist.
13 years ago
*/
13 years ago
protected function loadTableSchema($name)
13 years ago
{
13 years ago
$table = new TableSchema;
13 years ago
$this->resolveTableNames($table, $name);
13 years ago
if ($this->findColumns($table)) {
13 years ago
$this->findConstraints($table);
return $table;
}
}
/**
* Generates various kinds of table names.
13 years ago
* @param \yii\db\dao\TableSchema $table the table instance
13 years ago
* @param string $name the unquoted table name
*/
protected function resolveTableNames($table, $name)
{
$parts = explode('.', str_replace('`', '', $name));
13 years ago
if (isset($parts[1])) {
13 years ago
$table->schemaName = $parts[0];
$table->name = $parts[1];
13 years ago
$table->quotedName = $this->quoteSimpleTableName($table->schemaName) . '.' . $this->quoteSimpleTableName($table->name);
13 years ago
} else {
13 years ago
$table->name = $parts[0];
13 years ago
$table->quotedName = $this->quoteSimpleTableName($table->name);
13 years ago
}
}
/**
* Creates a table column.
* @param array $column column metadata
13 years ago
* @return ColumnSchema normalized column metadata
13 years ago
*/
protected function createColumn($column)
{
13 years ago
$c = new ColumnSchema;
13 years ago
$c->name = $column['Field'];
13 years ago
$c->quotedName = $this->quoteSimpleColumnName($c->name);
13 years ago
$c->allowNull = $column['Null'] === 'YES';
$c->isPrimaryKey = strpos($column['Key'], 'PRI') !== false;
13 years ago
$c->autoIncrement = stripos($column['Extra'], 'auto_increment') !== false;
13 years ago
$c->dbType = $column['Type'];
$this->resolveColumnType($c);
$c->resolvePhpType();
$this->resolveDefaultValue($c, $column['Default']);
13 years ago
return $c;
}
/**
13 years ago
* @param \yii\db\dao\ColumnSchema $column
* @param string $value
*/
protected function resolveDefaultValue($column, $value)
{
if ($column->type !== 'timestamp' || $value !== 'CURRENT_TIMESTAMP') {
$column->defaultValue = $column->typecast($value);
}
}
/**
* Extracts the PHP type from DB type.
* @param \yii\db\dao\ColumnSchema $column the column
*/
public function resolveColumnType($column)
{
$column->type = self::TYPE_STRING;
$column->unsigned = strpos($column->dbType, 'unsigned') !== false;
if (preg_match('/^(\w+)(?:\(([^\)]+)\))?/', $column->dbType, $matches)) {
$type = $matches[1];
if (isset($this->typeMap[$type])) {
$column->type = $this->typeMap[$type];
}
if (!empty($matches[2])) {
if ($type === 'enum') {
$values = explode(',', $matches[2]);
foreach ($values as $i => $value) {
$values[$i] = trim($value, "'");
}
$column->enumValues = $values;
} else {
$values = explode(',', $matches[2]);
$column->size = $column->precision = (int)$values[0];
if (isset($values[1])) {
$column->scale = (int)$values[1];
}
if ($column->size === 1 && ($type === 'tinyint' || $type === 'bit')) {
$column->type = 'boolean';
} elseif ($type === 'bit') {
if ($column->size > 32) {
$column->type = 'bigint';
} elseif ($column->size === 32) {
$column->type = 'integer';
}
}
}
}
}
}
/**
13 years ago
* Collects the table column metadata.
13 years ago
* @param \yii\db\dao\TableSchema $table the table metadata
13 years ago
* @return boolean whether the table exists in the database
13 years ago
*/
13 years ago
protected function findColumns($table)
13 years ago
{
13 years ago
$sql = 'SHOW COLUMNS FROM ' . $table->quotedName;
try {
$columns = $this->connection->createCommand($sql)->queryAll();
}
13 years ago
catch (\Exception $e) {
13 years ago
return false;
}
foreach ($columns as $column) {
$table->columns[$c->name] = $c = $this->createColumn($column);
if ($c->isPrimaryKey) {
if ($table->primaryKey === null) {
$table->primaryKey = $c->name;
13 years ago
} elseif (is_string($table->primaryKey)) {
13 years ago
$table->primaryKey = array($table->primaryKey, $c->name);
13 years ago
} else {
13 years ago
$table->primaryKey[] = $c->name;
}
if ($c->autoIncrement) {
$table->sequenceName = '';
}
}
}
return true;
13 years ago
}
/**
* Collects the foreign key column details for the given table.
13 years ago
* @param \yii\db\dao\TableSchema $table the table metadata
13 years ago
*/
protected function findConstraints($table)
{
13 years ago
$row = $this->connection->createCommand('SHOW CREATE TABLE ' . $table->quotedName)->queryRow();
13 years ago
$matches = array();
$regexp = '/FOREIGN KEY\s+\(([^\)]+)\)\s+REFERENCES\s+([^\(^\s]+)\s*\(([^\)]+)\)/mi';
13 years ago
foreach ($row as $sql) {
if (preg_match_all($regexp, $sql, $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) {
$fks = array_map('trim', explode(',', str_replace('`', '', $match[1])));
$pks = array_map('trim', explode(',', str_replace('`', '', $match[3])));
$constraint = array(str_replace('`', '', $match[2]));
13 years ago
foreach ($fks as $k => $name) {
$constraint[$name] = $pks[$k];
}
$table->foreignKeys[] = $constraint;
}
13 years ago
break;
}
}
}
/**
* 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.
* @return array all table names in the database.
*/
protected function findTableNames($schema = '')
{
13 years ago
if ($schema === '') {
return $this->connection->createCommand('SHOW TABLES')->queryColumn();
13 years ago
}
13 years ago
$sql = 'SHOW TABLES FROM ' . $this->quoteSimpleTableName($schema);
$names = $this->connection->createCommand($sql)->queryColumn();
13 years ago
foreach ($names as &$name) {
$name = $schema . '.' . $name;
13 years ago
}
13 years ago
return $names;
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
*/
public function createQueryBuilder()
{
return new QueryBuilder($this->connection);
}
13 years ago
}