123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.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 Symfony\Component\HttpKernel\CacheWarmer\CacheWarmer;
- use Symfony\Component\HttpKernel\KernelInterface;
- use Symfony\Component\Finder\Finder;
- use Symfony\Component\Config\FileLocatorInterface;
- use Symfony\Bundle\FrameworkBundle\Templating\Template;
- use Symfony\Bundle\FrameworkBundle\Templating\TemplateNameParser;
- /**
- * Computes the association between template names and their paths on the disk.
- *
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- */
- class TemplatePathsCacheWarmer extends CacheWarmer
- {
- protected $locator;
- protected $kernel;
- protected $rootDir;
- protected $parser;
- /**
- * Constructor.
- *
- * @param KernelInterface $kernel A KernelInterface instance
- * @param FileLocatorInterface $locator A FileLocatorInterface instance
- * @param TemplateNameParser $parser A TemplateNameParser instance
- * @param string $rootDir The directory where global templates can be stored
- */
- public function __construct(KernelInterface $kernel, FileLocatorInterface $locator, TemplateNameParser $parser, $rootDir)
- {
- $this->kernel = $kernel;
- $this->locator = $locator;
- $this->parser = $parser;
- $this->rootDir = $rootDir;
- }
- /**
- * Warms up the cache.
- *
- * @param string $cacheDir The cache directory
- */
- public function warmUp($cacheDir)
- {
- $templates = $this->computeTemplatePaths();
- $this->writeCacheFile($cacheDir.'/templates.php', sprintf('<?php return %s;', var_export($templates, true)));
- }
- /**
- * Checks whether this warmer is optional or not.
- *
- * @return Boolean always false
- */
- public function isOptional()
- {
- return false;
- }
- protected function computeTemplatePaths()
- {
- $prefix = '/Resources/views';
- $templates = array();
- foreach ($this->kernel->getBundles() as $name => $bundle) {
- if (!is_dir($dir = $bundle->getPath().$prefix)) {
- continue;
- }
- $finder = new Finder();
- foreach ($finder->files()->followLinks()->in($dir) as $file) {
- if (false !== $template = $this->parseTemplateName($file, $prefix.'/', $bundle->getName())) {
- $templates[$template->getSignature()] = $this->locator->locate($template->getPath(), $this->rootDir);
- }
- }
- }
- if (is_dir($this->rootDir)) {
- $finder = new Finder();
- foreach ($finder->files()->followLinks()->in($this->rootDir) as $file) {
- if (false !== $template = $this->parseTemplateName($file, strtr($this->rootDir, '\\', '/').'/')) {
- $templates[$template->getSignature()] = $file->getRealPath();
- }
- }
- }
- return $templates;
- }
- protected function parseTemplateName($file, $prefix, $bundle = '')
- {
- $prefix = strtr($prefix, '\\', '/');
- $path = strtr($file->getPathname(), '\\', '/');
- list(, $file) = explode($prefix, $path, 2);
- $template = $this->parser->parseFromFilename($file);
- if (false !== $template) {
- $template->set('bundle', $bundle);
- }
- return $template;
- }
- }
|