2008-09-07 17:48:40 +04:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Id;
|
|
|
|
|
2009-02-02 14:55:50 +03:00
|
|
|
use Doctrine\Common\DoctrineException;
|
|
|
|
|
2008-09-07 17:48:40 +04:00
|
|
|
/**
|
|
|
|
* Special generator for application-assigned identifiers (doesnt really generate anything).
|
|
|
|
*
|
|
|
|
* @since 2.0
|
2009-01-03 22:50:13 +03:00
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2008-09-07 17:48:40 +04:00
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class Assigned extends AbstractIdGenerator
|
2008-09-07 17:48:40 +04:00
|
|
|
{
|
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Returns the identifier assigned to the given entity.
|
2008-09-07 17:48:40 +04:00
|
|
|
*
|
2009-01-03 22:50:13 +03:00
|
|
|
* @param Doctrine\ORM\Entity $entity
|
|
|
|
* @return mixed
|
2008-09-07 17:48:40 +04:00
|
|
|
* @override
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function generate($entity)
|
2008-09-07 17:48:40 +04:00
|
|
|
{
|
2009-01-03 22:50:13 +03:00
|
|
|
$class = $this->_em->getClassMetadata(get_class($entity));
|
2009-02-02 14:55:50 +03:00
|
|
|
$identifier = null;
|
2009-01-03 22:50:13 +03:00
|
|
|
if ($class->isIdentifierComposite()) {
|
|
|
|
$identifier = array();
|
|
|
|
$idFields = $class->getIdentifierFieldNames();
|
|
|
|
foreach ($idFields as $idField) {
|
|
|
|
$identifier[] =
|
|
|
|
$value = $class->getReflectionProperty($idField)->getValue($entity);
|
|
|
|
if (isset($value)) {
|
|
|
|
$identifier[] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$value = $class->getReflectionProperty($class->getSingleIdentifierFieldName())
|
|
|
|
->getValue($entity);
|
|
|
|
if (isset($value)) {
|
|
|
|
$identifier = array($value);
|
|
|
|
}
|
2008-09-07 17:48:40 +04:00
|
|
|
}
|
2009-01-03 22:50:13 +03:00
|
|
|
|
|
|
|
if ( ! $identifier) {
|
2009-02-02 14:55:50 +03:00
|
|
|
throw new DoctrineException("Entity of type '" . get_class($entity) . "' is missing an assigned ID.");
|
2009-01-03 22:50:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return $identifier;
|
2008-09-07 17:48:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|