1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/lib/Doctrine/Record/Generator.php

286 lines
9.0 KiB
PHP
Raw Normal View History

2007-08-01 01:59:45 +04: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.org>.
2007-08-01 01:59:45 +04:00
*/
/**
2007-11-29 01:56:45 +03:00
* Doctrine_Record_Generator
2007-08-01 01:59:45 +04:00
*
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine
* @subpackage Plugin
2007-08-01 01:59:45 +04:00
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @version $Revision$
* @link www.phpdoctrine.org
2007-08-01 01:59:45 +04:00
* @since 1.0
*/
2007-11-29 01:56:45 +03:00
abstract class Doctrine_Record_Generator extends Doctrine_Record_Abstract
2007-08-01 01:59:45 +04:00
{
/**
* @var array $_options an array of plugin specific options
*/
2007-10-15 02:11:48 +04:00
protected $_options = array('generateFiles' => false,
2007-11-25 15:34:37 +03:00
'identifier' => false,
'generateFiles' => false,
'table' => false,
'pluginTable' => false,
'children' => array());
protected $_initialized = false;
2007-09-02 15:29:14 +04:00
/**
* __get
* an alias for getOption
*
* @param string $option
*/
public function __get($option)
{
2007-09-02 21:34:44 +04:00
if (isset($this->_options[$option])) {
2007-09-02 15:29:14 +04:00
return $this->_options[$option];
}
return null;
}
2007-09-02 15:29:14 +04:00
/**
* __isset
*
* @param string $option
*/
public function __isset($option)
{
return isset($this->_options[$option]);
}
2007-08-01 01:59:45 +04:00
/**
* returns the value of an option
*
* @param $option the name of the option to retrieve
* @return mixed the value of the option
*/
public function getOption($name)
{
if ( ! isset($this->_options[$name])) {
throw new Doctrine_Plugin_Exception('Unknown option ' . $name);
}
return $this->_options[$name];
}
2007-08-01 01:59:45 +04:00
/**
* sets given value to an option
*
* @param $option the name of the option to be changed
* @param $value the value of the option
* @return Doctrine_Plugin this object
*/
public function setOption($name, $value)
{
$this->_options[$name] = $value;
return $this;
}
2007-11-29 01:56:45 +03:00
public function addChild(Doctrine_Record_Generator $template)
2007-11-14 01:28:37 +03:00
{
2007-11-25 15:34:37 +03:00
$this->_options['children'][] = $template;
2007-11-14 01:28:37 +03:00
}
2007-08-01 01:59:45 +04:00
/**
* returns all options and their associated values
*
* @return array all options as an associative array
*/
public function getOptions()
{
2007-09-02 15:29:14 +04:00
return $this->_options;
2007-08-01 01:59:45 +04:00
}
public function initialize($table)
2007-11-25 15:34:37 +03:00
{
if ($this->_initialized) {
return false;
}
$this->_initialized = true;
$this->initOptions();
2007-11-29 01:56:45 +03:00
$table->addGenerator($this, get_class($this));
$this->_options['table'] = $table;
2007-11-25 15:34:37 +03:00
$this->_options['className'] = str_replace('%CLASS%',
$this->_options['table']->getComponentName(),
$this->_options['className']);
// check that class doesn't exist (otherwise we cannot create it)
if (class_exists($this->_options['className'])) {
return false;
}
$conn = $this->_options['table']->getConnection();
$this->_table = new Doctrine_Table($this->_options['className'], $conn);
$conn->addTable($this->_table);
$fk = $this->buildForeignKeys($this->_options['table']);
$this->_table->setColumns($fk);
$this->buildRelation();
$this->setTableDefinition();
$this->setUp();
$this->generateClass($this->_table->getColumns());
2007-11-25 15:34:37 +03:00
$this->buildChildDefinitions();
}
/**
* empty template method for providing the concrete plugins the ability
* to initialize options before the actual definition is being built
*
* @return void
*/
public function initOptions()
2007-11-25 15:34:37 +03:00
{
2007-11-25 15:34:37 +03:00
}
public function buildChildDefinitions()
2007-11-14 01:28:37 +03:00
{
if ( ! isset($this->_options['children'])) {
throw new Doctrine_Plugin_Exception("Unknown option 'children'.");
}
2007-11-14 01:28:37 +03:00
foreach ($this->_options['children'] as $child) {
2007-11-29 01:56:45 +03:00
$this->_table->addGenerator($child, get_class($child));
$child->setTable($this->_table);
2007-11-14 01:28:37 +03:00
$child->setUp();
}
}
2007-10-13 20:27:47 +04:00
/**
* generates foreign keys for the plugin table based on the owner table
*
* the foreign keys generated by this method can be used for
* setting the relations between the owner and the plugin classes
*
* @param Doctrine_Table $table the table object that owns the plugin
* @return array an array of foreign key definitions
*/
public function buildForeignKeys($table)
2007-10-13 20:27:47 +04:00
{
$fk = array();
foreach ((array) $table->getIdentifier() as $column) {
$def = $table->getDefinitionOf($column);
unset($def['autoincrement']);
unset($def['sequence']);
unset($def['primary']);
$col = $column;
2007-10-13 20:27:47 +04:00
$def['primary'] = true;
$fk[$col] = $def;
}
return $fk;
}
public function buildLocalRelation()
{
$options = array('local' => $this->_options['table']->getIdentifier(),
'foreign' => $this->_options['table']->getIdentifier(),
'type' => Doctrine_Relation::MANY);
$options['type'] = Doctrine_Relation::ONE;
$options['onDelete'] = 'CASCADE';
$options['onUpdate'] = 'CASCADE';
$this->_table->getRelationParser()->bind($this->_options['table']->getComponentName(), $options);
}
public function buildForeignRelation($alias = null)
{
$options = array('local' => $this->_options['table']->getIdentifier(),
'foreign' => $this->_options['table']->getIdentifier(),
'type' => Doctrine_Relation::MANY);
$aliasStr = '';
if ($alias !== null) {
$aliasStr = ' as ' . $alias;
}
$this->_options['table']->getRelationParser()->bind($this->_table->getComponentName() . $aliasStr,
$options);
}
2007-10-13 20:27:47 +04:00
/**
* build a relation array to given table
2007-10-13 20:27:47 +04:00
*
* this method can be used for generating the relation from the plugin
* table to the owner table
*
* @return array the generated relation array
*/
public function buildRelation()
2007-10-13 20:27:47 +04:00
{
$this->buildForeignRelation();
$this->buildLocalRelation();
2007-10-13 20:27:47 +04:00
}
2007-10-13 20:27:47 +04:00
/**
* generates the class definition for plugin class
*
* @param array $columns the plugin class columns, keys representing the column names
* and values as column definitions
*
2007-10-13 20:27:47 +04:00
* @param array $relations the bound relations of the plugin class
*
* @param array $options plugin class options, keys representing the option names
* and values as option values
2007-10-13 20:27:47 +04:00
* @return void
*/
public function generateClass(array $columns = array(), array $relations = array(), array $options = array())
2007-10-13 13:01:03 +04:00
{
$options['className'] = $this->_options['className'];
$builder = new Doctrine_Builder_Record();
2007-10-13 13:01:03 +04:00
if ($this->_options['generateFiles']) {
if (isset($this->_options['generatePath']) && $this->_options['generatePath']) {
$builder->setTargetPath($this->_options['generatePath']);
2007-10-13 13:01:03 +04:00
$builder->buildRecord($options, $columns, $relations);
} else {
2007-11-29 01:56:45 +03:00
throw new Doctrine_Record_Exception('If you wish to generate files then you must specify the path to generate the files in.');
2007-10-13 13:01:03 +04:00
}
} else {
$def = $builder->buildDefinition($options, $columns, $relations);
2007-10-13 13:01:03 +04:00
eval($def);
}
}
2007-11-14 01:28:37 +03:00
}