fix: set default x12 partner for item in billing manager (#7513)
[openemr.git] / gacl / Cache_Lite / Lite.php
blobd6c8f1728c40130c82adec2dc307b04101572a0a
1 <?php
3 /**
4 * Fast, light and safe Cache Class
6 * Cache_Lite is a fast, light and safe cache system. It's optimized
7 * for file containers. It is fast and safe (because it uses file
8 * locking and/or anti-corruption tests).
10 * There are some examples in the 'docs/examples' file
11 * Technical choices are described in the 'docs/technical' file
13 * A tutorial is available in english at this url :
14 * http://www.pearfr.org/index.php/en/article/cache_lite
15 * (big thanks to Pierre-Alain Joye for the translation)
17 * The same tutorial is also available in french at this url :
18 * http://www.pearfr.org/index.php/fr/article/cache_lite
20 * Memory Caching is from an original idea of
21 * Mike BENOIT <ipso@snappymail.ca>
23 * @package Cache_Lite
24 * @category Caching
25 * @version $Id$
26 * @author Fabien MARTY <fab@php.net>
29 define('CACHE_LITE_ERROR_RETURN', 1);
30 define('CACHE_LITE_ERROR_DIE', 8);
32 class Cache_Lite
35 // --- Private properties ---
37 /**
38 * Directory where to put the cache files
39 * (make sure to add a trailing slash)
41 * @var string $_cacheDir
43 var $_cacheDir = '/tmp/';
45 /**
46 * Enable / disable caching
48 * (can be very usefull for the debug of cached scripts)
50 * @var boolean $_caching
52 var $_caching = true;
54 /**
55 * Cache lifetime (in seconds)
57 * @var int $_lifeTime
59 var $_lifeTime = 3600;
61 /**
62 * Enable / disable fileLocking
64 * (can avoid cache corruption under bad circumstances)
66 * @var boolean $_fileLocking
68 var $_fileLocking = true;
70 /**
71 * Timestamp of the last valid cache
73 * @var int $_refreshTime
75 var $_refreshTime;
77 /**
78 * File name (with path)
80 * @var string $_file
82 var $_file;
84 /**
85 * Enable / disable write control (the cache is read just after writing to detect corrupt entries)
87 * Enable write control will lightly slow the cache writing but not the cache reading
88 * Write control can detect some corrupt cache files but maybe it's not a perfect control
90 * @var boolean $_writeControl
92 var $_writeControl = true;
94 /**
95 * Enable / disable read control
97 * If enabled, a control key is embeded in cache file and this key is compared with the one
98 * calculated after the reading.
100 * @var boolean $_writeControl
102 var $_readControl = true;
105 * Type of read control (only if read control is enabled)
107 * Available values are :
108 * 'md5' for a md5 hash control (best but slowest)
109 * 'crc32' for a crc32 hash control (lightly less safe but faster, better choice)
110 * 'strlen' for a length only test (fastest)
112 * @var boolean $_readControlType
114 var $_readControlType = 'crc32';
117 * Pear error mode (when raiseError is called)
119 * (see PEAR doc)
121 * @see setToDebug()
122 * @var int $_pearErrorMode
124 var $_pearErrorMode = CACHE_LITE_ERROR_RETURN;
127 * Current cache id
129 * @var string $_id
131 var $_id;
134 * Current cache group
136 * @var string $_group
138 var $_group;
141 * Enable / Disable "Memory Caching"
143 * NB : There is no lifetime for memory caching !
145 * @var boolean $_memoryCaching
147 var $_memoryCaching = false;
150 * Enable / Disable "Only Memory Caching"
151 * (be carefull, memory caching is "beta quality")
153 * @var boolean $_onlyMemoryCaching
155 var $_onlyMemoryCaching = false;
158 * Memory caching array
160 * @var array $_memoryCachingArray
162 var $_memoryCachingArray = array();
165 * Memory caching counter
167 * @var int $memoryCachingCounter
169 var $_memoryCachingCounter = 0;
172 * Memory caching limit
174 * @var int $memoryCachingLimit
176 var $_memoryCachingLimit = 1000;
179 * File Name protection
181 * if set to true, you can use any cache id or group name
182 * if set to false, it can be faster but cache ids and group names
183 * will be used directly in cache file names so be carefull with
184 * special characters...
186 * @var boolean $fileNameProtection
188 var $_fileNameProtection = true;
191 * Enable / disable automatic serialization
193 * it can be used to save directly datas which aren't strings
194 * (but it's slower)
196 * @var boolean $_serialize
198 var $_automaticSerialization = false;
200 // --- Public methods ---
203 * Constructor
205 * $options is an assoc. Available options are :
206 * $options = array(
207 * 'cacheDir' => directory where to put the cache files (string),
208 * 'caching' => enable / disable caching (boolean),
209 * 'lifeTime' => cache lifetime in seconds (int),
210 * 'fileLocking' => enable / disable fileLocking (boolean),
211 * 'writeControl' => enable / disable write control (boolean),
212 * 'readControl' => enable / disable read control (boolean),
213 * 'readControlType' => type of read control 'crc32', 'md5', 'strlen' (string),
214 * 'pearErrorMode' => pear error mode (when raiseError is called) (cf PEAR doc) (int),
215 * 'memoryCaching' => enable / disable memory caching (boolean),
216 * 'onlyMemoryCaching' => enable / disable only memory caching (boolean),
217 * 'memoryCachingLimit' => max nbr of records to store into memory caching (int),
218 * 'fileNameProtection' => enable / disable automatic file name protection (boolean),
219 * 'automaticSerialization' => enable / disable automatic serialization (boolean)
220 * );
222 * @param array $options options
223 * @access public
225 function __construct($options = array(NULL))
227 $availableOptions = array('automaticSerialization', 'fileNameProtection', 'memoryCaching', 'onlyMemoryCaching', 'memoryCachingLimit', 'cacheDir', 'caching', 'lifeTime', 'fileLocking', 'writeControl', 'readControl', 'readControlType', 'pearErrorMode');
228 foreach($options as $key => $value) {
229 if(in_array($key, $availableOptions)) {
230 $property = '_'.$key;
231 $this->$property = $value;
234 $this->_refreshTime = time() - $this->_lifeTime;
238 * Test if a cache is available and (if yes) return it
240 * @param string $id cache id
241 * @param string $group name of the cache group
242 * @param boolean $doNotTestCacheValidity if set to true, the cache validity won't be tested
243 * @return string data of the cache (or false if no cache available)
244 * @access public
246 function get($id, $group = 'default', $doNotTestCacheValidity = false)
248 $this->_id = $id;
249 $this->_group = $group;
250 $data = false;
251 if ($this->_caching) {
252 $this->_setFileName($id, $group);
253 if ($this->_memoryCaching) {
254 if (isset($this->_memoryCachingArray[$this->_file])) {
255 if ($this->_automaticSerialization) {
256 return unserialize($this->_memoryCachingArray[$this->_file]);
257 } else {
258 return $this->_memoryCachingArray[$this->_file];
260 } else {
261 if ($this->_onlyMemoryCaching) {
262 return false;
266 if ($doNotTestCacheValidity) {
267 if (file_exists($this->_file)) {
268 $data = $this->_read();
270 } else {
271 if ((file_exists($this->_file)) && (@filemtime($this->_file) > $this->_refreshTime)) {
272 $data = $this->_read();
275 if (($data) and ($this->_memoryCaching)) {
276 $this->_memoryCacheAdd($this->_file, $data);
278 if (($this->_automaticSerialization) and (is_string($data))) {
279 $data = unserialize($data);
281 return $data;
283 return false;
287 * Save some data in a cache file
289 * @param string $data data to put in cache (can be another type than strings if automaticSerialization is on)
290 * @param string $id cache id
291 * @param string $group name of the cache group
292 * @return boolean true if no problem
293 * @access public
295 function save($data, $id = NULL, $group = 'default')
297 if ($this->_caching) {
298 if ($this->_automaticSerialization) {
299 $data = serialize($data);
301 if (isset($id)) {
302 $this->_setFileName($id, $group);
304 if ($this->_memoryCaching) {
305 $this->_memoryCacheAdd($this->_file, $data);
306 if ($this->_onlyMemoryCaching) {
307 return true;
310 if ($this->_writeControl) {
311 if (!$this->_writeAndControl($data)) {
312 @touch($this->_file, time() - 2*abs($this->_lifeTime));
313 return false;
314 } else {
315 return true;
317 } else {
318 return $this->_write($data);
321 return false;
325 * Remove a cache file
327 * @param string $id cache id
328 * @param string $group name of the cache group
329 * @return boolean true if no problem
330 * @access public
332 function remove($id, $group = 'default')
334 $this->_setFileName($id, $group);
335 if ($this->_memoryCaching) {
336 if (isset($this->_memoryCachingArray[$this->_file])) {
337 unset($this->_memoryCachingArray[$this->_file]);
338 $this->_memoryCachingCounter = $this->_memoryCachingCounter - 1;
340 if ($this->_onlyMemoryCaching) {
341 return true;
344 if (!@unlink($this->_file)) {
345 $this->raiseError('Cache_Lite : Unable to remove cache !', -3);
346 return false;
348 return true;
352 * Clean the cache
354 * if no group is specified all cache files will be destroyed
355 * else only cache files of the specified group will be destroyed
357 * @param string $group name of the cache group
358 * @return boolean true if no problem
359 * @access public
361 function clean($group = false)
363 if ($this->_fileNameProtection) {
364 $motif = ($group) ? 'cache_'.md5($group).'_' : 'cache_';
365 } else {
366 $motif = ($group) ? 'cache_'.$group.'_' : 'cache_';
368 if ($this->_memoryCaching) {
369 foreach ($this->_memoryCachingArray as $key => $value) {
370 if (strpos($key, $motif, 0)) {
371 unset($this->_memoryCachingArray[$key]);
372 $this->_memoryCachingCounter = $this->_memoryCachingCounter - 1;
375 if ($this->_onlyMemoryCaching) {
376 return true;
379 if (!($dh = opendir($this->_cacheDir))) {
380 $this->raiseError('Cache_Lite : Unable to open cache directory !', -4);
381 return false;
383 while ($file = readdir($dh)) {
384 if (($file != '.') && ($file != '..')) {
385 $file = $this->_cacheDir . $file;
386 if (is_file($file)) {
387 if (strpos($file, $motif, 0)) {
388 if (!@unlink($file)) {
389 $this->raiseError('Cache_Lite : Unable to remove cache !', -3);
390 return false;
396 return true;
400 * Set to debug mode
402 * When an error is found, the script will stop and the message will be displayed
403 * (in debug mode only).
405 * @access public
407 function setToDebug()
409 $this->_pearErrorMode = CACHE_LITE_ERROR_DIE;
413 * Set a new life time
415 * @param int $newLifeTime new life time (in seconds)
416 * @access public
418 function setLifeTime($newLifeTime)
420 $this->_lifeTime = $newLifeTime;
421 $this->_refreshTime = time() - $newLifeTime;
426 * @access public
428 function saveMemoryCachingState($id, $group = 'default')
430 if ($this->_caching) {
431 $array = array(
432 'counter' => $this->_memoryCachingCounter,
433 'array' => $this->_memoryCachingState
435 $data = serialize($array);
436 $this->save($data, $id, $group);
442 * @access public
444 function getMemoryCachingState($id, $group = 'default', $doNotTestCacheValidity = false)
446 if ($this->_caching) {
447 if ($data = $this->get($id, $group, $doNotTestCacheValidity)) {
448 $array = unserialize($data);
449 $this->_memoryCachingCounter = $array['counter'];
450 $this->_memoryCachingArray = $array['array'];
456 * Return the cache last modification time
458 * BE CAREFUL : THIS METHOD IS FOR HACKING ONLY !
460 * @return int last modification time
462 function lastModified() {
463 return filemtime($this->_file);
467 * Trigger a PEAR error
469 * To improve performances, the PEAR.php file is included dynamically.
470 * The file is so included only when an error is triggered. So, in most
471 * cases, the file isn't included and perfs are much better.
473 * @param string $msg error message
474 * @param int $code error code
475 * @access public
477 function raiseError($msg, $code)
479 include_once('PEAR.php');
480 PEAR::raiseError($msg, $code, $this->_pearErrorMode);
483 // --- Private methods ---
487 * @access private
489 function _memoryCacheAdd($id, $data)
491 $this->_memoryCachingArray[$this->_file] = $data;
492 if ($this->_memoryCachingCounter >= $this->_memoryCachingLimit) {
493 foreach ($this->_memoryCachingArray as $key => $value) {
494 unset($this->_memoryCachingArray[$key]);
496 } else {
497 $this->_memoryCachingCounter = $this->_memoryCachingCounter + 1;
502 * Make a file name (with path)
504 * @param string $id cache id
505 * @param string $group name of the group
506 * @access private
508 function _setFileName($id, $group)
510 if ($this->_fileNameProtection) {
511 $this->_file = ($this->_cacheDir.'cache_'.md5($group).'_'.md5($id));
512 } else {
513 $this->_file = $this->_cacheDir.'cache_'.$group.'_'.$id;
518 * Read the cache file and return the content
520 * @return string content of the cache file
521 * @access private
523 function _read()
525 $fp = @fopen($this->_file, "rb");
526 if ($this->_fileLocking) @flock($fp, LOCK_SH);
527 if ($fp) {
528 clearstatcache(); // because the filesize can be cached by PHP itself...
529 $length = @filesize($this->_file);
530 $mqr = get_magic_quotes_runtime();
531 set_magic_quotes_runtime(0);
532 if ($this->_readControl) {
533 $hashControl = @fread($fp, 32);
534 $length = $length - 32;
536 $data = @fread($fp, $length);
537 set_magic_quotes_runtime($mqr);
538 if ($this->_fileLocking) @flock($fp, LOCK_UN);
539 @fclose($fp);
540 if ($this->_readControl) {
541 $hashData = $this->_hash($data, $this->_readControlType);
542 if ($hashData != $hashControl) {
543 @touch($this->_file, time() - 2*abs($this->_lifeTime));
544 return false;
547 return $data;
549 $this->raiseError('Cache_Lite : Unable to read cache !', -2);
550 return false;
554 * Write the given data in the cache file
556 * @param string $data data to put in cache
557 * @return boolean true if ok
558 * @access private
560 function _write($data)
562 $fp = @fopen($this->_file, "wb");
563 if ($fp) {
564 if ($this->_fileLocking) @flock($fp, LOCK_EX);
565 if ($this->_readControl) {
566 @fwrite($fp, $this->_hash($data, $this->_readControlType), 32);
568 $len = strlen($data);
569 @fwrite($fp, $data, $len);
570 if ($this->_fileLocking) @flock($fp, LOCK_UN);
571 @fclose($fp);
572 return true;
574 $this->raiseError('Cache_Lite : Unable to write cache !', -1);
575 return false;
579 * Write the given data in the cache file and control it just after to avoir corrupted cache entries
581 * @param string $data data to put in cache
582 * @return boolean true if the test is ok
583 * @access private
585 function _writeAndControl($data)
587 $this->_write($data);
588 $dataRead = $this->_read($data);
589 return ($dataRead==$data);
593 * Make a control key with the string containing datas
595 * @param string $data data
596 * @param string $controlType type of control 'md5', 'crc32' or 'strlen'
597 * @return string control key
598 * @access private
600 function _hash($data, $controlType)
602 switch ($controlType) {
603 case 'md5':
604 return md5($data);
605 case 'crc32':
606 return sprintf('% 32d', crc32($data));
607 case 'strlen':
608 return sprintf('% 32d', strlen($data));
609 default:
610 $this->raiseError('Unknown controlType ! (available values are only \'md5\', \'crc32\', \'strlen\')', -5);