home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / pear / Cache / Container / phplib.php < prev    next >
PHP Script  |  2001-03-08  |  8KB  |  223 lines

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP version 4.0                                                      |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1997, 1998, 1999, 2000, 2001 The PHP Group             |
  6. // +----------------------------------------------------------------------+
  7. // | This source file is subject to version 2.0 of the PHP license,       |
  8. // | that is bundled with this package in the file LICENSE, and is        |
  9. // | available at through the world-wide-web at                           |
  10. // | http://www.php.net/license/2_02.txt.                                 |
  11. // | If you did not receive a copy of the PHP license and are unable to   |
  12. // | obtain it through the world-wide-web, please send a note to          |
  13. // | license@php.net so we can mail you a copy immediately.               |
  14. // +----------------------------------------------------------------------+
  15. // | Authors: Ulf Wendel <ulf.wendel@phpdoc.de>                           |
  16. // |          Sebastian Bergmann <sb@sebastian-bergmann.de>               |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: phplib.php,v 1.10 2001/03/08 20:39:16 uw Exp $
  20.  
  21. require_once 'Cache/Container.php';
  22.  
  23. /**
  24. * Stores cache data into a database table using PHPLibs DB abstraction.
  25. *
  26. * WARNING: Other systems might or might not support certain datatypes of 
  27. * the tables shown. As far as I know there's no large binary 
  28. * type in SQL-92 or SQL-99. Postgres seems to lack any 
  29. * BLOB or TEXT type, for MS-SQL you could use IMAGE, don't know 
  30. * about other databases. Please add sugestions for other databases to 
  31. * the inline docs.
  32. *
  33. * The field 'changed' has no meaning for the Cache itself. It's just there 
  34. * because it's a good idea to have an automatically updated timestamp
  35. * field for debugging in all of your tables.
  36. *
  37. * For _MySQL_ you need this DB table:
  38. *
  39. * CREATE TABLE cache (
  40. *   id          CHAR(32) NOT NULL DEFAULT '',
  41. *   cachegroup  VARCHAR(127) NOT NULL DEFAULT '',
  42. *   cachedata   BLOB NOT NULL DEFAULT '',
  43. *   userdata    VARCHAR(255) NOT NULL DEFAUL '',
  44. *   expires     INT(9) NOT NULL DEFAULT 0,
  45. *  
  46. *   changed     TIMESTAMP(14) NOT NULL,
  47. *  
  48. *   INDEX (expires),
  49. *   PRIMARY KEY (id, cachegroup)
  50. * )
  51. *
  52. * @author   Ulf Wendel  <ulf.wendel@phpdoc.de>, Sebastian Bergmann <sb@sebastian-bergmann.de>
  53. * @version  $Id: phplib.php,v 1.10 2001/03/08 20:39:16 uw Exp $
  54. * @package  Cache
  55. * @see      save()
  56. */
  57. class Cache_Container_phplib extends Cache_Container {
  58.   
  59.     /**
  60.     * Name of the DB table to store caching data
  61.     * 
  62.     * @see  Cache_Container_file::$filename_prefix
  63.     */  
  64.     var $cache_table = "cache";
  65.  
  66.     /**
  67.     * PHPLib object
  68.     * 
  69.     * @var  object PEAR_DB
  70.     */
  71.     var $db;
  72.  
  73.     /**
  74.     * Name of the PHPLib DB class to use
  75.     * 
  76.     * @var  string  
  77.     * @see  $db_path, $local_path
  78.     */
  79.     var $db_class = "";
  80.  
  81.     /**
  82.     * Filename of your local.inc
  83.     * 
  84.     * If empty, "local.inc" is assumed.
  85.     *
  86.     * @var       string
  87.     */
  88.     var $local_file = "";
  89.  
  90.     /**
  91.     * Include path for you local.inc
  92.     *
  93.     * HINT: If your're not using PHPLib's prepend.php you must 
  94.     * take care that all classes (files) references by you 
  95.     * local.inc are included automatically. So you might 
  96.     * want to write a new local2.inc that only referrs to 
  97.     * the database class (file) you're using and includes all required files.
  98.     *
  99.     * @var  string  path to your local.inc - make sure to add a trailing slash
  100.     * @see  $local_file
  101.     */
  102.     var $local_path = "";
  103.  
  104.     /**
  105.     * Creates an instance of a phplib db class to use it for storage.
  106.     *
  107.     * @param    mixed   If empty the object tries to used the 
  108.     *                   preconfigured class variables. If given it 
  109.     *                   must be an array with:
  110.     *                     db_class => name of the DB class to use
  111.     *                   optional:
  112.     *                     db_file => filename of the DB class
  113.     *                     db_path => path to the DB class
  114.     *                     local_file => kind of local.inc
  115.     *                     local_patk => path to the local.inc
  116.     *                   see $local_path for some hints.s
  117.     * @see  $local_path
  118.     */
  119.     function Cache_Container_phplib($options = "") {
  120.         if (is_array($options))
  121.             $this->setOptions($options, array("db_class", "db_file", "db_path", "local_file", "local_path"));
  122.  
  123.         if (!$this->db_class)
  124.             return new Cache_Error("No database class specified.", __FILE__, __LINE__);
  125.  
  126.         // include the required files
  127.         if ($this->db_file)
  128.             include_once($this->db_path . $this->db_file);
  129.  
  130.         if ($this->local_file)
  131.             include_once($this->local_path . $this->local_file);
  132.  
  133.         // create a db object 
  134.         $this->db = new $this->db_class;
  135.     } // end constructor
  136.  
  137.     function fetch($id, $group) {
  138.         $query = sprintf("SELECT expires, cachedata, userdata FROM %s WHERE id = '%s' AND cachegroup = '%s'",
  139.                             $this->cache_table, 
  140.                             $id,
  141.                             $group
  142.                          );
  143.         $this->db->query($query);
  144.         if (!$this->db->Next_Record())
  145.             return array(NULL, NULL, NULL);
  146.  
  147.         return array($this->db->f("expires"), $this->decode($this->db->f("cachedata")), $this->db->f("userdata"));
  148.     } // end func fetch
  149.  
  150.     /**
  151.     * Stores a dataset.
  152.     * 
  153.     * WARNING: we use the SQL command REPLACE INTO this might be 
  154.     * MySQL specific. As MySQL is very popular the method should
  155.     * work fine for 95% of you.
  156.     */
  157.     function save($id, $data, $expires, $group) {
  158.         $this->flushPreload($id, $group);
  159.  
  160.         $query = sprintf("REPLACE INTO %s (cachedata, expires, id, cachegroup) VALUES ('%s', %d, '%s', '%s')",
  161.                             $this->cache_table,
  162.                             addslashes($this->encode($data)),
  163.                             $this->getExpiresAbsolute($expires) ,
  164.                             $id,
  165.                             $group
  166.                          );
  167.         $this->db->query($query);
  168.  
  169.         return (boolean)$this->db->affected_rows(); 
  170.     } // end func save
  171.  
  172.     function delete($id, $group) {
  173.         $this->flushPreload($id, $group);
  174.         $this->db->query(
  175.                         sprintf("DELETE FROM %s WHERE id = '%s' AND cachegroup = '%s'",
  176.                             $this->cache_table,
  177.                             $id,
  178.                             $group
  179.                           )
  180.                     );
  181.  
  182.         return (boolean)$this->db->affected_rows();
  183.     } // end func delete
  184.  
  185.     function flush($group) {
  186.         $this->flushPreload();
  187.  
  188.         if ($group) {
  189.             $this->db->query(sprintf("DELETE FROM %s WHERE cachegroup = '%s'", $this->cache_table, $group));    
  190.         } else {
  191.             $this->db->query(sprintf("DELETE FROM %s", $this->cache_table));    
  192.         }
  193.  
  194.         return $this->db->affected_rows();
  195.     } // end func flush
  196.  
  197.     function idExists($id, $group) {
  198.         $this->db->query(
  199.                         sprintf("SELECT id FROM %s WHERE ID = '%s' AND cachegroup = '%s'", 
  200.                             $this->cache_table,
  201.                             $id, 
  202.                             $group
  203.                         )   
  204.                     );
  205.  
  206.         return (boolean)$this->db->nf();                         
  207.     } // end func isExists
  208.  
  209.     function garbageCollection() {
  210.         $this->flushPreload();
  211.  
  212.         $this->db->query( 
  213.                         sprintf("DELETE FORM %s WHERE expires <= %d AND expires > 0", 
  214.                             $this->cache_table, 
  215.                             time()
  216.                         )
  217.                     );
  218.  
  219.     } // end func garbageCollection
  220. }
  221. ?>
  222.