⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 file.php

📁 Bug tracker, and reporter.
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?php/** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@zend.com so we can send you a copy immediately. * * @category   Zend * @package    Zend_Cache * @subpackage Zend_Cache_Backend * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License *//** * @see Zend_Cache_Backend_Interface */require_once 'Zend/Cache/Backend/Interface.php';/** * @see Zend_Cache_Backend */require_once 'Zend/Cache/Backend.php';/** * @package    Zend_Cache * @subpackage Zend_Cache_Backend * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License */class Zend_Cache_Backend_File extends Zend_Cache_Backend implements Zend_Cache_Backend_Interface{    /**     * Available options     *     * =====> (string) cache_dir :     * - Directory where to put the cache files     *     * =====> (boolean) file_locking :     * - Enable / disable file_locking     * - Can avoid cache corruption under bad circumstances but it doesn't work on multithread     * webservers and on NFS filesystems for example     *     * =====> (boolean) read_control :     * - Enable / disable read control     * - If enabled, a control key is embeded in cache file and this key is compared with the one     * calculated after the reading.     *     * =====> (string) read_control_type :     * - Type of read control (only if read control is enabled). Available values are :     *   'md5' for a md5 hash control (best but slowest)     *   'crc32' for a crc32 hash control (lightly less safe but faster, better choice)     *   'adler32' for an adler32 hash control (excellent choice too, faster than crc32)     *   'strlen' for a length only test (fastest)     *     * =====> (int) hashed_directory_level :     * - Hashed directory level     * - Set the hashed directory structure level. 0 means "no hashed directory     * structure", 1 means "one level of directory", 2 means "two levels"...     * This option can speed up the cache only when you have many thousands of     * cache file. Only specific benchs can help you to choose the perfect value     * for you. Maybe, 1 or 2 is a good start.     *     * =====> (int) hashed_directory_umask :     * - Umask for hashed directory structure     *     * =====> (string) file_name_prefix :     * - prefix for cache files     * - be really carefull with this option because a too generic value in a system cache dir     *   (like /tmp) can cause disasters when cleaning the cache     *     * =====> (int) cache_file_umask :     * - Umask for cache files     *      * =====> (int) metatadatas_array_max_size :     * - max size for the metadatas array (don't change this value unless you     *   know what you are doing)     *      * @var array available options     */    protected $_options = array(        'cache_dir' => null,        'file_locking' => true,        'read_control' => true,        'read_control_type' => 'crc32',        'hashed_directory_level' => 0,        'hashed_directory_umask' => 0700,        'file_name_prefix' => 'zend_cache',        'cache_file_umask' => 0600,        'metadatas_array_max_size' => 100    );        /**     * Array of metadatas (each item is an associative array)     *      * @var array     */    private $_metadatasArray = array();    /**     * Constructor     *     * @param  array $options associative array of options     * @throws Zend_Cache_Exception     * @return void     */    public function __construct($options = array())    {        parent::__construct($options);        if (!is_null($this->_options['cache_dir'])) { // particular case for this option            $this->setCacheDir($this->_options['cache_dir']);        } else {            $this->setCacheDir(self::getTmpDir() . DIRECTORY_SEPARATOR, false);        }        if (isset($this->_options['file_name_prefix'])) { // particular case for this option            if (!preg_match('~^[\w]+$~', $this->_options['file_name_prefix'])) {                Zend_Cache::throwException('Invalid file_name_prefix : must use only [a-zA-A0-9_]');            }        }        if ($this->_options['metadatas_array_max_size'] < 10) {            Zend_Cache::throwException('Invalid metadatas_array_max_size, must be > 10');        }    }    /**     * Set the cache_dir (particular case of setOption() method)     *     * @param  string  $value     * @param  boolean $trailingSeparator If true, add a trailing separator is necessary     * @throws Zend_Cache_Exception     * @return void     */    public function setCacheDir($value, $trailingSeparator = true)    {        if (!is_dir($value)) {            Zend_Cache::throwException('cache_dir must be a directory');        }        if (!is_writable($value)) {            Zend_Cache::throwException('cache_dir is not writable');        }        if ($trailingSeparator) {            // add a trailing DIRECTORY_SEPARATOR if necessary            $value = rtrim(realpath($value), '\\/') . DIRECTORY_SEPARATOR;        }        $this->_options['cache_dir'] = $value;    }    /**     * 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|false cached datas     */    public function load($id, $doNotTestCacheValidity = false)    {        if (!($this->_test($id, $doNotTestCacheValidity))) {            // The cache is not hit !            return false;        }        $metadatas = $this->_getMetadatas($id);        $file = $this->_file($id);        $data = $this->_fileGetContents($file);        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;    }    /**     * Test if a cache is available or not (for the given id)     *     * @param string $id cache id     * @return mixed false (a cache is not available) or "last modified" timestamp (int) of the available cache record     */    public function test($id)    {        clearstatcache();        return $this->_test($id, false);    }    /**     * 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  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)    {        clearstatcache();        $file = $this->_file($id);        $path = $this->_path($id);        $firstTry = true;        $result = false;              if ($this->_options['hashed_directory_level'] > 0) {            if (!is_writable($path)) {                // maybe, we just have to build the directory structure                @mkdir($this->_path($id), $this->_options['hashed_directory_umask'], true);                @chmod($this->_path($id), $this->_options['hashed_directory_umask']); // see #ZF-320 (this line is required in some configurations)                  }            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' => $tags        );        $res = $this->_setMetadatas($id, $metadatas);        if (!$res) {            // FIXME : log            return false;        }        $res = $this->_filePutContents($file, $data);        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);        return ($this->_delMetadatas($id) && $this->_remove($file));    }    /**     * 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)     *     * @param string $mode clean mode     * @param tags array $tags array of tags     * @return boolean true if no problem     */    public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array())    {        // We use this private method to hide the recursive stuff        clearstatcache();        return $this->_clean($this->_options['cache_dir'], $mode, $tags);    }    /**     * PUBLIC METHOD FOR UNIT TESTING ONLY !     *     * Force a cache record to expire     *     * @param string $id cache id     */    public function ___expire($id)    {        $metadatas = $this->_getMetadatas($id);        if ($metadatas) {            $metadatas['expire'] = 1;            $this->_setMetadatas($id, $metadatas);        }    }    /**     * Get a metadatas record      *      * @param  string $id  Cache id     * @return array|false Associative array of metadatas     */    private function _getMetadatas($id)    {        if (isset($this->_metadatasArray[$id])) {            return $this->_metadatasArray[$id];        } else {            $metadatas = $this->_loadMetadatas($id);            if (!$metadatas) {                return false;            }            $this->_setMetadatas($id, $metadatas);            return $metadatas;        }    }        /**     * Set a metadatas record     *      * @param  string $id        Cache id     * @param  array  $metadatas Associative array of metadatas     * @return boolean True if no problem     */    private function _setMetadatas($id, $metadatas)    {        if (count($this->_metadatasArray) >= $this->_options['metadatas_array_max_size']) {            $n = (int) ($this->_options['metadatas_array_max_size'] / 10);            $this->_metadatasArray = array_slice($this->_metadatasArray, $n);        }        $result = $this->_saveMetadatas($id, $metadatas);        if (!$result) {            return false;        }        $this->_metadatasArray[$id] = $metadatas;        return true;    }        /**     * Drop a metadata record     *      * @param  string $id Cache id     * @return boolean True if no problem     */    private function _delMetadatas($id)    {        if (isset($this->_metadatasArray[$id])) {            unset($this->_metadatasArray[$id]);        }        $file = $this->_metadatasFile($id);        return $this->_remove($file);           }        /**     * Clear the metadatas array     *     * @return void

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -