2011-07-20 12:57:07 +00:00
|
|
|
<?php defined('SYSPATH') or die('No direct script access.');
|
|
|
|
/**
|
|
|
|
* Kohana Cache Sqlite Driver
|
2013-04-13 06:17:56 +00:00
|
|
|
*
|
2011-07-20 12:57:07 +00:00
|
|
|
* Requires SQLite3 and PDO
|
2013-04-13 06:17:56 +00:00
|
|
|
*
|
2011-07-20 12:57:07 +00:00
|
|
|
* @package Kohana/Cache
|
|
|
|
* @category Base
|
|
|
|
* @author Kohana Team
|
2013-04-13 06:17:56 +00:00
|
|
|
* @copyright (c) 2009-2012 Kohana Team
|
2011-07-20 12:57:07 +00:00
|
|
|
* @license http://kohanaphp.com/license
|
|
|
|
*/
|
2013-04-13 06:17:56 +00:00
|
|
|
class Kohana_Cache_Sqlite extends Cache implements Cache_Tagging, Cache_GarbageCollect {
|
2011-07-20 12:57:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Database resource
|
|
|
|
*
|
|
|
|
* @var PDO
|
|
|
|
*/
|
|
|
|
protected $_db;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up the PDO SQLite table and
|
|
|
|
* initialises the PDO connection
|
|
|
|
*
|
2013-04-13 06:17:56 +00:00
|
|
|
* @param array $config configuration
|
|
|
|
* @throws Cache_Exception
|
2011-07-20 12:57:07 +00:00
|
|
|
*/
|
|
|
|
protected function __construct(array $config)
|
|
|
|
{
|
|
|
|
parent::__construct($config);
|
|
|
|
|
|
|
|
$database = Arr::get($this->_config, 'database', NULL);
|
|
|
|
|
|
|
|
if ($database === NULL)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('Database path not available in Kohana Cache configuration');
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Load new Sqlite DB
|
|
|
|
$this->_db = new PDO('sqlite:'.$database);
|
|
|
|
|
|
|
|
// Test for existing DB
|
|
|
|
$result = $this->_db->query("SELECT * FROM sqlite_master WHERE name = 'caches' AND type = 'table'")->fetchAll();
|
|
|
|
|
|
|
|
// If there is no table, create a new one
|
|
|
|
if (0 == count($result))
|
|
|
|
{
|
|
|
|
$database_schema = Arr::get($this->_config, 'schema', NULL);
|
|
|
|
|
|
|
|
if ($database_schema === NULL)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('Database schema not found in Kohana Cache configuration');
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Create the caches table
|
|
|
|
$this->_db->query(Arr::get($this->_config, 'schema', NULL));
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('Failed to create new SQLite caches table with the following error : :error', array(':error' => $e->getMessage()));
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve a value based on an id
|
|
|
|
*
|
2013-04-13 06:17:56 +00:00
|
|
|
* @param string $id id
|
|
|
|
* @param string $default default [Optional] Default value to return if id not found
|
2011-07-20 12:57:07 +00:00
|
|
|
* @return mixed
|
2013-04-13 06:17:56 +00:00
|
|
|
* @throws Cache_Exception
|
2011-07-20 12:57:07 +00:00
|
|
|
*/
|
|
|
|
public function get($id, $default = NULL)
|
|
|
|
{
|
|
|
|
// Prepare statement
|
|
|
|
$statement = $this->_db->prepare('SELECT id, expiration, cache FROM caches WHERE id = :id LIMIT 0, 1');
|
|
|
|
|
|
|
|
// Try and load the cache based on id
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$statement->execute(array(':id' => $this->_sanitize_id($id)));
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! $result = $statement->fetch(PDO::FETCH_OBJ))
|
|
|
|
{
|
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the cache has expired
|
|
|
|
if ($result->expiration != 0 and $result->expiration <= time())
|
|
|
|
{
|
|
|
|
// Delete it and return default value
|
|
|
|
$this->delete($id);
|
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
// Otherwise return cached object
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Disable notices for unserializing
|
|
|
|
$ER = error_reporting(~E_NOTICE);
|
2013-04-13 06:17:56 +00:00
|
|
|
|
2011-07-20 12:57:07 +00:00
|
|
|
// Return the valid cache data
|
|
|
|
$data = unserialize($result->cache);
|
|
|
|
|
|
|
|
// Turn notices back on
|
|
|
|
error_reporting($ER);
|
|
|
|
|
|
|
|
// Return the resulting data
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a value based on an id. Optionally add tags.
|
|
|
|
*
|
2013-04-13 06:17:56 +00:00
|
|
|
* @param string $id id
|
|
|
|
* @param mixed $data data
|
|
|
|
* @param integer $lifetime lifetime [Optional]
|
2011-07-20 12:57:07 +00:00
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function set($id, $data, $lifetime = NULL)
|
|
|
|
{
|
|
|
|
return (bool) $this->set_with_tags($id, $data, $lifetime);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a cache entry based on id
|
|
|
|
*
|
2013-04-13 06:17:56 +00:00
|
|
|
* @param string $id id
|
2011-07-20 12:57:07 +00:00
|
|
|
* @return boolean
|
2013-04-13 06:17:56 +00:00
|
|
|
* @throws Cache_Exception
|
2011-07-20 12:57:07 +00:00
|
|
|
*/
|
|
|
|
public function delete($id)
|
|
|
|
{
|
|
|
|
// Prepare statement
|
|
|
|
$statement = $this->_db->prepare('DELETE FROM caches WHERE id = :id');
|
|
|
|
|
|
|
|
// Remove the entry
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$statement->execute(array(':id' => $this->_sanitize_id($id)));
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (bool) $statement->rowCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete all cache entries
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function delete_all()
|
|
|
|
{
|
|
|
|
// Prepare statement
|
|
|
|
$statement = $this->_db->prepare('DELETE FROM caches');
|
|
|
|
|
|
|
|
// Remove the entry
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$statement->execute();
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return (bool) $statement->rowCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a value based on an id. Optionally add tags.
|
2013-04-13 06:17:56 +00:00
|
|
|
*
|
|
|
|
* @param string $id id
|
|
|
|
* @param mixed $data data
|
|
|
|
* @param integer $lifetime lifetime [Optional]
|
|
|
|
* @param array $tags tags [Optional]
|
2011-07-20 12:57:07 +00:00
|
|
|
* @return boolean
|
2013-04-13 06:17:56 +00:00
|
|
|
* @throws Cache_Exception
|
2011-07-20 12:57:07 +00:00
|
|
|
*/
|
|
|
|
public function set_with_tags($id, $data, $lifetime = NULL, array $tags = NULL)
|
|
|
|
{
|
|
|
|
// Serialize the data
|
|
|
|
$data = serialize($data);
|
|
|
|
|
|
|
|
// Normalise tags
|
|
|
|
$tags = (NULL === $tags) ? NULL : ('<'.implode('>,<', $tags).'>');
|
|
|
|
|
|
|
|
// Setup lifetime
|
|
|
|
if ($lifetime === NULL)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
$lifetime = (0 === Arr::get($this->_config, 'default_expire', NULL)) ? 0 : (Arr::get($this->_config, 'default_expire', Cache::DEFAULT_EXPIRE) + time());
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$lifetime = (0 === $lifetime) ? 0 : ($lifetime + time());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare statement
|
2013-04-13 06:17:56 +00:00
|
|
|
// $this->exists() may throw Cache_Exception, no need to catch/rethrow
|
2011-07-20 12:57:07 +00:00
|
|
|
$statement = $this->exists($id) ? $this->_db->prepare('UPDATE caches SET expiration = :expiration, cache = :cache, tags = :tags WHERE id = :id') : $this->_db->prepare('INSERT INTO caches (id, cache, expiration, tags) VALUES (:id, :cache, :expiration, :tags)');
|
|
|
|
|
|
|
|
// Try to insert
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$statement->execute(array(':id' => $this->_sanitize_id($id), ':cache' => $data, ':expiration' => $lifetime, ':tags' => $tags));
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (bool) $statement->rowCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete cache entries based on a tag
|
|
|
|
*
|
2013-04-13 06:17:56 +00:00
|
|
|
* @param string $tag tag
|
2011-07-20 12:57:07 +00:00
|
|
|
* @return boolean
|
2013-04-13 06:17:56 +00:00
|
|
|
* @throws Cache_Exception
|
2011-07-20 12:57:07 +00:00
|
|
|
*/
|
|
|
|
public function delete_tag($tag)
|
|
|
|
{
|
|
|
|
// Prepare the statement
|
|
|
|
$statement = $this->_db->prepare('DELETE FROM caches WHERE tags LIKE :tag');
|
|
|
|
|
|
|
|
// Try to delete
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$statement->execute(array(':tag' => "%<{$tag}>%"));
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return (bool) $statement->rowCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find cache entries based on a tag
|
|
|
|
*
|
2013-04-13 06:17:56 +00:00
|
|
|
* @param string $tag tag
|
2011-07-20 12:57:07 +00:00
|
|
|
* @return array
|
2013-04-13 06:17:56 +00:00
|
|
|
* @throws Cache_Exception
|
2011-07-20 12:57:07 +00:00
|
|
|
*/
|
|
|
|
public function find($tag)
|
|
|
|
{
|
|
|
|
// Prepare the statement
|
|
|
|
$statement = $this->_db->prepare('SELECT id, cache FROM caches WHERE tags LIKE :tag');
|
|
|
|
|
|
|
|
// Try to find
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( ! $statement->execute(array(':tag' => "%<{$tag}>%")))
|
|
|
|
{
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$result = array();
|
|
|
|
|
|
|
|
while ($row = $statement->fetchObject())
|
|
|
|
{
|
|
|
|
// Disable notices for unserializing
|
|
|
|
$ER = error_reporting(~E_NOTICE);
|
|
|
|
|
|
|
|
$result[$row->id] = unserialize($row->cache);
|
|
|
|
|
|
|
|
// Turn notices back on
|
|
|
|
error_reporting($ER);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Garbage collection method that cleans any expired
|
|
|
|
* cache entries from the cache.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function garbage_collect()
|
|
|
|
{
|
|
|
|
// Create the sequel statement
|
|
|
|
$statement = $this->_db->prepare('DELETE FROM caches WHERE expiration < :expiration');
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$statement->execute(array(':expiration' => time()));
|
|
|
|
}
|
|
|
|
catch (PDOException $e)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests whether an id exists or not
|
|
|
|
*
|
2013-04-13 06:17:56 +00:00
|
|
|
* @param string $id id
|
2011-07-20 12:57:07 +00:00
|
|
|
* @return boolean
|
2013-04-13 06:17:56 +00:00
|
|
|
* @throws Cache_Exception
|
2011-07-20 12:57:07 +00:00
|
|
|
*/
|
|
|
|
protected function exists($id)
|
|
|
|
{
|
|
|
|
$statement = $this->_db->prepare('SELECT id FROM caches WHERE id = :id');
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$statement->execute(array(':id' => $this->_sanitize_id($id)));
|
|
|
|
}
|
|
|
|
catch (PDOExeption $e)
|
|
|
|
{
|
2013-04-13 06:17:56 +00:00
|
|
|
throw new Cache_Exception('There was a problem querying the local SQLite3 cache. :error', array(':error' => $e->getMessage()));
|
2011-07-20 12:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (bool) $statement->fetchAll();
|
|
|
|
}
|
|
|
|
}
|