]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/APC/APCPlugin.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / APC / APCPlugin.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009, StatusNet, Inc.
5  *
6  * Plugin to implement cache interface for APC variable cache
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  Cache
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2009 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 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  * A plugin to use APC's variable cache for the cache interface
39  *
40  * New plugin interface lets us use alternative cache systems
41  * for caching. This one uses APC's variable cache.
42  *
43  * @category  Cache
44  * @package   StatusNet
45  * @author    Evan Prodromou <evan@status.net>
46  * @copyright 2009 StatusNet, Inc.
47  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
48  * @link      http://status.net/
49  */
50
51 class APCPlugin extends Plugin
52 {
53     /**
54      * Get a value associated with a key
55      *
56      * The value should have been set previously.
57      *
58      * @param string &$key   in; Lookup key
59      * @param mixed  &$value out; value associated with key
60      *
61      * @return boolean hook success
62      */
63     function onStartCacheGet(&$key, &$value)
64     {
65         $value = apc_fetch($key);
66         Event::handle('EndCacheGet', array($key, &$value));
67         return false;
68     }
69
70     /**
71      * Associate a value with a key
72      *
73      * @param string  &$key     in; Key to use for lookups
74      * @param mixed   &$value   in; Value to associate
75      * @param integer &$flag    in; Flag (passed through to Memcache)
76      * @param integer &$expiry  in; Expiry (passed through to Memcache)
77      * @param boolean &$success out; Whether the set was successful
78      *
79      * @return boolean hook success
80      */
81     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
82     {
83         $success = apc_store($key, $value, ((is_null($expiry)) ? 0 : $expiry));
84
85         Event::handle('EndCacheSet', array($key, $value, $flag,
86                                            $expiry));
87         return false;
88     }
89
90     /**
91      * Delete a value associated with a key
92      *
93      * @param string  &$key     in; Key to lookup
94      * @param boolean &$success out; whether it worked
95      *
96      * @return boolean hook success
97      */
98     function onStartCacheDelete(&$key, &$success)
99     {
100         $success = apc_delete($key);
101         Event::handle('EndCacheDelete', array($key));
102         return false;
103     }
104
105     function onPluginVersion(array &$versions)
106     {
107         $versions[] = array('name' => 'APC',
108                             'version' => GNUSOCIAL_VERSION,
109                             'author' => 'Evan Prodromou',
110                             'homepage' => 'http://status.net/wiki/Plugin:APC',
111                             'rawdescription' =>
112                             // TRANS: Plugin description.
113                             _m('Use the <a href="http://pecl.php.net/package/apc">APC</a> variable cache to cache query results.'));
114         return true;
115     }
116 }