-
Notifications
You must be signed in to change notification settings - Fork 0
/
event-dispatcher.php
84 lines (67 loc) · 1.74 KB
/
event-dispatcher.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
<?php
interface EventListener
{
// ['eventName' => 'method']
public function subscribedEvents(): array;
}
interface EventDispatcher
{
public function addListener(EventListener $listener): void;
public function dispatch(object $event): void;
}
final class SimpleEventDispatcher implements EventDispatcher
{
/**
* @var EventListener[]
*/
private $listeners = [];
private $sortedListeners = [];
public function addListener(EventListener $listener): void
{
$this->listeners[] = $listener;
}
public function dispatch(object $event): void
{
$this->sortListeners();
$eventName = get_class($event);
if (!isset($this->sortedListeners[$eventName])) {
return;
}
$listeners = $this->sortedListeners[$eventName];
foreach ($listeners as $listener) {
call_user_func($listener, $event);
}
}
private function sortListeners(): void
{
foreach ($this->listeners as $listener) {
foreach ($listener->subscribedEvents() as $event => $method) {
$this->sortedListeners[$event][] = [$listener, $method];
}
}
}
}
final class SomeEvent
{
public $name = '';
public $surName = '';
}
final class SomeEventListener implements EventListener
{
public function omCreated(SomeEvent $event)
{
$event->name = 'Anton';
$event->surName = 'Petrov';
}
public function subscribedEvents(): array
{
return [
SomeEvent::class => 'omCreated'
];
}
}
$dispatcher = new SimpleEventDispatcher();
$dispatcher->addListener(new SomeEventListener());
$event = new SomeEvent();
$dispatcher->dispatch($event);
var_dump($event);