123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Datasource;
- use Cake\Core\App;
- use Cake\Core\ObjectRegistry;
- use Cake\Datasource\Exception\MissingDatasourceException;
- /**
- * A registry object for connection instances.
- *
- * @see \Cake\Datasource\ConnectionManager
- */
- class ConnectionRegistry extends ObjectRegistry
- {
- /**
- * Resolve a datasource classname.
- *
- * Part of the template method for Cake\Core\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, 'Datasource');
- }
- /**
- * Throws an exception when a datasource is missing
- *
- * Part of the template method for Cake\Core\ObjectRegistry::load()
- *
- * @param string $class The classname that is missing.
- * @param string $plugin The plugin the datasource is missing in.
- * @return void
- * @throws \Cake\Datasource\Exception\MissingDatasourceException
- */
- protected function _throwMissingClassError($class, $plugin)
- {
- throw new MissingDatasourceException([
- 'class' => $class,
- 'plugin' => $plugin,
- ]);
- }
- /**
- * Create the connection object with the correct settings.
- *
- * Part of the template method for Cake\Core\ObjectRegistry::load()
- *
- * If a callable is passed as first argument, The returned value of this
- * function will be the result of the callable.
- *
- * @param string|object|callable $class The classname or object to make.
- * @param string $alias The alias of the object.
- * @param array $settings An array of settings to use for the datasource.
- * @return object A connection with the correct settings.
- */
- protected function _create($class, $alias, $settings)
- {
- if (is_callable($class)) {
- return $class($alias);
- }
- if (is_object($class)) {
- return $class;
- }
- unset($settings['className']);
- return new $class($settings);
- }
- /**
- * Remove a single adapter from the registry.
- *
- * @param string $name The adapter name.
- * @return void
- */
- public function unload($name)
- {
- unset($this->_loaded[$name]);
- }
- }
|