XCachePlugin.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 XCache 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. if (!defined('STATUSNET')) {
  31. // This check helps protect against security problems;
  32. // your code file can't be executed directly from the web.
  33. exit(1);
  34. }
  35. /**
  36. * A plugin to use XCache's variable cache for the cache interface
  37. *
  38. * New plugin interface lets us use alternative cache systems
  39. * for caching. This one uses XCache's variable cache.
  40. *
  41. * @category Cache
  42. * @package StatusNet
  43. * @author Evan Prodromou <evan@status.net>
  44. * @copyright 2009 StatusNet, Inc.
  45. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  46. * @link http://status.net/
  47. */
  48. class XCachePlugin extends Plugin
  49. {
  50. /**
  51. * Get a value associated with a key
  52. *
  53. * The value should have been set previously.
  54. *
  55. * @param string &$key in; Lookup key
  56. * @param mixed &$value out; value associated with key
  57. *
  58. * @return boolean hook success
  59. */
  60. function onStartCacheGet(&$key, &$value)
  61. {
  62. if (!xcache_isset($key)) {
  63. $value = false;
  64. } else {
  65. $value = xcache_get($key);
  66. $value = unserialize($value);
  67. }
  68. Event::handle('EndCacheGet', array($key, &$value));
  69. return false;
  70. }
  71. /**
  72. * Associate a value with a key
  73. *
  74. * @param string &$key in; Key to use for lookups
  75. * @param mixed &$value in; Value to associate
  76. * @param integer &$flag in; Flag (passed through to Memcache)
  77. * @param integer &$expiry in; Expiry (passed through to Memcache)
  78. * @param boolean &$success out; Whether the set was successful
  79. *
  80. * @return boolean hook success
  81. */
  82. function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
  83. {
  84. $success = xcache_set($key, serialize($value));
  85. Event::handle('EndCacheSet', array($key, $value, $flag,
  86. $expiry));
  87. return false;
  88. }
  89. /**
  90. * Delete a value associated with a key
  91. *
  92. * @param string &$key in; Key to lookup
  93. * @param boolean &$success out; whether it worked
  94. *
  95. * @return boolean hook success
  96. */
  97. function onStartCacheDelete(&$key, &$success)
  98. {
  99. $success = xcache_unset($key);
  100. Event::handle('EndCacheDelete', array($key));
  101. return false;
  102. }
  103. function onPluginVersion(&$versions)
  104. {
  105. $versions[] = array('name' => 'XCache',
  106. 'version' => GNUSOCIAL_VERSION,
  107. 'author' => 'Craig Andrews',
  108. 'homepage' => 'http://status.net/wiki/Plugin:XCache',
  109. 'rawdescription' =>
  110. // TRANS: Plugin description.
  111. _m('Use the <a href="http://xcache.lighttpd.net/">XCache</a> variable cache to cache query results.'));
  112. return true;
  113. }
  114. }