forked from phly/phly-event-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLazyListener.php
85 lines (69 loc) · 2.28 KB
/
LazyListener.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
<?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\Container\ContainerInterface;
final class LazyListener
{
/**
* @var ContainerInterface
*/
private $container;
/**
* @var ?string
*/
private $method = null;
/**
* @var string
*/
private $service;
public function __construct(ContainerInterface $container, string $service, string $method = null)
{
$this->container = $container;
$this->service = $service;
$this->method = $method;
}
/**
* {@inheritDoc}
*/
public function __invoke(object $event) : void
{
$listener = $this->getListener(
$this->container->get($this->service)
);
$listener($event);
}
/**
* @var mixed $service Service retrieved from container.
*/
private function getListener($service) : callable
{
// Not an object, and not callable: invalid
if (! is_object($service) && ! is_callable($service)) {
throw Exception\InvalidListenerException::forNonCallableService($service);
}
// Not an object, but callable: return verbatim
if (! is_object($service) && is_callable($service)) {
return $service;
}
// Object, no method present, and not callable: invalid
if (! $this->method && ! is_callable($service)) {
throw Exception\InvalidListenerException::forNonCallableInstance($service);
}
// Object, no method present, not a listener, but callable: return verbatim
if (! $this->method && is_callable($service)) {
return $service;
}
$callback = [$service, $this->method];
// Object, method present, but method is not callable: invalid
if (! is_callable($callback)) {
throw Exception\InvalidListenerException::forNonCallableInstanceMethod($service, $this->method);
}
// Object with method as callback
return $callback;
}
}