<?php /** * This file is part of the CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace CodeIgniter\Cache\Handlers; use Config\Cache; /** * Cache handler for WinCache from Microsoft & IIS. * Windows-only, so not testable on travis-ci. * Unusable methods flagged for code coverage ignoring. */ class WincacheHandler extends BaseHandler { /** * Prefixed to all cache names. * * @var string */ protected $prefix; //-------------------------------------------------------------------- /** * Constructor. * * @param Cache $config */ public function __construct(Cache $config) { $this->prefix = (string) $config->prefix; } //-------------------------------------------------------------------- /** * Takes care of any handler-specific setup that must be done. * * @codeCoverageIgnore */ public function initialize() { // Nothing to see here... } //-------------------------------------------------------------------- /** * Attempts to fetch an item from the cache store. * * @param string $key Cache item name * * @return mixed * * @codeCoverageIgnore */ public function get(string $key) { $key = $this->prefix . $key; $success = false; $data = wincache_ucache_get($key, $success); // Success returned by reference from wincache_ucache_get() return ($success) ? $data : null; } //-------------------------------------------------------------------- /** * Saves an item to the cache store. * * @param string $key Cache item name * @param mixed $value The data to save * @param integer $ttl Time To Live, in seconds (default 60) * * @return mixed * * @codeCoverageIgnore */ public function save(string $key, $value, int $ttl = 60) { $key = $this->prefix . $key; return wincache_ucache_set($key, $value, $ttl); } //-------------------------------------------------------------------- /** * Deletes a specific item from the cache store. * * @param string $key Cache item name * * @return boolean * * @codeCoverageIgnore */ public function delete(string $key) { $key = $this->prefix . $key; return wincache_ucache_delete($key); } //-------------------------------------------------------------------- /** * Performs atomic incrementation of a raw stored value. * * @param string $key Cache ID * @param integer $offset Step/value to increase by * * @return mixed * * @codeCoverageIgnore */ public function increment(string $key, int $offset = 1) { $key = $this->prefix . $key; $success = false; $value = wincache_ucache_inc($key, $offset, $success); return ($success === true) ? $value : false; // @phpstan-ignore-line } //-------------------------------------------------------------------- /** * Performs atomic decrementation of a raw stored value. * * @param string $key Cache ID * @param integer $offset Step/value to increase by * * @return mixed * * @codeCoverageIgnore */ public function decrement(string $key, int $offset = 1) { $key = $this->prefix . $key; $success = false; $value = wincache_ucache_dec($key, $offset, $success); return ($success === true) ? $value : false; // @phpstan-ignore-line } //-------------------------------------------------------------------- /** * Will delete all items in the entire cache. * * @return boolean * * @codeCoverageIgnore */ public function clean() { return wincache_ucache_clear(); } //-------------------------------------------------------------------- /** * Returns information on the entire cache. * * The information returned and the structure of the data * varies depending on the handler. * * @return mixed * * @codeCoverageIgnore */ public function getCacheInfo() { return wincache_ucache_info(true); } //-------------------------------------------------------------------- /** * Returns detailed information about the specific item in the cache. * * @param string $key Cache item name. * * @return mixed * * @codeCoverageIgnore */ public function getMetaData(string $key) { $key = $this->prefix . $key; if ($stored = wincache_ucache_info(false, $key)) { $age = $stored['ucache_entries'][1]['age_seconds']; $ttl = $stored['ucache_entries'][1]['ttl_seconds']; $hitcount = $stored['ucache_entries'][1]['hitcount']; return [ 'expire' => $ttl - $age, 'hitcount' => $hitcount, 'age' => $age, 'ttl' => $ttl, ]; } return false; } //-------------------------------------------------------------------- /** * Determines if the driver is supported on this system. * * @return boolean */ public function isSupported(): bool { return (extension_loaded('wincache') && ini_get('wincache.ucenabled')); } //-------------------------------------------------------------------- }