123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749 |
- <?php
- /*
- ==New BSD License==
- Copyright (c) 2012, Colin Mollenhour
- All rights reserved.
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- * The name of Colin Mollenhour may not be used to endorse or promote products
- derived from this software without specific prior written permission.
- * The class name must remain as Cm_Cache_Backend_File.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * Cm_Cache_Backend_File
- *
- * @copyright Copyright (c) 2013 Colin Mollenhour (http://colin.mollenhour.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Cm_Cache_Backend_File extends Zend_Cache_Backend_File
- {
- /** @var array */
- protected $_options = array(
- 'cache_dir' => null, // Path to cache files
- 'file_name_prefix' => 'cm', // Prefix for cache directories created
- 'file_locking' => true, // Best to keep enabled
- 'read_control' => false, // Use a checksum to detect corrupt data
- 'read_control_type' => 'crc32', // If read_control is enabled, which checksum algorithm to use
- 'hashed_directory_level' => 2, // How many characters should be used to create sub-directories
- 'use_chmod' => FALSE, // Do not use chmod on files and directories (should use umask() to control permissions)
- 'directory_mode' => 0770, // Filesystem permissions for created directories (requires use_chmod)
- 'file_mode' => 0660, // Filesystem permissions for created files (requires use_chmod)
- );
- /** @var bool */
- protected $_isTagDirChecked;
- /**
- * @param array $options
- */
- public function __construct(array $options = array())
- {
- // Magento-friendly cache dir
- if (empty($options['cache_dir']) && class_exists('Mage', false)) {
- $options['cache_dir'] = Mage::getBaseDir('cache');
- }
- // Backwards compatibility ZF 1.11 and ZF 1.12
- if (isset($options['hashed_directory_umask'])) {
- $options['directory_mode'] = $options['hashed_directory_umask'];
- }
- if (isset($options['cache_file_umask'])) {
- $options['file_mode'] = $options['cache_file_umask'];
- }
- // Auto-enable chmod if modes are specified.
- if (isset($options['directory_mode']) || isset($options['file_mode'])) {
- $options['use_chmod'] = TRUE;
- }
- // Don't use parent constructor
- foreach ($options as $name => $value) {
- $this->setOption($name, $value);
- }
- // Check cache dir
- if ($this->_options['cache_dir'] !== null) { // particular case for this option
- $this->setCacheDir($this->_options['cache_dir']);
- } else {
- $this->setCacheDir(self::getTmpDir() . DIRECTORY_SEPARATOR, false);
- }
- // Validate prefix
- if (isset($this->_options['file_name_prefix']) && !preg_match('~^[a-zA-Z0-9_]+$~D', $this->_options['file_name_prefix'])) {
- Zend_Cache::throwException('Invalid file_name_prefix : must use only [a-zA-Z0-9_]');
- }
- // See #ZF-4422
- if (is_string($this->_options['directory_mode'])) {
- $this->_options['directory_mode'] = octdec($this->_options['directory_mode']);
- }
- if (is_string($this->_options['file_mode'])) {
- $this->_options['file_mode'] = octdec($this->_options['file_mode']);
- }
- $this->_options['hashed_directory_umask'] = $this->_options['directory_mode'];
- $this->_options['cache_file_umask'] = $this->_options['file_mode'];
- }
- /**
- * OVERRIDDEN to remove use of each() which is deprecated in PHP 7.2
- *
- * Set the frontend directives
- *
- * @param array $directives Assoc of directives
- * @throws Zend_Cache_Exception
- * @return void
- */
- public function setDirectives($directives)
- {
- if (!is_array($directives)) Zend_Cache::throwException('Directives parameter must be an array');
- foreach ($directives as $name => $value) {
- if (!is_string($name)) {
- Zend_Cache::throwException("Incorrect option name : $name");
- }
- $name = strtolower($name);
- if (array_key_exists($name, $this->_directives)) {
- $this->_directives[$name] = $value;
- }
- }
- $this->_loggerSanity();
- }
- /**
- * Test if a cache is available for the given id and (if yes) return it (false else)
- *
- * @param string $id cache id
- * @param boolean $doNotTestCacheValidity if set to true, the cache validity won't be tested
- * @return string|bool cached datas
- */
- public function load($id, $doNotTestCacheValidity = false)
- {
- $file = $this->_file($id);
- $cache = $this->_getCache($file, true);
- if ( ! $cache) {
- return false;
- }
- list($metadatas, $data) = $cache;
- if ( ! $doNotTestCacheValidity && (time() > $metadatas['expire'])) {
- // ?? $this->remove($id);
- return false;
- }
- if ($this->_options['read_control']) {
- $hashData = $this->_hash($data, $this->_options['read_control_type']);
- $hashControl = $metadatas['hash'];
- if ($hashData != $hashControl) {
- // Problem detected by the read control !
- $this->_log('Zend_Cache_Backend_File::load() / read_control : stored hash and computed hash do not match');
- $this->remove($id);
- return false;
- }
- }
- return $data;
- }
- /**
- * Save some string datas into a cache record
- *
- * Note : $data is always "string" (serialization is done by the
- * core not by the backend)
- *
- * @param string $data Datas to cache
- * @param string $id Cache id
- * @param array $tags Array of strings, the cache record will be tagged by each string entry
- * @param bool|int $specificLifetime If != false, set a specific lifetime for this cache record (null => infinite lifetime)
- * @return boolean true if no problem
- */
- public function save($data, $id, $tags = array(), $specificLifetime = false)
- {
- $file = $this->_file($id);
- $path = $this->_path($id);
- if ($this->_options['hashed_directory_level'] > 0) {
- if (!is_writable($path)) {
- // maybe, we just have to build the directory structure
- $this->_recursiveMkdirAndChmod($id);
- }
- if (!is_writable($path)) {
- return false;
- }
- }
- if ($this->_options['read_control']) {
- $hash = $this->_hash($data, $this->_options['read_control_type']);
- } else {
- $hash = '';
- }
- $metadatas = array(
- 'hash' => $hash,
- 'mtime' => time(),
- 'expire' => $this->_expireTime($this->getLifetime($specificLifetime)),
- 'tags' => implode(',', $tags),
- );
- $res = $this->_filePutContents($file, serialize($metadatas)."\n".$data);
- $res = $res && $this->_updateIdsTags(array($id), $tags, 'merge');
- return $res;
- }
- /**
- * Remove a cache record
- *
- * @param string $id cache id
- * @return boolean true if no problem
- */
- public function remove($id)
- {
- $file = $this->_file($id);
- $metadatas = $this->_getCache($file, false);
- if ($metadatas) {
- $boolRemove = $this->_remove($file);
- $boolTags = $this->_updateIdsTags(array($id), explode(',', $metadatas['tags']), 'diff');
- return $boolRemove && $boolTags;
- }
- return false;
- }
- /**
- * Clean some cache records
- *
- * Available modes are :
- * 'all' (default) => remove all cache entries ($tags is not used)
- * 'old' => remove too old cache entries ($tags is not used)
- * 'matchingTag' => remove cache entries matching all given tags
- * ($tags can be an array of strings or a single string)
- * 'notMatchingTag' => remove cache entries not matching one of the given tags
- * ($tags can be an array of strings or a single string)
- * 'matchingAnyTag' => remove cache entries matching any given tags
- * ($tags can be an array of strings or a single string)
- *
- * @param string $mode
- * @param array $tags
- * @return boolean true if no problem
- */
- public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array())
- {
- // We use this protected method to hide the recursive stuff
- clearstatcache();
- switch($mode) {
- case Zend_Cache::CLEANING_MODE_ALL:
- case Zend_Cache::CLEANING_MODE_OLD:
- return $this->_clean($this->_options['cache_dir'], $mode);
- default:
- return $this->_cleanNew($mode, $tags);
- }
- }
- /**
- * Return an array of stored tags
- *
- * @return array array of stored tags (string)
- */
- public function getTags()
- {
- $prefix = $this->_tagFile('');
- $prefixLen = strlen($prefix);
- $tags = array();
- foreach (@glob($prefix . '*') as $tagFile) {
- $tags[] = substr($tagFile, $prefixLen);
- }
- return $tags;
- }
- /**
- * Return an array of stored cache ids which match given tags
- *
- * In case of multiple tags, a logical AND is made between tags
- *
- * @param array $tags array of tags
- * @return array array of matching cache ids (string)
- */
- public function getIdsMatchingTags($tags = array())
- {
- return $this->_getIdsByTags(Zend_Cache::CLEANING_MODE_MATCHING_TAG, $tags, FALSE);
- }
- /**
- * Return an array of stored cache ids which don't match given tags
- *
- * In case of multiple tags, a logical OR is made between tags
- *
- * @param array $tags array of tags
- * @return array array of not matching cache ids (string)
- */
- public function getIdsNotMatchingTags($tags = array())
- {
- return $this->_getIdsByTags(Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG, $tags, FALSE);
- }
- /**
- * Return an array of stored cache ids which match any given tags
- *
- * In case of multiple tags, a logical AND is made between tags
- *
- * @param array $tags array of tags
- * @return array array of any matching cache ids (string)
- */
- public function getIdsMatchingAnyTags($tags = array())
- {
- return $this->_getIdsByTags(Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG, $tags, FALSE);
- }
- /**
- * Return an array of metadatas for the given cache id
- *
- * The array must include these keys :
- * - expire : the expire timestamp
- * - tags : a string array of tags
- * - mtime : timestamp of last modification time
- *
- * @param string $id cache id
- * @return array array of metadatas (false if the cache id is not found)
- */
- public function getMetadatas($id)
- {
- $metadatas = $this->_getCache($this->_file($id), false);
- if ($metadatas) {
- $metadatas['tags'] = explode(',' ,$metadatas['tags']);
- }
- return $metadatas;
- }
- /**
- * Give (if possible) an extra lifetime to the given cache id
- *
- * @param string $id cache id
- * @param int $extraLifetime
- * @return boolean true if ok
- */
- public function touch($id, $extraLifetime)
- {
- $file = $this->_file($id);
- $cache = $this->_getCache($file, true);
- if (!$cache) {
- return false;
- }
- list($metadatas, $data) = $cache;
- if (time() > $metadatas['expire']) {
- return false;
- }
- $newMetadatas = array(
- 'hash' => $metadatas['hash'],
- 'mtime' => time(),
- 'expire' => $metadatas['expire'] + $extraLifetime,
- 'tags' => $metadatas['tags']
- );
- return !! $this->_filePutContents($file, serialize($newMetadatas)."\n".$data);
- }
- /**
- * Get a metadatas record and optionally the data as well
- *
- * @param string $file Cache file
- * @param bool $withData
- * @return array|bool
- */
- protected function _getCache($file, $withData)
- {
- if (!is_file($file) || ! ($fd = @fopen($file, 'rb'))) {
- return false;
- }
- if ($this->_options['file_locking']) flock($fd, LOCK_SH);
- $metadata = fgets($fd);
- if ( ! $metadata) {
- if ($this->_options['file_locking']) flock($fd, LOCK_UN);
- fclose($fd);
- return false;
- }
- if ($withData) {
- $data = stream_get_contents($fd);
- }
- if ($this->_options['file_locking']) flock($fd, LOCK_UN);
- fclose($fd);
- $metadata = @unserialize(rtrim($metadata,"\n"));
- if ($withData) {
- return array($metadata, $data);
- }
- return $metadata;
- }
- /**
- * Get meta data from a cache record
- *
- * @param string $id Cache id
- * @return array|bool Associative array of meta data
- */
- protected function _getMetadatas($id)
- {
- return $this->_getCache($this->_file($id), false);
- }
- /**
- * Set a metadatas record
- *
- * @param string $id Cache id
- * @param array $metadatas Associative array of metadatas
- * @param boolean $save optional pass false to disable saving to file
- * @return boolean True if no problem
- */
- protected function _setMetadatas($id, $metadatas, $save = true)
- {
- // TODO - implement for unit tests ___expire method
- return true;
- }
- /**
- * Return the complete directory path of a filename (including hashedDirectoryStructure)
- *
- * Uses multiple letters for a single-level hash rather than multiple levels
- *
- * @param string $id Cache id
- * @param boolean $parts if true, returns array of directory parts instead of single string
- * @return string|array Complete directory path
- */
- protected function _path($id, $parts = false)
- {
- $partsArray = array();
- $root = $this->_options['cache_dir'];
- $prefix = $this->_options['file_name_prefix'];
- if ($this->_options['hashed_directory_level']>0) {
- $root .= $prefix . '--' . substr(md5($id), -$this->_options['hashed_directory_level']) . DIRECTORY_SEPARATOR;
- $partsArray[] = $root;
- }
- if ($parts){
- return $partsArray;
- }
- return $root;
-
- }
- /**
- * Clean some cache records (protected method used for recursive stuff)
- *
- * Available modes are :
- * Zend_Cache::CLEANING_MODE_ALL (default) => remove all cache entries ($tags is not used)
- * Zend_Cache::CLEANING_MODE_OLD => remove too old cache entries ($tags is not used)
- * Zend_Cache::CLEANING_MODE_MATCHING_TAG => remove cache entries matching all given tags
- * ($tags can be an array of strings or a single string)
- * Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG => remove cache entries not {matching one of the given tags}
- * ($tags can be an array of strings or a single string)
- * Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG => remove cache entries matching any given tags
- * ($tags can be an array of strings or a single string)
- *
- * @param string $dir Directory to clean
- * @param string $mode Clean mode
- * @param array $tags
- * @throws Zend_Cache_Exception
- * @return boolean True if no problem
- */
- protected function _clean($dir, $mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array())
- {
- if (!is_dir($dir)) {
- return false;
- }
- $result = true;
- $glob = @glob($dir . $this->_options['file_name_prefix'] . '--*');
- if ($glob === false) {
- return true;
- }
- foreach ($glob as $file) {
- if (is_file($file)) {
- if ($mode == Zend_Cache::CLEANING_MODE_ALL) {
- $result = @unlink($file) && $result;
- continue;
- }
- $id = $this->_fileNameToId(basename($file));
- $_file = $this->_file($id);
- if ($file != $_file) {
- @unlink($file);
- continue;
- }
- $metadatas = $this->_getCache($file, false);
- if ( ! $metadatas) {
- @unlink($file);
- continue;
- }
- if ($mode == Zend_Cache::CLEANING_MODE_OLD) {
- if (time() > $metadatas['expire']) {
- $result = $this->_remove($file) && $result;
- $result = $this->_updateIdsTags(array($id), explode(',', $metadatas['tags']), 'diff') && $result;
- }
- continue;
- } else {
- Zend_Cache::throwException('Invalid mode for clean() method.');
- }
- }
- if (is_dir($file) && $this->_options['hashed_directory_level'] > 0) {
- // Recursive call
- $result = $this->_clean($file . DIRECTORY_SEPARATOR, $mode) && $result;
- if ($mode == 'all') {
- // if mode=='all', we try to drop the structure too
- @rmdir($file);
- }
- }
- }
- if ($mode == 'all') {
- foreach (glob($this->_tagFile('*')) as $tagFile) {
- @unlink($tagFile);
- }
- }
- return $result;
- }
- /**
- * Clean some cache records (protected method used for recursive stuff)
- *
- * Available modes are :
- * Zend_Cache::CLEANING_MODE_ALL (default) => remove all cache entries ($tags is not used)
- * Zend_Cache::CLEANING_MODE_OLD => remove too old cache entries ($tags is not used)
- * Zend_Cache::CLEANING_MODE_MATCHING_TAG => remove cache entries matching all given tags
- * ($tags can be an array of strings or a single string)
- * Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG => remove cache entries not {matching one of the given tags}
- * ($tags can be an array of strings or a single string)
- * Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG => remove cache entries matching any given tags
- * ($tags can be an array of strings or a single string)
- *
- * @param string $mode Clean mode
- * @param array $tags Array of tags
- * @throws Zend_Cache_Exception
- * @return boolean True if no problem
- */
- protected function _cleanNew($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array())
- {
- $result = true;
- $ids = $this->_getIdsByTags($mode, $tags, TRUE);
- switch($mode)
- {
- case Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG:
- case Zend_Cache::CLEANING_MODE_MATCHING_TAG:
- $this->_updateIdsTags($ids, $tags, 'diff');
- break;
- }
- foreach ($ids as $id) {
- $idFile = $this->_file($id);
- if (is_file($idFile)) {
- $result = $this->_remove($idFile) && $result;
- }
- }
- return $result;
- }
- /**
- * @param string $mode
- * @param array $tags
- * @param boolean $delete
- * @return array
- */
- protected function _getIdsByTags($mode, $tags, $delete)
- {
- $ids = array();
- switch($mode) {
- case Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG:
- $ids = $this->getIds();
- if ($tags) {
- foreach ($tags as $tag) {
- if ( ! $ids) {
- break; // early termination optimization
- }
- $ids = array_diff($ids, $this->_getTagIds($tag));
- }
- }
- break;
- case Zend_Cache::CLEANING_MODE_MATCHING_TAG:
- if ($tags) {
- $tag = array_shift($tags);
- $ids = $this->_getTagIds($tag);
- foreach ($tags as $tag) {
- if ( ! $ids) {
- break; // early termination optimization
- }
- $ids = array_intersect($ids, $this->_getTagIds($tag));
- }
- $ids = array_unique($ids);
- }
- break;
- case Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG:
- foreach ($tags as $tag) {
- $file = $this->_tagFile($tag);
- if ( ! is_file($file) || ! ($fd = @fopen($file, 'rb+'))) {
- continue;
- }
- if ($this->_options['file_locking']) flock($fd, LOCK_EX);
- $ids = array_merge($ids,$this->_getTagIds($fd));
- if ($delete) {
- fseek($fd, 0);
- ftruncate($fd, 0);
- }
- if ($this->_options['file_locking']) flock($fd, LOCK_UN);
- fclose($fd);
- }
- $ids = array_unique($ids);
- break;
- }
- return $ids;
- }
- /**
- * Make and return a file name (with path)
- *
- * @param string $id Cache id
- * @return string File name (with path)
- */
- protected function _tagFile($id)
- {
- $path = $this->_tagPath();
- $fileName = $this->_idToFileName($id);
- return $path . $fileName;
- }
- /**
- * Return the complete directory path where tags are stored
- *
- * @return string Complete directory path
- */
- protected function _tagPath()
- {
- $path = $this->_options['cache_dir'] . DIRECTORY_SEPARATOR . $this->_options['file_name_prefix']. '-tags' . DIRECTORY_SEPARATOR;
- if ( ! $this->_isTagDirChecked) {
- if ( ! is_dir($path)) {
- if (@mkdir($path, $this->_options['use_chmod'] ? $this->_options['directory_mode'] : 0777) && $this->_options['use_chmod']) {
- @chmod($path, $this->_options['directory_mode']); // see #ZF-320 (this line is required in some configurations)
- }
- }
- $this->_isTagDirChecked = true;
- }
- return $path;
- }
- /**
- * @param string|resource $tag
- * @return array
- */
- protected function _getTagIds($tag)
- {
- if (is_resource($tag)) {
- $ids = stream_get_contents($tag);
- } elseif(file_exists($this->_tagFile($tag))) {
- $ids = @file_get_contents($this->_tagFile($tag));
- } else {
- $ids = false;
- }
- if( ! $ids) {
- return array();
- }
- $ids = trim(substr($ids, 0, strrpos($ids, "\n")));
- return $ids ? explode("\n", $ids) : array();
- }
- /**
- * @param array $ids
- * @param array $tags
- * @param string $mode
- * @return bool
- */
- protected function _updateIdsTags($ids, $tags, $mode)
- {
- $result = true;
- if (empty($ids)) {
- return $result;
- }
- foreach($tags as $tag) {
- $file = $this->_tagFile($tag);
- if (file_exists($file)) {
- if ($mode == 'diff' || (mt_rand(1,100) == 1 && filesize($file) > 4096)) {
- $file = $this->_tagFile($tag);
- if ( ! ($fd = @fopen($file, 'rb+'))) {
- $result = false;
- continue;
- }
- if ($this->_options['file_locking']) flock($fd, LOCK_EX);
- if ($mode == 'diff') {
- $_ids = array_diff($this->_getTagIds($fd), $ids);
- } else {
- $_ids = array_merge($this->_getTagIds($fd), $ids);
- }
- fseek($fd, 0);
- ftruncate($fd, 0);
- $result = fwrite($fd, implode("\n", array_unique($_ids))."\n") && $result;
- if ($this->_options['file_locking']) flock($fd, LOCK_UN);
- fclose($fd);
- }
- else {
- $result = file_put_contents($file, implode("\n", $ids)."\n", FILE_APPEND | ($this->_options['file_locking'] ? LOCK_EX : 0)) && $result;
- }
- } else if ($mode == 'merge') {
- $result = $this->_filePutContents($file, implode("\n", $ids)."\n") && $result;
- }
- }
- return $result;
- }
- /**
- * Put the given string into the given file
- *
- * @param string $file File complete path
- * @param string $string String to put in file
- * @return boolean true if no problem
- */
- protected function _filePutContents($file, $string)
- {
- $result = @file_put_contents($file, $string, $this->_options['file_locking'] ? LOCK_EX : 0);
- if ($result && $this->_options['use_chmod']) {
- @chmod($file, $this->_options['file_mode']);
- }
- return $result;
- }
- /**
- * Make the directory structure for the given id
- *
- * @param string $id cache id
- * @return boolean true
- */
- protected function _recursiveMkdirAndChmod($id)
- {
- if ($this->_options['hashed_directory_level'] <=0) {
- return true;
- }
- $partsArray = $this->_path($id, true);
- foreach ($partsArray as $part) {
- if (!is_dir($part)) {
- @mkdir($part, $this->_options['use_chmod'] ? $this->_options['directory_mode'] : 0777);
- if ($this->_options['use_chmod']) {
- @chmod($part, $this->_options['directory_mode']); // see #ZF-320 (this line is required in some configurations)
- }
- }
- }
- return true;
- }
- /**
- * For unit testing only
- * @param $id
- */
- public function ___expire($id)
- {
- $metadata = $this->_getMetadatas($id);
- $this->touch($id, 1 - $metadata['expire']);
- }
- }
|