1
0
mirror of synced 2025-01-18 22:41:43 +03:00
This commit is contained in:
zYne 2007-05-20 17:54:22 +00:00
parent 10312db4eb
commit 0f921a8c4d
2 changed files with 32 additions and 13 deletions

View File

@ -36,7 +36,7 @@ abstract class Doctrine_Cache_Driver implements Doctrine_Cache_Interface
/** /**
* @var array $_options an array of options * @var array $_options an array of options
*/ */
protected $_options; protected $_options = array();
/** /**
* constructor * constructor

View File

@ -33,24 +33,41 @@
*/ */
class Doctrine_Cache_Sqlite extends Doctrine_Cache_Driver implements Countable class Doctrine_Cache_Sqlite extends Doctrine_Cache_Driver implements Countable
{ {
/**
* @var array $_options an array of options
*/
protected $_options = array('connection' => ':sqlite::memory');
/** /**
* Test if a cache is available for the given id and (if yes) return it (false else) * Test if a cache is available for the given id and (if yes) return it (false else)
* *
* Note : return value is always "string" (unserialization is done by the core not by the backend) * Note : return value is always "string" (unserialization is done by the core not by the backend)
* *
* @param string $id cache id * @param string $id cache id
* @param boolean $testCacheValidity if set to false, the cache validity won't be tested * @param boolean $testCacheValidity if set to false, the cache validity won't be tested
* @return string cached datas (or false) * @return string cached datas (or false)
*/ */
public function fetch($id, $testCacheValidity = true) public function fetch($id, $testCacheValidity = true)
{ {
$sql = 'SELECT data, expires FROM cache WHERE id = ?'; $sql = 'SELECT data, expires FROM cache WHERE id = ?';
$params = array($id); $result = $this->getConnection()->fetchAssoc($sql, array($id));
$result = $this->conn->fetchAssoc($sql, $params);
return unserialize($result['data']); return unserialize($result['data']);
} }
/**
* getConnection
* returns the connection object associated with this cache driver
*
* @return Doctrine_Connection connection object
*/
public function getConnection()
{
if (isset($this->_options['connection'])) {
return $this->_options['connection'];
}
throw new Doctrine_Cache_Exception('Connection object not availible. ' .
'For setting the connection use setOption().');
}
/** /**
* Test if a cache is available or not (for the given id) * Test if a cache is available or not (for the given id)
* *
@ -59,7 +76,9 @@ class Doctrine_Cache_Sqlite extends Doctrine_Cache_Driver implements Countable
*/ */
public function contains($id) public function contains($id)
{ {
$sql = 'SELECT expires FROM cache WHERE id = ?';
return $this->getConnection()->fetchOne($sql, array($id));
} }
/** /**
* Save some string datas into a cache record * Save some string datas into a cache record
@ -73,11 +92,11 @@ class Doctrine_Cache_Sqlite extends Doctrine_Cache_Driver implements Countable
*/ */
public function save($data, $id, $lifeTime = false) public function save($data, $id, $lifeTime = false)
{ {
$sql = 'INSERT INTO cache (id, data, expires) VALUES (?, ?, ?)'; $sql = 'INSERT INTO cache (id, data, expires) VALUES (?, ?, ?)';
$params = array($id, serialize($data), (time() + $lifeTime)); $params = array($id, serialize($data), (time() + $lifeTime));
return (bool) $this->conn->exec($sql, $params); return (bool) $this->getConnection()->exec($sql, $params);
} }
/** /**
* Remove a cache record * Remove a cache record
@ -87,9 +106,9 @@ class Doctrine_Cache_Sqlite extends Doctrine_Cache_Driver implements Countable
*/ */
public function delete($id) public function delete($id)
{ {
$sql = 'DELETE FROM cache WHERE id = ?'; $sql = 'DELETE FROM cache WHERE id = ?';
return (bool) $this->conn->exec($sql, array($id)); return (bool) $this->getConnection()->exec($sql, array($id));
} }
/** /**
* count * count
@ -99,6 +118,6 @@ class Doctrine_Cache_Sqlite extends Doctrine_Cache_Driver implements Countable
*/ */
public function count() public function count()
{ {
return (int) $this->conn->fetchOne('SELECT COUNT(*) FROM cache'); return (int) $this->getConnection()->fetchOne('SELECT COUNT(*) FROM cache');
} }
} }