2008-05-26 00:10:41 +04:00
|
|
|
<?php
|
2008-02-11 20:08:22 +03:00
|
|
|
/*
|
|
|
|
* 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
|
2012-05-26 16:37:00 +04:00
|
|
|
* and is licensed under the MIT license. For more information, see
|
2009-02-05 20:34:44 +03:00
|
|
|
* <http://www.doctrine-project.org>.
|
2008-02-11 20:08:22 +03:00
|
|
|
*/
|
2008-02-04 00:29:57 +03:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Mapping;
|
2008-12-18 17:08:11 +03:00
|
|
|
|
2010-05-08 16:08:18 +04:00
|
|
|
use ReflectionException,
|
|
|
|
Doctrine\ORM\ORMException,
|
|
|
|
Doctrine\ORM\EntityManager,
|
|
|
|
Doctrine\DBAL\Platforms,
|
2011-02-16 19:24:42 +03:00
|
|
|
Doctrine\ORM\Events,
|
2012-04-01 01:26:33 +04:00
|
|
|
Doctrine\Common\Util\ClassUtils,
|
2012-01-02 18:30:25 +04:00
|
|
|
Doctrine\Common\Persistence\Mapping\RuntimeReflectionService,
|
|
|
|
Doctrine\Common\Persistence\Mapping\ReflectionService,
|
2011-02-16 19:24:42 +03:00
|
|
|
Doctrine\Common\Persistence\Mapping\ClassMetadataFactory as ClassMetadataFactoryInterface;
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-07-18 15:41:37 +04:00
|
|
|
* The ClassMetadataFactory is used to create ClassMetadata objects that contain all the
|
2008-12-18 17:08:11 +03:00
|
|
|
* metadata mapping informations of a class which describes how a class should be mapped
|
|
|
|
* to a relational database.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-09-13 03:25:47 +04:00
|
|
|
* @since 2.0
|
2010-03-31 01:14:17 +04:00
|
|
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
2009-09-13 03:25:47 +04:00
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2011-02-16 19:24:42 +03:00
|
|
|
class ClassMetadataFactory implements ClassMetadataFactoryInterface
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
/**
|
|
|
|
* @var EntityManager
|
|
|
|
*/
|
|
|
|
private $em;
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2010-08-28 00:14:48 +04:00
|
|
|
/**
|
|
|
|
* @var AbstractPlatform
|
|
|
|
*/
|
|
|
|
private $targetPlatform;
|
|
|
|
|
|
|
|
/**
|
2011-09-25 16:41:56 +04:00
|
|
|
* @var \Doctrine\ORM\Mapping\Driver\Driver
|
2010-08-28 00:14:48 +04:00
|
|
|
*/
|
|
|
|
private $driver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Doctrine\Common\EventManager
|
|
|
|
*/
|
|
|
|
private $evm;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Doctrine\Common\Cache\Cache
|
|
|
|
*/
|
|
|
|
private $cacheDriver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $loadedMetadata = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $initialized = false;
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2012-01-02 18:30:25 +04:00
|
|
|
/**
|
2012-01-03 21:41:48 +04:00
|
|
|
* @var ReflectionService
|
2012-01-02 18:30:25 +04:00
|
|
|
*/
|
|
|
|
private $reflectionService;
|
|
|
|
|
2008-02-11 20:08:22 +03:00
|
|
|
/**
|
2010-11-27 22:53:26 +03:00
|
|
|
* @param EntityManager $$em
|
2008-02-11 20:08:22 +03:00
|
|
|
*/
|
2010-11-27 22:53:26 +03:00
|
|
|
public function setEntityManager(EntityManager $em)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->em = $em;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2009-01-05 20:25:56 +03:00
|
|
|
|
2009-01-07 00:47:29 +03:00
|
|
|
/**
|
2009-12-16 00:06:32 +03:00
|
|
|
* Sets the cache driver used by the factory to cache ClassMetadata instances.
|
2009-01-07 00:47:29 +03:00
|
|
|
*
|
2011-12-12 00:52:29 +04:00
|
|
|
* @param \Doctrine\Common\Cache\Cache $cacheDriver
|
2009-01-07 00:47:29 +03:00
|
|
|
*/
|
2009-01-06 20:22:23 +03:00
|
|
|
public function setCacheDriver($cacheDriver)
|
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->cacheDriver = $cacheDriver;
|
2009-01-06 20:22:23 +03:00
|
|
|
}
|
|
|
|
|
2009-01-07 00:47:29 +03:00
|
|
|
/**
|
|
|
|
* Gets the cache driver used by the factory to cache ClassMetadata instances.
|
|
|
|
*
|
2011-12-12 00:52:29 +04:00
|
|
|
* @return \Doctrine\Common\Cache\Cache
|
2009-01-07 00:47:29 +03:00
|
|
|
*/
|
2009-01-06 20:22:23 +03:00
|
|
|
public function getCacheDriver()
|
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
return $this->cacheDriver;
|
2009-01-06 20:22:23 +03:00
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-08-31 20:21:29 +04:00
|
|
|
public function getLoadedMetadata()
|
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
return $this->loadedMetadata;
|
2009-08-31 20:21:29 +04:00
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-12-16 00:06:32 +03:00
|
|
|
/**
|
|
|
|
* Forces the factory to load the metadata of all classes known to the underlying
|
|
|
|
* mapping driver.
|
2011-12-20 01:56:19 +04:00
|
|
|
*
|
2009-12-16 00:06:32 +03:00
|
|
|
* @return array The ClassMetadata instances of all mapped classes.
|
|
|
|
*/
|
|
|
|
public function getAllMetadata()
|
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
if ( ! $this->initialized) {
|
|
|
|
$this->initialize();
|
2009-12-16 00:06:32 +03:00
|
|
|
}
|
2010-05-08 16:08:18 +04:00
|
|
|
|
2009-12-16 00:06:32 +03:00
|
|
|
$metadata = array();
|
2010-08-28 00:14:48 +04:00
|
|
|
foreach ($this->driver->getAllClassNames() as $className) {
|
2009-12-16 00:06:32 +03:00
|
|
|
$metadata[] = $this->getMetadataFor($className);
|
|
|
|
}
|
2010-05-08 16:08:18 +04:00
|
|
|
|
2009-12-16 00:06:32 +03:00
|
|
|
return $metadata;
|
|
|
|
}
|
2010-05-08 16:08:18 +04:00
|
|
|
|
2009-12-16 00:06:32 +03:00
|
|
|
/**
|
|
|
|
* Lazy initialization of this stuff, especially the metadata driver,
|
|
|
|
* since these are not needed at all when a metadata cache is active.
|
|
|
|
*/
|
2010-08-28 00:14:48 +04:00
|
|
|
private function initialize()
|
2009-12-16 00:06:32 +03:00
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->driver = $this->em->getConfiguration()->getMetadataDriverImpl();
|
|
|
|
$this->targetPlatform = $this->em->getConnection()->getDatabasePlatform();
|
|
|
|
$this->evm = $this->em->getEventManager();
|
|
|
|
$this->initialized = true;
|
2009-12-16 00:06:32 +03:00
|
|
|
}
|
2009-01-06 20:22:23 +03:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-07-30 19:16:02 +04:00
|
|
|
* Gets the class metadata descriptor for a class.
|
2009-01-05 20:25:56 +03:00
|
|
|
*
|
2009-07-23 13:52:16 +04:00
|
|
|
* @param string $className The name of the class.
|
2011-12-12 00:52:29 +04:00
|
|
|
* @return \Doctrine\ORM\Mapping\ClassMetadata
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
|
|
|
public function getMetadataFor($className)
|
|
|
|
{
|
2012-04-01 18:27:31 +04:00
|
|
|
if (isset($this->loadedMetadata[$className])) {
|
|
|
|
return $this->loadedMetadata[$className];
|
|
|
|
}
|
2010-03-03 04:30:00 +03:00
|
|
|
|
2012-04-01 18:27:31 +04:00
|
|
|
$realClassName = $className;
|
2010-03-03 04:30:00 +03:00
|
|
|
|
2012-04-01 18:27:31 +04:00
|
|
|
// Check for namespace alias
|
|
|
|
if (strpos($className, ':') !== false) {
|
|
|
|
list($namespaceAlias, $simpleClassName) = explode(':', $className);
|
|
|
|
$realClassName = $this->em->getConfiguration()->getEntityNamespace($namespaceAlias) . '\\' . $simpleClassName;
|
|
|
|
} else {
|
|
|
|
$realClassName = ClassUtils::getRealClass($realClassName);
|
|
|
|
}
|
2010-03-03 04:30:00 +03:00
|
|
|
|
2012-04-01 18:27:31 +04:00
|
|
|
if (isset($this->loadedMetadata[$realClassName])) {
|
|
|
|
// We do not have the alias name in the map, include it
|
|
|
|
$this->loadedMetadata[$className] = $this->loadedMetadata[$realClassName];
|
|
|
|
return $this->loadedMetadata[$realClassName];
|
|
|
|
}
|
2010-03-03 04:30:00 +03:00
|
|
|
|
2012-04-01 18:27:31 +04:00
|
|
|
if ($this->cacheDriver) {
|
|
|
|
if (($cached = $this->cacheDriver->fetch("$realClassName\$CLASSMETADATA")) !== false) {
|
|
|
|
$this->wakeupReflection($cached, $this->getReflectionService());
|
|
|
|
$this->loadedMetadata[$realClassName] = $cached;
|
2009-01-06 20:22:23 +03:00
|
|
|
} else {
|
2012-04-01 18:27:31 +04:00
|
|
|
foreach ($this->loadMetadata($realClassName) as $loadedClassName) {
|
|
|
|
$this->cacheDriver->save(
|
|
|
|
"$loadedClassName\$CLASSMETADATA", $this->loadedMetadata[$loadedClassName], null
|
|
|
|
);
|
|
|
|
}
|
2010-03-03 04:30:00 +03:00
|
|
|
}
|
2012-04-01 18:27:31 +04:00
|
|
|
} else {
|
|
|
|
$this->loadMetadata($realClassName);
|
|
|
|
}
|
2010-03-03 04:30:00 +03:00
|
|
|
|
2012-04-01 18:27:31 +04:00
|
|
|
if ($className != $realClassName) {
|
|
|
|
// We do not have the alias name in the map, include it
|
|
|
|
$this->loadedMetadata[$className] = $this->loadedMetadata[$realClassName];
|
2009-01-05 20:25:56 +03:00
|
|
|
}
|
2010-03-03 04:30:00 +03:00
|
|
|
|
2010-08-28 00:14:48 +04:00
|
|
|
return $this->loadedMetadata[$className];
|
2009-01-05 20:25:56 +03:00
|
|
|
}
|
2010-03-03 04:30:00 +03:00
|
|
|
|
2009-07-30 19:16:02 +04:00
|
|
|
/**
|
2009-12-16 00:06:32 +03:00
|
|
|
* Checks whether the factory has the metadata for a class loaded already.
|
2011-12-20 01:56:19 +04:00
|
|
|
*
|
2009-12-16 00:06:32 +03:00
|
|
|
* @param string $className
|
|
|
|
* @return boolean TRUE if the metadata of the class in question is already loaded, FALSE otherwise.
|
2009-07-30 19:16:02 +04:00
|
|
|
*/
|
2009-07-29 15:57:27 +04:00
|
|
|
public function hasMetadataFor($className)
|
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
return isset($this->loadedMetadata[$className]);
|
2009-07-29 15:57:27 +04:00
|
|
|
}
|
2009-05-13 19:19:27 +04:00
|
|
|
|
|
|
|
/**
|
2009-05-21 12:53:40 +04:00
|
|
|
* Sets the metadata descriptor for a specific class.
|
2011-12-20 01:56:19 +04:00
|
|
|
*
|
2009-07-18 15:41:37 +04:00
|
|
|
* NOTE: This is only useful in very special cases, like when generating proxy classes.
|
2009-05-13 19:19:27 +04:00
|
|
|
*
|
2009-05-21 12:53:40 +04:00
|
|
|
* @param string $className
|
|
|
|
* @param ClassMetadata $class
|
2009-05-13 19:19:27 +04:00
|
|
|
*/
|
|
|
|
public function setMetadataFor($className, $class)
|
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->loadedMetadata[$className] = $class;
|
2009-05-13 19:19:27 +04:00
|
|
|
}
|
2010-04-14 19:21:15 +04:00
|
|
|
|
2010-04-14 02:24:48 +04:00
|
|
|
/**
|
|
|
|
* Get array of parent classes for the given entity class
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return array $parentClasses
|
|
|
|
*/
|
2010-08-28 00:14:48 +04:00
|
|
|
protected function getParentClasses($name)
|
2010-04-14 02:20:41 +04:00
|
|
|
{
|
|
|
|
// Collect parent classes, ignoring transient (not-mapped) classes.
|
|
|
|
$parentClasses = array();
|
2012-01-02 18:30:25 +04:00
|
|
|
foreach (array_reverse($this->getReflectionService()->getParentClasses($name)) as $parentClass) {
|
2010-08-28 00:14:48 +04:00
|
|
|
if ( ! $this->driver->isTransient($parentClass)) {
|
2010-04-14 02:20:41 +04:00
|
|
|
$parentClasses[] = $parentClass;
|
|
|
|
}
|
|
|
|
}
|
2010-04-14 19:21:15 +04:00
|
|
|
return $parentClasses;
|
2010-04-14 02:20:41 +04:00
|
|
|
}
|
2010-04-14 19:21:15 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
|
|
|
* Loads the metadata of the class in question and all it's ancestors whose metadata
|
|
|
|
* is still not loaded.
|
|
|
|
*
|
2009-05-21 12:53:40 +04:00
|
|
|
* @param string $name The name of the class for which the metadata should get loaded.
|
2008-02-04 00:29:57 +03:00
|
|
|
* @param array $tables The metadata collection to which the loaded metadata is added.
|
|
|
|
*/
|
2010-08-28 00:14:48 +04:00
|
|
|
protected function loadMetadata($name)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2010-08-28 00:14:48 +04:00
|
|
|
if ( ! $this->initialized) {
|
|
|
|
$this->initialize();
|
2009-12-16 00:06:32 +03:00
|
|
|
}
|
2010-04-14 12:46:35 +04:00
|
|
|
|
2009-11-21 21:52:02 +03:00
|
|
|
$loaded = array();
|
2010-03-15 20:19:00 +03:00
|
|
|
|
2010-08-28 00:14:48 +04:00
|
|
|
$parentClasses = $this->getParentClasses($name);
|
2008-02-04 00:29:57 +03:00
|
|
|
$parentClasses[] = $name;
|
2009-09-11 23:50:48 +04:00
|
|
|
|
2008-08-22 13:05:14 +04:00
|
|
|
// Move down the hierarchy of parent classes, starting from the topmost class
|
2009-02-05 20:34:44 +03:00
|
|
|
$parent = null;
|
2011-06-25 12:20:37 +04:00
|
|
|
$rootEntityFound = false;
|
2009-02-05 20:34:44 +03:00
|
|
|
$visited = array();
|
|
|
|
foreach ($parentClasses as $className) {
|
2010-08-28 00:14:48 +04:00
|
|
|
if (isset($this->loadedMetadata[$className])) {
|
|
|
|
$parent = $this->loadedMetadata[$className];
|
2009-07-30 19:16:02 +04:00
|
|
|
if ( ! $parent->isMappedSuperclass) {
|
2011-06-25 12:20:37 +04:00
|
|
|
$rootEntityFound = true;
|
2009-07-30 19:16:02 +04:00
|
|
|
array_unshift($visited, $className);
|
|
|
|
}
|
2009-05-21 12:53:40 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-08-28 00:14:48 +04:00
|
|
|
$class = $this->newClassMetadataInstance($className);
|
2012-01-02 18:36:36 +04:00
|
|
|
$this->initializeReflection($class, $this->getReflectionService());
|
2010-04-14 12:46:35 +04:00
|
|
|
|
2009-02-05 20:34:44 +03:00
|
|
|
if ($parent) {
|
2011-06-16 00:27:24 +04:00
|
|
|
$class->setInheritanceType($parent->inheritanceType);
|
|
|
|
$class->setDiscriminatorColumn($parent->discriminatorColumn);
|
2009-05-14 14:03:09 +04:00
|
|
|
$class->setIdGeneratorType($parent->generatorType);
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->addInheritedFields($class, $parent);
|
|
|
|
$this->addInheritedRelations($class, $parent);
|
2009-05-14 14:03:09 +04:00
|
|
|
$class->setIdentifier($parent->identifier);
|
2009-07-18 15:41:37 +04:00
|
|
|
$class->setVersioned($parent->isVersioned);
|
2009-07-17 22:13:03 +04:00
|
|
|
$class->setVersionField($parent->versionField);
|
2011-06-16 00:27:24 +04:00
|
|
|
$class->setDiscriminatorMap($parent->discriminatorMap);
|
2010-02-11 01:17:43 +03:00
|
|
|
$class->setLifecycleCallbacks($parent->lifecycleCallbacks);
|
2010-08-08 18:15:35 +04:00
|
|
|
$class->setChangeTrackingPolicy($parent->changeTrackingPolicy);
|
2011-09-08 20:41:16 +04:00
|
|
|
if ($parent->isMappedSuperclass) {
|
|
|
|
$class->setCustomRepositoryClass($parent->customRepositoryClassName);
|
|
|
|
}
|
2009-02-05 20:34:44 +03:00
|
|
|
}
|
2009-09-11 23:50:48 +04:00
|
|
|
|
2009-02-05 20:34:44 +03:00
|
|
|
// Invoke driver
|
2010-01-22 01:25:42 +03:00
|
|
|
try {
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->driver->loadMetadataForClass($className, $class);
|
2010-08-09 15:13:21 +04:00
|
|
|
} catch (ReflectionException $e) {
|
2010-01-22 01:25:42 +03:00
|
|
|
throw MappingException::reflectionFailure($className, $e);
|
|
|
|
}
|
2009-03-30 23:43:05 +04:00
|
|
|
|
2011-06-25 12:20:37 +04:00
|
|
|
// If this class has a parent the id generator strategy is inherited.
|
|
|
|
// However this is only true if the hierachy of parents contains the root entity,
|
|
|
|
// if it consinsts of mapped superclasses these don't necessarily include the id field.
|
|
|
|
if ($parent && $rootEntityFound) {
|
2009-05-05 21:20:55 +04:00
|
|
|
if ($parent->isIdGeneratorSequence()) {
|
2010-03-15 20:19:00 +03:00
|
|
|
$class->setSequenceGeneratorDefinition($parent->sequenceGeneratorDefinition);
|
2009-05-05 21:20:55 +04:00
|
|
|
} else if ($parent->isIdGeneratorTable()) {
|
2010-03-15 20:19:00 +03:00
|
|
|
$class->getTableGeneratorDefinition($parent->tableGeneratorDefinition);
|
2009-05-05 21:20:55 +04:00
|
|
|
}
|
2010-04-14 12:46:35 +04:00
|
|
|
if ($parent->generatorType) {
|
|
|
|
$class->setIdGeneratorType($parent->generatorType);
|
2009-09-29 19:54:16 +04:00
|
|
|
}
|
2010-03-15 20:19:00 +03:00
|
|
|
if ($parent->idGenerator) {
|
|
|
|
$class->setIdGenerator($parent->idGenerator);
|
2009-09-29 19:54:16 +04:00
|
|
|
}
|
2009-05-05 21:20:55 +04:00
|
|
|
} else {
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->completeIdGeneratorMapping($class);
|
|
|
|
}
|
|
|
|
|
2009-02-05 20:34:44 +03:00
|
|
|
if ($parent && $parent->isInheritanceTypeSingleTable()) {
|
2010-05-08 19:01:20 +04:00
|
|
|
$class->setPrimaryTable($parent->table);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2011-08-31 11:28:02 +04:00
|
|
|
if ($parent && $parent->containsForeignIdentifier) {
|
|
|
|
$class->containsForeignIdentifier = true;
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2011-11-14 22:07:37 +04:00
|
|
|
if ($parent && !empty ($parent->namedQueries)) {
|
|
|
|
$this->addInheritedNamedQueries($class, $parent);
|
|
|
|
}
|
2009-05-19 20:11:08 +04:00
|
|
|
|
2012-03-12 04:46:31 +04:00
|
|
|
if ($parent && !empty ($parent->namedNativeQueries)) {
|
|
|
|
$this->addInheritedNamedNativeQueries($class, $parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($parent && !empty ($parent->sqlResultSetMappings)) {
|
|
|
|
$this->addInheritedSqlResultSetMappings($class, $parent);
|
|
|
|
}
|
|
|
|
|
2009-05-19 20:11:08 +04:00
|
|
|
$class->setParentClasses($visited);
|
2009-05-21 12:53:40 +04:00
|
|
|
|
2012-05-05 01:15:12 +04:00
|
|
|
if ( $class->isRootEntity() && ! $class->isInheritanceTypeNone() && ! $class->discriminatorMap) {
|
2011-12-17 03:19:27 +04:00
|
|
|
$this->addDefaultDiscriminatorMap($class);
|
|
|
|
}
|
|
|
|
|
2010-08-28 00:14:48 +04:00
|
|
|
if ($this->evm->hasListeners(Events::loadClassMetadata)) {
|
2010-11-06 00:13:19 +03:00
|
|
|
$eventArgs = new \Doctrine\ORM\Event\LoadClassMetadataEventArgs($class, $this->em);
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->evm->dispatchEvent(Events::loadClassMetadata, $eventArgs);
|
2009-07-16 00:18:40 +04:00
|
|
|
}
|
2012-01-21 16:58:25 +04:00
|
|
|
$this->wakeupReflection($class, $this->getReflectionService());
|
2010-04-14 12:46:35 +04:00
|
|
|
|
2011-07-13 01:39:56 +04:00
|
|
|
$this->validateRuntimeMetadata($class, $parent);
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2010-08-28 00:14:48 +04:00
|
|
|
$this->loadedMetadata[$className] = $class;
|
2010-04-14 12:46:35 +04:00
|
|
|
|
2009-02-05 20:34:44 +03:00
|
|
|
$parent = $class;
|
2010-04-14 12:46:35 +04:00
|
|
|
|
2009-07-30 19:16:02 +04:00
|
|
|
if ( ! $class->isMappedSuperclass) {
|
2011-06-25 12:20:37 +04:00
|
|
|
$rootEntityFound = true;
|
2009-07-30 19:16:02 +04:00
|
|
|
array_unshift($visited, $className);
|
|
|
|
}
|
2010-04-14 12:46:35 +04:00
|
|
|
|
2009-11-21 21:52:02 +03:00
|
|
|
$loaded[] = $className;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2010-04-14 12:46:35 +04:00
|
|
|
|
2009-11-21 21:52:02 +03:00
|
|
|
return $loaded;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2009-01-06 20:22:23 +03:00
|
|
|
|
2011-07-13 01:39:56 +04:00
|
|
|
/**
|
|
|
|
* Validate runtime metadata is correctly defined.
|
|
|
|
*
|
|
|
|
* @param ClassMetadata $class
|
|
|
|
* @param ClassMetadata $parent
|
|
|
|
*/
|
|
|
|
protected function validateRuntimeMetadata($class, $parent)
|
|
|
|
{
|
2012-01-03 00:32:18 +04:00
|
|
|
if ( ! $class->reflClass ) {
|
|
|
|
// only validate if there is a reflection class instance
|
|
|
|
return;
|
2011-07-13 01:39:56 +04:00
|
|
|
}
|
|
|
|
|
2012-01-03 00:32:18 +04:00
|
|
|
$class->validateIdentifier();
|
|
|
|
$class->validateAssocations();
|
|
|
|
$class->validateLifecycleCallbacks($this->getReflectionService());
|
|
|
|
|
2011-07-13 01:39:56 +04:00
|
|
|
// verify inheritance
|
|
|
|
if (!$class->isMappedSuperclass && !$class->isInheritanceTypeNone()) {
|
|
|
|
if (!$parent) {
|
|
|
|
if (count($class->discriminatorMap) == 0) {
|
|
|
|
throw MappingException::missingDiscriminatorMap($class->name);
|
|
|
|
}
|
|
|
|
if (!$class->discriminatorColumn) {
|
|
|
|
throw MappingException::missingDiscriminatorColumn($class->name);
|
|
|
|
}
|
|
|
|
} else if ($parent && !$class->reflClass->isAbstract() && !in_array($class->name, array_values($class->discriminatorMap))) {
|
|
|
|
// enforce discriminator map for all entities of an inheritance hierachy, otherwise problems will occur.
|
|
|
|
throw MappingException::mappedClassNotPartOfDiscriminatorMap($class->name, $class->rootEntityName);
|
|
|
|
}
|
|
|
|
} else if ($class->isMappedSuperclass && $class->name == $class->rootEntityName && (count($class->discriminatorMap) || $class->discriminatorColumn)) {
|
|
|
|
// second condition is necessary for mapped superclasses in the middle of an inheritance hierachy
|
|
|
|
throw MappingException::noInheritanceOnMappedSuperClass($class->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-07 00:47:29 +03:00
|
|
|
/**
|
|
|
|
* Creates a new ClassMetadata instance for the given class name.
|
|
|
|
*
|
|
|
|
* @param string $className
|
2011-12-12 00:52:29 +04:00
|
|
|
* @return \Doctrine\ORM\Mapping\ClassMetadata
|
2009-01-07 00:47:29 +03:00
|
|
|
*/
|
2010-08-28 00:14:48 +04:00
|
|
|
protected function newClassMetadataInstance($className)
|
2009-01-06 20:22:23 +03:00
|
|
|
{
|
2011-12-23 20:41:03 +04:00
|
|
|
return new ClassMetadata($className, $this->em->getConfiguration()->getNamingStrategy());
|
2009-01-06 20:22:23 +03:00
|
|
|
}
|
2010-07-30 08:30:02 +04:00
|
|
|
|
2011-12-17 03:19:27 +04:00
|
|
|
/**
|
|
|
|
* Adds a default discriminator map if no one is given
|
|
|
|
*
|
2012-05-05 01:15:12 +04:00
|
|
|
* If an entity is of any inheritance type and does not contain a
|
|
|
|
* discrimiator map, then the map is generated automatically. This process
|
|
|
|
* is expensive computation wise.
|
|
|
|
*
|
|
|
|
* The automatically generated discriminator map contains the lowercase shortname of
|
|
|
|
* each class as key.
|
|
|
|
*
|
2011-12-17 03:19:27 +04:00
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $class
|
|
|
|
*/
|
|
|
|
private function addDefaultDiscriminatorMap(ClassMetadata $class)
|
|
|
|
{
|
|
|
|
$allClasses = $this->driver->getAllClassNames();
|
|
|
|
$subClassesMetadata = array();
|
|
|
|
$fqcn = $class->getName();
|
2012-05-05 01:15:12 +04:00
|
|
|
$map = array($this->getShortName($class->name) => $fqcn);
|
2011-12-17 03:19:27 +04:00
|
|
|
|
2012-05-05 01:15:12 +04:00
|
|
|
$duplicates = array();
|
|
|
|
foreach ($allClasses as $subClassCandidate) {
|
|
|
|
if (is_subclass_of($subClassCandidate, $fqcn)) {
|
|
|
|
$shortName = $this->getShortName($subClassCandidate);
|
2011-12-17 03:19:27 +04:00
|
|
|
|
2012-05-05 01:15:12 +04:00
|
|
|
if (isset($map[$shortName])) {
|
|
|
|
$duplicates[] = $shortName;
|
2011-12-17 03:19:27 +04:00
|
|
|
}
|
2012-05-05 01:15:12 +04:00
|
|
|
|
|
|
|
$map[$shortName] = $subClassCandidate;
|
2011-12-17 03:19:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-05 01:15:12 +04:00
|
|
|
if ($duplicates) {
|
|
|
|
throw MappingException::duplicateDiscriminatorEntry($class->name, $duplicates, $map);
|
|
|
|
}
|
2011-12-17 03:19:27 +04:00
|
|
|
|
2012-05-05 01:15:12 +04:00
|
|
|
$class->setDiscriminatorMap($map);
|
|
|
|
}
|
2011-12-17 03:19:27 +04:00
|
|
|
|
2012-05-05 01:15:12 +04:00
|
|
|
/**
|
|
|
|
* Get the lower-case shortname of a class.
|
|
|
|
*
|
|
|
|
* @param string $className
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function getShortName($className)
|
|
|
|
{
|
|
|
|
if (strpos($className, "\\") === false) {
|
|
|
|
return strtolower($className);
|
2011-12-17 03:19:27 +04:00
|
|
|
}
|
2012-05-05 01:15:12 +04:00
|
|
|
|
|
|
|
$parts = explode("\\", $className);
|
|
|
|
return strtolower(end($parts));
|
2011-12-17 03:19:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cache the metadata
|
|
|
|
*
|
|
|
|
* @param $className
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $metadata
|
|
|
|
*/
|
|
|
|
private function cacheMetadata($className, ClassMetadata $metadata)
|
|
|
|
{
|
|
|
|
$this->cacheDriver->save(
|
|
|
|
"$className\$CLASSMETADATA", $metadata, null
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify if metadata is cached
|
|
|
|
*
|
|
|
|
* @param $className
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function cacheContainsMetadata($className)
|
|
|
|
{
|
|
|
|
return $this->cacheDriver->contains("$className\$CLASSMETADATA");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch metadata from cache
|
|
|
|
*
|
|
|
|
* @param $className
|
|
|
|
*/
|
|
|
|
private function fetchMetadataFromCache($className)
|
|
|
|
{
|
|
|
|
return $this->cacheDriver->fetch("$className\$CLASSMETADATA");
|
|
|
|
}
|
|
|
|
|
2008-08-16 23:40:59 +04:00
|
|
|
/**
|
|
|
|
* Adds inherited fields to the subclass mapping.
|
|
|
|
*
|
2011-12-12 00:52:29 +04:00
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $subClass
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $parentClass
|
2008-08-16 23:40:59 +04:00
|
|
|
*/
|
2010-08-28 00:14:48 +04:00
|
|
|
private function addInheritedFields(ClassMetadata $subClass, ClassMetadata $parentClass)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2012-01-12 22:18:57 +04:00
|
|
|
foreach ($parentClass->fieldMappings as $mapping) {
|
2009-07-30 19:16:02 +04:00
|
|
|
if ( ! isset($mapping['inherited']) && ! $parentClass->isMappedSuperclass) {
|
2009-05-14 14:03:09 +04:00
|
|
|
$mapping['inherited'] = $parentClass->name;
|
2008-08-22 13:05:14 +04:00
|
|
|
}
|
2010-04-14 19:07:08 +04:00
|
|
|
if ( ! isset($mapping['declared'])) {
|
|
|
|
$mapping['declared'] = $parentClass->name;
|
|
|
|
}
|
|
|
|
$subClass->addInheritedFieldMapping($mapping);
|
2009-05-21 12:53:40 +04:00
|
|
|
}
|
|
|
|
foreach ($parentClass->reflFields as $name => $field) {
|
|
|
|
$subClass->reflFields[$name] = $field;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
|
|
|
}
|
2010-04-14 19:07:08 +04:00
|
|
|
|
2008-08-16 23:40:59 +04:00
|
|
|
/**
|
2010-04-14 19:07:08 +04:00
|
|
|
* Adds inherited association mappings to the subclass mapping.
|
2008-08-16 23:40:59 +04:00
|
|
|
*
|
2011-12-12 00:52:29 +04:00
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $subClass
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $parentClass
|
2008-08-16 23:40:59 +04:00
|
|
|
*/
|
2010-08-28 00:14:48 +04:00
|
|
|
private function addInheritedRelations(ClassMetadata $subClass, ClassMetadata $parentClass)
|
2008-05-26 00:10:41 +04:00
|
|
|
{
|
2010-04-14 19:07:08 +04:00
|
|
|
foreach ($parentClass->associationMappings as $field => $mapping) {
|
2010-09-22 01:14:45 +04:00
|
|
|
if ($parentClass->isMappedSuperclass) {
|
2010-12-31 16:39:01 +03:00
|
|
|
if ($mapping['type'] & ClassMetadata::TO_MANY && !$mapping['isOwningSide']) {
|
2010-12-28 13:59:51 +03:00
|
|
|
throw MappingException::illegalToManyAssocationOnMappedSuperclass($parentClass->name, $field);
|
|
|
|
}
|
2010-09-22 01:14:45 +04:00
|
|
|
$mapping['sourceEntity'] = $subClass->name;
|
|
|
|
}
|
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
//$subclassMapping = $mapping;
|
|
|
|
if ( ! isset($mapping['inherited']) && ! $parentClass->isMappedSuperclass) {
|
|
|
|
$mapping['inherited'] = $parentClass->name;
|
2010-04-14 19:07:08 +04:00
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
if ( ! isset($mapping['declared'])) {
|
|
|
|
$mapping['declared'] = $parentClass->name;
|
2009-05-21 12:53:40 +04:00
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
$subClass->addInheritedAssociationMapping($mapping);
|
2009-05-21 12:53:40 +04:00
|
|
|
}
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2011-11-14 22:07:37 +04:00
|
|
|
/**
|
|
|
|
* Adds inherited named queries to the subclass mapping.
|
2011-12-20 01:56:19 +04:00
|
|
|
*
|
2011-11-14 22:07:37 +04:00
|
|
|
* @since 2.2
|
2011-12-12 01:46:24 +04:00
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $subClass
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $parentClass
|
2011-11-14 22:07:37 +04:00
|
|
|
*/
|
|
|
|
private function addInheritedNamedQueries(ClassMetadata $subClass, ClassMetadata $parentClass)
|
|
|
|
{
|
|
|
|
foreach ($parentClass->namedQueries as $name => $query) {
|
|
|
|
if (!isset ($subClass->namedQueries[$name])) {
|
|
|
|
$subClass->addNamedQuery(array(
|
|
|
|
'name' => $query['name'],
|
|
|
|
'query' => $query['query']
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-05-21 12:53:40 +04:00
|
|
|
|
2012-03-12 04:46:31 +04:00
|
|
|
/**
|
|
|
|
* Adds inherited named native queries to the subclass mapping.
|
|
|
|
*
|
|
|
|
* @since 2.3
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $subClass
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $parentClass
|
|
|
|
*/
|
|
|
|
private function addInheritedNamedNativeQueries(ClassMetadata $subClass, ClassMetadata $parentClass)
|
|
|
|
{
|
|
|
|
foreach ($parentClass->namedNativeQueries as $name => $query) {
|
|
|
|
if (!isset ($subClass->namedNativeQueries[$name])) {
|
|
|
|
$subClass->addNamedNativeQuery(array(
|
|
|
|
'name' => $query['name'],
|
|
|
|
'query' => $query['query'],
|
|
|
|
'isSelfClass' => $query['isSelfClass'],
|
|
|
|
'resultSetMapping' => $query['resultSetMapping'],
|
|
|
|
'resultClass' => $query['isSelfClass'] ? $subClass->name : $query['resultClass'],
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds inherited sql result set mappings to the subclass mapping.
|
|
|
|
*
|
|
|
|
* @since 2.3
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $subClass
|
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $parentClass
|
|
|
|
*/
|
|
|
|
private function addInheritedSqlResultSetMappings(ClassMetadata $subClass, ClassMetadata $parentClass)
|
|
|
|
{
|
|
|
|
foreach ($parentClass->sqlResultSetMappings as $name => $mapping) {
|
|
|
|
if (!isset ($subClass->sqlResultSetMappings[$name])) {
|
|
|
|
$entities = array();
|
|
|
|
foreach ($mapping['entities'] as $entity) {
|
|
|
|
$entities[] = array(
|
|
|
|
'fields' => $entity['fields'],
|
|
|
|
'isSelfClass' => $entity['isSelfClass'],
|
|
|
|
'discriminatorColumn' => $entity['discriminatorColumn'],
|
|
|
|
'entityClass' => $entity['isSelfClass'] ? $subClass->name : $entity['entityClass'],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$subClass->addSqlResultSetMapping(array(
|
|
|
|
'name' => $mapping['name'],
|
|
|
|
'columns' => $mapping['columns'],
|
|
|
|
'entities' => $entities,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-02-05 20:34:44 +03:00
|
|
|
* Completes the ID generator mapping. If "auto" is specified we choose the generator
|
|
|
|
* most appropriate for the targeted database platform.
|
2008-03-26 14:10:45 +03:00
|
|
|
*
|
2011-12-12 00:52:29 +04:00
|
|
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $class
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2010-08-28 00:14:48 +04:00
|
|
|
private function completeIdGeneratorMapping(ClassMetadataInfo $class)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2009-05-14 14:03:09 +04:00
|
|
|
$idGenType = $class->generatorType;
|
2009-03-30 23:43:05 +04:00
|
|
|
if ($idGenType == ClassMetadata::GENERATOR_TYPE_AUTO) {
|
2010-08-28 00:14:48 +04:00
|
|
|
if ($this->targetPlatform->prefersSequences()) {
|
2009-02-05 20:34:44 +03:00
|
|
|
$class->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_SEQUENCE);
|
2010-08-28 00:14:48 +04:00
|
|
|
} else if ($this->targetPlatform->prefersIdentityColumns()) {
|
2009-02-05 20:34:44 +03:00
|
|
|
$class->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_IDENTITY);
|
2008-12-18 17:08:11 +03:00
|
|
|
} else {
|
2009-02-05 20:34:44 +03:00
|
|
|
$class->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_TABLE);
|
2008-12-18 17:08:11 +03:00
|
|
|
}
|
|
|
|
}
|
2009-03-30 23:43:05 +04:00
|
|
|
|
|
|
|
// Create & assign an appropriate ID generator instance
|
2009-05-14 14:03:09 +04:00
|
|
|
switch ($class->generatorType) {
|
2009-03-30 23:43:05 +04:00
|
|
|
case ClassMetadata::GENERATOR_TYPE_IDENTITY:
|
2010-05-08 16:08:18 +04:00
|
|
|
// For PostgreSQL IDENTITY (SERIAL) we need a sequence name. It defaults to
|
|
|
|
// <table>_<column>_seq in PostgreSQL for SERIAL columns.
|
|
|
|
// Not pretty but necessary and the simplest solution that currently works.
|
2012-06-06 00:10:44 +04:00
|
|
|
$sequenceName = null;
|
2012-06-18 22:24:52 +04:00
|
|
|
|
2012-06-06 00:10:44 +04:00
|
|
|
if($this->targetPlatform instanceof Platforms\PostgreSQLPlatform) {
|
|
|
|
$fieldName = $class->getSingleIdentifierFieldName();
|
|
|
|
$columnName = $class->getSingleIdentifierColumnName();
|
|
|
|
$quoted = isset($class->fieldMappings[$fieldName]['quoted']) || isset($class->table['quoted']);
|
|
|
|
$sequenceName = $class->getTableName() . '_' . $columnName . '_seq';
|
2012-06-18 22:24:52 +04:00
|
|
|
$definition = array(
|
2012-06-06 00:10:44 +04:00
|
|
|
'sequenceName' => $this->targetPlatform->fixSchemaElementName($sequenceName)
|
|
|
|
);
|
2012-06-18 22:24:52 +04:00
|
|
|
|
2012-06-06 00:10:44 +04:00
|
|
|
if ($quoted) {
|
|
|
|
$definition['quoted'] = true;
|
|
|
|
}
|
2012-06-18 22:24:52 +04:00
|
|
|
|
2012-06-12 03:14:17 +04:00
|
|
|
$sequenceName = $this->em->getConfiguration()->getQuoteStrategy()->getSequenceName($definition, $class, $this->targetPlatform);
|
2012-06-06 00:10:44 +04:00
|
|
|
}
|
2012-06-18 22:24:52 +04:00
|
|
|
|
2012-06-06 00:10:44 +04:00
|
|
|
$class->setIdGenerator(new \Doctrine\ORM\Id\IdentityGenerator($sequenceName));
|
2009-03-30 23:43:05 +04:00
|
|
|
break;
|
|
|
|
case ClassMetadata::GENERATOR_TYPE_SEQUENCE:
|
|
|
|
// If there is no sequence definition yet, create a default definition
|
2010-03-15 20:19:00 +03:00
|
|
|
$definition = $class->sequenceGeneratorDefinition;
|
2012-06-18 22:24:52 +04:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
if ( ! $definition) {
|
2012-06-06 00:10:44 +04:00
|
|
|
$fieldName = $class->getSingleIdentifierFieldName();
|
|
|
|
$columnName = $class->getSingleIdentifierColumnName();
|
|
|
|
$quoted = isset($class->fieldMappings[$fieldName]['quoted']) || isset($class->table['quoted']);
|
|
|
|
$sequenceName = $class->getTableName() . '_' . $columnName . '_seq';
|
2012-06-18 22:24:52 +04:00
|
|
|
$definition = array(
|
|
|
|
'sequenceName' => $this->targetPlatform->fixSchemaElementName($sequenceName),
|
|
|
|
'allocationSize' => 1,
|
|
|
|
'initialValue' => 1,
|
|
|
|
);
|
|
|
|
|
2012-06-06 00:10:44 +04:00
|
|
|
if ($quoted) {
|
|
|
|
$definition['quoted'] = true;
|
|
|
|
}
|
2012-06-18 22:24:52 +04:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
$class->setSequenceGeneratorDefinition($definition);
|
|
|
|
}
|
2012-06-18 22:24:52 +04:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
$sequenceGenerator = new \Doctrine\ORM\Id\SequenceGenerator(
|
2012-06-12 03:14:17 +04:00
|
|
|
$this->em->getConfiguration()->getQuoteStrategy()->getSequenceName($definition, $class, $this->targetPlatform),
|
2009-03-30 23:43:05 +04:00
|
|
|
$definition['allocationSize']
|
|
|
|
);
|
|
|
|
$class->setIdGenerator($sequenceGenerator);
|
|
|
|
break;
|
|
|
|
case ClassMetadata::GENERATOR_TYPE_NONE:
|
2010-03-31 01:14:17 +04:00
|
|
|
$class->setIdGenerator(new \Doctrine\ORM\Id\AssignedGenerator());
|
2009-03-30 23:43:05 +04:00
|
|
|
break;
|
2011-09-19 20:29:24 +04:00
|
|
|
case ClassMetadata::GENERATOR_TYPE_UUID:
|
|
|
|
$class->setIdGenerator(new \Doctrine\ORM\Id\UuidGenerator());
|
|
|
|
break;
|
2009-03-30 23:43:05 +04:00
|
|
|
case ClassMetadata::GENERATOR_TYPE_TABLE:
|
2009-12-09 15:37:57 +03:00
|
|
|
throw new ORMException("TableGenerator not yet implemented.");
|
2009-03-30 23:43:05 +04:00
|
|
|
break;
|
2011-11-23 14:06:34 +04:00
|
|
|
case ClassMetadata::GENERATOR_TYPE_CUSTOM:
|
|
|
|
$definition = $class->customGeneratorDefinition;
|
2012-01-08 16:20:35 +04:00
|
|
|
if (!class_exists($definition['class'])) {
|
2011-11-23 14:51:45 +04:00
|
|
|
throw new ORMException("Can't instantiate custom generator : " .
|
2011-11-23 14:06:34 +04:00
|
|
|
$definition['class']);
|
2011-11-20 17:15:40 +04:00
|
|
|
}
|
2012-01-08 16:20:35 +04:00
|
|
|
$class->setIdGenerator(new $definition['class']);
|
2011-11-23 14:06:34 +04:00
|
|
|
break;
|
2009-03-30 23:43:05 +04:00
|
|
|
default:
|
2009-12-09 15:37:57 +03:00
|
|
|
throw new ORMException("Unknown generator type: " . $class->generatorType);
|
2009-03-30 23:43:05 +04:00
|
|
|
}
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2011-09-25 16:41:56 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this class is mapped by this EntityManager + ClassMetadata configuration
|
|
|
|
*
|
|
|
|
* @param $class
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isTransient($class)
|
|
|
|
{
|
2011-10-18 01:14:07 +04:00
|
|
|
if ( ! $this->initialized) {
|
|
|
|
$this->initialize();
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2011-11-28 14:16:23 +04:00
|
|
|
// Check for namespace alias
|
|
|
|
if (strpos($class, ':') !== false) {
|
|
|
|
list($namespaceAlias, $simpleClassName) = explode(':', $class);
|
|
|
|
$class = $this->em->getConfiguration()->getEntityNamespace($namespaceAlias) . '\\' . $simpleClassName;
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2011-09-25 16:41:56 +04:00
|
|
|
return $this->driver->isTransient($class);
|
|
|
|
}
|
2012-01-02 18:30:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get reflectionService.
|
|
|
|
*
|
|
|
|
* @return \Doctrine\Common\Persistence\Mapping\ReflectionService
|
|
|
|
*/
|
|
|
|
public function getReflectionService()
|
|
|
|
{
|
|
|
|
if ($this->reflectionService === null) {
|
|
|
|
$this->reflectionService = new RuntimeReflectionService();
|
|
|
|
}
|
|
|
|
return $this->reflectionService;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set reflectionService.
|
|
|
|
*
|
|
|
|
* @param reflectionService the value to set.
|
|
|
|
*/
|
|
|
|
public function setReflectionService(ReflectionService $reflectionService)
|
|
|
|
{
|
|
|
|
$this->reflectionService = $reflectionService;
|
|
|
|
}
|
2012-01-02 18:36:36 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wakeup reflection after ClassMetadata gets unserialized from cache.
|
|
|
|
*
|
2012-01-03 21:41:48 +04:00
|
|
|
* @param ClassMetadataInfo $class
|
2012-01-02 18:36:36 +04:00
|
|
|
* @param ReflectionService $reflService
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function wakeupReflection(ClassMetadataInfo $class, ReflectionService $reflService)
|
|
|
|
{
|
2012-01-02 18:57:32 +04:00
|
|
|
$class->wakeupReflection($reflService);
|
2012-01-02 18:36:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize Reflection after ClassMetadata was constructed.
|
|
|
|
*
|
2012-01-03 21:41:48 +04:00
|
|
|
* @param ClassMetadataInfo $class
|
|
|
|
* @param ReflectionService $reflService
|
2012-01-02 18:36:36 +04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function initializeReflection(ClassMetadataInfo $class, ReflectionService $reflService)
|
|
|
|
{
|
2012-01-02 20:06:22 +04:00
|
|
|
$class->initializeReflection($reflService);
|
2012-01-02 18:36:36 +04:00
|
|
|
}
|
2009-07-20 16:05:19 +04:00
|
|
|
}
|