forked from amal/AzaLibEvent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvent.php
390 lines (351 loc) · 7.09 KB
/
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<?php
namespace Aza\Components\LibEvent;
use Aza\Components\LibEvent\Exceptions\Exception;
use Aza\Components\CliBase\Base;
/**
* LibEvent event resource wrapper
*
* @link http://www.wangafu.net/~nickm/libevent-book/
*
* @uses libevent
*
* @project Anizoptera CMF
* @package system.libevent
* @author Amal Samally <amal.samally at gmail.com>
* @license MIT
*/
class Event extends EventBasic
{
/**
* Default priority
*
* @see setPriority
*/
const DEF_PRIORITY = 10;
/**
* Last addition timeout
*
* @see add
*
* @var int
*/
protected $timeout;
/**
* Signal number
*
* @see setSignal
*
* @var int|null
*/
protected $signo;
/**
* Read callback
*
* @var callable|null
*/
protected $cb;
/**
* Whether the event will persist
*
* @var bool
*/
protected $persist = true;
/**
* Callbacks argument
*
* @var mixed
*/
protected $arg;
/**
* {@inheritdoc}
*
* @see event_new
*/
public function __construct()
{
parent::__construct();
$this->init();
}
/**
* Helper initialization method
*
* @throws Exception
*/
protected function init()
{
if (!$this->resource = event_new()) {
throw new Exception(
"Can't create new event resource (event_new)"
);
}
}
/**
* Prepares event for forking in parent
*/
public function beforeFork()
{
if ($this->signo) {
$base = $this->base;
$this->free();
$this->base = $base;
} else {
$this->del();
}
}
/**
* Prepares event after forking in parent
*/
public function afterFork()
{
if ($this->signo) {
$this->init();
$this->setSignal(
$this->signo,
$this->cb,
$this->persist,
$this->arg
);
$this->setBase($this->base);
}
$this->add($this->timeout);
}
/**
* Adds an event to the set of monitored events.
*
* @see event_add
*
* @throws Exception if can't add event
*
* @param int $timeout Optional timeout (in microseconds).
*
* @return $this
*/
public function add($timeout = -1)
{
// Save one method call (checkResource)
($resource = $this->resource) || $this->checkResource();
if (!event_add($resource, $timeout)) {
throw new Exception(
"Can't add event (event_add)"
);
}
$this->timeout = $timeout;
return $this;
}
/**
* Remove an event from the set of monitored events.
*
* @see event_del
*
* @throws Exception if can't delete event
*
* @return $this
*/
public function del()
{
// Save one method call (checkResource)
($resource = $this->resource) || $this->checkResource();
if (!event_del($resource)) {
throw new Exception(
"Can't delete event (event_del)"
);
}
return $this;
}
/**
* {@inheritdoc}
*
* @see event_base_set
*
* @throws Exception
*/
public function setBase($event_base)
{
$this->checkResource();
$event_base->checkResource();
if (!event_base_set(
$this->resource,
$event_base->resource
)) {
throw new Exception(
"Can't set event base (event_base_set)"
);
}
return parent::setBase($event_base);
}
/**
* Assign a priority to an event.
*
* @see event_priority_set
*
* @param int $value <p>
* Priority level. Cannot be less than zero and
* cannot exceed maximum priority level of the
* event base (see {@link event_base_priority_init}()).
* </p>
*
* @return $this
*
* @throws Exception
*/
public function setPriority($value = self::DEF_PRIORITY)
{
$this->checkResource();
if (function_exists('event_priority_set')
&& !event_priority_set($this->resource, $value)
) {
throw new Exception(
"Can't set event priority to {$value} (event_priority_set)"
);
}
return $this;
}
/**
* {@inheritdoc}
*
* @see event_free
*/
public function free($afterForkCleanup = false)
{
parent::free();
if ($resource = $this->resource) {
event_del($resource);
event_free($resource);
$this->resource = null;
}
return $this;
}
/**
* Prepares the event to be used in add().
*
* @see add
* @see event_add
* @see event_set
*
* @throws Exception if can't prepare event
*
* @param resource|mixed $fd <p>
* Valid PHP stream resource. The stream must be
* castable to file descriptor, so you most likely
* won't be able to use any of filtered streams.
* </p>
* @param int $events <p>
* A set of flags indicating the desired event,
* can be EV_TIMEOUT, EV_READ, EV_WRITE
* and EV_SIGNAL.
* The additional flag EV_PERSIST makes the event
* to persist until {@link event_del}() is called,
* otherwise the callback is invoked only once.
* </p>
* @param callback $callback <p>
* Callback function to be called when the matching
* event occurs.
* <br><tt>function(resource|null $fd, int $events,
* array $arg(Event $event, mixed $arg)){}</tt>
* </p>
* @param mixed $arg
*
* @return $this
*/
public function set($fd, $events, $callback, $arg = null)
{
$this->checkResource();
if (!event_set(
$this->resource,
$fd,
$events,
$callback,
array($this, $arg)
)) {
throw new Exception(
"Can't prepare event (event_set)"
);
}
return $this;
}
/**
* Prepares the event to be used in add() as signal handler.
*
* @see set
* @see add
* @see event_add
* @see event_set
*
* @throws Exception if can't prepare event
*
* @param int $signo <p>
* Signal number
* </p>
* @param callback $callback <p>
* Callback function to be called when the matching event occurs.
* <br><tt>function(int $signo, int $events(8:EV_SIGNAL),
* array $arg(Event $event, mixed $arg, int $signo)){}</tt>
* </p>
* @param bool $persist <p>
* Whether the event will persist until {@link event_del}() is
* called, otherwise the callback is invoked only once.
* </p>
* @param mixed $arg
*
* @return $this
*/
public function setSignal($signo, $callback,
$persist = true, $arg = null)
{
// Save one method call (checkResource)
($resource = $this->resource) || $this->checkResource();
$events = EV_SIGNAL;
$persist
&& $events |= EV_PERSIST;
if (!event_set(
$resource,
$signo,
$events,
$callback,
array($this, $arg, $signo)
)) {
$name = Base::getSignalName($signo);
throw new Exception(
"Can't prepare event (event_set) for $name ($signo) signal"
);
}
$this->signo = $signo;
$this->cb = $callback;
$this->persist = $persist;
$this->arg = $arg;
return $this;
}
/**
* Prepares the timer event.
* Use {@link add}() in callback again with
* interval to repeat timer.
*
* @see event_timer_set
*
* @throws Exception if can't prepare event
*
* @param callback $callback <p>
* Callback function to be called when the interval expires.
* <br><tt>function(null $fd, int $events(1:EV_TIMEOUT),
* array $arg(Event $event, mixed $arg)){}</tt>
* </p>
* @param mixed $arg
*
* @return $this
*/
public function setTimer($callback, $arg = null)
{
// Save one method call (checkResource)
($resource = $this->resource) || $this->checkResource();
if (!event_timer_set(
$resource,
$callback,
array($this, $arg)
)) {
throw new Exception(
"Can't prepare event (event_timer_set) for timer"
);
}
return $this;
}
}