(dev/core#174) CRM_Utils_Cache_Interface - Add getMultiple/setMultiple (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
0d64c8fa
TO
39 use CRM_Utils_Cache_NaiveMultipleTrait;
40
6a488035
TO
41 /**
42 * The cache storage container, an array by default, stored in a file under templates
43 */
44 private $_cache;
45
46 /**
fe482240 47 * Constructor.
6a488035 48 *
77855840
TO
49 * @param array $config
50 * An array of configuration params.
6a488035 51 *
77b97be7 52 * @return \CRM_Utils_Cache_SerializeCache
6a488035 53 */
00be9182 54 public function __construct($config) {
6a488035
TO
55 $this->_cache = array();
56 }
57
5bc392e6
EM
58 /**
59 * @param $key
60 *
61 * @return string
62 */
353ffa53 63 public function fileName($key) {
e7292422 64 if (strlen($key) > 50) {
86bfa4f6 65 return CIVICRM_TEMPLATE_COMPILEDIR . "CRM_" . md5($key) . ".php";
e7292422 66 }
86bfa4f6 67 return CIVICRM_TEMPLATE_COMPILEDIR . $key . ".php";
6a488035
TO
68 }
69
5bc392e6
EM
70 /**
71 * @param string $key
2da67cc5 72 * @param mixed $default
5bc392e6
EM
73 *
74 * @return mixed
75 */
2da67cc5
TO
76 public function get($key, $default = NULL) {
77 if ($default !== NULL) {
78 throw new \RuntimeException("FIXME: " . __CLASS__ . "::get() only supports NULL default");
79 }
80
e7292422 81 if (array_key_exists($key, $this->_cache)) {
6a488035 82 return $this->_cache[$key];
e7292422 83 }
6a488035 84
e7292422 85 if (!file_exists($this->fileName($key))) {
6a488035
TO
86 return;
87 }
e7292422 88 $this->_cache[$key] = unserialize(substr(file_get_contents($this->fileName($key)), 8));
6a488035
TO
89 return $this->_cache[$key];
90 }
91
5bc392e6
EM
92 /**
93 * @param string $key
94 * @param mixed $value
858451a9
TO
95 * @param null|int|\DateInterval $ttl
96 * @return bool
5bc392e6 97 */
858451a9
TO
98 public function set($key, $value, $ttl = NULL) {
99 if ($ttl !== NULL) {
100 throw new \RuntimeException("FIXME: " . __CLASS__ . "::set() should support non-NULL TTL");
101 }
e7292422 102 if (file_exists($this->fileName($key))) {
858451a9 103 return FALSE; // WTF, write-once cache?!
6a488035
TO
104 }
105 $this->_cache[$key] = $value;
858451a9
TO
106 $bytes = file_put_contents($this->fileName($key), "<?php //" . serialize($value));
107 return ($bytes !== FALSE);
6a488035
TO
108 }
109
5bc392e6
EM
110 /**
111 * @param string $key
112 */
00be9182 113 public function delete($key) {
e7292422
TO
114 if (file_exists($this->fileName($key))) {
115 unlink($this->fileName($key));
6a488035
TO
116 }
117 unset($this->_cache[$key]);
118 }
119
5bc392e6
EM
120 /**
121 * @param null $key
122 */
e7292422 123 public function flush($key = NULL) {
6a488035
TO
124 $prefix = "CRM_";
125 if (!$handle = opendir(CIVICRM_TEMPLATE_COMPILEDIR)) {
126 return; // die? Error?
127 }
e7292422
TO
128 while (FALSE !== ($entry = readdir($handle))) {
129 if (substr($entry, 0, 4) == $prefix) {
92fcb95f 130 unlink(CIVICRM_TEMPLATE_COMPILEDIR . $entry);
6a488035
TO
131 }
132 }
133 closedir($handle);
134 unset($this->_cache);
135 $this->_cache = array();
136 }
96025800 137
6a488035 138}