123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802 |
- <?php
-
-
- namespace Doctrine\DBAL\Schema;
-
- use Doctrine\DBAL\Types;
- use Doctrine\DBAL\DBALException;
- use Doctrine\DBAL\Platforms\AbstractPlatform;
-
-
- abstract class AbstractSchemaManager
- {
-
-
- protected $_conn;
-
-
-
- protected $_platform;
-
-
-
- public function __construct(\Doctrine\DBAL\Connection $conn)
- {
- $this->_conn = $conn;
- $this->_platform = $this->_conn->getDatabasePlatform();
- }
-
-
-
- public function getDatabasePlatform()
- {
- return $this->_platform;
- }
-
-
-
- public function tryMethod()
- {
- $args = func_get_args();
- $method = $args[0];
- unset($args[0]);
- $args = array_values($args);
-
- try {
- return call_user_func_array(array($this, $method), $args);
- } catch (\Exception $e) {
- return false;
- }
- }
-
-
-
- public function listDatabases()
- {
- $sql = $this->_platform->getListDatabasesSQL();
-
- $databases = $this->_conn->fetchAll($sql);
-
- return $this->_getPortableDatabasesList($databases);
- }
-
-
-
- public function listSequences($database = null)
- {
- if (is_null($database)) {
- $database = $this->_conn->getDatabase();
- }
- $sql = $this->_platform->getListSequencesSQL($database);
-
- $sequences = $this->_conn->fetchAll($sql);
-
- return $this->_getPortableSequencesList($sequences);
- }
-
-
-
- public function listTableColumns($table, $database = null)
- {
- if (!$database) {
- $database = $this->_conn->getDatabase();
- }
-
- $sql = $this->_platform->getListTableColumnsSQL($table, $database);
-
- $tableColumns = $this->_conn->fetchAll($sql);
-
- return $this->_getPortableTableColumnList($tableColumns);
- }
-
-
-
- public function listTableIndexes($table)
- {
- $sql = $this->_platform->getListTableIndexesSQL($table, $this->_conn->getDatabase());
-
- $tableIndexes = $this->_conn->fetchAll($sql);
-
- return $this->_getPortableTableIndexesList($tableIndexes, $table);
- }
-
-
-
- public function tablesExist($tableNames)
- {
- $tableNames = array_map('strtolower', (array)$tableNames);
- return count($tableNames) == count(\array_intersect($tableNames, array_map('strtolower', $this->listTableNames())));
- }
-
-
-
-
- public function listTableNames()
- {
- $sql = $this->_platform->getListTablesSQL();
-
- $tables = $this->_conn->fetchAll($sql);
-
- return $this->_getPortableTablesList($tables);
- }
-
-
-
- public function listTables()
- {
- $tableNames = $this->listTableNames();
-
- $tables = array();
- foreach ($tableNames AS $tableName) {
- $tables[] = $this->listTableDetails($tableName);
- }
-
- return $tables;
- }
-
-
-
- public function listTableDetails($tableName)
- {
- $columns = $this->listTableColumns($tableName);
- $foreignKeys = array();
- if ($this->_platform->supportsForeignKeyConstraints()) {
- $foreignKeys = $this->listTableForeignKeys($tableName);
- }
- $indexes = $this->listTableIndexes($tableName);
-
- return new Table($tableName, $columns, $indexes, $foreignKeys, false, array());
- }
-
-
-
- public function listViews()
- {
- $database = $this->_conn->getDatabase();
- $sql = $this->_platform->getListViewsSQL($database);
- $views = $this->_conn->fetchAll($sql);
-
- return $this->_getPortableViewsList($views);
- }
-
-
-
- public function listTableForeignKeys($table, $database = null)
- {
- if (is_null($database)) {
- $database = $this->_conn->getDatabase();
- }
- $sql = $this->_platform->getListTableForeignKeysSQL($table, $database);
- $tableForeignKeys = $this->_conn->fetchAll($sql);
-
- return $this->_getPortableTableForeignKeysList($tableForeignKeys);
- }
-
-
-
-
-
- public function dropDatabase($database)
- {
- $this->_execSql($this->_platform->getDropDatabaseSQL($database));
- }
-
-
-
- public function dropTable($table)
- {
- $this->_execSql($this->_platform->getDropTableSQL($table));
- }
-
-
-
- public function dropIndex($index, $table)
- {
- if($index instanceof Index) {
- $index = $index->getQuotedName($this->_platform);
- }
-
- $this->_execSql($this->_platform->getDropIndexSQL($index, $table));
- }
-
-
-
- public function dropConstraint(Constraint $constraint, $table)
- {
- $this->_execSql($this->_platform->getDropConstraintSQL($constraint, $table));
- }
-
-
-
- public function dropForeignKey($foreignKey, $table)
- {
- $this->_execSql($this->_platform->getDropForeignKeySQL($foreignKey, $table));
- }
-
-
-
- public function dropSequence($name)
- {
- $this->_execSql($this->_platform->getDropSequenceSQL($name));
- }
-
-
-
- public function dropView($name)
- {
- $this->_execSql($this->_platform->getDropViewSQL($name));
- }
-
-
-
-
-
- public function createDatabase($database)
- {
- $this->_execSql($this->_platform->getCreateDatabaseSQL($database));
- }
-
-
-
- public function createTable(Table $table)
- {
- $createFlags = AbstractPlatform::CREATE_INDEXES|AbstractPlatform::CREATE_FOREIGNKEYS;
- $this->_execSql($this->_platform->getCreateTableSQL($table, $createFlags));
- }
-
-
-
- public function createSequence($sequence)
- {
- $this->_execSql($this->_platform->getCreateSequenceSQL($sequence));
- }
-
-
-
- public function createConstraint(Constraint $constraint, $table)
- {
- $this->_execSql($this->_platform->getCreateConstraintSQL($constraint, $table));
- }
-
-
-
- public function createIndex(Index $index, $table)
- {
- $this->_execSql($this->_platform->getCreateIndexSQL($index, $table));
- }
-
-
-
- public function createForeignKey(ForeignKeyConstraint $foreignKey, $table)
- {
- $this->_execSql($this->_platform->getCreateForeignKeySQL($foreignKey, $table));
- }
-
-
-
- public function createView(View $view)
- {
- $this->_execSql($this->_platform->getCreateViewSQL($view->getQuotedName($this->_platform), $view->getSql()));
- }
-
-
-
-
-
- public function dropAndCreateConstraint(Constraint $constraint, $table)
- {
- $this->tryMethod('dropConstraint', $constraint, $table);
- $this->createConstraint($constraint, $table);
- }
-
-
-
- public function dropAndCreateIndex(Index $index, $table)
- {
- $this->tryMethod('dropIndex', $index->getQuotedName($this->_platform), $table);
- $this->createIndex($index, $table);
- }
-
-
-
- public function dropAndCreateForeignKey(ForeignKeyConstraint $foreignKey, $table)
- {
- $this->tryMethod('dropForeignKey', $foreignKey, $table);
- $this->createForeignKey($foreignKey, $table);
- }
-
-
-
- public function dropAndCreateSequence(Sequence $sequence)
- {
- $this->tryMethod('createSequence', $seqName, $start, $allocationSize);
- $this->createSequence($seqName, $start, $allocationSize);
- }
-
-
-
- public function dropAndCreateTable(Table $table)
- {
- $this->tryMethod('dropTable', $table->getQuotedName($this->_platform));
- $this->createTable($table);
- }
-
-
-
- public function dropAndCreateDatabase($database)
- {
- $this->tryMethod('dropDatabase', $database);
- $this->createDatabase($database);
- }
-
-
-
- public function dropAndCreateView(View $view)
- {
- $this->tryMethod('dropView', $view->getQuotedName($this->_platform));
- $this->createView($view);
- }
-
-
-
-
-
- public function alterTable(TableDiff $tableDiff)
- {
- $queries = $this->_platform->getAlterTableSQL($tableDiff);
- if (is_array($queries) && count($queries)) {
- foreach ($queries AS $ddlQuery) {
- $this->_execSql($ddlQuery);
- }
- }
- }
-
-
-
- public function renameTable($name, $newName)
- {
- $tableDiff = new TableDiff($name);
- $tableDiff->newName = $newName;
- $this->alterTable($tableDiff);
- }
-
-
-
-
- protected function _getPortableDatabasesList($databases)
- {
- $list = array();
- foreach ($databases as $key => $value) {
- if ($value = $this->_getPortableDatabaseDefinition($value)) {
- $list[] = $value;
- }
- }
- return $list;
- }
-
- protected function _getPortableDatabaseDefinition($database)
- {
- return $database;
- }
-
- protected function _getPortableFunctionsList($functions)
- {
- $list = array();
- foreach ($functions as $key => $value) {
- if ($value = $this->_getPortableFunctionDefinition($value)) {
- $list[] = $value;
- }
- }
- return $list;
- }
-
- protected function _getPortableFunctionDefinition($function)
- {
- return $function;
- }
-
- protected function _getPortableTriggersList($triggers)
- {
- $list = array();
- foreach ($triggers as $key => $value) {
- if ($value = $this->_getPortableTriggerDefinition($value)) {
- $list[] = $value;
- }
- }
- return $list;
- }
-
- protected function _getPortableTriggerDefinition($trigger)
- {
- return $trigger;
- }
-
- protected function _getPortableSequencesList($sequences)
- {
- $list = array();
- foreach ($sequences as $key => $value) {
- if ($value = $this->_getPortableSequenceDefinition($value)) {
- $list[] = $value;
- }
- }
- return $list;
- }
-
-
-
- protected function _getPortableSequenceDefinition($sequence)
- {
- throw DBALException::notSupported('Sequences');
- }
-
-
-
- protected function _getPortableTableColumnList($tableColumns)
- {
- $list = array();
- foreach ($tableColumns as $key => $column) {
- if ($column = $this->_getPortableTableColumnDefinition($column)) {
- $name = strtolower($column->getQuotedName($this->_platform));
- $list[$name] = $column;
- }
- }
- return $list;
- }
-
-
-
- abstract protected function _getPortableTableColumnDefinition($tableColumn);
-
-
-
- protected function _getPortableTableIndexesList($tableIndexRows, $tableName=null)
- {
- $result = array();
- foreach($tableIndexRows AS $tableIndex) {
- $indexName = $keyName = $tableIndex['key_name'];
- if($tableIndex['primary']) {
- $keyName = 'primary';
- }
- $keyName = strtolower($keyName);
-
- if(!isset($result[$keyName])) {
- $result[$keyName] = array(
- 'name' => $indexName,
- 'columns' => array($tableIndex['column_name']),
- 'unique' => $tableIndex['non_unique'] ? false : true,
- 'primary' => $tableIndex['primary'],
- );
- } else {
- $result[$keyName]['columns'][] = $tableIndex['column_name'];
- }
- }
-
- $indexes = array();
- foreach($result AS $indexKey => $data) {
- $indexes[$indexKey] = new Index($data['name'], $data['columns'], $data['unique'], $data['primary']);
- }
-
- return $indexes;
- }
-
- protected function _getPortableTablesList($tables)
- {
- $list = array();
- foreach ($tables as $key => $value) {
- if ($value = $this->_getPortableTableDefinition($value)) {
- $list[] = $value;
- }
- }
- return $list;
- }
-
- protected function _getPortableTableDefinition($table)
- {
- return $table;
- }
-
- protected function _getPortableUsersList($users)
- {
- $list = array();
- foreach ($users as $key => $value) {
- if ($value = $this->_getPortableUserDefinition($value)) {
- $list[] = $value;
- }
- }
- return $list;
- }
-
- protected function _getPortableUserDefinition($user)
- {
- return $user;
- }
-
- protected function _getPortableViewsList($views)
- {
- $list = array();
- foreach ($views as $key => $value) {
- if ($view = $this->_getPortableViewDefinition($value)) {
- $viewName = strtolower($view->getQuotedName($this->_platform));
- $list[$viewName] = $view;
- }
- }
- return $list;
- }
-
- protected function _getPortableViewDefinition($view)
- {
- return false;
- }
-
- protected function _getPortableTableForeignKeysList($tableForeignKeys)
- {
- $list = array();
- foreach ($tableForeignKeys as $key => $value) {
- if ($value = $this->_getPortableTableForeignKeyDefinition($value)) {
- $list[] = $value;
- }
- }
- return $list;
- }
-
- protected function _getPortableTableForeignKeyDefinition($tableForeignKey)
- {
- return $tableForeignKey;
- }
-
- protected function _execSql($sql)
- {
- foreach ((array) $sql as $query) {
- $this->_conn->executeUpdate($query);
- }
- }
-
-
-
- public function createSchema()
- {
- $sequences = array();
- if($this->_platform->supportsSequences()) {
- $sequences = $this->listSequences();
- }
- $tables = $this->listTables();
-
- return new Schema($tables, $sequences, $this->createSchemaConfig());
- }
-
-
-
- public function createSchemaConfig()
- {
- $schemaConfig = new SchemaConfig();
- $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
-
- return $schemaConfig;
- }
-
-
-
- public function extractDoctrineTypeFromComment($comment, $currentType)
- {
- if (preg_match("(\(DC2Type:([a-zA-Z0-9]+)\))", $comment, $match)) {
- $currentType = $match[1];
- }
- return $currentType;
- }
-
- public function removeDoctrineTypeFromComment($comment, $type)
- {
- return str_replace('(DC2Type:'.$type.')', '', $comment);
- }
- }
|