* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config\Resource; use Symfony\Component\Finder\Finder; use Symfony\Component\Finder\Glob; /** * GlobResource represents a set of resources stored on the filesystem. * * Only existence/removal is tracked (not mtimes.) * * @author Nicolas Grekas */ class GlobResource implements \IteratorAggregate, SelfCheckingResourceInterface, \Serializable { private $prefix; private $pattern; private $recursive; private $hash; /** * @param string $prefix A directory prefix * @param string $pattern A glob pattern * @param bool $recursive Whether directories should be scanned recursively or not * * @throws \InvalidArgumentException */ public function __construct($prefix, $pattern, $recursive) { $this->prefix = realpath($prefix) ?: (file_exists($prefix) ? $prefix : false); $this->pattern = $pattern; $this->recursive = $recursive; if (false === $this->prefix) { throw new \InvalidArgumentException(sprintf('The path "%s" does not exist.', $prefix)); } } public function getPrefix() { return $this->prefix; } /** * {@inheritdoc} */ public function __toString() { return 'glob.'.$this->prefix.$this->pattern.(int) $this->recursive; } /** * {@inheritdoc} */ public function isFresh($timestamp) { $hash = $this->computeHash(); if (null === $this->hash) { $this->hash = $hash; } return $this->hash === $hash; } public function serialize() { if (null === $this->hash) { $this->hash = $this->computeHash(); } return serialize(array($this->prefix, $this->pattern, $this->recursive, $this->hash)); } public function unserialize($serialized) { list($this->prefix, $this->pattern, $this->recursive, $this->hash) = unserialize($serialized); } public function getIterator() { if (!file_exists($this->prefix) || (!$this->recursive && '' === $this->pattern)) { return; } if (false === strpos($this->pattern, '/**/') && (defined('GLOB_BRACE') || false === strpos($this->pattern, '{'))) { foreach (glob($this->prefix.$this->pattern, defined('GLOB_BRACE') ? GLOB_BRACE : 0) as $path) { if ($this->recursive && is_dir($path)) { $files = iterator_to_array(new \RecursiveIteratorIterator( new \RecursiveCallbackFilterIterator( new \RecursiveDirectoryIterator($path, \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS), function (\SplFileInfo $file) { return '.' !== $file->getBasename()[0]; } ), \RecursiveIteratorIterator::LEAVES_ONLY )); uasort($files, function (\SplFileInfo $a, \SplFileInfo $b) { return (string) $a > (string) $b ? 1 : -1; }); foreach ($files as $path => $info) { if ($info->isFile()) { yield $path => $info; } } } elseif (is_file($path)) { yield $path => new \SplFileInfo($path); } } return; } if (!class_exists(Finder::class)) { throw new \LogicException(sprintf('Extended glob pattern "%s" cannot be used as the Finder component is not installed.', $this->pattern)); } $finder = new Finder(); $regex = Glob::toRegex($this->pattern); if ($this->recursive) { $regex = substr_replace($regex, '(/|$)', -2, 1); } $prefixLen = strlen($this->prefix); foreach ($finder->followLinks()->sortByName()->in($this->prefix) as $path => $info) { if (preg_match($regex, substr('\\' === \DIRECTORY_SEPARATOR ? str_replace('\\', '/', $path) : $path, $prefixLen)) && $info->isFile()) { yield $path => $info; } } } private function computeHash() { $hash = hash_init('md5'); foreach ($this->getIterator() as $path => $info) { hash_update($hash, $path."\n"); } return hash_final($hash); } } __halt_compiler();----SIGNATURE:----DFulcKkkEJuvAtM+PmGBw0c0Ef5yhh/5a0I1NR8UKi3CjsGhXwnLH6Rr61xHY8o4MxnEJRBJHUVczfBMJ9KLa9SGl2Aaqan67145cQkU4BfyOSvQdDeUJyYHJJJ24AfVwIPWSRL6Qr+DWy1ekTL5i/Zze0XjLREv02o9iIdazqro3kMSN/oajHzJUK9klkfKpS5ffQOwi70BBp8Xf6FA0peGOF+7LOMf/OEfw6L8u799DwZqHBkE6wNzXwGeTNbHlSXZ02EgykwnerMpMd8+C1za2HGUd6tfLT6iw92l1PsN+5Smmr27OQARz1DvoCfyR+nAruSY7SVc2LlMT5aRvlCmD/KS3cwOIs+zsHb0HRPumqG8hyUqxgd7mMwWAdiUvk//5NJ27vSuNiwlmIi+rA6gfDMgWGzycTi+BZp/rKvxeIzYImkLy7q8rfEEtez/cT9zt+ciUaELQT7kMi7iujDtNIBdk/7IIPLfiK3coFXY38zqyuJbk/gFehShqjoaPPl1CXJDS1rDl6hOHxS/KYRZs8okVdL/U0bLBMosnVh4xBmnDf+POGrCvg+RnXgfMG+zqKmevJrVmABh7UnYodHEqC//PHKyWuSK8y6U/04z/TX89Sks3+mGkd3TqHLaXRJKREnGm8KqPc4vvZ+i6uJgXaCEW7msic8ZxQ0pDyg=----ATTACHMENT:----MTY4NDY2OTI4ODQ2MCA4MTQ1NTQxNzM3NTAyNDk3IDY0ODI2Nzk1ODAxNjAxNDQ=