vendor/symfony/config/Loader/FileLoader.php line 96

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Config\Loader;
  11. use Symfony\Component\Config\Exception\FileLoaderImportCircularReferenceException;
  12. use Symfony\Component\Config\Exception\FileLocatorFileNotFoundException;
  13. use Symfony\Component\Config\Exception\LoaderLoadException;
  14. use Symfony\Component\Config\FileLocatorInterface;
  15. use Symfony\Component\Config\Resource\FileExistenceResource;
  16. use Symfony\Component\Config\Resource\GlobResource;
  17. /**
  18.  * FileLoader is the abstract class used by all built-in loaders that are file based.
  19.  *
  20.  * @author Fabien Potencier <fabien@symfony.com>
  21.  */
  22. abstract class FileLoader extends Loader
  23. {
  24.     protected static $loading = [];
  25.     protected $locator;
  26.     private ?string $currentDir null;
  27.     public function __construct(FileLocatorInterface $locatorstring $env null)
  28.     {
  29.         $this->locator $locator;
  30.         parent::__construct($env);
  31.     }
  32.     /**
  33.      * Sets the current directory.
  34.      */
  35.     public function setCurrentDir(string $dir)
  36.     {
  37.         $this->currentDir $dir;
  38.     }
  39.     /**
  40.      * Returns the file locator used by this loader.
  41.      */
  42.     public function getLocator(): FileLocatorInterface
  43.     {
  44.         return $this->locator;
  45.     }
  46.     /**
  47.      * Imports a resource.
  48.      *
  49.      * @param mixed                $resource       A Resource
  50.      * @param string|null          $type           The resource type or null if unknown
  51.      * @param bool                 $ignoreErrors   Whether to ignore import errors or not
  52.      * @param string|null          $sourceResource The original resource importing the new resource
  53.      * @param string|string[]|null $exclude        Glob patterns to exclude from the import
  54.      *
  55.      * @return mixed
  56.      *
  57.      * @throws LoaderLoadException
  58.      * @throws FileLoaderImportCircularReferenceException
  59.      * @throws FileLocatorFileNotFoundException
  60.      */
  61.     public function import(mixed $resourcestring $type nullbool $ignoreErrors falsestring $sourceResource nullstring|array $exclude null)
  62.     {
  63.         if (\is_string($resource) && \strlen($resource) !== ($i strcspn($resource'*?{[')) && !str_contains($resource"\n")) {
  64.             $excluded = [];
  65.             foreach ((array) $exclude as $pattern) {
  66.                 foreach ($this->glob($patterntrue$_falsetrue) as $path => $info) {
  67.                     // normalize Windows slashes and remove trailing slashes
  68.                     $excluded[rtrim(str_replace('\\''/'$path), '/')] = true;
  69.                 }
  70.             }
  71.             $ret = [];
  72.             $isSubpath !== $i && str_contains(substr($resource0$i), '/');
  73.             foreach ($this->glob($resourcefalse$_$ignoreErrors || !$isSubpathfalse$excluded) as $path => $info) {
  74.                 if (null !== $res $this->doImport($path'glob' === $type null $type$ignoreErrors$sourceResource)) {
  75.                     $ret[] = $res;
  76.                 }
  77.                 $isSubpath true;
  78.             }
  79.             if ($isSubpath) {
  80.                 return isset($ret[1]) ? $ret : ($ret[0] ?? null);
  81.             }
  82.         }
  83.         return $this->doImport($resource$type$ignoreErrors$sourceResource);
  84.     }
  85.     /**
  86.      * @internal
  87.      */
  88.     protected function glob(string $patternbool $recursive, array|GlobResource &$resource nullbool $ignoreErrors falsebool $forExclusion false, array $excluded = [])
  89.     {
  90.         if (\strlen($pattern) === $i strcspn($pattern'*?{[')) {
  91.             $prefix $pattern;
  92.             $pattern '';
  93.         } elseif (=== $i || !str_contains(substr($pattern0$i), '/')) {
  94.             $prefix '.';
  95.             $pattern '/'.$pattern;
  96.         } else {
  97.             $prefix \dirname(substr($pattern0$i));
  98.             $pattern substr($pattern\strlen($prefix));
  99.         }
  100.         try {
  101.             $prefix $this->locator->locate($prefix$this->currentDirtrue);
  102.         } catch (FileLocatorFileNotFoundException $e) {
  103.             if (!$ignoreErrors) {
  104.                 throw $e;
  105.             }
  106.             $resource = [];
  107.             foreach ($e->getPaths() as $path) {
  108.                 $resource[] = new FileExistenceResource($path);
  109.             }
  110.             return;
  111.         }
  112.         $resource = new GlobResource($prefix$pattern$recursive$forExclusion$excluded);
  113.         yield from $resource;
  114.     }
  115.     private function doImport(mixed $resourcestring $type nullbool $ignoreErrors falsestring $sourceResource null)
  116.     {
  117.         try {
  118.             $loader $this->resolve($resource$type);
  119.             if ($loader instanceof self && null !== $this->currentDir) {
  120.                 $resource $loader->getLocator()->locate($resource$this->currentDirfalse);
  121.             }
  122.             $resources \is_array($resource) ? $resource : [$resource];
  123.             for ($i 0$i $resourcesCount \count($resources); ++$i) {
  124.                 if (isset(self::$loading[$resources[$i]])) {
  125.                     if ($i == $resourcesCount 1) {
  126.                         throw new FileLoaderImportCircularReferenceException(array_keys(self::$loading));
  127.                     }
  128.                 } else {
  129.                     $resource $resources[$i];
  130.                     break;
  131.                 }
  132.             }
  133.             self::$loading[$resource] = true;
  134.             try {
  135.                 $ret $loader->load($resource$type);
  136.             } finally {
  137.                 unset(self::$loading[$resource]);
  138.             }
  139.             return $ret;
  140.         } catch (FileLoaderImportCircularReferenceException $e) {
  141.             throw $e;
  142.         } catch (\Exception $e) {
  143.             if (!$ignoreErrors) {
  144.                 // prevent embedded imports from nesting multiple exceptions
  145.                 if ($e instanceof LoaderLoadException) {
  146.                     throw $e;
  147.                 }
  148.                 throw new LoaderLoadException($resource$sourceResource0$e$type);
  149.             }
  150.         }
  151.         return null;
  152.     }
  153. }