2008-09-12 13:27:03 +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
|
2009-05-13 19:19:27 +04:00
|
|
|
* <http://www.doctrine-project.org>.
|
2008-09-12 13:27:03 +04:00
|
|
|
*/
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Mapping;
|
2008-09-12 13:27:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A one-to-one mapping describes a uni-directional mapping from one entity
|
|
|
|
* to another entity.
|
|
|
|
*
|
2009-05-14 22:34:12 +04:00
|
|
|
* <b>IMPORTANT NOTE:</b>
|
|
|
|
*
|
|
|
|
* The fields of this class are only public for 2 reasons:
|
|
|
|
* 1) To allow fast, internal READ access.
|
|
|
|
* 2) To drastically reduce the size of a serialized instance (private/protected members
|
|
|
|
* get the whole class name, namespace inclusive, prepended to every property in
|
|
|
|
* the serialized representation).
|
|
|
|
*
|
2008-09-12 13:27:03 +04:00
|
|
|
* @since 2.0
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-07-20 16:05:19 +04:00
|
|
|
* @author Giorgio Sironi <piccoloprincipeazzurro@gmail.com>
|
2008-09-12 13:27:03 +04:00
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class OneToOneMapping extends AssociationMapping
|
2008-09-12 13:27:03 +04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Maps the source foreign/primary key columns to the target primary/foreign key columns.
|
|
|
|
* i.e. source.id (pk) => target.user_id (fk).
|
|
|
|
* Reverse mapping of _targetToSourceKeyColumns.
|
|
|
|
*/
|
2009-05-14 22:34:12 +04:00
|
|
|
public $sourceToTargetKeyColumns = array();
|
2008-09-12 13:27:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps the target primary/foreign key columns to the source foreign/primary key columns.
|
|
|
|
* i.e. target.user_id (fk) => source.id (pk).
|
|
|
|
* Reverse mapping of _sourceToTargetKeyColumns.
|
|
|
|
*/
|
2009-05-14 22:34:12 +04:00
|
|
|
public $targetToSourceKeyColumns = array();
|
2008-09-12 13:27:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether to delete orphaned elements (when nulled out, i.e. $foo->other = null)
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2009-07-23 13:52:16 +04:00
|
|
|
public $orphanRemoval = false;
|
2009-10-15 23:03:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the association is optional (0..1) or not (1..1).
|
|
|
|
* By default all associations are optional.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public $isOptional = true;
|
2009-02-04 19:35:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The join column definitions.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 22:34:12 +04:00
|
|
|
public $joinColumns = array();
|
2008-09-12 13:27:03 +04:00
|
|
|
|
2009-08-11 14:51:38 +04:00
|
|
|
/**
|
|
|
|
* A map of join column names to field names that are used in cases
|
|
|
|
* when the join columns are fetched as part of the query result.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-07-20 19:30:54 +04:00
|
|
|
public $joinColumnFieldNames = array();
|
|
|
|
|
2008-09-12 13:27:03 +04:00
|
|
|
/**
|
|
|
|
* Creates a new OneToOneMapping.
|
|
|
|
*
|
2009-10-15 23:03:27 +04:00
|
|
|
* @param array $mapping The mapping info.
|
2008-09-12 13:27:03 +04:00
|
|
|
*/
|
|
|
|
public function __construct(array $mapping)
|
|
|
|
{
|
|
|
|
parent::__construct($mapping);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-06 20:22:23 +03:00
|
|
|
* {@inheritdoc}
|
2008-09-12 13:27:03 +04:00
|
|
|
*
|
|
|
|
* @param array $mapping The mapping to validate & complete.
|
|
|
|
* @return array The validated & completed mapping.
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
protected function _validateAndCompleteMapping(array $mapping)
|
|
|
|
{
|
|
|
|
parent::_validateAndCompleteMapping($mapping);
|
|
|
|
|
2009-07-18 15:41:37 +04:00
|
|
|
if (isset($mapping['joinColumns']) && $mapping['joinColumns']) {
|
|
|
|
$this->isOwningSide = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->isOwningSide) {
|
2008-09-12 13:27:03 +04:00
|
|
|
if ( ! isset($mapping['joinColumns'])) {
|
2009-06-01 20:14:11 +04:00
|
|
|
throw MappingException::invalidMapping($this->sourceFieldName);
|
2009-02-04 19:35:36 +03:00
|
|
|
}
|
2009-08-11 14:51:38 +04:00
|
|
|
foreach ($mapping['joinColumns'] as &$joinColumn) {
|
|
|
|
if ($joinColumn['name'][0] == '`') {
|
|
|
|
$joinColumn['name'] = trim($joinColumn['name'], '`');
|
|
|
|
$joinColumn['quoted'] = true;
|
|
|
|
}
|
2009-05-14 22:34:12 +04:00
|
|
|
$this->sourceToTargetKeyColumns[$joinColumn['name']] = $joinColumn['referencedColumnName'];
|
2009-07-20 19:30:54 +04:00
|
|
|
$this->joinColumnFieldNames[$joinColumn['name']] = isset($joinColumn['fieldName'])
|
|
|
|
? $joinColumn['fieldName'] : $joinColumn['name'];
|
2008-09-12 13:27:03 +04:00
|
|
|
}
|
2009-08-11 14:51:38 +04:00
|
|
|
$this->joinColumns = $mapping['joinColumns'];
|
2009-05-14 22:34:12 +04:00
|
|
|
$this->targetToSourceKeyColumns = array_flip($this->sourceToTargetKeyColumns);
|
2008-09-12 13:27:03 +04:00
|
|
|
}
|
|
|
|
|
2009-10-15 23:03:27 +04:00
|
|
|
$this->isOptional = isset($mapping['optional']) ?
|
|
|
|
(bool)$mapping['optional'] : true;
|
2009-07-23 13:52:16 +04:00
|
|
|
$this->orphanRemoval = isset($mapping['orphanRemoval']) ?
|
|
|
|
(bool) $mapping['orphanRemoval'] : false;
|
2008-09-12 13:27:03 +04:00
|
|
|
|
2009-08-31 20:21:29 +04:00
|
|
|
/*if ($this->isOptional) {
|
|
|
|
$this->fetchMode = self::FETCH_EAGER;
|
|
|
|
}*/
|
|
|
|
|
2008-09-12 13:27:03 +04:00
|
|
|
return $mapping;
|
|
|
|
}
|
2009-10-15 23:03:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the association is optional (0..1), or not (1..1).
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the association is optional, FALSE otherwise.
|
|
|
|
* @todo Only applicable to OneToOne. Move there.
|
|
|
|
*/
|
|
|
|
public function isOptional()
|
|
|
|
{
|
|
|
|
return $this->isOptional;
|
|
|
|
}
|
2009-02-04 19:35:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the join column definitions for this mapping.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getJoinColumns()
|
|
|
|
{
|
2009-05-14 22:34:12 +04:00
|
|
|
return $this->joinColumns;
|
2009-02-04 19:35:36 +03:00
|
|
|
}
|
2008-09-12 13:27:03 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the source-to-target key column mapping.
|
|
|
|
*
|
2009-01-06 20:22:23 +03:00
|
|
|
* @return array
|
2008-09-12 13:27:03 +04:00
|
|
|
*/
|
|
|
|
public function getSourceToTargetKeyColumns()
|
|
|
|
{
|
2009-05-14 22:34:12 +04:00
|
|
|
return $this->sourceToTargetKeyColumns;
|
2008-09-12 13:27:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the target-to-source key column mapping.
|
|
|
|
*
|
2009-01-06 20:22:23 +03:00
|
|
|
* @return array
|
2008-09-12 13:27:03 +04:00
|
|
|
*/
|
|
|
|
public function getTargetToSourceKeyColumns()
|
|
|
|
{
|
2009-05-14 22:34:12 +04:00
|
|
|
return $this->targetToSourceKeyColumns;
|
2008-09-12 13:27:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-06 20:22:23 +03:00
|
|
|
* {@inheritdoc}
|
2008-09-12 13:27:03 +04:00
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function isOneToOne()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-08-11 14:51:38 +04:00
|
|
|
/**
|
|
|
|
* Gets the (possibly quoted) column name of a join column that is safe to use
|
|
|
|
* in an SQL statement.
|
|
|
|
*
|
|
|
|
* @param string $joinColumn
|
|
|
|
* @param AbstractPlatform $platform
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getQuotedJoinColumnName($joinColumn, $platform)
|
|
|
|
{
|
|
|
|
return isset($this->joinColumns[$joinColumn]['quoted']) ?
|
|
|
|
$platform->quoteIdentifier($joinColumn) :
|
|
|
|
$joinColumn;
|
|
|
|
}
|
|
|
|
|
2008-09-12 13:27:03 +04:00
|
|
|
/**
|
2009-01-06 20:22:23 +03:00
|
|
|
* {@inheritdoc}
|
2008-09-12 13:27:03 +04:00
|
|
|
*
|
2009-07-20 16:05:19 +04:00
|
|
|
* @param object $sourceEntity the entity source of this association
|
|
|
|
* @param object $targetEntity the entity to load data in
|
2009-05-13 19:19:27 +04:00
|
|
|
* @param EntityManager $em
|
2009-10-15 00:18:36 +04:00
|
|
|
* @param array $joinColumnValues Values of the join columns of $sourceEntity.
|
2008-09-12 13:27:03 +04:00
|
|
|
*/
|
2009-07-28 15:43:42 +04:00
|
|
|
public function load($sourceEntity, $targetEntity, $em, array $joinColumnValues = array())
|
2008-09-12 13:27:03 +04:00
|
|
|
{
|
2009-05-14 22:34:12 +04:00
|
|
|
$sourceClass = $em->getClassMetadata($this->sourceEntityName);
|
|
|
|
$targetClass = $em->getClassMetadata($this->targetEntityName);
|
2008-09-12 13:27:03 +04:00
|
|
|
|
2009-05-13 19:19:27 +04:00
|
|
|
$conditions = array();
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
if ($this->isOwningSide) {
|
|
|
|
foreach ($this->sourceToTargetKeyColumns as $sourceKeyColumn => $targetKeyColumn) {
|
2009-10-15 21:07:37 +04:00
|
|
|
if (isset($sourceClass->fieldNames[$sourceKeyColumn])) {
|
2009-08-11 14:51:38 +04:00
|
|
|
$conditions[$targetKeyColumn] = $sourceClass->reflFields[$sourceClass->fieldNames[$sourceKeyColumn]]->getValue($sourceEntity);
|
2009-07-20 16:05:19 +04:00
|
|
|
} else {
|
|
|
|
$conditions[$targetKeyColumn] = $joinColumnValues[$sourceKeyColumn];
|
|
|
|
}
|
2009-05-13 19:19:27 +04:00
|
|
|
}
|
2009-07-21 13:25:14 +04:00
|
|
|
|
2009-10-15 18:39:43 +04:00
|
|
|
$targetEntity = $em->getUnitOfWork()->getEntityPersister($this->targetEntityName)->load($conditions, $targetEntity, $this);
|
2009-07-21 13:25:14 +04:00
|
|
|
|
2009-08-11 14:51:38 +04:00
|
|
|
if ($targetEntity !== null && $targetClass->hasInverseAssociationMapping($this->sourceEntityName, $this->sourceFieldName)) {
|
2009-07-21 13:25:14 +04:00
|
|
|
$targetClass->setFieldValue($targetEntity,
|
2009-08-11 14:51:38 +04:00
|
|
|
$targetClass->inverseMappings[$this->sourceEntityName][$this->sourceFieldName]->sourceFieldName,
|
2009-07-20 16:05:19 +04:00
|
|
|
$sourceEntity);
|
2009-05-13 19:19:27 +04:00
|
|
|
}
|
|
|
|
} else {
|
2009-05-14 22:34:12 +04:00
|
|
|
$owningAssoc = $em->getClassMetadata($this->targetEntityName)->getAssociationMapping($this->mappedByFieldName);
|
2009-07-28 15:43:42 +04:00
|
|
|
// TRICKY: since the association is specular source and target are flipped
|
2009-08-11 14:51:38 +04:00
|
|
|
foreach ($owningAssoc->targetToSourceKeyColumns as $sourceKeyColumn => $targetKeyColumn) {
|
2009-10-15 21:07:37 +04:00
|
|
|
if (isset($sourceClass->fieldNames[$sourceKeyColumn])) {
|
2009-08-11 14:51:38 +04:00
|
|
|
$conditions[$targetKeyColumn] = $sourceClass->reflFields[$sourceClass->fieldNames[$sourceKeyColumn]]->getValue($sourceEntity);
|
2009-07-20 16:05:19 +04:00
|
|
|
} else {
|
2009-07-28 15:43:42 +04:00
|
|
|
$conditions[$targetKeyColumn] = $joinColumnValues[$sourceKeyColumn];
|
2009-07-20 16:05:19 +04:00
|
|
|
}
|
2009-05-13 19:19:27 +04:00
|
|
|
}
|
2009-07-21 13:25:14 +04:00
|
|
|
|
2009-10-15 18:39:43 +04:00
|
|
|
$targetEntity = $em->getUnitOfWork()->getEntityPersister($this->targetEntityName)->load($conditions, $targetEntity, $this);
|
2009-07-21 13:25:14 +04:00
|
|
|
|
2009-10-28 13:31:47 +03:00
|
|
|
if ($targetEntity !== null) {
|
|
|
|
$targetClass->setFieldValue($targetEntity, $this->mappedByFieldName, $sourceEntity);
|
|
|
|
}
|
|
|
|
|
2008-09-12 13:27:03 +04:00
|
|
|
}
|
2009-10-28 13:31:47 +03:00
|
|
|
|
|
|
|
return $targetEntity;
|
2008-09-12 13:27:03 +04:00
|
|
|
}
|
2009-07-17 17:41:03 +04:00
|
|
|
}
|