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_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>
|
2007-06-26 10:03:15 +04:00
|
|
|
* @author Nicolas Bérard-Nault <nicobn@php.net>
|
2006-12-29 17:01:31 +03:00
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
class Doctrine_Import_Builder
|
|
|
|
{
|
2007-02-10 14:02:52 +03:00
|
|
|
/**
|
|
|
|
* @var string $path the path where imported files are being generated
|
|
|
|
*/
|
2006-12-29 17:01:31 +03:00
|
|
|
private $path = '';
|
|
|
|
|
|
|
|
private $suffix = '.php';
|
|
|
|
|
|
|
|
private static $tpl;
|
|
|
|
|
2006-12-29 17:40:47 +03:00
|
|
|
public function __construct()
|
|
|
|
{
|
2007-06-26 10:03:15 +04:00
|
|
|
$this->loadTemplate();
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-02-10 14:02:52 +03:00
|
|
|
* setTargetPath
|
2006-12-29 17:01:31 +03:00
|
|
|
*
|
2007-02-10 14:02:52 +03:00
|
|
|
* @param string path the path where imported files are being generated
|
2006-12-29 17:01:31 +03:00
|
|
|
* @return
|
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
public function setTargetPath($path)
|
|
|
|
{
|
2006-12-29 17:01:31 +03:00
|
|
|
if ( ! file_exists($path)) {
|
|
|
|
mkdir($path, 0777);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->path = $path;
|
|
|
|
}
|
|
|
|
/**
|
2007-02-10 14:02:52 +03:00
|
|
|
* getTargetPath
|
2006-12-29 17:01:31 +03:00
|
|
|
*
|
2007-02-10 14:02:52 +03:00
|
|
|
* @return string the path where imported files are being generated
|
2006-12-29 17:01:31 +03:00
|
|
|
*/
|
2007-02-10 14:02:52 +03:00
|
|
|
public function getTargetPath()
|
2006-12-29 17:40:47 +03:00
|
|
|
{
|
2007-02-10 14:02:52 +03:00
|
|
|
return $this->path;
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
|
|
|
|
2007-06-26 10:03:15 +04: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.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function loadTemplate()
|
2006-12-29 17:40:47 +03:00
|
|
|
{
|
2007-06-26 10:03:15 +04:00
|
|
|
if (isset(self::$tpl)) {
|
|
|
|
return;
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
2007-06-26 10:03:15 +04:00
|
|
|
|
|
|
|
self::$tpl =<<<END
|
|
|
|
/**
|
|
|
|
* This class has been auto-generated by the Doctrine ORM Framework
|
|
|
|
*/
|
|
|
|
class %s extends Doctrine_Record
|
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
%s
|
|
|
|
}
|
|
|
|
public function setUp()
|
|
|
|
{
|
2007-07-11 18:39:15 +04:00
|
|
|
%s
|
2007-06-26 10:03:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
END;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-06-27 06:44:20 +04:00
|
|
|
/*
|
|
|
|
* Build the table definition of a Doctrine_Record object
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param array $tableColumns
|
|
|
|
*/
|
2007-07-11 18:39:15 +04:00
|
|
|
public function buildColumnDefinition(array $tableColumns)
|
2007-06-26 10:03:15 +04:00
|
|
|
{
|
2007-07-11 18:39:15 +04:00
|
|
|
$columns = array();
|
2007-06-26 10:03:15 +04:00
|
|
|
$i = 1;
|
2006-12-29 17:01:31 +03:00
|
|
|
|
2007-02-10 14:02:52 +03:00
|
|
|
foreach ($tableColumns as $name => $column) {
|
2007-06-28 16:11:55 +04:00
|
|
|
$columns[$i] = ' $this->hasColumn(\'' . $name . '\', \'' . $column['type'] . '\'';
|
2006-12-29 17:01:31 +03:00
|
|
|
if ($column['length']) {
|
|
|
|
$columns[$i] .= ', ' . $column['length'];
|
|
|
|
} else {
|
|
|
|
$columns[$i] .= ', null';
|
|
|
|
}
|
|
|
|
|
|
|
|
$a = array();
|
|
|
|
|
2007-03-27 00:52:34 +04:00
|
|
|
if (isset($column['default']) && $column['default']) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$a[] = '\'default\' => ' . var_export($column['default'], true);
|
|
|
|
}
|
2007-03-27 00:52:34 +04:00
|
|
|
if (isset($column['notnull']) && $column['notnull']) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$a[] = '\'notnull\' => true';
|
|
|
|
}
|
2007-03-27 00:52:34 +04:00
|
|
|
if (isset($column['primary']) && $column['primary']) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$a[] = '\'primary\' => true';
|
|
|
|
}
|
2007-03-27 00:52:34 +04:00
|
|
|
if (isset($column['autoinc']) && $column['autoinc']) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$a[] = '\'autoincrement\' => true';
|
|
|
|
}
|
2007-03-27 00:52:34 +04:00
|
|
|
if (isset($column['unique']) && $column['unique']) {
|
2006-12-29 17:01:31 +03:00
|
|
|
$a[] = '\'unique\' => true';
|
|
|
|
}
|
2007-03-27 00:52:34 +04:00
|
|
|
if (isset($column['unsigned']) && $column['unsigned']) {
|
2007-02-10 14:02:52 +03:00
|
|
|
$a[] = '\'unsigned\' => true';
|
|
|
|
}
|
2007-06-28 16:11:55 +04:00
|
|
|
if ($column['type'] == 'enum' && isset($column['values']) && $column['values']) {
|
2007-04-11 22:35:15 +04:00
|
|
|
$a[] = '\'values\' => array(' . implode(',', $column['values']) . ')';
|
|
|
|
}
|
2006-12-29 17:01:31 +03:00
|
|
|
|
|
|
|
if ( ! empty($a)) {
|
2007-02-10 14:02:52 +03:00
|
|
|
$columns[$i] .= ', ' . 'array(';
|
|
|
|
$length = strlen($columns[$i]);
|
2007-06-26 10:03:15 +04:00
|
|
|
$columns[$i] .= implode(',' . PHP_EOL . str_repeat(' ', $length), $a) . ')';
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
|
|
|
$columns[$i] .= ');';
|
|
|
|
|
2007-07-11 18:39:15 +04:00
|
|
|
if ($i < (count($tableColumns) - 1)) {
|
2007-06-26 10:03:15 +04:00
|
|
|
$columns[$i] .= PHP_EOL;
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
}
|
2007-06-27 06:44:20 +04:00
|
|
|
|
|
|
|
return implode("\n", $columns);
|
|
|
|
}
|
2007-07-11 18:39:15 +04:00
|
|
|
public function buildRelationDefinition(array $relations)
|
2007-06-27 06:44:20 +04:00
|
|
|
{
|
2007-07-11 18:39:15 +04:00
|
|
|
$ret = array();
|
|
|
|
$i = 0;
|
|
|
|
foreach ($relations as $name => $relation) {
|
|
|
|
$alias = (isset($relation['alias']) && $relation['alias'] !== $name) ? ' as ' . $relation['alias'] : '';
|
|
|
|
|
|
|
|
if ( ! isset($relation['type'])) {
|
|
|
|
$relation['type'] = Doctrine_Relation::ONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($relation['type'] === Doctrine_Relation::ONE ||
|
|
|
|
$relation['type'] === Doctrine_Relation::ONE_COMPOSITE) {
|
|
|
|
$ret[$i] = ' $this->hasOne(\'' . $name . $alias . '\'';
|
|
|
|
} else {
|
|
|
|
$ret[$i] = ' $this->hasMany(\'' . $name . $alias . '\'';
|
|
|
|
}
|
|
|
|
$a = array();
|
|
|
|
|
|
|
|
if (isset($relation['deferred']) && $relation['deferred']) {
|
|
|
|
$a[] = '\'default\' => ' . var_export($relation['deferred'], true);
|
|
|
|
}
|
|
|
|
if (isset($relation['local']) && $relation['local']) {
|
|
|
|
$a[] = '\'local\' => ' . var_export($relation['local'], true);
|
|
|
|
}
|
|
|
|
if (isset($relation['foreign']) && $relation['foreign']) {
|
|
|
|
$a[] = '\'foreign\' => ' . var_export($relation['foreign'], true);
|
|
|
|
}
|
|
|
|
if (isset($relation['onDelete']) && $relation['onDelete']) {
|
|
|
|
$a[] = '\'onDelete\' => ' . var_export($relation['onDelete'], true);
|
|
|
|
}
|
|
|
|
if (isset($relation['onUpdate']) && $relation['onUpdate']) {
|
|
|
|
$a[] = '\'onUpdate\' => ' . var_export($relation['onUpdate'], true);
|
|
|
|
}
|
|
|
|
if ( ! empty($a)) {
|
|
|
|
$ret[$i] .= ', ' . 'array(';
|
|
|
|
$length = strlen($ret[$i]);
|
|
|
|
$ret[$i] .= implode(',' . PHP_EOL . str_repeat(' ', $length), $a) . ')';
|
|
|
|
}
|
|
|
|
$ret[$i] .= ');';
|
|
|
|
$i++;
|
2007-07-10 19:20:13 +04:00
|
|
|
}
|
2007-07-11 18:39:15 +04:00
|
|
|
return implode("\n", $ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function buildDefinition(array $options, array $columns, array $relations = array())
|
|
|
|
{
|
|
|
|
if ( ! isset($options['className'])) {
|
|
|
|
throw new Doctrine_Import_Builder_Exception('Missing class name.');
|
|
|
|
}
|
|
|
|
|
|
|
|
//$opt = array(0 => str_repeat(' ', 8) . '$this->setTableName(\''. $table .'\');');
|
|
|
|
|
|
|
|
$content = sprintf(self::$tpl, $options['className'],
|
|
|
|
$this->buildColumnDefinition($columns),
|
|
|
|
$this->buildRelationDefinition($relations));
|
|
|
|
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function buildRecord($table, $columns, $relations)
|
|
|
|
{
|
2007-06-27 06:44:20 +04:00
|
|
|
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;
|
|
|
|
}
|
2006-12-29 17:01:31 +03:00
|
|
|
|
2007-07-11 18:39:15 +04:00
|
|
|
$content = $this->buildDefinition($options, $columns, $relations);
|
|
|
|
|
|
|
|
$bytes = file_put_contents($fileName, '<?php' . PHP_EOL . $content);
|
2006-12-29 17:01:31 +03:00
|
|
|
|
2007-02-10 14:02:52 +03:00
|
|
|
if ($bytes === false) {
|
2006-12-29 17:01:31 +03:00
|
|
|
throw new Doctrine_Import_Builder_Exception("Couldn't write file " . $fileName);
|
2007-02-10 14:02:52 +03:00
|
|
|
}
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
|
|
|
}
|