Psr6CacheClearer.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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\HttpKernel\CacheClearer;
  11. use Psr\Cache\CacheItemPoolInterface;
  12. /**
  13. * @author Nicolas Grekas <p@tchwork.com>
  14. */
  15. class Psr6CacheClearer implements CacheClearerInterface
  16. {
  17. private $pools = [];
  18. /**
  19. * @param array<string, CacheItemPoolInterface> $pools
  20. */
  21. public function __construct(array $pools = [])
  22. {
  23. $this->pools = $pools;
  24. }
  25. /**
  26. * @return bool
  27. */
  28. public function hasPool(string $name)
  29. {
  30. return isset($this->pools[$name]);
  31. }
  32. /**
  33. * @return CacheItemPoolInterface
  34. *
  35. * @throws \InvalidArgumentException If the cache pool with the given name does not exist
  36. */
  37. public function getPool(string $name)
  38. {
  39. if (!$this->hasPool($name)) {
  40. throw new \InvalidArgumentException(sprintf('Cache pool not found: "%s".', $name));
  41. }
  42. return $this->pools[$name];
  43. }
  44. /**
  45. * @return bool
  46. *
  47. * @throws \InvalidArgumentException If the cache pool with the given name does not exist
  48. */
  49. public function clearPool(string $name)
  50. {
  51. if (!isset($this->pools[$name])) {
  52. throw new \InvalidArgumentException(sprintf('Cache pool not found: "%s".', $name));
  53. }
  54. return $this->pools[$name]->clear();
  55. }
  56. /**
  57. * {@inheritdoc}
  58. */
  59. public function clear(string $cacheDir)
  60. {
  61. foreach ($this->pools as $pool) {
  62. $pool->clear();
  63. }
  64. }
  65. }