2011-03-25 07:04:19 +09:00
|
|
|
<?php
|
2020-07-07 00:12:50 +09:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social 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
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2011-03-25 07:04:19 +09:00
|
|
|
/**
|
|
|
|
* A stream of notices
|
2011-03-25 18:02:02 +09:00
|
|
|
*
|
2011-03-25 07:04:19 +09:00
|
|
|
* @category Stream
|
2020-07-07 00:12:50 +09:00
|
|
|
* @package GNUsocial
|
2011-03-25 07:04:19 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2020-07-07 00:12:50 +09:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-03-25 07:04:19 +09:00
|
|
|
*/
|
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
defined('GNUSOCIAL') || die();
|
2011-03-25 07:04:19 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for notice streams
|
|
|
|
*
|
|
|
|
* @category Stream
|
2020-07-07 00:12:50 +09:00
|
|
|
* @package GNUsocial
|
2011-03-25 07:04:19 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2020-07-07 00:12:50 +09:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-03-25 07:04:19 +09:00
|
|
|
*/
|
|
|
|
|
|
|
|
class CachingNoticeStream extends NoticeStream
|
|
|
|
{
|
|
|
|
const CACHE_WINDOW = 200;
|
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
public $stream = null;
|
|
|
|
public $cachekey = null;
|
|
|
|
public $useLast = true;
|
|
|
|
public $alwaysCheck = true;
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
NoticeStream $stream,
|
|
|
|
string $cachekey,
|
|
|
|
bool $useLast = true,
|
|
|
|
bool $alwaysCheck = false
|
|
|
|
) {
|
|
|
|
$this->stream = $stream;
|
|
|
|
$this->cachekey = $cachekey;
|
|
|
|
$this->useLast = $useLast;
|
|
|
|
$this->alwaysCheck = $alwaysCheck;
|
|
|
|
}
|
2011-03-25 07:04:19 +09:00
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
private function getCacheNoticeIds(
|
|
|
|
Cache $cache,
|
|
|
|
string $idkey,
|
|
|
|
bool $check = false
|
|
|
|
): ?array {
|
|
|
|
$id_str = $cache->get($idkey);
|
|
|
|
|
|
|
|
if ($id_str === false) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$ids = explode(',', $id_str);
|
|
|
|
|
|
|
|
if ($check) {
|
|
|
|
$latest_id = $ids[0];
|
|
|
|
$new_ids = $this->stream->getNoticeIds(
|
|
|
|
0,
|
|
|
|
self::CACHE_WINDOW,
|
|
|
|
$latest_id,
|
|
|
|
null
|
|
|
|
);
|
|
|
|
|
|
|
|
$ids = array_merge($new_ids, $ids);
|
|
|
|
$ids = array_slice($ids, 0, self::CACHE_WINDOW);
|
|
|
|
|
|
|
|
$new_id_str = implode(',', $ids);
|
|
|
|
if ($id_str !== $new_id_str) {
|
|
|
|
$cache->set($idkey, $new_id_str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $ids;
|
2011-03-25 07:04:19 +09:00
|
|
|
}
|
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
public function getNoticeIds($offset, $limit, $sinceId, $maxId)
|
2011-03-25 07:04:19 +09:00
|
|
|
{
|
|
|
|
$cache = Cache::instance();
|
|
|
|
|
|
|
|
// We cache self::CACHE_WINDOW elements at the tip of the stream.
|
|
|
|
// If the cache won't be hit, just generate directly.
|
|
|
|
|
|
|
|
if (empty($cache) ||
|
|
|
|
$sinceId != 0 || $maxId != 0 ||
|
|
|
|
is_null($limit) ||
|
|
|
|
($offset + $limit) > self::CACHE_WINDOW) {
|
|
|
|
return $this->stream->getNoticeIds($offset, $limit, $sinceId, $maxId);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the cache to see if we have the stream.
|
|
|
|
|
|
|
|
$idkey = Cache::key($this->cachekey);
|
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
$ids = $this->getCacheNoticeIds($cache, $idkey, $this->alwaysCheck);
|
2011-03-25 07:04:19 +09:00
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
if (!is_null($ids)) {
|
2011-03-25 07:04:19 +09:00
|
|
|
// Cache hit! Woohoo!
|
2020-07-07 00:12:50 +09:00
|
|
|
return array_slice($ids, $offset, $limit);
|
2011-03-25 07:04:19 +09:00
|
|
|
}
|
|
|
|
|
2011-10-20 23:40:39 +09:00
|
|
|
if ($this->useLast) {
|
|
|
|
// Check the cache to see if we have a "last-known-good" version.
|
|
|
|
// The actual cache gets blown away when new notices are added, but
|
|
|
|
// the "last" value holds a lot of info. We might need to only generate
|
|
|
|
// a few at the "tip", which can bound our queries and save lots
|
|
|
|
// of time.
|
2011-03-25 07:04:19 +09:00
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
$ids = $this->getCacheNoticeIds($cache, $idkey . ';last', true);
|
2011-03-25 07:04:19 +09:00
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
if (!is_null($ids)) {
|
|
|
|
// Set the actual cache value as well
|
|
|
|
$id_str = implode(',', $ids);
|
|
|
|
$cache->set($idkey, $id_str);
|
2011-03-25 07:04:19 +09:00
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
return array_slice($ids, $offset, $limit);
|
2011-10-20 23:40:39 +09:00
|
|
|
}
|
2011-03-25 07:04:19 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// No cache hits :( Generate directly and stick the results
|
|
|
|
// into the cache. Note we generate the full cache window.
|
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
$window = $this->stream->getNoticeIds(0, self::CACHE_WINDOW, null, null);
|
2011-03-25 07:04:19 +09:00
|
|
|
|
|
|
|
$windowstr = implode(',', $window);
|
|
|
|
|
2020-07-07 00:12:50 +09:00
|
|
|
$cache->set($idkey, $windowstr);
|
2011-10-20 23:40:39 +09:00
|
|
|
|
|
|
|
if ($this->useLast) {
|
2020-07-07 00:12:50 +09:00
|
|
|
$cache->set($idkey . ';last', $windowstr);
|
2011-10-20 23:40:39 +09:00
|
|
|
}
|
2011-03-25 07:04:19 +09:00
|
|
|
|
|
|
|
// Return just the slice that was requested
|
2020-07-07 00:12:50 +09:00
|
|
|
return array_slice($window, $offset, $limit);
|
2011-03-25 07:04:19 +09:00
|
|
|
}
|
|
|
|
}
|