/usr/share/php/Cache/Container/mdb.php is in php-cache 1.5.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | <?php
// +----------------------------------------------------------------------+
// | PEAR :: Cache :: MDB Container |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2003 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Note: This is a MDB-oriented rewrite of Cache/Container/db.php. |
// | Thanks to Lukas Smith for his patience in answering my questions |
// +----------------------------------------------------------------------+
// | Author: Lorenzo Alberton <l.alberton at quipo.it> |
// +----------------------------------------------------------------------+
//
// $Id: mdb.php 174777 2004-12-15 09:09:33Z dufuz $
require_once 'MDB.php';
require_once 'Cache/Container.php';
/**
* PEAR/MDB Cache Container.
*
* NB: The field 'changed' has no meaning for the Cache itself. It's just there
* because it's a good idea to have an automatically updated timestamp
* field for debugging in all of your tables.
*
* A XML MDB-compliant schema example for the table needed is provided.
* Look at the file "mdb_cache_schema.xml" for that.
*
* ------------------------------------------
* A basic usage example:
* ------------------------------------------
*
* $dbinfo = array(
* 'database' => 'dbname',
* 'phptype' => 'mysql',
* 'username' => 'root',
* 'password' => '',
* 'cache_table' => 'cache'
* );
*
*
* $cache = new Cache('mdb', $dbinfo);
* $id = $cache->generateID('testentry');
*
* if ($data = $cache->get($id)) {
* echo 'Cache hit.<br />Data: '.$data;
*
* } else {
* $data = 'data of any kind';
* $cache->save($id, $data);
* echo 'Cache miss.<br />';
* }
*
* ------------------------------------------
*
* @author Lorenzo Alberton <l.alberton at quipo.it>
* @version $Id: mdb.php 174777 2004-12-15 09:09:33Z dufuz $
* @package Cache
*/
class Cache_Container_mdb extends Cache_Container
{
/**
* Name of the MDB table to store caching data
*
* @see Cache_Container_file::$filename_prefix
*/
var $cache_table = '';
/**
* PEAR MDB object
*
* @var object PEAR_MDB
*/
var $db;
/**
* Constructor
*
* @param mixed Array with connection info or dsn string
*/
function Cache_Container_mdb($options)
{
$this->db = &MDB::Connect($options);
if (MDB::isError($this->db)) {
return new Cache_Error('MDB::connect failed: '
. $this->db->getMessage(), __FILE__, __LINE__);
} else {
$this->db->setFetchMode(MDB_FETCHMODE_ASSOC);
}
$this->setOptions($options, array_merge($this->allowed_options,
array('dsn', 'cache_table')));
}
/**
* Fetch in the db the data that matches input parameters
*
* @param string dataset ID
* @param string cache group
* @return mixed dataset value or null/Cache_Error on failure
* @access public
*/
function fetch($id, $group)
{
$query = 'SELECT cachedata FROM ' . $this->cache_table
.' WHERE id=' . $this->db->getTextValue($id)
.' AND cachegroup=' . $this->db->getTextValue($group);
if ($res = $this->db->query($query)) {
if ($this->db->endOfResult($res)) {
//no rows returned
$data = array(null, null, null);
} else {
$clob = $this->db->fetchClob($res,0,'cachedata');
if (!MDB::isError($clob)) {
$cached_data = '';
while(!$this->db->endOfLOB($clob)) {
if (MDB::isError($error =
$this->db->readLob($clob,$data,8000)<0)) {
return new Cache_Error('MDB::query failed: '
. $error->getMessage(), __FILE__, __LINE__);
}
$cached_data .= $data;
}
unset($data);
$this->db->destroyLob($clob);
$this->db->freeResult($res);
//finished fetching LOB, now fetch other fields...
$query = 'SELECT userdata, expires FROM ' . $this->cache_table
.' WHERE id=' . $this->db->getTextValue($id)
.' AND cachegroup=' . $this->db->getTextValue($group);
if ($res = $this->db->query($query)) {
$row = $this->db->fetchInto($res);
if (is_array($row)) {
$data = array(
$row['expires'],
$this->decode($cached_data),
$row['userdata']
);
} else {
$data = array(null, null, null);
}
} else {
$data = array(null, null, null);
}
} else {
return new Cache_Error('MDB::query failed: '
. $clob->getMessage(), __FILE__, __LINE__);
}
}
$this->db->freeResult($res);
} else {
//return new Cache_Error('MDB::query failed: '
// . $result->getMessage(), __FILE__, __LINE__);
$data = array(null, null, null);
}
// last used required by the garbage collection
$query = 'UPDATE ' . $this->cache_table
.' SET changed=' . time()
.' WHERE id=' . $this->db->getTextValue($id)
.' AND cachegroup=' . $this->db->getTextValue($group);
$res = $this->db->query($query);
if (MDB::isError($res)) {
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($res), __FILE__, __LINE__);
}
return $data;
}
/**
* Stores a dataset in the database
*
* If dataset_ID already exists, overwrite it with new data,
* else insert data in a new record.
*
* @param string dataset ID
* @param mixed data to be cached
* @param integer expiration time
* @param string cache group
* @param string userdata
* @access public
*/
function save($id, $data, $expires, $group, $userdata)
{
global $db;
$this->flushPreload($id, $group);
$fields = array(
'id' => array(
'Type' => 'text',
'Value' => $id,
'Key' => true
),
'userdata' => array(
'Type' => 'integer',
'Value' => $userdata,
'null' => ($userdata ? false : true)
),
'expires' => array(
'Type' => 'integer',
'Value' => $this->getExpiresAbsolute($expires)
),
'cachegroup' => array(
'Type' => 'text',
'Value' => $group
)
);
$result = $this->db->replace($this->cache_table, $fields);
if (MDB::isError($result)) {
//Var_Dump::display($result);
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($result), __FILE__, __LINE__);
}
unset($fields); //end first part of query
$query2 = 'UPDATE ' . $this->cache_table
.' SET cachedata=?'
.' WHERE id='. $this->db->getTextValue($id);
if (($prepared_query = $this->db->prepareQuery($query2))) {
$char_lob = array(
'Error' => '',
'Type' => 'data',
'Data' => $this->encode($data)
);
if (!MDB::isError($clob = $this->db->createLob($char_lob))) {
$this->db->setParamClob($prepared_query,1,$clob,'cachedata');
if(MDB::isError($error=$this->db->executeQuery($prepared_query))) {
return new Cache_Error('MDB::query failed: '
. $error->getMessage() , __FILE__, __LINE__);
}
$this->db->destroyLob($clob);
} else {
// creation of the handler object failed
return new Cache_Error('MDB::query failed: '
. $clob->getMessage() , __FILE__, __LINE__);
}
$this->db->freePreparedQuery($prepared_query);
} else {
//prepared query failed
return new Cache_Error('MDB::query failed: '
. $prepared_query->getMessage() , __FILE__, __LINE__);
}
}
/**
* Removes a dataset from the database
*
* @param string dataset ID
* @param string cache group
*/
function remove($id, $group)
{
$this->flushPreload($id, $group);
$query = 'DELETE FROM ' . $this->cache_table
.' WHERE id=' . $this->db->getTextValue($id)
.' AND cachegroup=' . $this->db->getTextValue($group);
$res = $this->db->query($query);
if (MDB::isError($res)) {
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($res), __FILE__, __LINE__);
}
}
/**
* Remove all cached data for a certain group, or empty
* the cache table if no group is specified.
*
* @param string cache group
*/
function flush($group = '')
{
$this->flushPreload();
if ($group) {
$query = 'DELETE FROM ' . $this->cache_table
.' WHERE cachegroup=' . $this->db->getTextValue($group);
} else {
$query = 'DELETE FROM ' . $this->cache_table;
}
$res = $this->db->query($query);
if (MDB::isError($res)) {
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($res), __FILE__, __LINE__);
}
}
/**
* Check if a dataset ID/group exists.
*
* @param string dataset ID
* @param string cache group
* @return boolean
*/
function idExists($id, $group)
{
$query = 'SELECT id FROM ' . $this->cache_table
.' WHERE id=' . $this->db->getTextValue($id)
.' AND cachegroup=' . $this->db->getTextValue($group);
echo $query;
$res = $this->db->query($query);
if (MDB::isError($res)) {
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($res), __FILE__, __LINE__);
}
$row = $this->db->fetchInto($res);
if (is_array($row)) {
return true;
}
return false;
}
/**
* Garbage collector.
*
* @param int maxlifetime
*/
function garbageCollection($maxlifetime)
{
$this->flushPreload();
$query = 'DELETE FROM ' . $this->cache_table
.' WHERE (expires <= ' . time()
.' AND expires > 0) OR changed <= '. time() - $maxlifetime;
$res = $this->db->query($query);
$query = 'SELECT sum(length(cachedata)) as CacheSize FROM '
. $this->cache_table;
$cachesize = $this->db->getOne($query);
if (MDB::isError($cachesize)) {
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($cachesize), __FILE__, __LINE__);
}
//if cache is to big.
if ($cachesize > $this->highwater) {
//find the lowwater mark.
$query = 'SELECT length(cachedata) as size, changed FROM '
. $this->cache_table .' ORDER BY changed DESC';
$res = $this->db->query($query);
if (MDB::isError($res)) {
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($res), __FILE__, __LINE__);
}
$numrows = $this->db->numRows($res);
$keep_size = 0;
while ($keep_size < $this->lowwater && $numrows--) {
$entry = $this->db->fetchInto($res,MDB_FETCHMODE_ASSOC);
$keep_size += $entry['size'];
}
//delete all entries, which were changed before the "lowwater mark"
$query = 'DELETE FROM ' . $this->cache_table
.' WHERE changed<='.($entry['changed'] ? $entry['changed'] : 0);
$res = $this->db->query($query);
if (MDB::isError($res)) {
return new Cache_Error('MDB::query failed: '
. $this->db->errorMessage($res), __FILE__, __LINE__);
}
}
}
}
?>
|