| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Cache;
- use Cake\Core\App;
- use Cake\Error;
- use Cake\Utility\ObjectRegistry;
- /**
- * An object registry for cache engines.
- *
- * Used by Cake\Cache\Cache to load and manage cache engines.
- *
- * @since CakePHP 3.0
- */
- class CacheRegistry extends ObjectRegistry {
- /**
- * Resolve a cache engine classname.
- *
- * Part of the template method for Cake\Utility\ObjectRegistry::load()
- *
- * @param string $class Partial classname to resolve.
- * @return string|false Either the correct classname or false.
- */
- protected function _resolveClassName($class) {
- if (is_object($class)) {
- return $class;
- }
- return App::classname($class, 'Cache/Engine', 'Engine');
- }
- /**
- * Throws an exception when a cache engine is missing.
- *
- * Part of the template method for Cake\Utility\ObjectRegistry::load()
- *
- * @param string $class The classname that is missing.
- * @param string $plugin The plugin the cache is missing in.
- * @throws Cake\Error\Exception
- */
- protected function _throwMissingClassError($class, $plugin) {
- throw new Error\Exception(__d('cake_dev', 'Cache engine %s is not available.', $class));
- }
- /**
- * Create the cache engine instance.
- *
- * Part of the template method for Cake\Utility\ObjectRegistry::load()
- * @param string|CacheEngine $class The classname or object to make.
- * @param array $settings An array of settings to use for the cache engine.
- * @return CacheEngine The constructed CacheEngine class.
- * @throws Cake\Error\Exception when an object doesn't implement
- * the correct interface.
- */
- protected function _create($class, $settings) {
- if (is_object($class)) {
- $instance = $class;
- }
- unset($settings['className']);
- if (!isset($instance)) {
- $instance = new $class($settings);
- }
- if (!($instance instanceof CacheEngine)) {
- throw new Error\Exception(__d(
- 'cake_dev',
- 'Cache engines must use Cake\Cache\CacheEngine as a base class.'
- ));
- }
- if (!$instance->init($settings)) {
- throw new Error\Exception(
- __d('cake_dev', 'Cache engine %s is not properly configured.', $class)
- );
- }
- if ($instance->settings['probability'] && time() % $instance->settings['probability'] === 0) {
- $instance->gc();
- }
- return $instance;
- }
- /**
- * Remove a single adapter from the registry.
- *
- * @param string $name The adapter name.
- * @return void
- */
- public function unload($name) {
- unset($this->_loaded[$name]);
- }
- }
|