(dev/core#174) CRM_Utils_Cache_Interface::get() should match PSR-16
[civicrm-core.git] / CRM / Utils / Cache / SerializeCache.php
CommitLineData
6a488035 1<?php
450f494d 2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
50bfb460 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
50bfb460
SB
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 +--------------------------------------------------------------------+
26 */
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
e70a7fc0 32 */
6a488035 33
5bc392e6
EM
34/**
35 * Class CRM_Utils_Cache_SerializeCache
36 */
6a488035
TO
37class CRM_Utils_Cache_SerializeCache implements CRM_Utils_Cache_Interface {
38
39 /**
40 * The cache storage container, an array by default, stored in a file under templates
41 */
42 private $_cache;
43
44 /**
fe482240 45 * Constructor.
6a488035 46 *
77855840
TO
47 * @param array $config
48 * An array of configuration params.
6a488035 49 *
77b97be7 50 * @return \CRM_Utils_Cache_SerializeCache
6a488035 51 */
00be9182 52 public function __construct($config) {
6a488035
TO
53 $this->_cache = array();
54 }
55
5bc392e6
EM
56 /**
57 * @param $key
58 *
59 * @return string
60 */
353ffa53 61 public function fileName($key) {
e7292422 62 if (strlen($key) > 50) {
86bfa4f6 63 return CIVICRM_TEMPLATE_COMPILEDIR . "CRM_" . md5($key) . ".php";
e7292422 64 }
86bfa4f6 65 return CIVICRM_TEMPLATE_COMPILEDIR . $key . ".php";
6a488035
TO
66 }
67
5bc392e6
EM
68 /**
69 * @param string $key
2da67cc5 70 * @param mixed $default
5bc392e6
EM
71 *
72 * @return mixed
73 */
2da67cc5
TO
74 public function get($key, $default = NULL) {
75 if ($default !== NULL) {
76 throw new \RuntimeException("FIXME: " . __CLASS__ . "::get() only supports NULL default");
77 }
78
e7292422 79 if (array_key_exists($key, $this->_cache)) {
6a488035 80 return $this->_cache[$key];
e7292422 81 }
6a488035 82
e7292422 83 if (!file_exists($this->fileName($key))) {
6a488035
TO
84 return;
85 }
e7292422 86 $this->_cache[$key] = unserialize(substr(file_get_contents($this->fileName($key)), 8));
6a488035
TO
87 return $this->_cache[$key];
88 }
89
5bc392e6
EM
90 /**
91 * @param string $key
92 * @param mixed $value
93 */
00be9182 94 public function set($key, &$value) {
e7292422 95 if (file_exists($this->fileName($key))) {
6a488035
TO
96 return;
97 }
98 $this->_cache[$key] = $value;
92fcb95f 99 file_put_contents($this->fileName($key), "<?php //" . serialize($value));
6a488035
TO
100 }
101
5bc392e6
EM
102 /**
103 * @param string $key
104 */
00be9182 105 public function delete($key) {
e7292422
TO
106 if (file_exists($this->fileName($key))) {
107 unlink($this->fileName($key));
6a488035
TO
108 }
109 unset($this->_cache[$key]);
110 }
111
5bc392e6
EM
112 /**
113 * @param null $key
114 */
e7292422 115 public function flush($key = NULL) {
6a488035
TO
116 $prefix = "CRM_";
117 if (!$handle = opendir(CIVICRM_TEMPLATE_COMPILEDIR)) {
118 return; // die? Error?
119 }
e7292422
TO
120 while (FALSE !== ($entry = readdir($handle))) {
121 if (substr($entry, 0, 4) == $prefix) {
92fcb95f 122 unlink(CIVICRM_TEMPLATE_COMPILEDIR . $entry);
6a488035
TO
123 }
124 }
125 closedir($handle);
126 unset($this->_cache);
127 $this->_cache = array();
128 }
96025800 129
6a488035 130}