(dev/core#174) CRM_Utils_Cache_Interface::get() 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
75 *
76 * @return bool
77 */
00be9182 78 public function set($key, &$value) {
6a488035
TO
79 if (!apc_store($this->_prefix . $key, $value, $this->_timeout)) {
80 return FALSE;
81 }
82 return TRUE;
83 }
84
5bc392e6
EM
85 /**
86 * @param $key
2da67cc5 87 * @param mixed $default
5bc392e6
EM
88 *
89 * @return mixed
90 */
2da67cc5
TO
91 public function get($key, $default = NULL) {
92 if ($default !== NULL) {
93 throw new \RuntimeException("FIXME: " . __CLASS__ . "::get() only supports NULL default");
94 }
6a488035
TO
95 return apc_fetch($this->_prefix . $key);
96 }
97
5bc392e6
EM
98 /**
99 * @param $key
100 *
101 * @return bool|string[]
102 */
00be9182 103 public function delete($key) {
6a488035
TO
104 return apc_delete($this->_prefix . $key);
105 }
106
00be9182 107 public function flush() {
6a488035
TO
108 $allinfo = apc_cache_info('user');
109 $keys = $allinfo['cache_list'];
110 $prefix = $this->_prefix . "CRM_"; // Our keys follows this pattern: ([A-Za-z0-9_]+)?CRM_[A-Za-z0-9_]+
111 $lp = strlen($prefix); // Get prefix length
112
113 foreach ($keys as $key) {
114 $name = $key['info'];
6c552737 115 if ($prefix == substr($name, 0, $lp)) {
a1a2a83d 116 // Ours?
6a488035
TO
117 apc_delete($this->_prefix . $name);
118 }
119 }
120 }
96025800 121
6a488035 122}