-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass_event.php
273 lines (243 loc) · 6.08 KB
/
class_event.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php
/**
* PHP EventDispatcher
*
* @author Terry Lin
* @copyright Copyright (c) 2015 - Terry Lin
* @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* @since Version 1.0
*/
namespace eventDispatcher;
class EventDispatcher
{
// Instance of this class
public static $instance;
// Action statics
public static $events;
public static $current_event;
public static $happened_events;
private $error_message = '';
/**
* Constructer
*/
private function __construct()
{
self::$instance = null;
self::$events = array();
self::$current_event = '';
self::$happened_events = array();
}
/**
* Instance()
* Singleton pattern
* The instance is made for easy use the function call.
*/
public static function instance()
{
if (!self::$instance) {
self::$instance = new EventDispatcher();
}
return self::$instance;
}
/**
* addListener()
*
* Add a new trigger
*
* @param mixed $name
* @param mixed $function
* @param mixed $priority
*/
public function addListener($name, $function, $priority = 10)
{
// return true if event has been registered
if (isset(self::$events[$name][$priority][$function])) {
return true;
}
/**
* Allows us to iterate through multiple event hooks.
*/
if (is_array($name)) {
foreach ($name as $name) {
self::$events[$name][$priority][$function] = array("function" => $function);
}
} else {
self::$events[$name][$priority][$function] = array("function" => $function);
}
return true;
}
/**
* doDispatch()
*
* Trigger an event Listener
*
* @param mixed $name
* @param mixed $arguments
* @return mixed
*/
public function doDispatch($name, $arguments = "")
{
if (!isset(self::$events[$name])) {
return $arguments;
}
// Set the current running event Listener
self::$current_event = $name;
ksort(self::$events[$name]);
foreach (self::$events[$name] as $priority => $actions) {
if (is_array($actions)) {
foreach ($actions as $action) {
// run Listener and store the value returned by registered functions
if (function_exists($action['function'])) {
$return_arguments = call_user_func_array($action['function'], array(&$arguments));
if ($return_arguments) {
$arguments = $return_arguments;
}
// Store called Listeners
self::$happened_events[$name][$priority] = $action['function'];
} else {
$this->error_message = 'Event Dispatcher: Function "' . $action['function'] . '" not found. (' . $name . ')';
$this->hasError();
}
}
}
}
// This listener is finished its job
self::$current_event = '';
return $arguments;
}
/**
* removeListener()
*
* Remove the event Listener from event array
*
* @param mixed $name
* @param mixed $function
* @param mixed $priority
*/
public function removeListener($name, $function, $priority = 10)
{
unset(self::$events[$name][$priority][$function]);
if (!isset(self::$events[$name][$priority][$function])) {
return true;
}
}
/**
* nowListener()
*
* Get the currently running event Listener
*
*/
public function nowListener()
{
return self::$current_event;
}
/**
* isListening()
*
* Check if a particular Listener has been called
*
* @param mixed $name
* @param mixed $priority
*/
public function isListening($name, $priority = 10)
{
if (isset(self::$events[$name][$priority])) {
return true;
}
return false;
}
/**
* hasListener()
*
* @param mixed $name
*/
public function hasListener($name)
{
if (isset(self::$events[$name])) {
return true;
}
return false;
}
/**
* Debug
*
* @return void
*/
public static function debug()
{
if (isset(self::$events)) {
echo "<h2>Listeners</h2>";
echo "<pre>";
print_r(self::$events);
echo "</pre>";
}
if (isset(self::$happened_events)) {
echo "<h2>Listeners Called</h2>";
echo "<pre>";
print_r(self::$happened_events);
echo "</pre>";
}
}
private function hasError()
{
die($this->error_message);
}
}
/**
* Add a new event Listener
*
* @param mixed $name
* @param mixed $function
* @param mixed $priority
*/
function addListener($name, $function, $priority = 10)
{
return EventDispatcher::instance()->addListener($name, $function, $priority);
}
/**
* Run an event
*
* @param mixed $name
* @param mixed $arguments
* @return mixed
*/
function doDispatch($name, $arguments = "")
{
return EventDispatcher::instance()->doDispatch($name, $arguments);
}
/**
* Remove an event Listener
*
* @param mixed $name
* @param mixed $function
* @param mixed $priority
*/
function removeListener($name, $function, $priority = 10)
{
return EventDispatcher::instance()->removeListener($name, $function, $priority);
}
/**
* Check if an event Listener actually exists
*
* @param mixed $name
*/
function hasListener($name)
{
return EventDispatcher::instance()->hasListener($name);
}
/**
* Check if a particular Listener has been called
*
* @param mixed $name
*/
function isListening($name, $priority = 10)
{
return EventDispatcher::instance()->isListening($name, $priority);
}
/**
* Get current lister
*/
function nowListener()
{
return EventDispatcher::instance()->nowListener();
}