-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathListenerProvider.php
More file actions
215 lines (185 loc) · 6.07 KB
/
ListenerProvider.php
File metadata and controls
215 lines (185 loc) · 6.07 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<?php declare(strict_types=1);
namespace Phact\Event;
use Closure;
use Phact\Event\Exception\IncorrectListenerException;
use Phact\Event\Exception\InvalidConfigurationException;
use Psr\Container\ContainerInterface;
use Psr\EventDispatcher\ListenerProviderInterface;
use ReflectionFunction;
use ReflectionFunctionAbstract;
use ReflectionMethod;
class ListenerProvider implements ListenerProviderInterface, ListenerAggregate
{
/**
* @var ContainerInterface|null
*/
protected $container;
/**
* Attached listeners
*
* Structure:
*
* [
* eventClassName => [
* priority => [listener, listener, ...]
* ]
* ]
*
* Example:
*
* [
* 'MyApp\Events\PostAddedEvent' => [
* 10 => [callable],
* 100 => [callable, callable]
* ]
* ]
*
* @var array
*/
protected $listeners = [];
/**
* Analyze listener with reflection
*
* @var bool
*/
protected $analyzeListener = true;
public function __construct(ContainerInterface $container = null)
{
$this->container = $container;
}
/**
* Analyze or not listener with reflection
*
* @param bool $analyzeListener
*/
public function setAnalyzeListener(bool $analyzeListener = true): void
{
$this->analyzeListener = $analyzeListener;
}
/**
* {@inheritDoc}
*/
public function addListener($listener, int $priority = 100, string $eventClassName = ''): void
{
$targetClasses = [];
$listener = $this->resolveListener($listener);
if ($this->analyzeListener) {
$targetClasses[] = $this->resolveListenerTargetClass($listener);
}
if ($eventClassName !== '') {
$targetClasses[] = $eventClassName;
}
$this->addListenerToClasses($listener, $priority, ...$targetClasses);
}
/**
* @param string|array|callable $listener
* @return callable
* @throws InvalidConfigurationException|IncorrectListenerException
*/
protected function resolveListener($listener): callable
{
$containerRequired = !is_callable($listener);
$containerOptional = is_array($listener);
$hasContainer = $this->container !== null;
if ($containerRequired && !$hasContainer) {
throw new InvalidConfigurationException('Please, provide container for usage non-callable listeners');
}
if ($hasContainer && ($containerRequired || $containerOptional)) {
$listener = $this->resolveNonCallableListener($listener);
}
return $listener;
}
protected function resolveNonCallableListener($listener): callable
{
if (is_string($listener)) {
return $this->resolveStringListener($listener);
}
if (is_array($listener)) {
return $this->resolveArrayListener($listener);
}
throw new IncorrectListenerException('Unsupported type of listener');
}
protected function resolveElementFromContainer($id)
{
if ($this->container->has($id)) {
return $this->container->get($id);
}
throw new IncorrectListenerException('Could not find listener in container');
}
protected function resolveStringListener(string $listener): callable
{
return $this->resolveElementFromContainer($listener);
}
protected function resolveArrayListener(array $listener): callable
{
if (!isset($listener[0], $listener[1])) {
throw new IncorrectListenerException('Array listeners must contain 2 elements');
}
list($id, $method) = $listener;
if (is_object($id)) {
return $listener;
}
$object = $this->resolveElementFromContainer($id);
return [$object, $method];
}
protected function addListenerToClasses(callable $listener, int $priority = 100, string ...$classNames): void
{
foreach ($classNames as $className) {
$this->listeners[$className][$priority][] = $listener;
}
}
protected function resolveListenerTargetClass(callable $callable): string
{
if (is_array($callable)) {
$reflection = new ReflectionMethod($callable[0], $callable[1]);
} elseif (is_object($callable) && !$callable instanceof Closure) {
$reflection = new ReflectionMethod($callable, '__invoke');
} else {
$reflection = new ReflectionFunction($callable);
}
return $this->resolveFunctionDependencyClass($reflection);
}
/**
* @param ReflectionFunctionAbstract $reflection
* @return string
* @throws IncorrectListenerException
*/
protected function resolveFunctionDependencyClass(ReflectionFunctionAbstract $reflection): string
{
$params = $reflection->getParameters();
if (!isset($params[0])) {
throw new IncorrectListenerException('Event listener must accept an object');
}
$param = $params[0];
$class = $param->getClass();
if (!$class) {
throw new IncorrectListenerException('Event listener must accept an object of a particular class');
}
return $class->getName();
}
/**
* {@inheritDoc}
*/
public function getListenersForEvent(object $event): iterable
{
yield from $this->getListenersForClass(get_class($event));
yield from $this->getListenersForClass(...array_values(class_parents($event)));
yield from $this->getListenersForClass(...array_values(class_implements($event)));
}
/**
* Get listeners for class/classes
*
* @param string ...$classes
* @return iterable
*/
protected function getListenersForClass(string ...$classes): iterable
{
foreach ($classes as $class) {
$listenersByPriority = $this->listeners[$class] ?? [];
krsort($listenersByPriority);
foreach ($listenersByPriority as $priority => $listeners) {
yield from $listeners;
}
}
}
}