joomla-platform / libraries / joomla / cache / storage / memcache.php

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<?php
/**
 * @package     Joomla.Platform
 * @subpackage  Cache
 *
 * @copyright   Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE
 */

defined('JPATH_PLATFORM') or die;

/**
 * Memcache cache storage handler
 *
 * @package     Joomla.Platform
 * @subpackage  Cache
 * @since       11.1
 */
class JCacheStorageMemcache extends JCacheStorage
{
    /**
     * @since   11.1
     */
    private static $_db = null;

    /**
     * @since   11.1
     */
    private $_persistent = false;

    /**
     * @since   11.1
     */
    private $_compress = 0;

    /**
     * Constructor
     *
     * @param   array   $options optional parameters
     * @since   11.1
     */
    public function __construct($options = array())
    {
        parent::__construct($options);
        if (self::$_db === null) {
            $this->getConnection();
        }
    }

    /**
     * return memcache connection object
     *
     * @return  object  memcache connection object
     * @since   11.1
     */
    private function getConnection()
    {
        if ((extension_loaded('memcache') && class_exists('Memcache')) != true ) {
            return false;
        }

        $config = JFactory::getConfig();
        $this->_persistent  = $config->get('memcache_persist', true);
        $this->_compress = $config->get('memcache_compress', false) == false ? 0 : MEMCACHE_COMPRESSED;

        // This will be an array of loveliness
        // @todo: multiple servers
        //$servers  = (isset($params['servers'])) ? $params['servers'] : array();
        $server=array();
        $server['host'] = $config->get('memcache_server_host', 'localhost');
        $server['port'] = $config->get('memcache_server_port', 11211);
        // Create the memcache connection
        self::$_db = new Memcache;
        self::$_db->addServer($server['host'], $server['port'], $this->_persistent);

        $memcachetest = @self::$_db->connect($server['host'], $server['port']);
        if ($memcachetest == false) {
            return JError::raiseError(404, "Could not connect to memcache server");
        }

        // memcahed has no list keys, we do our own accounting, initalise key index
        if (self::$_db->get($this->_hash.'-index') === false) {
            $empty = array();
            self::$_db->set($this->_hash.'-index', $empty , $this->_compress, 0);
        }

        return;
    }

    /**
     * Get cached data from memcache by id and group
     *
     * @param   string  $id         The cache data id
     * @param   string  $group      The cache data group
     * @param   boolean $checkTime  True to verify cache time expiration threshold
     * @return  mixed   Boolean false on failure or a cached data string
     * @since   11.1
     */
    public function get($id, $group, $checkTime = true)
    {
        $cache_id = $this->_getCacheId($id, $group);
        $back = self::$_db->get($cache_id);
        return $back;
    }

    /**
     * Get all cached data
     *
     * @return  array data
     * @since   11.1
     */
    public function getAll()
    {
        parent::getAll();

        $keys = self::$_db->get($this->_hash.'-index');
        $secret = $this->_hash;

        $data = array();

        if (!empty($keys)){
            foreach ($keys as $key) {
                if (empty($key)) {
                    continue;
                }
                $namearr=explode('-',$key->name);

                if ($namearr !== false && $namearr[0]==$secret &&  $namearr[1]=='cache') {

                    $group = $namearr[2];

                    if (!isset($data[$group])) {
                        $item = new JCacheStorageHelper($group);
                    } else {
                        $item = $data[$group];
                    }

                    $item->updateSize($key->size/1024);

                    $data[$group] = $item;
                }
            }
        }

        return $data;
    }

    /**
     * Store the data to memcache by id and group
     *
     * @param   string  $id     The cache data id
     * @param   string  $group  The cache data group
     * @param   string  $data   The data to store in cache
     * @return  boolean True on success, false otherwise
     * @since   11.1
     */
    public function store($id, $group, $data)
    {
        $cache_id = $this->_getCacheId($id, $group);

        if (!$this->lockindex()) {
            return false;
        }

        $index = self::$_db->get($this->_hash.'-index');
        if ($index === false) {
            $index = array();
        }

        $tmparr = new stdClass;
        $tmparr->name = $cache_id;
        $tmparr->size = strlen($data);
        $index[] = $tmparr;
        self::$_db->replace($this->_hash.'-index', $index , 0, 0);
        $this->unlockindex();

        // prevent double writes, write only if it doesn't exist else replace
        if (!self::$_db->replace($cache_id, $data, $this->_compress, $this->_lifetime)) {
            self::$_db->set($cache_id, $data, $this->_compress, $this->_lifetime);
        }

        return true;
    }

    /**
     * Remove a cached data entry by id and group
     *
     * @param   string  $id     The cache data id
     * @param   string  $group  The cache data group
     * @return  boolean True on success, false otherwise
     * @since   11.1
     */
    public function remove($id, $group)
    {
        $cache_id = $this->_getCacheId($id, $group);

        if (!$this->lockindex()) {
            return false;
        }

        $index = self::$_db->get($this->_hash.'-index');
        if ($index === false) {
            $index = array();
        }

        foreach ($index as $key => $value) {
            if ($value->name == $cache_id) unset ($index[$key]);
            break;
        }
        self::$_db->replace($this->_hash.'-index', $index, 0, 0);
        $this->unlockindex();

        return self::$_db->delete($cache_id);
    }

    /**
     * Clean cache for a group given a mode.
     *
     * group mode       : cleans all cache in the group
     * notgroup mode    : cleans all cache not in the group
     *
     * @param   string  $group  The cache data group
     * @param   string  $mode   The mode for cleaning cache [group|notgroup]
     * @return  boolean True on success, false otherwise
     * @since   11.1
     */
    public function clean($group, $mode = null)
    {
        if (!$this->lockindex()) {
            return false;
        }

        $index = self::$_db->get($this->_hash.'-index');
        if ($index === false) {
            $index = array();
        }

        $secret = $this->_hash;
        foreach ($index as $key=>$value) {

            if (strpos($value->name, $secret.'-cache-'.$group.'-')===0 xor $mode != 'group') {
                self::$_db->delete($value->name,0);
                unset ($index[$key]);
            }
        }
        self::$_db->replace($this->_hash.'-index', $index , 0, 0);
        $this->unlockindex();
        return true;
    }

    /**
     * Test to see if the cache storage is available.
     *
     * @return  boolean True on success, false otherwise.
     */
    public static function test()
    {
        if ((extension_loaded('memcache') && class_exists('Memcache')) != true ) {
            return false;
        }

        $config = JFactory::getConfig();
        $host = $config->get('memcache_server_host', 'localhost');
        $port = $config->get('memcache_server_port', 11211);

        $memcache = new Memcache;
        $memcachetest = @$memcache->connect($host, $port);

         if (!$memcachetest) {
            return false;
         } else {
            return true;
         }
    }

    /**
     * Lock cached item - override parent as this is more efficient
     *
     * @param   string  $id     The cache data id
     * @param   string  $group  The cache data group
     * @param   integer $locktime Cached item max lock time
     * @return  boolean True on success, false otherwise.
     * @since   11.1
     */
    public function lock($id,$group,$locktime)
    {
        $returning = new stdClass();
        $returning->locklooped = false;

        $looptime = $locktime * 10;

        $cache_id = $this->_getCacheId($id, $group);

        if (!$this->lockindex()) {
            return false;
        }

        $index = self::$_db->get($this->_hash.'-index');
        if ($index === false) {
            $index = array();
        }

        $tmparr = new stdClass;
        $tmparr->name = $cache_id;
        $tmparr->size = 1;
        $index[] = $tmparr;
        self::$_db->replace($this->_hash.'-index', $index , 0, 0);
        $this->unlockindex();

        $data_lock = self::$_db->add($cache_id.'_lock', 1, false, $locktime);

        if ($data_lock === FALSE) {

            $lock_counter = 0;

            // loop until you find that the lock has been released.  that implies that data get from other thread has finished
            while ($data_lock === FALSE) {

                if ($lock_counter > $looptime) {
                        $returning->locked      = false;
                        $returning->locklooped  = true;
                    break;
                }

                usleep(100);
                $data_lock = self::$_db->add($cache_id.'_lock', 1, false, $locktime);
                $lock_counter++;
            }

        }
        $returning->locked = $data_lock;

        return $returning;
    }

    /**
     * Unlock cached item - override parent for cacheid compatibility with lock
     *
     * @param   string  $id     The cache data id
     * @param   string  $group  The cache data group
     * @param   integer $locktime Cached item max lock time
     * @since   11.1
     * @return boolean  True on success, false otherwise.
     */
    public function unlock($id,$group=null)
    {
        $unlock = false;

        $cache_id = $this->_getCacheId($id, $group).'_lock';

        if (!$this->lockindex()) return false;

        $index = self::$_db->get($this->_hash.'-index');
        if ($index === false) {$index = array();}

        foreach ($index as $key=>$value){
        if ($value->name == $cache_id) unset ($index[$key]);
        break;
        }
        self::$_db->replace($this->_hash.'-index', $index, 0, 0);
        $this->unlockindex();

        return self::$_db->delete($cache_id);
    }


    /**
     * Lock cache index
     *
     * @since   11.1
     * @return boolean  True on success, false otherwise.
     */
    private function lockindex()
    {
        $looptime   = 300;
        $data_lock  = self::$_db->add($this->_hash.'-index_lock', 1, false, 30);

        if ($data_lock === FALSE) {

            $lock_counter = 0;

            // loop until you find that the lock has been released.  that implies that data get from other thread has finished
            while ( $data_lock === FALSE ) {

                if ( $lock_counter > $looptime ) {
                    return false;
                    break;
                }

                usleep(100);
                $data_lock = self::$_db->add($this->_hash.'-index_lock', 1, false, 30);
                $lock_counter++;
            }
        }

        return true;
    }

    /**
     * Unlock cache index
     *
     * @return  boolean True on success, false otherwise.
     * @since   11.1
     */
    private function unlockindex()
    {
        return self::$_db->delete($this->_hash.'-index_lock');
    }
}
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.