mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-03 08:04:17 +01:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
98 lines
3.5 KiB
PHP
98 lines
3.5 KiB
PHP
<?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\Bundle\FrameworkBundle\CacheWarmer;
|
|
|
|
use Doctrine\Common\Annotations\AnnotationException;
|
|
use Doctrine\Common\Annotations\CachedReader;
|
|
use Doctrine\Common\Annotations\Reader;
|
|
use Psr\Cache\CacheItemPoolInterface;
|
|
use Symfony\Component\Cache\Adapter\ArrayAdapter;
|
|
use Symfony\Component\Cache\DoctrineProvider;
|
|
|
|
/**
|
|
* Warms up annotation caches for classes found in composer's autoload class map
|
|
* and declared in DI bundle extensions using the addAnnotatedClassesToCache method.
|
|
*
|
|
* @author Titouan Galopin <galopintitouan@gmail.com>
|
|
*/
|
|
class AnnotationsCacheWarmer extends AbstractPhpFileCacheWarmer
|
|
{
|
|
private $annotationReader;
|
|
private $excludeRegexp;
|
|
private $debug;
|
|
|
|
/**
|
|
* @param Reader $annotationReader
|
|
* @param string $phpArrayFile The PHP file where annotations are cached
|
|
* @param CacheItemPoolInterface $fallbackPool The pool where runtime-discovered annotations are cached
|
|
* @param bool $debug Run in debug mode
|
|
*/
|
|
public function __construct(Reader $annotationReader, $phpArrayFile, CacheItemPoolInterface $fallbackPool, $excludeRegexp = null, $debug = false)
|
|
{
|
|
parent::__construct($phpArrayFile, $fallbackPool);
|
|
$this->annotationReader = $annotationReader;
|
|
$this->excludeRegexp = $excludeRegexp;
|
|
$this->debug = $debug;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function doWarmUp($cacheDir, ArrayAdapter $arrayAdapter)
|
|
{
|
|
$annotatedClassPatterns = $cacheDir.'/annotations.map';
|
|
|
|
if (!is_file($annotatedClassPatterns)) {
|
|
return true;
|
|
}
|
|
|
|
$annotatedClasses = include $annotatedClassPatterns;
|
|
$reader = new CachedReader($this->annotationReader, new DoctrineProvider($arrayAdapter), $this->debug);
|
|
|
|
foreach ($annotatedClasses as $class) {
|
|
if (null !== $this->excludeRegexp && preg_match($this->excludeRegexp, $class)) {
|
|
continue;
|
|
}
|
|
try {
|
|
$this->readAllComponents($reader, $class);
|
|
} catch (\ReflectionException $e) {
|
|
// ignore failing reflection
|
|
} catch (AnnotationException $e) {
|
|
/*
|
|
* Ignore any AnnotationException to not break the cache warming process if an Annotation is badly
|
|
* configured or could not be found / read / etc.
|
|
*
|
|
* In particular cases, an Annotation in your code can be used and defined only for a specific
|
|
* environment but is always added to the annotations.map file by some Symfony default behaviors,
|
|
* and you always end up with a not found Annotation.
|
|
*/
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private function readAllComponents(Reader $reader, $class)
|
|
{
|
|
$reflectionClass = new \ReflectionClass($class);
|
|
$reader->getClassAnnotations($reflectionClass);
|
|
|
|
foreach ($reflectionClass->getMethods() as $reflectionMethod) {
|
|
$reader->getMethodAnnotations($reflectionMethod);
|
|
}
|
|
|
|
foreach ($reflectionClass->getProperties() as $reflectionProperty) {
|
|
$reader->getPropertyAnnotations($reflectionProperty);
|
|
}
|
|
}
|
|
}
|