1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Relation/Parser.php

530 lines
19 KiB
PHP
Raw Normal View History

2007-05-20 22:40:53 +04:00
<?php
/*
* $Id: Table.php 1397 2007-05-19 19:54:15Z zYne $
*
* 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>.
*/
2007-05-20 22:40:53 +04:00
/**
* Doctrine_Relation_Parser
*
* @package Doctrine
* @subpackage Relation
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
2007-05-20 22:40:53 +04:00
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @version $Revision: 1397 $
* @link www.phpdoctrine.com
* @since 1.0
* @todo Composite key support?
2007-05-20 22:40:53 +04:00
*/
class Doctrine_Relation_Parser
{
/**
* @var Doctrine_Table $_table the table object this parser belongs to
*/
protected $_table;
2007-05-20 22:40:53 +04:00
/**
* @var array $_relations an array containing all the Doctrine_Relation objects for this table
*/
2007-05-20 23:28:21 +04:00
protected $_relations = array();
2007-05-20 22:40:53 +04:00
/**
2007-05-20 23:28:21 +04:00
* @var array $_pending relations waiting for parsing
2007-05-20 22:40:53 +04:00
*/
2007-05-20 23:28:21 +04:00
protected $_pending = array();
2007-05-20 22:40:53 +04:00
/**
* constructor
*
* @param Doctrine_Table $table the table object this parser belongs to
*/
public function __construct(Doctrine_Table $table)
{
$this->_table = $table;
}
2007-05-20 22:40:53 +04:00
/**
* getTable
*
* @return Doctrine_Table the table object this parser belongs to
*/
public function getTable()
{
2007-05-20 23:28:21 +04:00
return $this->_table;
}
2007-05-20 23:28:21 +04:00
/**
* getPendingRelation
*
* @return array an array defining a pending relation
*/
public function getPendingRelation($name)
{
if ( ! isset($this->_pending[$name])) {
2007-05-20 23:28:21 +04:00
throw new Doctrine_Relation_Exception('Unknown pending relation ' . $name);
}
return $this->_pending[$name];
2007-05-20 22:40:53 +04:00
}
2007-07-13 20:22:49 +04:00
public function hasRelation($name)
{
if ( ! isset($this->_pending[$name]) && ! isset($this->_relations[$name])) {
return false;
}
return true;
}
2007-05-20 22:40:53 +04:00
/**
* binds a relation
*
* @param string $name
* @param string $field
* @return void
*/
2007-05-20 23:28:21 +04:00
public function bind($name, $options = array())
2007-05-20 22:40:53 +04:00
{
if (isset($this->relations[$name])) {
unset($this->relations[$name]);
}
$e = explode(' as ', $name);
2007-05-20 22:40:53 +04:00
$name = $e[0];
2007-05-23 00:11:56 +04:00
$alias = isset($e[1]) ? $e[1] : $name;
2007-05-20 22:40:53 +04:00
2007-05-21 00:49:42 +04:00
if ( ! isset($options['type'])) {
throw new Doctrine_Relation_Exception('Relation type not set.');
}
2007-05-20 23:28:21 +04:00
$this->_pending[$alias] = array_merge($options, array('class' => $name, 'alias' => $alias));
2007-06-14 20:01:15 +04:00
return $this->_pending[$alias];
2007-05-20 22:40:53 +04:00
}
2007-05-22 00:06:23 +04:00
/**
* getRelation
*
* @param string $alias relation alias
*/
public function getRelation($alias, $recursive = true)
2007-05-21 00:35:21 +04:00
{
2007-05-22 00:06:23 +04:00
if (isset($this->_relations[$alias])) {
/*if ($alias == 'Groupuser') {
//var_dump($this->_relations[$alias]['foreign']);
}*/
2007-05-22 00:06:23 +04:00
return $this->_relations[$alias];
2007-05-21 00:35:21 +04:00
}
2007-05-22 00:06:23 +04:00
if (isset($this->_pending[$alias])) {
$this->_loadRelation($alias);
}
2007-05-21 01:18:52 +04:00
if ($recursive) {
$this->getRelations();
return $this->getRelation($alias, false);
} else {
/*try {
throw new Doctrine_Table_Exception('Unknown relation alias ' . $alias);
} catch (Exception $e) {
echo $e->getTraceAsString();
echo "<br /><br />";
}*/
throw new Doctrine_Table_Exception('Unknown relation alias ' . $alias);
}
}
/**
* Loads a relation and puts it into the collection of loaded relations.
* In the process of initializing a relation it is common that multiple other, closely related
* relations are initialized, too.
*
* @param string $alias The name of the relation.
*/
protected function _loadRelation($alias)
{
$def = $this->_pending[$alias];
// check if reference class name exists
// if it does we are dealing with an association relation (many-many)
if (isset($def['refClass'])) {
$def = $this->completeAssocDefinition($def);
$localClasses = array_merge($this->_table->getOption('parents'), array($this->_table->getComponentName()));
// if the two many-many related components share the same table, we need
// custom relation names to distinguish the relations.
if ($this->_table->getInheritanceType() == Doctrine::INHERITANCETYPE_SINGLE_TABLE &&
in_array($def['class'], $this->_table->getOption('subclasses'))) {
if ( ! isset($def['refRelationName']) || ! isset($def['refReverseRelationName'])) {
throw new Doctrine_Relation_Exception("Incomplete relation. Many-to-many relations between "
. "classes that share the same table (single table inheritance) need to specify "
. "a 'refRelationName' and a 'refReverseRelationName' to distinguish relations.");
}
$relationName = $def['refRelationName'];
2007-05-21 01:18:52 +04:00
} else {
$relationName = $def['refClass'];
}
if ( ! isset($this->_pending[$relationName]) && ! isset($this->_relations[$relationName])) {
$this->_completeManyToManyRelation($def);
2007-05-21 01:18:52 +04:00
}
if (in_array($def['class'], $localClasses)) {
$rel = new Doctrine_Relation_Nest($def);
} else {
$rel = new Doctrine_Relation_Association($def);
}
} else {
// simple foreign key relation
$def = $this->completeDefinition($def);
if (isset($def['localKey'])) {
$rel = new Doctrine_Relation_LocalKey($def);
} else {
$rel = new Doctrine_Relation_ForeignKey($def);
2007-05-22 01:52:14 +04:00
}
}
if (isset($rel)) {
unset($this->_pending[$alias]);
$this->_relations[$alias] = $rel;
return $rel;
}
}
/**
* Completes the initialization of a many-to-many relation by adding
* two uni-directional relations between this parser's table and the intermediary table.
*
* @param array The relation definition.
*/
protected function _completeManyToManyRelation(array $def)
{
$identifierColumnNames = $this->_table->getIdentifierColumnNames();
$idColumnName = array_pop($identifierColumnNames);
// if the two many-many related components shared the same table, we need a relation name
// to distinguish the relations.
$relationName = $def['refClass'];
if (isset($def['refRelationName'])) {
$relationName .= ' as ' . $def['refRelationName'];
}
// add a relation pointing from the intermediary table to the table of this parser
$parser = $def['refTable']->getRelationParser();
if ( ! $parser->hasRelation($this->_table->getComponentName())) {
$parser->bind($this->_table->getComponentName(),
array('type' => Doctrine_Relation::ONE,
'local' => $def['local'],
'foreign' => $idColumnName,
'localKey' => true
)
);
}
// add a relation pointing from this parser's table to the xref table
if ( ! $this->hasRelation($relationName/*$def['refClass']*/)) {
$this->bind($relationName, array(
'type' => Doctrine_Relation::MANY,
'foreign' => $def['local'],
'local' => $idColumnName)
);
2007-05-21 01:18:52 +04:00
}
}
2007-05-22 01:52:14 +04:00
/**
* getRelations
* returns an array containing all relation objects
*
* @return array an array of Doctrine_Relation objects
*/
public function getRelations()
{
foreach ($this->_pending as $k => $v) {
$this->getRelation($k);
}
return $this->_relations;
}
2007-08-03 15:52:24 +04:00
/**
* getImpl
* returns the table class of the concrete implementation for given template
* if the given template is not a template then this method just returns the
* table class for the given record
*
* @param string $template
*/
public function getImpl(array &$def, $key)
2007-08-03 15:52:24 +04:00
{
$conn = $this->_table->getConnection();
if (in_array('Doctrine_Template', class_parents($def[$key]))) {
$impl = $this->_table->getImpl($def[$key]);
2007-08-03 15:52:24 +04:00
if ($impl === null) {
throw new Doctrine_Relation_Parser_Exception("Couldn't find concrete implementation for template " . $def[$key]);
2007-08-03 15:52:24 +04:00
}
$def[$key] = $impl;
2007-08-03 15:52:24 +04:00
}
return $conn->getTable($def[$key]);
}
protected function _isTemplate($className)
{
return in_array('Doctrine_Template', class_parents($className));
2007-08-03 15:52:24 +04:00
}
2007-05-21 01:35:49 +04:00
/**
* Completes the given association definition
*
* @param array $def definition array to be completed
* @return array completed definition array
*/
2007-05-21 01:18:52 +04:00
public function completeAssocDefinition($def)
{
$conn = $this->_table->getConnection();
$def['table'] = $this->getImpl($def, 'class');
$def['localTable'] = $this->_table;
$def['refTable'] = $this->getImpl($def, 'refClass');
2007-05-21 00:35:21 +04:00
$id = $def['refTable']->getIdentifierColumnNames();
2007-06-10 01:54:08 +04:00
if (count($id) > 1) {
if ( ! isset($def['foreign'])) {
// foreign key not set
// try to guess the foreign key
$def['foreign'] = ($def['local'] === $id[0]) ? $id[1] : $id[0];
}
if ( ! isset($def['local'])) {
// foreign key not set
// try to guess the foreign key
2007-05-21 00:35:21 +04:00
2007-06-10 01:54:08 +04:00
$def['local'] = ($def['foreign'] === $id[0]) ? $id[1] : $id[0];
}
} else {
2007-05-21 01:18:52 +04:00
2007-06-10 01:54:08 +04:00
if ( ! isset($def['foreign'])) {
// foreign key not set
// try to guess the foreign key
$columns = $this->getIdentifiers($def['table']);
$def['foreign'] = $columns;
}
if ( ! isset($def['local'])) {
// local key not set
// try to guess the local key
$columns = $this->getIdentifiers($this->_table);
$def['local'] = $columns;
}
2007-05-21 00:35:21 +04:00
}
2007-05-21 01:18:52 +04:00
return $def;
}
2007-05-21 01:35:49 +04:00
/**
* getIdentifiers
* gives a list of identifiers from given table
*
* the identifiers are in format:
* [componentName].[identifier]
*
* @param Doctrine_Table $table table object to retrieve identifiers from
*/
2007-05-21 01:18:52 +04:00
public function getIdentifiers(Doctrine_Table $table)
{
$componentNameToLower = strtolower($table->getComponentName());
if (is_array($table->getIdentifier())) {
$columns = array();
foreach ((array) $table->getIdentifierColumnNames() as $identColName) {
$columns[] = $componentNameToLower . '_' . $identColName;
2007-05-21 01:18:52 +04:00
}
} else {
$columns = $componentNameToLower . '_' . $table->getColumnName(
$table->getIdentifier());
}
2007-05-21 01:18:52 +04:00
return $columns;
2007-05-21 00:35:21 +04:00
}
/**
* guessColumns
*
* @param array $classes an array of class names
* @param Doctrine_Table $foreignTable foreign table object
* @return array an array of column names
*/
public function guessColumns(array $classes, Doctrine_Table $foreignTable)
2007-05-21 21:35:20 +04:00
{
$conn = $this->_table->getConnection();
foreach ($classes as $class) {
try {
$table = $conn->getTable($class);
} catch (Doctrine_Table_Exception $e) {
continue;
}
2007-05-21 21:35:20 +04:00
$columns = $this->getIdentifiers($table);
$found = true;
foreach ((array) $columns as $column) {
if ( ! $foreignTable->hasColumn($column)) {
$found = false;
break;
}
}
if ($found) {
break;
}
}
if ( ! $found) {
throw new Doctrine_Relation_Exception("Couldn't find columns.");
}
return $columns;
}
2007-05-21 01:35:49 +04:00
/**
* Completes the given definition
*
* @param array $def definition array to be completed
* @return array completed definition array
* @todo Description: What does it mean to complete a definition? What is done (not how)?
* Refactor (too long & nesting level)
2007-05-21 01:35:49 +04:00
*/
2007-05-21 00:35:21 +04:00
public function completeDefinition($def)
{
$conn = $this->_table->getConnection();
$def['table'] = $this->getImpl($def, 'class');
//$def['class'] = $def['table']->getComponentName();
$def['localTable'] = $this->_table;
2007-08-03 15:52:24 +04:00
2007-05-21 21:35:20 +04:00
$foreignClasses = array_merge($def['table']->getOption('parents'), array($def['class']));
$localClasses = array_merge($this->_table->getOption('parents'), array($this->_table->getComponentName()));
2007-05-21 00:35:21 +04:00
$localIdentifierColumnNames = $this->_table->getIdentifierColumnNames();
$localIdColumnName = $localIdentifierColumnNames[count($localIdentifierColumnNames) - 1];
$foreignIdentifierColumnNames = $def['table']->getIdentifierColumnNames();
$foreignIdColumnName = $foreignIdentifierColumnNames[count($foreignIdentifierColumnNames) - 1];
2007-05-21 00:35:21 +04:00
if (isset($def['local'])) {
if ( ! isset($def['foreign'])) {
// local key is set, but foreign key is not
// try to guess the foreign key
if ($def['local'] == $localIdColumnName) {
2007-05-21 21:35:20 +04:00
$def['foreign'] = $this->guessColumns($localClasses, $def['table']);
2007-05-21 00:35:21 +04:00
} else {
// the foreign field is likely to be the
// identifier of the foreign class
$def['foreign'] = $foreignIdColumnName;
$def['localKey'] = true;
2007-05-21 00:35:21 +04:00
}
2007-06-26 01:36:45 +04:00
} else {
if ((array)$def['local'] != $localIdentifierColumnNames &&
$def['type'] == Doctrine_Relation::ONE) {
2007-06-27 02:35:08 +04:00
$def['localKey'] = true;
2007-06-26 01:36:45 +04:00
}
2007-06-28 15:56:56 +04:00
}
2007-05-21 00:35:21 +04:00
} else {
if (isset($def['foreign'])) {
// local key not set, but foreign key is set
// try to guess the local key
if ($def['foreign'] === $foreignIdColumnName) {
$def['localKey'] = true;
try {
$def['local'] = $this->guessColumns($foreignClasses, $this->_table);
} catch (Doctrine_Relation_Exception $e) {
$def['local'] = $localIdColumnName;
}
2007-05-21 00:35:21 +04:00
} else {
$def['local'] = $localIdColumnName;
2007-05-21 00:35:21 +04:00
}
} else {
// neither local or foreign key is being set
// try to guess both keys
2007-05-22 00:06:23 +04:00
$conn = $this->_table->getConnection();
2007-05-21 00:35:21 +04:00
2007-05-22 00:06:23 +04:00
// the following loops are needed for covering inheritance
foreach ($localClasses as $class) {
$table = $conn->getTable($class);
$identifierColumnNames = $table->getIdentifierColumnNames();
$idColumnName = array_pop($identifierColumnNames);
2007-05-22 00:06:23 +04:00
$column = strtolower($table->getComponentName())
. '_' . $idColumnName;
2007-06-28 23:19:47 +04:00
2007-05-22 00:06:23 +04:00
foreach ($foreignClasses as $class2) {
$table2 = $conn->getTable($class2);
if ($table2->hasColumn($column)) {
$def['foreign'] = $column;
$def['local'] = $idColumnName;
2007-05-22 00:06:23 +04:00
return $def;
}
2007-05-21 00:35:21 +04:00
}
}
2007-05-20 22:40:53 +04:00
2007-05-22 00:06:23 +04:00
foreach ($foreignClasses as $class) {
$table = $conn->getTable($class);
$identifierColumnNames = $table->getIdentifierColumnNames();
$idColumnName = array_pop($identifierColumnNames);
2007-05-22 00:06:23 +04:00
$column = strtolower($table->getComponentName())
. '_' . $idColumnName;
2007-05-22 00:06:23 +04:00
foreach ($localClasses as $class2) {
$table2 = $conn->getTable($class2);
if ($table2->hasColumn($column)) {
$def['foreign'] = $idColumnName;
2007-06-28 23:19:47 +04:00
$def['local'] = $column;
2007-05-22 21:42:47 +04:00
$def['localKey'] = true;
2007-05-22 00:06:23 +04:00
return $def;
2007-05-20 22:40:53 +04:00
}
}
}
2007-06-28 23:19:47 +04:00
// auto-add columns and auto-build relation
$columns = array();
foreach ((array) $this->_table->getIdentifierColumnNames() as $id) {
// ?? should this not be $this->_table->getComponentName() ??
2007-06-28 23:19:47 +04:00
$column = strtolower($table->getComponentName())
. '_' . $id;
$col = $this->_table->getColumnDefinition($id);
2007-06-28 23:19:47 +04:00
$type = $col['type'];
$length = $col['length'];
unset($col['type']);
unset($col['length']);
unset($col['autoincrement']);
unset($col['sequence']);
unset($col['primary']);
$def['table']->setColumn($column, $type, $length, $col);
$columns[] = $column;
}
if (count($columns) > 1) {
$def['foreign'] = $columns;
} else {
$def['foreign'] = $columns[0];
}
$def['local'] = $localIdColumnName;
2007-05-22 00:06:23 +04:00
}
2007-05-20 22:40:53 +04:00
}
2007-05-22 00:06:23 +04:00
return $def;
2007-05-20 22:40:53 +04:00
}
}