ForwardFW
[ class tree: ForwardFW ] [ index: ForwardFW ] [ all elements ]

Source for file File.php

Documentation is available at File.php

  1. <?php
  2. declare(encoding "utf-8");
  3. /**
  4.  * This file is part of ForwardFW a web application framework.
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  * PHP version 5
  21.  *
  22.  * @category   Cache
  23.  * @package    ForwardFW
  24.  * @subpackage Cache/Backend
  25.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  26.  * @copyright  2009-2010 The Authors
  27.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  28.  * @version    SVN: $Id: $
  29.  * @link       http://forwardfw.sourceforge.net
  30.  * @since      File available since Release 0.0.9
  31.  */
  32.  
  33. require_once 'ForwardFW/Config/Cache/Backend.php';
  34. require_once 'ForwardFW/Interface/Application.php';
  35. require_once 'ForwardFW/Cache/Backend.php';
  36.  
  37. /**
  38.  * Implementation of a File Cache Backend.
  39.  *
  40.  * @category   Cache
  41.  * @package    ForwardFW
  42.  * @subpackage Cache/Backend
  43.  * @author     Alexander Opitz <opitz.alexander@primacom.net>
  44.  * @license    http://www.gnu.org/copyleft/gpl.html GNU General Public License
  45.  * @link       http://forwardfw.sourceforge.net
  46.  */
  47. {
  48.     /**
  49.      * Constructor
  50.      *
  51.      * @param ForwardFW_Interface_Application $application The running application.
  52.      * @param ForwardFW_Config_Cache_Backend  $config      Backend config.
  53.      */
  54.     public function __construct(
  55.         ForwardFW_Interface_Application $application,
  56.         ForwardFW_Config_Cache_Backend $config
  57.     {
  58.         parent::__construct($application$config);
  59.     }
  60.  
  61.     /**
  62.      * Writes data into the cache
  63.      *
  64.      *
  65.      * @param string $strHash Hash for data.
  66.      * @param array  $arData  Data to save into cache.
  67.      *
  68.      * @return void 
  69.      */
  70.     protected function writeData($strHasharray $arData)
  71.     {
  72.         $strPath $this->config->strPath;
  73.         if (is_writeable($strPath)) {
  74.             return file_put_contents($strPath $strHashserialize($arData));
  75.         else {
  76.             throw new ForwardFW_Cache_Exception('Not writeable');
  77.         }
  78.     }
  79.  
  80.     /**
  81.      * Reads data from the cache
  82.      *
  83.      * @param string $strHash Hash for data.
  84.      *
  85.      * @return array Data from the storage
  86.      */
  87.     protected function readData($strHash)
  88.     {
  89.         $strPath $this->config->strPath;
  90.         if (is_readable($strPath $strHash)) {
  91.             return unserialize(file_get_contents($strPath $strHash));
  92.         }
  93.         return null;
  94.     }
  95.  
  96.     /**
  97.      * Removes data from the cache
  98.      *
  99.      * @param string $strHash Hash for data.
  100.      *
  101.      * @return boolean Returns true if data removed otherwise false.
  102.      */
  103.     protected function removeData($strHash)
  104.     {
  105.         $strPath $this->config->strPath;
  106.         if (is_writeable($strPath $strHash)) {
  107.             return unlink($strPath $strHash);
  108.         }
  109.         return false;
  110.     }
  111.  
  112.     /**
  113.      * Clear complete cache
  114.      *
  115.      * @return void 
  116.      */
  117.     protected function clear()
  118.     {
  119.         $arFiles glob($this->config->strPath);
  120.         foreach ($arFiles as $strFile{
  121.             unlink($strFile);
  122.         }
  123.     }
  124. }
  125. ?>

Documentation generated on Sun, 30 Jan 2011 20:46:41 +0100 by phpDocumentor 1.4.3