2006-12-29 17:01:31 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
|
|
|
Doctrine::autoload('Doctrine_Import_Reader');
|
|
|
|
/**
|
|
|
|
* class Doctrine_Import_Reader_Db
|
|
|
|
* Reads a database using the given PDO connection and constructs a database
|
|
|
|
* schema
|
2007-10-04 01:43:22 +04:00
|
|
|
*
|
2006-12-29 17:01:31 +03:00
|
|
|
* @package Doctrine
|
2007-10-04 01:43:22 +04:00
|
|
|
* @subpackage Import
|
2006-12-29 17:01:31 +03:00
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
*/
|
|
|
|
class Doctrine_Import_Reader_Db extends Doctrine_Import_Reader
|
|
|
|
{
|
|
|
|
/** Aggregations: */
|
|
|
|
|
|
|
|
/** Compositions: */
|
|
|
|
|
|
|
|
/*** Attributes: ***/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
private $pdo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param object pdo * @return
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
public function setPdo( $pdo )
|
|
|
|
{
|
2006-12-29 17:01:31 +03:00
|
|
|
|
|
|
|
} // end of member function setPdo
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return Doctrine_Schema
|
|
|
|
* @access public
|
|
|
|
*/
|
2007-10-04 01:43:22 +04:00
|
|
|
public function read()
|
2006-12-29 17:01:31 +03:00
|
|
|
{
|
|
|
|
$dataDict = Doctrine_Manager::getInstance()->getCurrentConnection()->getDataDict();
|
|
|
|
|
|
|
|
$schema = new Doctrine_Schema(); /* @todo FIXME i am incomplete*/
|
|
|
|
$db = new Doctrine_Schema_Database();
|
|
|
|
$schema->addDatabase($db);
|
|
|
|
|
|
|
|
$dbName = 'XXtest'; // @todo FIXME where should we get
|
|
|
|
|
2007-01-06 01:06:52 +03:00
|
|
|
$this->conn->set("name",$dbName);
|
2006-12-29 17:01:31 +03:00
|
|
|
$tableNames = $dataDict->listTables();
|
2007-09-03 18:57:18 +04:00
|
|
|
foreach ($tableNames as $tableName) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$table = new Doctrine_Schema_Table();
|
|
|
|
$table->set("name",$tableName);
|
|
|
|
$tableColumns = $dataDict->listTableColumns($tableName);
|
2007-09-03 18:57:18 +04:00
|
|
|
foreach ($tableColumns as $tableColumn) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$table->addColumn($tableColumn);
|
|
|
|
}
|
2007-01-06 01:06:52 +03:00
|
|
|
$this->conn->addTable($table);
|
2007-09-03 18:57:18 +04:00
|
|
|
if ($fks = $dataDict->listTableConstraints($tableName)) {
|
|
|
|
foreach ($fks as $fk) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$relation = new Doctrine_Schema_Relation();
|
|
|
|
$relation->setRelationBetween($fk['referencingColumn'],$fk['referencedTable'],$fk['referencedColumn']);
|
|
|
|
$table->setRelation($relation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $schema;
|
|
|
|
}
|
2007-10-04 01:43:22 +04:00
|
|
|
}
|