Updating ClassMetadataFactory to comply with new abstract CMF interface as of doctrine/common#150
This commit is contained in:
parent
94714db132
commit
f6381d7b76
1 changed files with 73 additions and 119 deletions
|
@ -27,7 +27,8 @@ use ReflectionException,
|
||||||
Doctrine\Common\Persistence\Mapping\ReflectionService,
|
Doctrine\Common\Persistence\Mapping\ReflectionService,
|
||||||
Doctrine\Common\Persistence\Mapping\ClassMetadata as ClassMetadataInterface,
|
Doctrine\Common\Persistence\Mapping\ClassMetadata as ClassMetadataInterface,
|
||||||
Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory,
|
Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory,
|
||||||
Doctrine\ORM\Id\IdentityGenerator;
|
Doctrine\ORM\Id\IdentityGenerator,
|
||||||
|
Doctrine\ORM\Event\LoadClassMetadataEventArgs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The ClassMetadataFactory is used to create ClassMetadata objects that contain all the
|
* The ClassMetadataFactory is used to create ClassMetadata objects that contain all the
|
||||||
|
@ -84,126 +85,90 @@ class ClassMetadataFactory extends AbstractClassMetadataFactory
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
|
|
||||||
*/
|
*/
|
||||||
protected function loadMetadata($name)
|
protected function doLoadMetadata($class, $parent, $rootEntityFound, array $nonSuperclassParents)
|
||||||
{
|
{
|
||||||
if ( ! $this->initialized) {
|
/* @var $class ClassMetadata */
|
||||||
$this->initialize();
|
/* @var $parent ClassMetadata */
|
||||||
|
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);
|
||||||
|
|
||||||
|
if ($parent->isMappedSuperclass) {
|
||||||
|
$class->setCustomRepositoryClass($parent->customRepositoryClassName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$loaded = array();
|
// Invoke driver
|
||||||
|
try {
|
||||||
|
$this->driver->loadMetadataForClass($class->getName(), $class);
|
||||||
|
} catch (ReflectionException $e) {
|
||||||
|
throw MappingException::reflectionFailure($class->getName(), $e);
|
||||||
|
}
|
||||||
|
|
||||||
$parentClasses = $this->getParentClasses($name);
|
// If this class has a parent the id generator strategy is inherited.
|
||||||
$parentClasses[] = $name;
|
// However this is only true if the hierarchy of parents contains the root entity,
|
||||||
|
// if it consists of mapped superclasses these don't necessarily include the id field.
|
||||||
// Move down the hierarchy of parent classes, starting from the topmost class
|
if ($parent && $rootEntityFound) {
|
||||||
$parent = null;
|
if ($parent->isIdGeneratorSequence()) {
|
||||||
$rootEntityFound = false;
|
$class->setSequenceGeneratorDefinition($parent->sequenceGeneratorDefinition);
|
||||||
$visited = array();
|
} else if ($parent->isIdGeneratorTable()) {
|
||||||
foreach ($parentClasses as $className) {
|
$class->tableGeneratorDefinition = $parent->tableGeneratorDefinition;
|
||||||
if ($this->hasMetadataFor($className)) {
|
|
||||||
$parent = $this->getMetadataFor($className);
|
|
||||||
if ( ! $parent->isMappedSuperclass) {
|
|
||||||
$rootEntityFound = true;
|
|
||||||
array_unshift($visited, $className);
|
|
||||||
}
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$class = $this->newClassMetadataInstance($className);
|
if ($parent->generatorType) {
|
||||||
$this->initializeReflection($class, $this->getReflectionService());
|
|
||||||
|
|
||||||
if ($parent) {
|
|
||||||
$class->setInheritanceType($parent->inheritanceType);
|
|
||||||
$class->setDiscriminatorColumn($parent->discriminatorColumn);
|
|
||||||
$class->setIdGeneratorType($parent->generatorType);
|
$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);
|
|
||||||
if ($parent->isMappedSuperclass) {
|
|
||||||
$class->setCustomRepositoryClass($parent->customRepositoryClassName);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Invoke driver
|
if ($parent->idGenerator) {
|
||||||
try {
|
$class->setIdGenerator($parent->idGenerator);
|
||||||
$this->driver->loadMetadataForClass($className, $class);
|
|
||||||
} catch (ReflectionException $e) {
|
|
||||||
throw MappingException::reflectionFailure($className, $e);
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
// If this class has a parent the id generator strategy is inherited.
|
$this->completeIdGeneratorMapping($class);
|
||||||
// However this is only true if the hierarchy of parents contains the root entity,
|
|
||||||
// if it consists 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->tableGeneratorDefinition = $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);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($parent && $parent->containsForeignIdentifier) {
|
|
||||||
$class->containsForeignIdentifier = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($parent && !empty ($parent->namedQueries)) {
|
|
||||||
$this->addInheritedNamedQueries($class, $parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($parent && !empty ($parent->namedNativeQueries)) {
|
|
||||||
$this->addInheritedNamedNativeQueries($class, $parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($parent && !empty ($parent->sqlResultSetMappings)) {
|
|
||||||
$this->addInheritedSqlResultSetMappings($class, $parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
$class->setParentClasses($visited);
|
|
||||||
|
|
||||||
if ( $class->isRootEntity() && ! $class->isInheritanceTypeNone() && ! $class->discriminatorMap) {
|
|
||||||
$this->addDefaultDiscriminatorMap($class);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->evm->hasListeners(Events::loadClassMetadata)) {
|
|
||||||
$eventArgs = new \Doctrine\ORM\Event\LoadClassMetadataEventArgs($class, $this->em);
|
|
||||||
$this->evm->dispatchEvent(Events::loadClassMetadata, $eventArgs);
|
|
||||||
}
|
|
||||||
$this->wakeupReflection($class, $this->getReflectionService());
|
|
||||||
|
|
||||||
$this->validateRuntimeMetadata($class, $parent);
|
|
||||||
|
|
||||||
$this->setMetadataFor($className, $class);
|
|
||||||
|
|
||||||
$parent = $class;
|
|
||||||
|
|
||||||
if ( ! $class->isMappedSuperclass) {
|
|
||||||
$rootEntityFound = true;
|
|
||||||
array_unshift($visited, $className);
|
|
||||||
}
|
|
||||||
|
|
||||||
$loaded[] = $className;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $loaded;
|
if ($parent && $parent->isInheritanceTypeSingleTable()) {
|
||||||
|
$class->setPrimaryTable($parent->table);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($parent && $parent->containsForeignIdentifier) {
|
||||||
|
$class->containsForeignIdentifier = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($parent && !empty ($parent->namedQueries)) {
|
||||||
|
$this->addInheritedNamedQueries($class, $parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($parent && !empty ($parent->namedNativeQueries)) {
|
||||||
|
$this->addInheritedNamedNativeQueries($class, $parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($parent && !empty ($parent->sqlResultSetMappings)) {
|
||||||
|
$this->addInheritedSqlResultSetMappings($class, $parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
$class->setParentClasses($nonSuperclassParents);
|
||||||
|
|
||||||
|
if ( $class->isRootEntity() && ! $class->isInheritanceTypeNone() && ! $class->discriminatorMap) {
|
||||||
|
$this->addDefaultDiscriminatorMap($class);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->evm->hasListeners(Events::loadClassMetadata)) {
|
||||||
|
$eventArgs = new LoadClassMetadataEventArgs($class, $this->em);
|
||||||
|
$this->evm->dispatchEvent(Events::loadClassMetadata, $eventArgs);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->wakeupReflection($class, $this->getReflectionService());
|
||||||
|
$this->validateRuntimeMetadata($class, $parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -586,15 +551,4 @@ class ClassMetadataFactory extends AbstractClassMetadataFactory
|
||||||
{
|
{
|
||||||
return $this->driver;
|
return $this->driver;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
protected function doLoadMetadata($class, $parent, $rootEntityFound)
|
|
||||||
{
|
|
||||||
throw new \LogicException(
|
|
||||||
'Not implemented because Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory '
|
|
||||||
. 'behavior differs in how Doctrine\ORM\Mapping\MetadataFactory works'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue