. */ namespace Doctrine\Common\Cache; /** * Php file cache driver. * * @since 2.3 * @author Fabio B. Silva */ class PhpFileCache extends FileCache { const EXTENSION = '.doctrinecache.php'; /** * {@inheritdoc} */ public function __construct($directory, $extension = self::EXTENSION, $umask = 0002) { parent::__construct($directory, $extension, $umask); } /** * {@inheritdoc} */ protected function doFetch($id) { $value = $this->includeFileForId($id); if (! $value) { return false; } if ($value['lifetime'] !== 0 && $value['lifetime'] < time()) { return false; } return $value['data']; } /** * {@inheritdoc} */ protected function doContains($id) { $value = $this->includeFileForId($id); if (! $value) { return false; } return $value['lifetime'] === 0 || $value['lifetime'] > time(); } /** * {@inheritdoc} */ protected function doSave($id, $data, $lifeTime = 0) { if ($lifeTime > 0) { $lifeTime = time() + $lifeTime; } if (is_object($data) && ! method_exists($data, '__set_state')) { throw new \InvalidArgumentException( "Invalid argument given, PhpFileCache only allows objects that implement __set_state() " . "and fully support var_export(). You can use the FilesystemCache to save arbitrary object " . "graphs using serialize()/deserialize()." ); } $filename = $this->getFilename($id); $value = array( 'lifetime' => $lifeTime, 'data' => $data ); $value = var_export($value, true); $code = sprintf('writeFile($filename, $code); } /** * @param string $id * * @return array|false */ private function includeFileForId($id) { $fileName = $this->getFilename($id); // note: error suppression is still faster than `file_exists`, `is_file` and `is_readable` $value = @include $fileName; if (! isset($value['lifetime'])) { return false; } return $value; } }