2012-10-10 14:49:47 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-07-29 11:46:20 -04:00
|
|
|
namespace OC\DB;
|
|
|
|
|
|
2014-05-06 08:04:22 -04:00
|
|
|
use Doctrine\DBAL\Platforms\MySqlPlatform;
|
2014-04-11 09:10:09 -04:00
|
|
|
use Doctrine\DBAL\Platforms\OraclePlatform;
|
2014-05-06 08:04:22 -04:00
|
|
|
use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
|
2014-04-08 10:01:08 -04:00
|
|
|
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
2014-09-15 08:26:00 -04:00
|
|
|
use Doctrine\DBAL\Platforms\SQLServerPlatform;
|
2014-04-08 10:01:08 -04:00
|
|
|
|
2013-08-02 07:19:27 -04:00
|
|
|
class MDB2SchemaManager {
|
2013-07-29 11:46:20 -04:00
|
|
|
/**
|
2013-08-06 09:43:58 -04:00
|
|
|
* @var \OC\DB\Connection $conn
|
2013-07-29 11:46:20 -04:00
|
|
|
*/
|
|
|
|
|
protected $conn;
|
|
|
|
|
|
2013-08-02 09:09:50 -04:00
|
|
|
/**
|
2014-09-10 07:33:59 -04:00
|
|
|
* @param \OCP\IDBConnection $conn
|
2013-08-02 09:09:50 -04:00
|
|
|
*/
|
|
|
|
|
public function __construct($conn) {
|
2013-07-29 11:46:20 -04:00
|
|
|
$this->conn = $conn;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-10 14:49:47 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* saves database scheme to xml file
|
2012-10-10 14:49:47 -04:00
|
|
|
* @param string $file name of file
|
2013-06-27 17:34:36 -04:00
|
|
|
* @param int|string $mode
|
2012-10-10 14:49:47 -04:00
|
|
|
* @return bool
|
|
|
|
|
*
|
|
|
|
|
* TODO: write more documentation
|
|
|
|
|
*/
|
2014-04-08 10:01:08 -04:00
|
|
|
public function getDbStructure($file, $mode = MDB2_SCHEMA_DUMP_STRUCTURE) {
|
2014-11-30 17:17:09 -05:00
|
|
|
return \OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $this->conn);
|
2012-10-10 14:49:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Creates tables from XML file
|
2012-10-10 14:49:47 -04:00
|
|
|
* @param string $file file to read structure from
|
|
|
|
|
* @return bool
|
|
|
|
|
*
|
|
|
|
|
* TODO: write more documentation
|
|
|
|
|
*/
|
2014-04-08 10:01:08 -04:00
|
|
|
public function createDbFromStructure($file) {
|
2014-11-18 18:25:26 -05:00
|
|
|
$schemaReader = new MDB2SchemaReader(\OC::$server->getConfig(), $this->conn->getDatabasePlatform());
|
2013-07-29 10:33:00 -04:00
|
|
|
$toSchema = $schemaReader->loadSchemaFromFile($file);
|
2013-07-29 11:46:20 -04:00
|
|
|
return $this->executeSchemaChange($toSchema);
|
2012-10-10 14:49:47 -04:00
|
|
|
}
|
|
|
|
|
|
2014-04-11 09:10:09 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OC\DB\Migrator
|
|
|
|
|
*/
|
2014-07-01 06:54:35 -04:00
|
|
|
public function getMigrator() {
|
2013-10-17 14:16:27 -04:00
|
|
|
$random = \OC::$server->getSecureRandom()->getMediumStrengthGenerator();
|
2014-04-11 09:10:09 -04:00
|
|
|
$platform = $this->conn->getDatabasePlatform();
|
2014-12-22 04:43:56 -05:00
|
|
|
$config = \OC::$server->getConfig();
|
2014-04-11 09:10:09 -04:00
|
|
|
if ($platform instanceof SqlitePlatform) {
|
2013-10-17 14:16:27 -04:00
|
|
|
return new SQLiteMigrator($this->conn, $random, $config);
|
2014-04-11 09:10:09 -04:00
|
|
|
} else if ($platform instanceof OraclePlatform) {
|
2014-12-22 04:43:56 -05:00
|
|
|
return new OracleMigrator($this->conn, $random, $config);
|
2014-05-06 08:46:59 -04:00
|
|
|
} else if ($platform instanceof MySqlPlatform) {
|
2014-12-22 04:43:56 -05:00
|
|
|
return new MySQLMigrator($this->conn, $random, $config);
|
2014-09-15 08:26:00 -04:00
|
|
|
} else if ($platform instanceof SQLServerPlatform) {
|
2014-12-22 04:43:56 -05:00
|
|
|
return new MsSqlMigrator($this->conn, $random, $config);
|
2014-05-06 08:46:59 -04:00
|
|
|
} else if ($platform instanceof PostgreSqlPlatform) {
|
2014-12-22 04:43:56 -05:00
|
|
|
return new Migrator($this->conn, $random, $config);
|
2014-05-06 08:04:22 -04:00
|
|
|
} else {
|
2014-12-22 04:43:56 -05:00
|
|
|
return new NoCheckMigrator($this->conn, $random, $config);
|
2014-04-11 09:10:09 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 12:15:58 -04:00
|
|
|
/**
|
|
|
|
|
* Reads database schema from file
|
|
|
|
|
*
|
|
|
|
|
* @param string $file file to read from
|
|
|
|
|
*/
|
|
|
|
|
private function readSchemaFromFile($file) {
|
|
|
|
|
$platform = $this->conn->getDatabasePlatform();
|
2014-11-18 18:25:26 -05:00
|
|
|
$schemaReader = new MDB2SchemaReader(\OC::$server->getConfig(), $platform);
|
2014-06-04 12:15:58 -04:00
|
|
|
return $schemaReader->loadSchemaFromFile($file);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-10 14:49:47 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* update the database scheme
|
2012-10-10 14:49:47 -04:00
|
|
|
* @param string $file file to read structure from
|
2014-04-08 10:01:08 -04:00
|
|
|
* @param bool $generateSql only return the sql needed for the upgrade
|
2014-02-06 10:30:58 -05:00
|
|
|
* @return string|boolean
|
2012-10-10 14:49:47 -04:00
|
|
|
*/
|
2014-06-04 12:15:58 -04:00
|
|
|
public function updateDbFromStructure($file, $generateSql = false) {
|
|
|
|
|
$toSchema = $this->readSchemaFromFile($file);
|
2014-04-11 09:10:09 -04:00
|
|
|
$migrator = $this->getMigrator();
|
2014-05-19 11:50:53 -04:00
|
|
|
|
2013-10-17 06:51:30 -04:00
|
|
|
if ($generateSql) {
|
2014-04-08 10:01:08 -04:00
|
|
|
return $migrator->generateChangeScript($toSchema);
|
|
|
|
|
} else {
|
2014-06-04 12:15:58 -04:00
|
|
|
$migrator->migrate($toSchema);
|
2014-04-08 10:01:08 -04:00
|
|
|
return true;
|
2013-10-17 06:51:30 -04:00
|
|
|
}
|
2012-10-10 14:49:47 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-04 12:15:58 -04:00
|
|
|
/**
|
|
|
|
|
* update the database scheme
|
|
|
|
|
* @param string $file file to read structure from
|
|
|
|
|
* @return string|boolean
|
|
|
|
|
*/
|
|
|
|
|
public function simulateUpdateDbFromStructure($file) {
|
|
|
|
|
$toSchema = $this->readSchemaFromFile($file);
|
2014-04-17 10:12:48 -04:00
|
|
|
$this->getMigrator()->checkMigrate($toSchema);
|
2014-06-04 12:15:58 -04:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-26 09:59:02 -04:00
|
|
|
/**
|
|
|
|
|
* @param \Doctrine\DBAL\Schema\Schema $schema
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function generateChangeScript($schema) {
|
|
|
|
|
$migrator = $this->getMigrator();
|
|
|
|
|
return $migrator->generateChangeScript($schema);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-10 14:49:47 -04:00
|
|
|
/**
|
|
|
|
|
* remove all tables defined in a database structure xml file
|
2014-04-08 10:01:08 -04:00
|
|
|
*
|
2012-10-10 14:49:47 -04:00
|
|
|
* @param string $file the xml file describing the tables
|
|
|
|
|
*/
|
2013-07-29 11:46:20 -04:00
|
|
|
public function removeDBStructure($file) {
|
2014-11-18 18:25:26 -05:00
|
|
|
$schemaReader = new MDB2SchemaReader(\OC::$server->getConfig(), $this->conn->getDatabasePlatform());
|
2013-07-29 10:33:00 -04:00
|
|
|
$fromSchema = $schemaReader->loadSchemaFromFile($file);
|
2012-10-10 14:49:47 -04:00
|
|
|
$toSchema = clone $fromSchema;
|
2013-10-17 08:54:37 -04:00
|
|
|
/** @var $table \Doctrine\DBAL\Schema\Table */
|
2014-04-08 10:01:08 -04:00
|
|
|
foreach ($toSchema->getTables() as $table) {
|
2012-10-10 14:49:47 -04:00
|
|
|
$toSchema->dropTable($table->getName());
|
|
|
|
|
}
|
|
|
|
|
$comparator = new \Doctrine\DBAL\Schema\Comparator();
|
|
|
|
|
$schemaDiff = $comparator->compare($fromSchema, $toSchema);
|
2013-07-29 11:46:20 -04:00
|
|
|
$this->executeSchemaChange($schemaDiff);
|
2012-10-10 14:49:47 -04:00
|
|
|
}
|
|
|
|
|
|
2013-07-29 10:33:00 -04:00
|
|
|
/**
|
2014-10-24 09:49:55 -04:00
|
|
|
* @param \Doctrine\DBAL\Schema\Schema|\Doctrine\DBAL\Schema\SchemaDiff $schema
|
2013-07-29 10:33:00 -04:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2014-10-24 09:49:55 -04:00
|
|
|
private function executeSchemaChange($schema) {
|
2013-07-29 11:46:20 -04:00
|
|
|
$this->conn->beginTransaction();
|
2014-04-08 10:01:08 -04:00
|
|
|
foreach ($schema->toSql($this->conn->getDatabasePlatform()) as $sql) {
|
2013-07-29 11:46:20 -04:00
|
|
|
$this->conn->query($sql);
|
2012-10-10 14:49:47 -04:00
|
|
|
}
|
2013-07-29 11:46:20 -04:00
|
|
|
$this->conn->commit();
|
2014-06-11 11:02:34 -04:00
|
|
|
|
|
|
|
|
if ($this->conn->getDatabasePlatform() instanceof SqlitePlatform) {
|
2014-09-10 07:33:59 -04:00
|
|
|
$this->conn->close();
|
|
|
|
|
$this->conn->connect();
|
2014-06-11 11:02:34 -04:00
|
|
|
}
|
2013-07-29 10:33:00 -04:00
|
|
|
return true;
|
2012-10-10 14:49:47 -04:00
|
|
|
}
|
|
|
|
|
}
|