nextcloud/lib/private/db/mdb2schemamanager.php

122 lines
3.3 KiB
PHP
Raw Normal View History

2012-10-10 22: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.
*/
namespace OC\DB;
use Doctrine\DBAL\Platforms\MySqlPlatform;
use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
class MDB2SchemaManager {
/**
2013-08-06 17:43:58 +04:00
* @var \OC\DB\Connection $conn
*/
protected $conn;
/**
2013-08-06 17:43:58 +04:00
* @param \OC\DB\Connection $conn
*/
public function __construct($conn) {
$this->conn = $conn;
$this->conn->close();
$this->conn->connect();
}
2012-10-10 22:49:47 +04:00
/**
* saves database scheme to xml file
2012-10-10 22:49:47 +04:00
* @param string $file name of file
2013-06-28 01:34:36 +04:00
* @param int|string $mode
2012-10-10 22:49:47 +04:00
* @return bool
*
* TODO: write more documentation
*/
public function getDbStructure($file, $mode = MDB2_SCHEMA_DUMP_STRUCTURE) {
$sm = $this->conn->getSchemaManager();
2012-10-10 22:49:47 +04:00
return \OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm);
2012-10-10 22:49:47 +04:00
}
/**
* Creates tables from XML file
2012-10-10 22:49:47 +04:00
* @param string $file file to read structure from
* @return bool
*
* TODO: write more documentation
*/
public function createDbFromStructure($file) {
$schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform());
2013-07-29 18:33:00 +04:00
$toSchema = $schemaReader->loadSchemaFromFile($file);
return $this->executeSchemaChange($toSchema);
2012-10-10 22:49:47 +04:00
}
/**
* update the database scheme
2012-10-10 22:49:47 +04:00
* @param string $file file to read structure from
* @param bool $generateSql only return the sql needed for the upgrade
* @return string|boolean
2012-10-10 22:49:47 +04:00
*/
public function updateDbFromStructure($file, $generateSql = false) {
2012-10-10 22:49:47 +04:00
$platform = $this->conn->getDatabasePlatform();
$schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $platform);
$toSchema = $schemaReader->loadSchemaFromFile($file);
if ($platform instanceof SqlitePlatform) {
$check = true;
$migrator = new SQLiteMigrator($this->conn);
} else if ($platform instanceof MySqlPlatform or $platform instanceof PostgreSqlPlatform) {
$check = true;
$migrator = new Migrator($this->conn);
} else {
// dont do the upgrade check for oracle
$check = false;
$migrator = new Migrator($this->conn);
}
if ($generateSql) {
return $migrator->generateChangeScript($toSchema);
} else {
if ($check) {
$migrator->checkMigrate($toSchema);
}
$migrator->migrate($toSchema);
return true;
}
2012-10-10 22:49:47 +04:00
}
/**
* remove all tables defined in a database structure xml file
*
2012-10-10 22:49:47 +04:00
* @param string $file the xml file describing the tables
*/
public function removeDBStructure($file) {
$schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform());
2013-07-29 18:33:00 +04:00
$fromSchema = $schemaReader->loadSchemaFromFile($file);
2012-10-10 22:49:47 +04:00
$toSchema = clone $fromSchema;
/** @var $table \Doctrine\DBAL\Schema\Table */
foreach ($toSchema->getTables() as $table) {
2012-10-10 22:49:47 +04:00
$toSchema->dropTable($table->getName());
}
$comparator = new \Doctrine\DBAL\Schema\Comparator();
$schemaDiff = $comparator->compare($fromSchema, $toSchema);
$this->executeSchemaChange($schemaDiff);
2012-10-10 22:49:47 +04:00
}
2013-07-29 18:33:00 +04:00
/**
* @param \Doctrine\DBAL\Schema\Schema $schema
* @return bool
*/
private function executeSchemaChange($schema) {
$this->conn->beginTransaction();
foreach ($schema->toSql($this->conn->getDatabasePlatform()) as $sql) {
$this->conn->query($sql);
2012-10-10 22:49:47 +04:00
}
$this->conn->commit();
2013-07-29 18:33:00 +04:00
return true;
2012-10-10 22:49:47 +04:00
}
}