(dev/core#174) CRM_Utils_Cache_Interface::set() should match PSR-16
[civicrm-core.git] / CRM / Utils / Cache / APCcache.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035 32 */
9f49773e 33class CRM_Utils_Cache_APCcache implements CRM_Utils_Cache_Interface {
6a488035 34 const DEFAULT_TIMEOUT = 3600;
353ffa53 35 const DEFAULT_PREFIX = '';
6a488035
TO
36
37 /**
fe482240 38 * The default timeout to use.
6a488035
TO
39 *
40 * @var int
41 */
42 protected $_timeout = self::DEFAULT_TIMEOUT;
43
44 /**
45 * The prefix prepended to cache keys.
46 *
47 * If we are using the same memcache instance for multiple CiviCRM
48 * installs, we must have a unique prefix for each install to prevent
49 * the keys from clobbering each other.
50 *
51 * @var string
52 */
53 protected $_prefix = self::DEFAULT_PREFIX;
54
55 /**
fe482240 56 * Constructor.
6a488035 57 *
77855840
TO
58 * @param array $config
59 * An array of configuration params.
6a488035 60 *
77b97be7 61 * @return \CRM_Utils_Cache_APCcache
6a488035 62 */
00be9182 63 public function __construct(&$config) {
6a488035
TO
64 if (isset($config['timeout'])) {
65 $this->_timeout = intval($config['timeout']);
66 }
67 if (isset($config['prefix'])) {
68 $this->_prefix = $config['prefix'];
69 }
70 }
71
5bc392e6
EM
72 /**
73 * @param $key
74 * @param $value
858451a9 75 * @param null|int|\DateInterval $ttl
5bc392e6
EM
76 *
77 * @return bool
78 */
858451a9
TO
79 public function set($key, $value, $ttl = NULL) {
80 if ($ttl !== NULL) {
81 throw new \RuntimeException("FIXME: " . __CLASS__ . "::set() should support non-NULL TTL");
82 }
6a488035
TO
83 if (!apc_store($this->_prefix . $key, $value, $this->_timeout)) {
84 return FALSE;
85 }
86 return TRUE;
87 }
88
5bc392e6
EM
89 /**
90 * @param $key
2da67cc5 91 * @param mixed $default
5bc392e6
EM
92 *
93 * @return mixed
94 */
2da67cc5
TO
95 public function get($key, $default = NULL) {
96 if ($default !== NULL) {
97 throw new \RuntimeException("FIXME: " . __CLASS__ . "::get() only supports NULL default");
98 }
6a488035
TO
99 return apc_fetch($this->_prefix . $key);
100 }
101
5bc392e6
EM
102 /**
103 * @param $key
104 *
105 * @return bool|string[]
106 */
00be9182 107 public function delete($key) {
6a488035
TO
108 return apc_delete($this->_prefix . $key);
109 }
110
00be9182 111 public function flush() {
6a488035
TO
112 $allinfo = apc_cache_info('user');
113 $keys = $allinfo['cache_list'];
114 $prefix = $this->_prefix . "CRM_"; // Our keys follows this pattern: ([A-Za-z0-9_]+)?CRM_[A-Za-z0-9_]+
115 $lp = strlen($prefix); // Get prefix length
116
117 foreach ($keys as $key) {
118 $name = $key['info'];
6c552737 119 if ($prefix == substr($name, 0, $lp)) {
a1a2a83d 120 // Ours?
6a488035
TO
121 apc_delete($this->_prefix . $name);
122 }
123 }
124 }
96025800 125
6a488035 126}