Skip to content

Commit d64b2a0

Browse files
[Config] improve perf of glob discovery when GLOB_BRACE is not available
1 parent 32b09a8 commit d64b2a0

File tree

2 files changed

+55
-2
lines changed

2 files changed

+55
-2
lines changed

src/Symfony/Component/Config/Resource/GlobResource.php

+38-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class GlobResource implements \IteratorAggregate, SelfCheckingResourceInterface
3131
private $hash;
3232
private $forExclusion;
3333
private $excludedPrefixes;
34+
private $globBrace;
3435

3536
/**
3637
* @param string $prefix A directory prefix
@@ -47,6 +48,7 @@ public function __construct(string $prefix, string $pattern, bool $recursive, bo
4748
$this->recursive = $recursive;
4849
$this->forExclusion = $forExclusion;
4950
$this->excludedPrefixes = $excludedPrefixes;
51+
$this->globBrace = \defined('GLOB_BRACE') ? GLOB_BRACE : 0;
5052

5153
if (false === $this->prefix) {
5254
throw new \InvalidArgumentException(sprintf('The path "%s" does not exist.', $prefix));
@@ -101,9 +103,43 @@ public function getIterator()
101103
return;
102104
}
103105
$prefix = str_replace('\\', '/', $this->prefix);
106+
$paths = null;
104107

105-
if (0 !== strpos($this->prefix, 'phar://') && false === strpos($this->pattern, '/**/') && (\defined('GLOB_BRACE') || false === strpos($this->pattern, '{'))) {
106-
$paths = glob($this->prefix.$this->pattern, GLOB_NOSORT | (\defined('GLOB_BRACE') ? GLOB_BRACE : 0));
108+
if (0 !== strpos($this->prefix, 'phar://') && false === strpos($this->pattern, '/**/')) {
109+
if ($this->globBrace || false === strpos($this->pattern, '{')) {
110+
$paths = glob($this->prefix.$this->pattern, GLOB_NOSORT | $this->globBrace);
111+
} elseif (false === strpos($this->pattern, '\\')) {
112+
$segments = preg_split('/\{([^{}]*+)\}/', $this->pattern, -1, PREG_SPLIT_DELIM_CAPTURE);
113+
$paths = [$segments[0]];
114+
115+
for ($i = 1; $i < \count($segments); $i += 2) {
116+
$patterns = [];
117+
118+
foreach (explode(',', $segments[$i]) as $s) {
119+
foreach ($paths as $p) {
120+
$patterns[] = $p.$s.$segments[1 + $i];
121+
}
122+
}
123+
124+
$paths = $patterns;
125+
}
126+
127+
foreach ($paths as $i => $p) {
128+
if (false !== strpos($p, '{') || false !== strpos($p, '}')) {
129+
$paths = null;
130+
break;
131+
}
132+
133+
$paths[$i] = glob($this->prefix.$p, GLOB_NOSORT);
134+
}
135+
136+
if (null !== $paths) {
137+
$paths = array_merge(...$paths);
138+
}
139+
}
140+
}
141+
142+
if (null !== $paths) {
107143
sort($paths);
108144
foreach ($paths as $path) {
109145
if ($this->excludedPrefixes) {

src/Symfony/Component/Config/Tests/Resource/GlobResourceTest.php

+17
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,21 @@ public function testIsFreshRecursiveDetectsNewFile()
165165
touch($dir.'/Resource/TmpGlob');
166166
$this->assertFalse($resource->isFresh(0));
167167
}
168+
169+
public function testBraceFallback()
170+
{
171+
$dir = \dirname(__DIR__).\DIRECTORY_SEPARATOR.'Fixtures';
172+
$resource = new GlobResource($dir, '/*{/*/*.txt,.xml}', true);
173+
174+
$p = new \ReflectionProperty($resource, 'globBrace');
175+
$p->setAccessible(true);
176+
$p->setValue($resource, 0);
177+
178+
$expected = [
179+
$dir.\DIRECTORY_SEPARATOR.'Exclude'.\DIRECTORY_SEPARATOR.'ExcludeToo'.\DIRECTORY_SEPARATOR.'AnotheExcludedFile.txt',
180+
$dir.\DIRECTORY_SEPARATOR.'foo.xml',
181+
];
182+
183+
$this->assertSame($expected, array_keys(iterator_to_array($resource)));
184+
}
168185
}

0 commit comments

Comments
 (0)