forked from phly/phly-event-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathErrorEmittingDispatcher.php
75 lines (63 loc) · 2.34 KB
/
ErrorEmittingDispatcher.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
<?php
/**
* @see https://github.com/phly/phly-event-dispatcher for the canonical source repository
* @copyright Copyright (c) 2018-2019 Matthew Weier O'Phinney (https:/mwop.net)
* @license https://github.com/phly/phly-event-dispatcher/blob/master/LICENSE.md New BSD License
*/
declare(strict_types=1);
namespace Phly\EventDispatcher;
use Psr\EventDispatcher\EventDispatcherInterface;
use Psr\EventDispatcher\ListenerProviderInterface;
use Psr\EventDispatcher\StoppableEventInterface;
use Throwable;
class ErrorEmittingDispatcher implements EventDispatcherInterface
{
/** @var ListenerProviderInterface */
private $listenerProvider;
public function __construct(ListenerProviderInterface $listenerProvider)
{
$this->listenerProvider = $listenerProvider;
}
/**
* {@inheritDoc}
*
* If a Throwable is caught when executing the listener loop, it is cast
* to an ErrorEvent, and then the method calls itself with that instance,
* re-throwing the original Throwable on completion.
*
* In the case that a Throwable is caught for an ErrorEvent, we re-throw
* to prevent recursion.
*/
public function dispatch(object $event)
{
if ($event instanceof StoppableEventInterface && $event->isPropagationStopped()) {
return $event;
}
foreach ($this->listenerProvider->getListenersForEvent($event) as $listener) {
try {
$listener($event);
} catch (Throwable $e) {
$this->handleCaughtThrowable($e, $event, $listener);
}
if ($event instanceof StoppableEventInterface && $ $event->isPropagationStopped()) {
break;
}
}
return $event;
}
/**
* @throws Throwable Throws the originally caught throwable ($e), or, in
* the event that $event is an ErrorEvent, the value of its
* getThrowable() method.
*/
private function handleCaughtThrowable(Throwable $e, object $event, callable $listener) : void
{
if ($event instanceof ErrorEvent) {
// Re-throw the original exception, per the spec.
throw $event->getThrowable();
}
$this->dispatch(new ErrorEvent($event, $listener, $e));
// Re-throw the original exception, per the spec.
throw $e;
}
}