Skip to content

Commit ed0032c

Browse files
authored
Make the always_expire_wfd_meta_resources config setting work regardless of kernel.debug mode (#50)
The `always_expire_wfd_meta_resources` config setting can be used to make `WfdMetaResource` instances always expire immediately. It is supposed to be set in Symfony environments like `test` (e. g. in a `config_test.yml` file or a `when@test` section). However, until now, it works correctly only for `kernel.debug = true`. This is because it used a special `CacheBustingResourceChecker` that would be used by the "inner" (regular) `ConfigCache` instance only. That ResourceChecker would invalidate the cache when an instance of a `WfdMetaResource` is found. The `ConfigCache`, however, contains a shortcut to never validate the cache in the first place when `kernel.debug` is disabled. Thus, we need to move this behavior to the `WfdMetaConfigCache`, which will run its check also in non-debug mode. There, we want to consider the setting only in the case that there are actually `WfdMetaResource`s associated with the cache in question. Being able to disable `kernel.debug` mode for tests execution can provide a significant speed-up in environments where you don't actually modify code between test runs, i. e. a CI pipeline.
1 parent cf26d07 commit ed0032c

File tree

5 files changed

+20
-25
lines changed

5 files changed

+20
-25
lines changed

src/Config/CacheBustingResourceChecker.php

-19
This file was deleted.

src/Config/WfdMetaConfigCache.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ class WfdMetaConfigCache implements ConfigCacheInterface
2323
/** @var ConfigCacheInterface */
2424
private $innerCache;
2525

26-
public function __construct($file, ConfigCacheInterface $innerCache, MetaQueryFactory $metaQueryFactory)
26+
private bool $forceExpiration;
27+
28+
public function __construct($file, ConfigCacheInterface $innerCache, MetaQueryFactory $metaQueryFactory, bool $forceExpiration = false)
2729
{
2830
$this->file = $file;
2931
$this->innerCache = $innerCache;
3032
$this->metaQueryFactory = $metaQueryFactory;
33+
$this->forceExpiration = $forceExpiration;
3134
}
3235

3336
public function getPath(): string
@@ -62,6 +65,10 @@ public function isWfdMetaFresh(): bool
6265
return true;
6366
}
6467

68+
if ($this->forceExpiration) {
69+
return false;
70+
}
71+
6572
$metaQuery = $this->metaQueryFactory->create();
6673

6774
foreach ($wfdMetaResources['resources'] as $wfdMetaResource) {

src/Config/WfdMetaConfigCacheFactory.php

+10-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,19 @@ class WfdMetaConfigCacheFactory implements ConfigCacheFactoryInterface
3434
*/
3535
private $lockFactory;
3636

37-
public function __construct(ConfigCacheFactoryInterface $configCacheFactory, MetaQueryFactory $metaQueryFactory, LockFactory $lockFactory)
37+
private bool $expireWfdMetaResources;
38+
39+
public function __construct(ConfigCacheFactoryInterface $configCacheFactory, MetaQueryFactory $metaQueryFactory, LockFactory $lockFactory, bool $expireWfdMetaResources = false)
3840
{
3941
$this->configCacheFactory = $configCacheFactory;
4042
$this->metaQueryFactory = $metaQueryFactory;
4143
$this->lockFactory = $lockFactory;
44+
$this->expireWfdMetaResources = $expireWfdMetaResources;
45+
}
46+
47+
public function expireWfdMetaResources(): void
48+
{
49+
$this->expireWfdMetaResources = true;
4250
}
4351

4452
public function cache($file, $callback): ConfigCacheInterface
@@ -70,7 +78,7 @@ public function cache($file, $callback): ConfigCacheInterface
7078

7179
private function createCache($file, ConfigCacheInterface $innerCache): ConfigCacheInterface
7280
{
73-
return new WfdMetaConfigCache($file, $innerCache, $this->metaQueryFactory);
81+
return new WfdMetaConfigCache($file, $innerCache, $this->metaQueryFactory, $this->expireWfdMetaResources);
7482
}
7583

7684
private function fillCache($callback, ConfigCacheInterface $cache): void

src/DependencyInjection/WebfactoryWfdMetaExtension.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ public function load(array $configs, ContainerBuilder $container): void
3333
$configuration = new Configuration();
3434
$config = $this->processConfiguration($configuration, $configs);
3535

36-
if ($config['always_expire_wfd_meta_resources']) {
37-
$yamlLoader->load('cache_busting.yml');
38-
}
36+
$container->setParameter('webfactory_wfd_meta.expire_wfd_meta_resources', $config['always_expire_wfd_meta_resources']);
3937
}
4038
}

src/Resources/config/services.xml

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<tag name="monolog.logger" channel="webfactory_wfd_meta" />
5151
</service>
5252
</argument>
53+
<argument>%webfactory_wfd_meta.expire_wfd_meta_resources%</argument>
5354
</service>
5455
</services>
5556
</container>

0 commit comments

Comments
 (0)