You are here

class FileSystemBackendFactory in File Cache 8

Factory for creating FileSystemBackend cache backends.

Hierarchy

Expanded class hierarchy of FileSystemBackendFactory

1 string reference to 'FileSystemBackendFactory'
filecache.services.yml in ./filecache.services.yml
filecache.services.yml
1 service uses FileSystemBackendFactory
cache.backend.file_system in ./filecache.services.yml
Drupal\filecache\Cache\FileSystemBackendFactory

File

src/Cache/FileSystemBackendFactory.php, line 14

Namespace

Drupal\filecache\Cache
View source
class FileSystemBackendFactory implements CacheFactoryInterface {

  /**
   * The service for interacting with the file system.
   *
   * @var \Drupal\Core\File\FileSystemInterface
   */
  protected $fileSystem;

  /**
   * The environment specific settings.
   *
   * @var \Drupal\Core\Site\Settings
   */
  protected $settings;

  /**
   * The time service.
   *
   * @var \Drupal\Component\Datetime\TimeInterface
   */
  protected $time;

  /**
   * The cache tags checksum provider.
   *
   * @var \Drupal\Core\Cache\CacheTagsChecksumInterface
   */
  protected $checksumProvider;

  /**
   * Constructs a FileSystemBackendFactory object.
   *
   * @param \Drupal\Core\File\FileSystemInterface $fileSystem
   *   The service for interacting with the file system.
   * @param \Drupal\Core\Site\Settings $settings
   *   The environment specific settings.
   * @param \Drupal\Component\Datetime\TimeInterface $time
   *   The time service.
   * @param \Drupal\Core\Cache\CacheTagsChecksumInterface $checksumProvider
   *   The cache tags checksum provider.
   */
  public function __construct(FileSystemInterface $fileSystem, Settings $settings, TimeInterface $time, CacheTagsChecksumInterface $checksumProvider) {
    $this->fileSystem = $fileSystem;
    $this->settings = $settings;
    $this->time = $time;
    $this->checksumProvider = $checksumProvider;
  }

  /**
   * Returns the FileSystemBackend for the specified cache bin.
   *
   * @param string $bin
   *   The cache bin for which the object is created.
   *
   * @return \Drupal\filecache\Cache\FileSystemBackend
   *   The cache backend object for the specified cache bin.
   *
   * @throws \Exception
   *   Thrown when no path has been configured to store the files for the given
   *   bin.
   */
  public function get($bin) {
    $path = $this
      ->getPathForBin($bin);
    $strategy = $this
      ->getCacheStrategyForBin($bin);
    return new FileSystemBackend($this->fileSystem, $this->time, $this->checksumProvider, $path, $strategy);
  }

  /**
   * Returns the path for the specified cache bin.
   *
   * @param string $bin
   *   The cache bin for which to return the path.
   *
   * @return string
   *   The path or URI to the folder where the cache files for the given bin
   *   will be stored.
   *
   * @throws \Exception
   *   Thrown when no path has been configured.
   */
  protected function getPathForBin($bin) {
    $settings = $this->settings
      ->get('filecache');

    // Look for a cache bin specific setting.
    if (isset($settings['directory']['bins'][$bin])) {
      $path = rtrim($settings['directory']['bins'][$bin], '/') . '/';
    }
    elseif (isset($settings['directory']['default'])) {
      $path = rtrim($settings['directory']['default'], '/') . '/' . $bin . '/';
    }
    else {
      throw new \Exception('No path has been configured for the file system cache backend.');
    }
    return $path;
  }

  /**
   * Returns the cache strategy for the specified cache bin.
   *
   * @param string $bin
   *   The cache bin for which to return the cache strategy.
   *
   * @return string
   *   The cache strategy, either `FileSystemBackend::DEFAULT` or
   *   `FileSystemBackend::PERSIST`.
   */
  protected function getCacheStrategyForBin($bin) {
    $settings = $this->settings
      ->get('filecache');

    // Look for a cache bin specific setting.
    if (isset($settings['strategy']['bins'][$bin])) {
      $strategy = $settings['strategy']['bins'][$bin];
    }
    elseif (isset($settings['strategy']['default'])) {
      $strategy = $settings['strategy']['default'];
    }
    else {
      $strategy = FileSystemBackend::STANDARD;
    }
    return $strategy;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FileSystemBackendFactory::$checksumProvider protected property The cache tags checksum provider.
FileSystemBackendFactory::$fileSystem protected property The service for interacting with the file system.
FileSystemBackendFactory::$settings protected property The environment specific settings.
FileSystemBackendFactory::$time protected property The time service.
FileSystemBackendFactory::get public function Returns the FileSystemBackend for the specified cache bin. Overrides CacheFactoryInterface::get
FileSystemBackendFactory::getCacheStrategyForBin protected function Returns the cache strategy for the specified cache bin.
FileSystemBackendFactory::getPathForBin protected function Returns the path for the specified cache bin.
FileSystemBackendFactory::__construct public function Constructs a FileSystemBackendFactory object.