123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- <?php
- /*
- * 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.doctrine-project.org>.
- */
-
- namespace Doctrine\ORM\Mapping;
-
- use ReflectionException,
- Doctrine\ORM\ORMException,
- Doctrine\ORM\EntityManager,
- Doctrine\DBAL\Platforms,
- Doctrine\ORM\Events,
- Doctrine\Common\Persistence\Mapping\ClassMetadataFactory as ClassMetadataFactoryInterface;
-
- /**
- * The ClassMetadataFactory is used to create ClassMetadata objects that contain all the
- * metadata mapping informations of a class which describes how a class should be mapped
- * to a relational database.
- *
- * @since 2.0
- * @author Benjamin Eberlei <kontakt@beberlei.de>
- * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
- * @author Jonathan Wage <jonwage@gmail.com>
- * @author Roman Borschel <roman@code-factory.org>
- */
- class ClassMetadataFactory implements ClassMetadataFactoryInterface
- {
- /**
- * @var EntityManager
- */
- private $em;
-
- /**
- * @var AbstractPlatform
- */
- private $targetPlatform;
-
- /**
- * @var Driver\Driver
- */
- 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;
-
- /**
- * @param EntityManager $$em
- */
- public function setEntityManager(EntityManager $em)
- {
- $this->em = $em;
- }
-
- /**
- * Sets the cache driver used by the factory to cache ClassMetadata instances.
- *
- * @param Doctrine\Common\Cache\Cache $cacheDriver
- */
- public function setCacheDriver($cacheDriver)
- {
- $this->cacheDriver = $cacheDriver;
- }
-
- /**
- * Gets the cache driver used by the factory to cache ClassMetadata instances.
- *
- * @return Doctrine\Common\Cache\Cache
- */
- public function getCacheDriver()
- {
- return $this->cacheDriver;
- }
-
- public function getLoadedMetadata()
- {
- return $this->loadedMetadata;
- }
-
- /**
- * Forces the factory to load the metadata of all classes known to the underlying
- * mapping driver.
- *
- * @return array The ClassMetadata instances of all mapped classes.
- */
- public function getAllMetadata()
- {
- if ( ! $this->initialized) {
- $this->initialize();
- }
-
- $metadata = array();
- foreach ($this->driver->getAllClassNames() as $className) {
- $metadata[] = $this->getMetadataFor($className);
- }
-
- return $metadata;
- }
-
- /**
- * Lazy initialization of this stuff, especially the metadata driver,
- * since these are not needed at all when a metadata cache is active.
- */
- private function initialize()
- {
- $this->driver = $this->em->getConfiguration()->getMetadataDriverImpl();
- $this->targetPlatform = $this->em->getConnection()->getDatabasePlatform();
- $this->evm = $this->em->getEventManager();
- $this->initialized = true;
- }
-
- /**
- * Gets the class metadata descriptor for a class.
- *
- * @param string $className The name of the class.
- * @return Doctrine\ORM\Mapping\ClassMetadata
- */
- public function getMetadataFor($className)
- {
- if ( ! isset($this->loadedMetadata[$className])) {
- $realClassName = $className;
-
- // Check for namespace alias
- if (strpos($className, ':') !== false) {
- list($namespaceAlias, $simpleClassName) = explode(':', $className);
- $realClassName = $this->em->getConfiguration()->getEntityNamespace($namespaceAlias) . '\\' . $simpleClassName;
-
- 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];
- }
- }
-
- if ($this->cacheDriver) {
- if (($cached = $this->cacheDriver->fetch("$realClassName\$CLASSMETADATA")) !== false) {
- $this->loadedMetadata[$realClassName] = $cached;
- } else {
- foreach ($this->loadMetadata($realClassName) as $loadedClassName) {
- $this->cacheDriver->save(
- "$loadedClassName\$CLASSMETADATA", $this->loadedMetadata[$loadedClassName], null
- );
- }
- }
- } else {
- $this->loadMetadata($realClassName);
- }
-
- if ($className != $realClassName) {
- // We do not have the alias name in the map, include it
- $this->loadedMetadata[$className] = $this->loadedMetadata[$realClassName];
- }
- }
-
- return $this->loadedMetadata[$className];
- }
-
- /**
- * Checks whether the factory has the metadata for a class loaded already.
- *
- * @param string $className
- * @return boolean TRUE if the metadata of the class in question is already loaded, FALSE otherwise.
- */
- public function hasMetadataFor($className)
- {
- return isset($this->loadedMetadata[$className]);
- }
-
- /**
- * Sets the metadata descriptor for a specific class.
- *
- * NOTE: This is only useful in very special cases, like when generating proxy classes.
- *
- * @param string $className
- * @param ClassMetadata $class
- */
- public function setMetadataFor($className, $class)
- {
- $this->loadedMetadata[$className] = $class;
- }
-
- /**
- * Get array of parent classes for the given entity class
- *
- * @param string $name
- * @return array $parentClasses
- */
- protected function getParentClasses($name)
- {
- // Collect parent classes, ignoring transient (not-mapped) classes.
- $parentClasses = array();
- foreach (array_reverse(class_parents($name)) as $parentClass) {
- if ( ! $this->driver->isTransient($parentClass)) {
- $parentClasses[] = $parentClass;
- }
- }
- return $parentClasses;
- }
-
- /**
- * Loads the metadata of the class in question and all it's ancestors whose metadata
- * is still not loaded.
- *
- * @param string $name The name of the class for which the metadata should get loaded.
- * @param array $tables The metadata collection to which the loaded metadata is added.
- */
- protected function loadMetadata($name)
- {
- if ( ! $this->initialized) {
- $this->initialize();
- }
-
- $loaded = array();
-
- $parentClasses = $this->getParentClasses($name);
- $parentClasses[] = $name;
-
- // Move down the hierarchy of parent classes, starting from the topmost class
- $parent = null;
- $rootEntityFound = false;
- $visited = array();
- foreach ($parentClasses as $className) {
- if (isset($this->loadedMetadata[$className])) {
- $parent = $this->loadedMetadata[$className];
- if ( ! $parent->isMappedSuperclass) {
- $rootEntityFound = true;
- array_unshift($visited, $className);
- }
- continue;
- }
-
- $class = $this->newClassMetadataInstance($className);
-
- if ($parent) {
- $class->setInheritanceType($parent->inheritanceType);
- $class->setDiscriminatorColumn($parent->discriminatorColumn);
- $class->setIdGeneratorType($parent->generatorType);
- $this->addInheritedFields($class, $parent);
- $this->addInheritedRelations($class, $parent);
- $class->setIdentifier($parent->identifier);
- $class->setVersioned($parent->isVersioned);
- $class->setVersionField($parent->versionField);
- $class->setDiscriminatorMap($parent->discriminatorMap);
- $class->setLifecycleCallbacks($parent->lifecycleCallbacks);
- $class->setChangeTrackingPolicy($parent->changeTrackingPolicy);
- }
-
- // Invoke driver
- try {
- $this->driver->loadMetadataForClass($className, $class);
- } catch (ReflectionException $e) {
- throw MappingException::reflectionFailure($className, $e);
- }
-
- // 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) {
- if ($parent->isIdGeneratorSequence()) {
- $class->setSequenceGeneratorDefinition($parent->sequenceGeneratorDefinition);
- } else if ($parent->isIdGeneratorTable()) {
- $class->getTableGeneratorDefinition($parent->tableGeneratorDefinition);
- }
- if ($parent->generatorType) {
- $class->setIdGeneratorType($parent->generatorType);
- }
- if ($parent->idGenerator) {
- $class->setIdGenerator($parent->idGenerator);
- }
- } else {
- $this->completeIdGeneratorMapping($class);
- }
-
- if ($parent && $parent->isInheritanceTypeSingleTable()) {
- $class->setPrimaryTable($parent->table);
- }
-
- $class->setParentClasses($visited);
-
- if ($this->evm->hasListeners(Events::loadClassMetadata)) {
- $eventArgs = new \Doctrine\ORM\Event\LoadClassMetadataEventArgs($class, $this->em);
- $this->evm->dispatchEvent(Events::loadClassMetadata, $eventArgs);
- }
-
- $this->validateRuntimeMetadata($class, $parent);
-
- $this->loadedMetadata[$className] = $class;
-
- $parent = $class;
-
- if ( ! $class->isMappedSuperclass) {
- $rootEntityFound = true;
- array_unshift($visited, $className);
- }
-
- $loaded[] = $className;
- }
-
- return $loaded;
- }
-
- /**
- * Validate runtime metadata is correctly defined.
- *
- * @param ClassMetadata $class
- * @param ClassMetadata $parent
- */
- protected function validateRuntimeMetadata($class, $parent)
- {
- // Verify & complete identifier mapping
- if ( ! $class->identifier && ! $class->isMappedSuperclass) {
- throw MappingException::identifierRequired($className);
- }
-
- // 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);
- }
- }
-
- /**
- * Creates a new ClassMetadata instance for the given class name.
- *
- * @param string $className
- * @return Doctrine\ORM\Mapping\ClassMetadata
- */
- protected function newClassMetadataInstance($className)
- {
- return new ClassMetadata($className);
- }
-
- /**
- * Adds inherited fields to the subclass mapping.
- *
- * @param Doctrine\ORM\Mapping\ClassMetadata $subClass
- * @param Doctrine\ORM\Mapping\ClassMetadata $parentClass
- */
- private function addInheritedFields(ClassMetadata $subClass, ClassMetadata $parentClass)
- {
- foreach ($parentClass->fieldMappings as $fieldName => $mapping) {
- if ( ! isset($mapping['inherited']) && ! $parentClass->isMappedSuperclass) {
- $mapping['inherited'] = $parentClass->name;
- }
- if ( ! isset($mapping['declared'])) {
- $mapping['declared'] = $parentClass->name;
- }
- $subClass->addInheritedFieldMapping($mapping);
- }
- foreach ($parentClass->reflFields as $name => $field) {
- $subClass->reflFields[$name] = $field;
- }
- }
-
- /**
- * Adds inherited association mappings to the subclass mapping.
- *
- * @param Doctrine\ORM\Mapping\ClassMetadata $subClass
- * @param Doctrine\ORM\Mapping\ClassMetadata $parentClass
- */
- private function addInheritedRelations(ClassMetadata $subClass, ClassMetadata $parentClass)
- {
- foreach ($parentClass->associationMappings as $field => $mapping) {
- if ($parentClass->isMappedSuperclass) {
- if ($mapping['type'] & ClassMetadata::TO_MANY && !$mapping['isOwningSide']) {
- throw MappingException::illegalToManyAssocationOnMappedSuperclass($parentClass->name, $field);
- }
- $mapping['sourceEntity'] = $subClass->name;
- }
-
- //$subclassMapping = $mapping;
- if ( ! isset($mapping['inherited']) && ! $parentClass->isMappedSuperclass) {
- $mapping['inherited'] = $parentClass->name;
- }
- if ( ! isset($mapping['declared'])) {
- $mapping['declared'] = $parentClass->name;
- }
- $subClass->addInheritedAssociationMapping($mapping);
- }
- }
-
- /**
- * Completes the ID generator mapping. If "auto" is specified we choose the generator
- * most appropriate for the targeted database platform.
- *
- * @param Doctrine\ORM\Mapping\ClassMetadata $class
- */
- private function completeIdGeneratorMapping(ClassMetadataInfo $class)
- {
- $idGenType = $class->generatorType;
- if ($idGenType == ClassMetadata::GENERATOR_TYPE_AUTO) {
- if ($this->targetPlatform->prefersSequences()) {
- $class->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_SEQUENCE);
- } else if ($this->targetPlatform->prefersIdentityColumns()) {
- $class->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_IDENTITY);
- } else {
- $class->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_TABLE);
- }
- }
-
- // Create & assign an appropriate ID generator instance
- switch ($class->generatorType) {
- case ClassMetadata::GENERATOR_TYPE_IDENTITY:
- // 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.
- $seqName = $this->targetPlatform instanceof Platforms\PostgreSQLPlatform ?
- $class->table['name'] . '_' . $class->columnNames[$class->identifier[0]] . '_seq' :
- null;
- $class->setIdGenerator(new \Doctrine\ORM\Id\IdentityGenerator($seqName));
- break;
- case ClassMetadata::GENERATOR_TYPE_SEQUENCE:
- // If there is no sequence definition yet, create a default definition
- $definition = $class->sequenceGeneratorDefinition;
- if ( ! $definition) {
- $sequenceName = $class->getTableName() . '_' . $class->getSingleIdentifierColumnName() . '_seq';
- $definition['sequenceName'] = $this->targetPlatform->fixSchemaElementName($sequenceName);
- $definition['allocationSize'] = 1;
- $definition['initialValue'] = 1;
- $class->setSequenceGeneratorDefinition($definition);
- }
- $sequenceGenerator = new \Doctrine\ORM\Id\SequenceGenerator(
- $definition['sequenceName'],
- $definition['allocationSize']
- );
- $class->setIdGenerator($sequenceGenerator);
- break;
- case ClassMetadata::GENERATOR_TYPE_NONE:
- $class->setIdGenerator(new \Doctrine\ORM\Id\AssignedGenerator());
- break;
- case ClassMetadata::GENERATOR_TYPE_TABLE:
- throw new ORMException("TableGenerator not yet implemented.");
- break;
- default:
- throw new ORMException("Unknown generator type: " . $class->generatorType);
- }
- }
- }
|