2012-06-04 19:42:59 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-09-18 17:02:25 +04:00
|
|
|
namespace OC;
|
2013-09-17 19:46:33 +04:00
|
|
|
|
|
|
|
class Cache {
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
2013-09-19 00:22:51 +04:00
|
|
|
* @var Cache $user_cache
|
2012-07-22 04:23:24 +04:00
|
|
|
*/
|
2012-06-25 10:53:17 +04:00
|
|
|
static protected $user_cache;
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
2013-09-19 00:22:51 +04:00
|
|
|
* @var Cache $global_cache
|
2012-07-22 04:23:24 +04:00
|
|
|
*/
|
2012-06-25 10:50:13 +04:00
|
|
|
static protected $global_cache;
|
2012-06-04 19:42:59 +04:00
|
|
|
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
|
|
|
* get the global cache
|
2013-09-19 00:22:51 +04:00
|
|
|
* @return Cache
|
2012-07-22 04:23:24 +04:00
|
|
|
*/
|
2013-03-17 19:00:39 +04:00
|
|
|
static public function getGlobalCache() {
|
2012-06-25 10:50:13 +04:00
|
|
|
if (!self::$global_cache) {
|
2013-09-18 17:02:25 +04:00
|
|
|
self::$global_cache = new Cache\FileGlobal();
|
2012-06-25 10:50:13 +04:00
|
|
|
}
|
|
|
|
return self::$global_cache;
|
|
|
|
}
|
|
|
|
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
|
|
|
* get the user cache
|
2013-09-19 00:22:51 +04:00
|
|
|
* @return Cache
|
2012-07-22 04:23:24 +04:00
|
|
|
*/
|
2013-03-17 19:00:39 +04:00
|
|
|
static public function getUserCache() {
|
2012-06-25 10:53:17 +04:00
|
|
|
if (!self::$user_cache) {
|
2013-09-18 17:02:25 +04:00
|
|
|
self::$user_cache = new Cache\File();
|
2012-06-06 23:58:36 +04:00
|
|
|
}
|
2012-06-25 10:53:17 +04:00
|
|
|
return self::$user_cache;
|
2012-06-04 19:42:59 +04:00
|
|
|
}
|
|
|
|
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
|
|
|
* get a value from the user cache
|
2013-03-17 19:00:39 +04:00
|
|
|
* @param string $key
|
2012-07-22 04:23:24 +04:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2012-06-04 19:42:59 +04:00
|
|
|
static public function get($key) {
|
2012-06-25 10:53:17 +04:00
|
|
|
$user_cache = self::getUserCache();
|
|
|
|
return $user_cache->get($key);
|
2012-06-04 19:42:59 +04:00
|
|
|
}
|
|
|
|
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
|
|
|
* set a value in the user cache
|
2013-03-17 19:00:39 +04:00
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @param int $ttl
|
2012-07-22 04:23:24 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-06-04 19:42:59 +04:00
|
|
|
static public function set($key, $value, $ttl=0) {
|
|
|
|
if (empty($key)) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-06-25 10:53:17 +04:00
|
|
|
$user_cache = self::getUserCache();
|
|
|
|
return $user_cache->set($key, $value, $ttl);
|
2012-06-04 19:42:59 +04:00
|
|
|
}
|
|
|
|
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
|
|
|
* check if a value is set in the user cache
|
2013-03-17 19:00:39 +04:00
|
|
|
* @param string $key
|
2012-07-22 04:23:24 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-06-05 22:21:06 +04:00
|
|
|
static public function hasKey($key) {
|
2012-06-25 10:53:17 +04:00
|
|
|
$user_cache = self::getUserCache();
|
|
|
|
return $user_cache->hasKey($key);
|
2012-06-05 22:21:06 +04:00
|
|
|
}
|
|
|
|
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
|
|
|
* remove an item from the user cache
|
2013-03-17 19:00:39 +04:00
|
|
|
* @param string $key
|
2012-07-22 04:23:24 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-06-04 19:42:59 +04:00
|
|
|
static public function remove($key) {
|
2012-06-25 10:53:17 +04:00
|
|
|
$user_cache = self::getUserCache();
|
|
|
|
return $user_cache->remove($key);
|
2012-06-04 19:42:59 +04:00
|
|
|
}
|
|
|
|
|
2012-07-22 04:23:24 +04:00
|
|
|
/**
|
2012-07-22 04:31:43 +04:00
|
|
|
* clear the user cache of all entries starting with a prefix
|
2013-09-19 00:22:51 +04:00
|
|
|
* @param string $prefix (optional)
|
2012-07-22 04:23:24 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-07-22 04:31:43 +04:00
|
|
|
static public function clear($prefix='') {
|
2012-06-25 10:53:17 +04:00
|
|
|
$user_cache = self::getUserCache();
|
2012-07-22 04:31:43 +04:00
|
|
|
return $user_cache->clear($prefix);
|
2012-06-05 21:57:49 +04:00
|
|
|
}
|
|
|
|
|
2013-09-19 00:22:51 +04:00
|
|
|
/**
|
|
|
|
* creates cache key based on the files given
|
|
|
|
* @param $files
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-10-28 20:49:43 +04:00
|
|
|
static public function generateCacheKeyFromFiles($files) {
|
|
|
|
$key = '';
|
|
|
|
sort($files);
|
|
|
|
foreach($files as $file) {
|
|
|
|
$stat = stat($file);
|
|
|
|
$key .= $file.$stat['mtime'].$stat['size'];
|
|
|
|
}
|
|
|
|
return md5($key);
|
|
|
|
}
|
2012-06-04 19:42:59 +04:00
|
|
|
}
|