-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[DI][Config] Add & use ReflectionClassResource #21419
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
Changes from all commits
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 |
---|---|---|
@@ -0,0 +1,171 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <fabien@symfony.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Symfony\Component\Config\Resource; | ||
|
||
/** | ||
* @author Nicolas Grekas <p@tchwork.com> | ||
*/ | ||
class ReflectionClassResource implements SelfCheckingResourceInterface, \Serializable | ||
{ | ||
private $files = array(); | ||
private $className; | ||
private $classReflector; | ||
private $hash; | ||
|
||
public function __construct(\ReflectionClass $classReflector) | ||
{ | ||
$this->className = $classReflector->name; | ||
$this->classReflector = $classReflector; | ||
} | ||
|
||
public function isFresh($timestamp) | ||
{ | ||
if (null === $this->hash) { | ||
$this->hash = $this->computeHash(); | ||
$this->loadFiles($this->classReflector); | ||
} | ||
|
||
foreach ($this->files as $file => $v) { | ||
if (!file_exists($file)) { | ||
return false; | ||
} | ||
|
||
if (@filemtime($file) > $timestamp) { | ||
return $this->hash === $this->computeHash(); | ||
} | ||
} | ||
|
||
return true; | ||
} | ||
|
||
public function __toString() | ||
{ | ||
return 'reflection.'.$this->className; | ||
} | ||
|
||
public function serialize() | ||
{ | ||
if (null === $this->hash) { | ||
$this->hash = $this->computeHash(); | ||
$this->loadFiles($this->classReflector); | ||
} | ||
|
||
return serialize(array($this->files, $this->className, $this->hash)); | ||
} | ||
|
||
public function unserialize($serialized) | ||
{ | ||
list($this->files, $this->className, $this->hash) = unserialize($serialized); | ||
} | ||
|
||
private function loadFiles(\ReflectionClass $class) | ||
{ | ||
foreach ($class->getInterfaces() as $v) { | ||
$this->loadFiles($v); | ||
} | ||
do { | ||
$file = $class->getFileName(); | ||
if (false !== $file && file_exists($file)) { | ||
$this->files[$file] = null; | ||
} | ||
foreach ($class->getTraits() as $v) { | ||
$this->loadFiles($v); | ||
} | ||
} while ($class = $class->getParentClass()); | ||
} | ||
|
||
private function computeHash() | ||
{ | ||
if (null === $this->classReflector) { | ||
try { | ||
$this->classReflector = new \ReflectionClass($this->className); | ||
} catch (\ReflectionException $e) { | ||
// the class does not exist anymore | ||
return false; | ||
} | ||
} | ||
$hash = hash_init('md5'); | ||
|
||
foreach ($this->generateSignature($this->classReflector) as $info) { | ||
hash_update($hash, $info); | ||
} | ||
|
||
return hash_final($hash); | ||
} | ||
|
||
private function generateSignature(\ReflectionClass $class) | ||
{ | ||
yield $class->getDocComment().$class->getModifiers(); | ||
|
||
if ($class->isTrait()) { | ||
yield print_r(class_uses($class->name), true); | ||
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. shouldn't this be always included ? 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. no need: traits are not directly part of the signature - the methods they provide will be seen as any other methods, thus tracked |
||
} else { | ||
yield print_r(class_parents($class->name), true); | ||
yield print_r(class_implements($class->name), true); | ||
yield print_r($class->getConstants(), true); | ||
} | ||
|
||
if (!$class->isInterface()) { | ||
$defaults = $class->getDefaultProperties(); | ||
|
||
foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_PROTECTED) as $p) { | ||
yield $p->getDocComment().$p; | ||
yield print_r($defaults[$p->name], true); | ||
} | ||
} | ||
|
||
if (defined('HHVM_VERSION')) { | ||
foreach ($class->getMethods(\ReflectionMethod::IS_PUBLIC | \ReflectionMethod::IS_PROTECTED) as $m) { | ||
// workaround HHVM bug with variadics, see https://github.com/facebook/hhvm/issues/5762 | ||
yield preg_replace('/^ @@.*/m', '', new ReflectionMethodHhvmWrapper($m->class, $m->name)); | ||
} | ||
} else { | ||
foreach ($class->getMethods(\ReflectionMethod::IS_PUBLIC | \ReflectionMethod::IS_PROTECTED) as $m) { | ||
yield preg_replace('/^ @@.*/m', '', $m); | ||
|
||
$defaults = array(); | ||
foreach ($m->getParameters() as $p) { | ||
$defaults[$p->name] = $p->isDefaultValueAvailable() ? $p->getDefaultValue() : null; | ||
} | ||
yield print_r($defaults, true); | ||
} | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
class ReflectionMethodHhvmWrapper extends \ReflectionMethod | ||
{ | ||
public function getParameters() | ||
{ | ||
$params = array(); | ||
|
||
foreach (parent::getParameters() as $i => $p) { | ||
$params[] = new ReflectionParameterHhvmWrapper(array($this->class, $this->name), $i); | ||
} | ||
|
||
return $params; | ||
} | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
class ReflectionParameterHhvmWrapper extends \ReflectionParameter | ||
{ | ||
public function getDefaultValue() | ||
{ | ||
return array($this->isVariadic(), $this->isDefaultValueAvailable() ? parent::getDefaultValue() : null); | ||
} | ||
} |
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.
What is the reason for this change?
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.
Transitivity and composer bug, this doesn't change the result, it only helps composer
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.
thanks, I was just wondering as the code changes didn't indicate any need for this change