-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathSimpleEventAwareTrait.php
205 lines (180 loc) · 4.14 KB
/
SimpleEventAwareTrait.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
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
<?php declare(strict_types=1);
/**
* The file is part of inhere/console
*
* @author https://github.com/inhere
* @homepage https://github.com/inhere/php-console
* @license https://github.com/inhere/php-console/blob/master/LICENSE
*/
namespace Inhere\Console\Decorate;
use function count;
use function in_array;
/**
* Class SimpleEventStaticTrait
*
* @package Inhere\Console\Decorate
*/
trait SimpleEventAwareTrait
{
/**
* set the supported events, if you need.
* if it is empty, will allow register any event.
*
* @var array
*/
protected static array $supportedEvents = [];
/**
* registered Events
*
* @var array
* [
* 'event' => bool, // is once event
* ]
*/
private static array $events = [];
/**
* events and handlers
*
* @var array
* [
* 'event' => callable, // event handler
* ]
*/
private static array $eventHandlers = [];
/**
* register a event handler
*
* @param string $event
* @param callable $handler
* @param bool $once
*/
public function on(string $event, callable $handler, bool $once = false): void
{
if (self::isSupportedEvent($event)) {
self::$eventHandlers[$event][] = $handler;
if (!isset(self::$events[$event])) {
self::$events[$event] = $once;
}
}
}
/**
* register a once event handler
*
* @param string $event
* @param callable $handler
*/
public function once(string $event, callable $handler): void
{
$this->on($event, $handler, true);
}
/**
* trigger event
*
* @param string $event
* @param mixed ...$args
*
* @return bool
*/
public function fire(string $event, ...$args): bool
{
if (!isset(self::$events[$event])) {
return false;
}
// call event handlers of the event.
/** @var mixed $return */
$return = true;
foreach ((array)self::$eventHandlers[$event] as $cb) {
$return = $cb(...$args);
// return FALSE to stop go on handle.
if (false === $return) {
break;
}
}
// is a once event, remove it
if (self::$events[$event]) {
return $this->off($event);
}
return (bool)$return;
}
/**
* remove event and it's handlers
*
* @param string $event
*
* @return bool
*/
public function off(string $event): bool
{
if ($this->hasEvent($event)) {
unset(self::$events[$event], self::$eventHandlers[$event]);
return true;
}
return false;
}
/**
* @param string $event
*
* @return bool
*/
public function hasEvent(string $event): bool
{
return isset(self::$events[$event]);
}
/**
* @param string $event
*
* @return bool
*/
public function isOnce(string $event): bool
{
if ($this->hasEvent($event)) {
return self::$events[$event];
}
return false;
}
/**
* check $name is a supported event name
*
* @param string $event
*
* @return bool
*/
public static function isSupportedEvent(string $event): bool
{
if (!$event || !preg_match('/[a-zA-z][\w-]+/', $event)) {
return false;
}
if ($ets = self::$supportedEvents) {
return in_array($event, $ets, true);
}
return true;
}
/**
* @return array
*/
public static function getSupportEvents(): array
{
return self::$supportedEvents;
}
/**
* @param array $supportedEvents
*/
public static function setSupportEvents(array $supportedEvents): void
{
self::$supportedEvents = $supportedEvents;
}
/**
* @return array
*/
public static function getEvents(): array
{
return self::$events;
}
/**
* @return int
*/
public static function countEvents(): int
{
return count(self::$events);
}
}