-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Metadata Caching when it changes in EventListeners #21
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,9 @@ abstract class AbstractClassMetadataFactory implements ClassMetadataFactory | |
/** @var ClassMetadata[] */ | ||
private $loadedMetadata = []; | ||
|
||
/** @var string[] */ | ||
private $aliasesMap = []; | ||
|
||
/** @var bool */ | ||
protected $initialized = false; | ||
|
||
|
@@ -152,58 +155,35 @@ abstract protected function isEntity(ClassMetadata $class); | |
*/ | ||
public function getMetadataFor($className) | ||
{ | ||
$className = $this->getRealClassName($className); | ||
|
||
if (isset($this->loadedMetadata[$className])) { | ||
return $this->loadedMetadata[$className]; | ||
} | ||
|
||
// Check for namespace alias | ||
if (strpos($className, ':') !== false) { | ||
[$namespaceAlias, $simpleClassName] = explode(':', $className, 2); | ||
|
||
$realClassName = $this->getFqcnFromAlias($namespaceAlias, $simpleClassName); | ||
} else { | ||
$realClassName = $this->getRealClass($className); | ||
} | ||
|
||
if (isset($this->loadedMetadata[$realClassName])) { | ||
// We do not have the alias name in the map, include it | ||
return $this->loadedMetadata[$className] = $this->loadedMetadata[$realClassName]; | ||
} | ||
|
||
$loadingException = null; | ||
|
||
try { | ||
if ($this->cacheDriver) { | ||
$cached = $this->cacheDriver->fetch($realClassName . $this->cacheSalt); | ||
$cached = $this->cacheDriver->fetch($className . $this->cacheSalt); | ||
if ($cached instanceof ClassMetadata) { | ||
$this->loadedMetadata[$realClassName] = $cached; | ||
$this->loadedMetadata[$className] = $cached; | ||
|
||
$this->wakeupReflection($cached, $this->getReflectionService()); | ||
} else { | ||
foreach ($this->loadMetadata($realClassName) as $loadedClassName) { | ||
$this->cacheDriver->save( | ||
$loadedClassName . $this->cacheSalt, | ||
$this->loadedMetadata[$loadedClassName], | ||
null | ||
); | ||
} | ||
$this->loadMetadata($className); | ||
} | ||
} else { | ||
$this->loadMetadata($realClassName); | ||
$this->loadMetadata($className); | ||
} | ||
} catch (MappingException $loadingException) { | ||
$fallbackMetadataResponse = $this->onNotFoundMetadata($realClassName); | ||
$fallbackMetadataResponse = $this->onNotFoundMetadata($className); | ||
|
||
if (! $fallbackMetadataResponse) { | ||
throw $loadingException; | ||
} | ||
|
||
$this->loadedMetadata[$realClassName] = $fallbackMetadataResponse; | ||
} | ||
|
||
if ($className !== $realClassName) { | ||
// We do not have the alias name in the map, include it | ||
$this->loadedMetadata[$className] = $this->loadedMetadata[$realClassName]; | ||
$this->setMetadataFor($className, $fallbackMetadataResponse); | ||
} | ||
|
||
return $this->loadedMetadata[$className]; | ||
|
@@ -218,6 +198,8 @@ public function getMetadataFor($className) | |
*/ | ||
public function hasMetadataFor($className) | ||
{ | ||
$className = $this->getRealClassName($className); | ||
|
||
return isset($this->loadedMetadata[$className]); | ||
} | ||
|
||
|
@@ -233,7 +215,18 @@ public function hasMetadataFor($className) | |
*/ | ||
public function setMetadataFor($className, $class) | ||
{ | ||
$className = $this->getRealClassName($className); | ||
$this->loadedMetadata[$className] = $class; | ||
|
||
if ($this->cacheDriver === null) { | ||
return; | ||
} | ||
|
||
$this->cacheDriver->save( | ||
$className . $this->cacheSalt, | ||
$this->loadedMetadata[$className], | ||
null | ||
); | ||
} | ||
|
||
/** | ||
|
@@ -303,8 +296,7 @@ protected function loadMetadata($name) | |
$this->initializeReflection($class, $reflService); | ||
|
||
$this->doLoadMetadata($class, $parent, $rootEntityFound, $visited); | ||
|
||
$this->loadedMetadata[$className] = $class; | ||
$this->setMetadataFor($className, $class); | ||
|
||
$parent = $class; | ||
|
||
|
@@ -399,16 +391,32 @@ public function getReflectionService() | |
} | ||
|
||
/** | ||
* Gets the real class name of a class name that could be a proxy. | ||
* Gets the real class name of a class name that could be a proxy or alias. | ||
* | ||
* @param string $className | ||
* | ||
* @return string | ||
*/ | ||
private function getRealClass(string $class) : string | ||
private function getRealClassName($className) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We may also profit from making this method |
||
{ | ||
$pos = strrpos($class, '\\' . Proxy::MARKER . '\\'); | ||
if (isset($this->aliasesMap[$className])) { | ||
return $this->aliasesMap[$className]; | ||
} | ||
|
||
if ($pos === false) { | ||
return $class; | ||
switch (true) { | ||
case strpos($className, ':') !== false: // Check for namespace alias | ||
[$namespaceAlias, $simpleClassName] = explode(':', $className, 2); | ||
$realClassName = $this->getFqcnFromAlias($namespaceAlias, $simpleClassName); | ||
break; | ||
case $pos = strrpos($className, '\\' . Proxy::MARKER . '\\') !== false: // Check for namespace proxy | ||
$realClassName = substr($className, $pos + Proxy::MARKER_LENGTH + 2); | ||
break; | ||
default: | ||
$realClassName = $className; | ||
} | ||
|
||
return substr($class, $pos + Proxy::MARKER_LENGTH + 2); | ||
$this->aliasesMap[$className] = $realClassName; | ||
|
||
return $realClassName; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Type hints are here to stay: there's no reason you should assume anything else than a string for
$className
.