-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathLogEngineRegistry.php
109 lines (98 loc) · 3.22 KB
/
LogEngineRegistry.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
declare(strict_types=1);
/**
* 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 2.2.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Log;
use Cake\Core\App;
use Cake\Core\ObjectRegistry;
use Psr\Log\LoggerInterface;
use RuntimeException;
/**
* Registry of loaded log engines
*
* @extends \Cake\Core\ObjectRegistry<\Psr\Log\LoggerInterface>
*/
class LogEngineRegistry extends ObjectRegistry
{
/**
* Resolve a logger classname.
*
* Part of the template method for Cake\Core\ObjectRegistry::load()
*
* @param string $class Partial classname to resolve.
* @return string|null Either the correct class name or null.
* @psalm-return class-string|null
*/
protected function _resolveClassName(string $class): ?string
{
return App::className($class, 'Log/Engine', 'Log');
}
/**
* Throws an exception when a logger is missing.
*
* Part of the template method for Cake\Core\ObjectRegistry::load()
*
* @param string $class The classname that is missing.
* @param string|null $plugin The plugin the logger is missing in.
* @return void
* @throws \RuntimeException
*/
protected function _throwMissingClassError(string $class, ?string $plugin): void
{
throw new RuntimeException(sprintf('Could not load class %s', $class));
}
/**
* Create the logger instance.
*
* Part of the template method for Cake\Core\ObjectRegistry::load()
*
* @param string|\Psr\Log\LoggerInterface $class The classname or object to make.
* @param string $alias The alias of the object.
* @param array $config An array of settings to use for the logger.
* @return \Psr\Log\LoggerInterface The constructed logger class.
* @throws \RuntimeException when an object doesn't implement the correct interface.
*/
protected function _create($class, string $alias, array $config): LoggerInterface
{
if (is_callable($class)) {
$class = $class($alias);
}
if (is_object($class)) {
$instance = $class;
}
if (!isset($instance)) {
/** @psalm-suppress UndefinedClass */
$instance = new $class($config);
}
if ($instance instanceof LoggerInterface) {
return $instance;
}
throw new RuntimeException(sprintf(
'Loggers must implement %s. Found `%s` instance instead.',
LoggerInterface::class,
getTypeName($instance)
));
}
/**
* Remove a single logger from the registry.
*
* @param string $name The logger name.
* @return $this
*/
public function unload(string $name)
{
unset($this->_loaded[$name]);
return $this;
}
}