2012-06-04 19:42:59 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2012-06-04 19:42:59 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
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
|
2014-02-28 16:53:41 +04:00
|
|
|
* @param string[] $files
|
2013-09-19 00:22:51 +04:00
|
|
|
* @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
|
|
|
}
|