1
0
mirror of synced 2025-01-19 15:01:40 +03:00

221 lines
6.7 KiB
PHP
Raw Normal View History

2006-12-29 14:01:31 +00: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_Import_Builder
* Import builder is responsible of building Doctrine ActiveRecord classes
* based on a database schema.
*
* @package Doctrine
* @category Object Relational Mapping
* @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>
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @author Nicolas Bérard-Nault <nicobn@php.net>
2006-12-29 14:01:31 +00:00
*/
2006-12-29 14:40:47 +00:00
class Doctrine_Import_Builder
{
2007-02-10 11:02:52 +00:00
/**
* @var string $path the path where imported files are being generated
*/
2006-12-29 14:01:31 +00:00
private $path = '';
private $suffix = '.php';
private static $tpl;
2006-12-29 14:40:47 +00:00
public function __construct()
{
$this->loadTemplate();
2006-12-29 14:01:31 +00:00
}
/**
2007-02-10 11:02:52 +00:00
* setTargetPath
2006-12-29 14:01:31 +00:00
*
2007-02-10 11:02:52 +00:00
* @param string path the path where imported files are being generated
2006-12-29 14:01:31 +00:00
* @return
*/
2006-12-29 14:40:47 +00:00
public function setTargetPath($path)
{
2006-12-29 14:01:31 +00:00
if ( ! file_exists($path)) {
mkdir($path, 0777);
}
$this->path = $path;
}
/**
2007-02-10 11:02:52 +00:00
* getTargetPath
2006-12-29 14:01:31 +00:00
*
2007-02-10 11:02:52 +00:00
* @return string the path where imported files are being generated
2006-12-29 14:01:31 +00:00
*/
2007-02-10 11:02:52 +00:00
public function getTargetPath()
2006-12-29 14:40:47 +00:00
{
2007-02-10 11:02:52 +00:00
return $this->path;
2006-12-29 14:01:31 +00:00
}
/**
* This is a template that was previously in Builder/Record.tpl. Due to the fact
* that it was not bundled when compiling, it had to be moved here.
*
* @access public
* @return void
*/
public function loadTemplate()
2006-12-29 14:40:47 +00:00
{
if (isset(self::$tpl)) {
return;
2006-12-29 14:01:31 +00:00
}
self::$tpl =<<<END
<?php
/**
* This class has been auto-generated by the Doctrine ORM Framework
* Created: %s
*/
class %s extends Doctrine_Record
{
public function setTableDefinition()
{
%s
}
public function setUp()
{
}
}
?>
END;
}
/*
* Build the table definition of a Doctrine_Record object
*
* @param string $table
* @param array $tableColumns
* @access public
*/
public function buildDefinition($table, $tableColumns)
{
$columns = array(0 => str_repeat(' ', 8) . '$this->setTableName(\'$table\');');
$i = 1;
2006-12-29 14:01:31 +00:00
2007-02-10 11:02:52 +00:00
foreach ($tableColumns as $name => $column) {
$columns[$i] = ' $this->hasColumn(\'' . $name . '\', \'' . $column['ptype'][0] . '\'';
2006-12-29 14:01:31 +00:00
if ($column['length']) {
$columns[$i] .= ', ' . $column['length'];
} else {
$columns[$i] .= ', null';
}
$a = array();
2007-03-26 20:52:34 +00:00
if (isset($column['default']) && $column['default']) {
2006-12-29 14:01:31 +00:00
$a[] = '\'default\' => ' . var_export($column['default'], true);
}
2007-03-26 20:52:34 +00:00
if (isset($column['notnull']) && $column['notnull']) {
2006-12-29 14:01:31 +00:00
$a[] = '\'notnull\' => true';
}
2007-03-26 20:52:34 +00:00
if (isset($column['primary']) && $column['primary']) {
2006-12-29 14:01:31 +00:00
$a[] = '\'primary\' => true';
}
2007-03-26 20:52:34 +00:00
if (isset($column['autoinc']) && $column['autoinc']) {
2006-12-29 14:01:31 +00:00
$a[] = '\'autoincrement\' => true';
}
2007-03-26 20:52:34 +00:00
if (isset($column['unique']) && $column['unique']) {
2006-12-29 14:01:31 +00:00
$a[] = '\'unique\' => true';
}
2007-03-26 20:52:34 +00:00
if (isset($column['unsigned']) && $column['unsigned']) {
2007-02-10 11:02:52 +00:00
$a[] = '\'unsigned\' => true';
}
2007-04-11 18:35:15 +00:00
if ($column['ptype'][0] == 'enum' && isset($column['values']) && $column['values']) {
$a[] = '\'values\' => array(' . implode(',', $column['values']) . ')';
}
2006-12-29 14:01:31 +00:00
if ( ! empty($a)) {
2007-02-10 11:02:52 +00:00
$columns[$i] .= ', ' . 'array(';
$length = strlen($columns[$i]);
$columns[$i] .= implode(',' . PHP_EOL . str_repeat(' ', $length), $a) . ')';
2006-12-29 14:01:31 +00:00
}
$columns[$i] .= ');';
if ($i < (count($table) - 1)) {
$columns[$i] .= PHP_EOL;
2006-12-29 14:01:31 +00:00
}
$i++;
}
return implode("\n", $columns);
}
2006-12-29 14:01:31 +00:00
public function buildRecord($table, $tableColumns, $className='', $fileName='')
{
if (empty($fileName)) {
if (empty($this->path)) {
$errMsg = 'No build target directory set.';
throw new Doctrine_Import_Builder_Exception($errMsg);
}
if (is_writable($this->path) === false) {
$errMsg = 'Build target directory ' . $this->path . ' is not writable.';
throw new Doctrine_Import_Builder_Exception($errMsg);
}
$fileName = $this->path . DIRECTORY_SEPARATOR . $className . $this->suffix;
}
$created = date('l dS \of F Y h:i:s A');
if (empty($className)) {
$className = Doctrine::classify($table);
}
$content = sprintf(self::$tpl, $created, $className,
$this->buildDefinition($table, $tableColumns));
2006-12-29 14:01:31 +00:00
2007-05-27 18:56:04 +00:00
$bytes = file_put_contents($fileName, $content);
2006-12-29 14:01:31 +00:00
2007-02-10 11:02:52 +00:00
if ($bytes === false) {
2006-12-29 14:01:31 +00:00
throw new Doctrine_Import_Builder_Exception("Couldn't write file " . $fileName);
2007-02-10 11:02:52 +00:00
}
2006-12-29 14:01:31 +00:00
}
2006-12-29 14:01:31 +00:00
/**
*
* @param Doctrine_Schema_Object $schema
* @throws Doctrine_Import_Exception
* @return void
*/
2006-12-29 14:40:47 +00:00
public function build(Doctrine_Schema_Object $schema)
{
2006-12-29 14:01:31 +00:00
foreach ($schema->getDatabases() as $database){
foreach ($database->getTables() as $table){
$this->buildRecord($table);
}
}
}
}