]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/cachingnoticestream.php
Merge commit 'refs/merge-requests/164' of git://gitorious.org/statusnet/mainline...
[quix0rs-gnu-social.git] / lib / cachingnoticestream.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * A stream of notices
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Stream
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Class for notice streams
39  *
40  * @category  Stream
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47
48 class CachingNoticeStream extends NoticeStream
49 {
50     const CACHE_WINDOW = 200;
51
52     public $stream   = null;
53     public $cachekey = null;
54
55     function __construct($stream, $cachekey)
56     {
57         $this->stream   = $stream;
58         $this->cachekey = $cachekey;
59     }
60
61     function getNoticeIds($offset, $limit, $sinceId, $maxId)
62     {
63         $cache = Cache::instance();
64
65         // We cache self::CACHE_WINDOW elements at the tip of the stream.
66         // If the cache won't be hit, just generate directly.
67
68         if (empty($cache) ||
69             $sinceId != 0 || $maxId != 0 ||
70             is_null($limit) ||
71             ($offset + $limit) > self::CACHE_WINDOW) {
72             return $this->stream->getNoticeIds($offset, $limit, $sinceId, $maxId);
73         }
74
75         // Check the cache to see if we have the stream.
76
77         $idkey = Cache::key($this->cachekey);
78
79         $idstr = $cache->get($idkey);
80
81         if ($idstr !== false) {
82             // Cache hit! Woohoo!
83             $window = explode(',', $idstr);
84             $ids = array_slice($window, $offset, $limit);
85             return $ids;
86         }
87
88         // Check the cache to see if we have a "last-known-good" version.
89         // The actual cache gets blown away when new notices are added, but
90         // the "last" value holds a lot of info. We might need to only generate
91         // a few at the "tip", which can bound our queries and save lots
92         // of time.
93
94         $laststr = $cache->get($idkey.';last');
95
96         if ($laststr !== false) {
97             $window = explode(',', $laststr);
98             $last_id = $window[0];
99             $new_ids = $this->stream->getNoticeIds(0, self::CACHE_WINDOW, $last_id, 0);
100
101             $new_window = array_merge($new_ids, $window);
102
103             $new_windowstr = implode(',', $new_window);
104
105             $result = $cache->set($idkey, $new_windowstr);
106             $result = $cache->set($idkey . ';last', $new_windowstr);
107
108             $ids = array_slice($new_window, $offset, $limit);
109
110             return $ids;
111         }
112
113         // No cache hits :( Generate directly and stick the results
114         // into the cache. Note we generate the full cache window.
115
116         $window = $this->stream->getNoticeIds(0, self::CACHE_WINDOW, 0, 0);
117
118         $windowstr = implode(',', $window);
119
120         $result = $cache->set($idkey, $windowstr);
121         $result = $cache->set($idkey . ';last', $windowstr);
122
123         // Return just the slice that was requested
124
125         $ids = array_slice($window, $offset, $limit);
126
127         return $ids;
128     }
129 }