This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
EventBase.php
493 lines (454 loc) · 9.35 KB
/
EventBase.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<?php
namespace Aza\Components\LibEvent;
use Aza\Components\LibEvent\Exceptions\Exception;
use Aza\Components\CliBase\Base;
/**
* LibEvent base resourse 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 EventBase
{
/**
* Default priority
*
* @see priorityInit
*/
const MAX_PRIORITY = 30;
/**
* Unique base IDs counter
*
* @var int
*/
private static $counter = 0;
/**
* Unique base ID
*
* @var int
*/
public $id;
/**
* Event base resource
*
* @var resource
*/
public $resource;
/**
* Events
*
* @var Event[]|EventBuffer[]
*/
public $events = array();
/**
* Array of timers settings
*
* @var array[]
*/
protected $timers = array();
/**
* Initializes instance
*
* @see event_base_new
*
* @throws Exception
*
* @param bool $initPriority Whether to init
* priority with default value
*/
public function __construct($initPriority = true)
{
$this->init($initPriority);
$this->id = ++self::$counter;
}
/**
* Create and initialize new event base
*
* @see event_base_new
*
* @throws Exception
*
* @param bool $initPriority Whether to init priority with default value
*/
protected function init($initPriority = true)
{
if (!Base::$hasLibevent) {
throw new Exception(
'You need to install PECL extension "Libevent" to use this class'
);
} else if (!$this->resource = event_base_new()) {
throw new Exception(
"Can't create event base resourse (event_base_new)"
);
}
$initPriority && $this->priorityInit();
}
/**
* Reinitializes event base and cleans all
* attached events and timers without destroying
* resources in parent process.
*
* Use this method after fork in child!
*
* @param bool $initPriority Whether to init priority with default value
*
* @return self
*/
public function reinitialize($initPriority = true)
{
foreach ($this->events as $e) {
if ($e instanceof Event) {
$e->free();
}
// We do not free the buffered events -
// it damages the resources in the parent.
// PHP will free instances and resources on the end of the process
}
$this->events = $this->timers = array();
$this->init($initPriority);
return $this;
}
/**
* Desctructor
*/
public function __destruct()
{
$this->resource && $this->free();
}
/**
* Destroys the specified event_base and frees
* all the resources associated.
*
* Note that it's not possible to destroy an
* event base with events attached to it.
*
* @see event_base_free
*
* @return self
*/
public function free()
{
if ($this->resource) {
$this->freeAttachedEvents();
@event_base_free($this->resource);
$this->resource = null;
}
return $this;
}
/**
* Frees all attached timers and events
*
* @return self
*/
public function freeAttachedEvents()
{
foreach ($this->events as $e) {
$e->free();
}
$this->events =
$this->timers = array();
return $this;
}
/**
* Associate event base with an event (or buffered event).
*
* @see Event::setBase
* @see EventBuffer::setBase
*
* @throws Exception
*
* @param EventBasic $event
*
* @return self
*/
public function setEvent($event)
{
$event->setBase($this);
return $this;
}
/**
* Starts event loop for the specified event base.
*
* @see event_base_loop
*
* @throws Exception if error
*
* @param int $flags [optional] <p>
* Any combination of EVLOOP_ONCE
* and EVLOOP_NONBLOCK.
* <p>
*
* @return int Returns 0 on success, 1 if no events were registered.
*/
public function loop($flags = 0)
{
$this->checkResourse();
$res = event_base_loop($this->resource, $flags);
if ($res === -1) {
throw new Exception(
"Can't start base loop (event_base_loop)"
);
}
return $res;
}
/**
* Abort the active event loop immediately.
* The behaviour is similar to break statement.
*
* @see event_base_loopbreak
*
* @throws Exception
*
* @return self
*/
public function loopBreak()
{
$this->checkResourse();
if (!event_base_loopbreak($this->resource)) {
throw new Exception(
"Can't break loop (event_base_loopbreak)"
);
}
return $this;
}
/**
* Exit loop after a time.
*
* @see event_base_loopexit
*
* @throws Exception
*
* @param int $timeout [optional] <p>
* Timeout in microseconds.
* <p>
*
* @return self
*/
public function loopExit($timeout = -1)
{
$this->checkResourse();
if (!event_base_loopexit($this->resource, $timeout)) {
throw new Exception(
"Can't set loop exit timeout (event_base_loopexit)"
);
}
return $this;
}
/**
* Sets the maximum priority level of the event base.
*
* @see event_base_priority_init
*
* @throws Exception
*
* @param int $value
*
* @return self
*/
public function priorityInit($value = self::MAX_PRIORITY)
{
$this->checkResourse();
if (!event_base_priority_init($this->resource, ++$value)) {
throw new Exception(
"Can't set the maximum priority level of the event base"
." to {$value} (event_base_priority_init)"
);
}
return $this;
}
/**
* Checks event base resource.
*
* @throws Exception if resource is already freed
*/
public function checkResourse()
{
if (!$this->resource) {
throw new Exception(
"Can't use event base resource. It's already freed."
);
}
}
/**
* Adds a new named timer to the base or customize existing.
*
* @throws Exception
*
* @param string $name Timer name
* @param int $interval Interval
* @param callback $callback <p>
* Callback function to be called when the interval expires.<br/>
* <tt>function(string $timer_name, mixed $arg,
* int $iteration, EventBase $event_base){}</tt><br/>
* If callback will return FALSE timer will not
* be added again for next iteration.
* </p>
* @param mixed $arg Additional timer argument
* @param bool $start Whether to start timer
* @param int $q Interval multiply factor
*/
public function timerAdd($name, $interval = null, $callback = null,
$arg = null, $start = true, $q = 1000000)
{
$notExists = !isset($this->timers[$name]);
if (($notExists || $callback)
&& !is_callable($callback, false, $callableName)
) {
throw new Exception(
"Incorrect callback '{$callableName}' for timer ({$name})."
);
}
if ($notExists) {
$event = new Event();
$event->setTimer(array($this, '_onTimer'), $name)
->setBase($this);
$this->timers[$name] = array(
'name' => $name,
'callback' => $callback,
'event' => $event,
'interval' => $interval,
'arg' => $arg,
'q' => $q,
'i' => 0,
);
} else {
$timer = &$this->timers[$name];
/** @var $event Event */
$event = $timer['event'];
$event->del();
if ($callback) {
$timer['callback'] = $callback;
}
if ($interval > 1) {
$timer['interval'] = $interval;
}
if ($arg !== null) {
$timer['arg'] = $arg;
}
$timer['i'] = 0;
}
if ($start) {
$this->timerStart($name);
}
}
/**
* Starts timer
*
* @param string $name Timer name
* @param int $interval Interval
* @param mixed $arg Additional timer argument
* @param bool $resetIteration Whether to reset iteration counter
*
* @throws Exception
*/
public function timerStart($name, $interval = null,
$arg = null, $resetIteration = true)
{
if (!isset($this->timers[$name])) {
throw new Exception(
"Unknown timer '{$name}'. Add timer before using."
);
}
$timer = &$this->timers[$name];
if ($resetIteration) {
$timer['i'] = 0;
}
if ($arg !== null) {
$timer['arg'] = $arg;
}
if ($interval > 1) {
$timer['interval'] = $interval;
}
/** @var $event Event */
$event = $timer['event'];
$event->add($timer['interval'] * $timer['q']);
}
/**
* <p>Stops timer when it's started and waiting.</p>
*
* <p>Don't call from timer callback.
* Return FALSE instead - see {@link timerAdd}().</p>
*
* @param string $name Timer name
*/
public function timerStop($name)
{
if (!isset($this->timers[$name])) {
return;
}
$timer = &$this->timers[$name];
/** @var $event Event */
$event = $timer['event'];
$event->del();
$timer['i'] = 0;
}
/**
* Completely destroys timer
*
* @param string $name Timer name
*/
public function timerDelete($name)
{
if (!isset($this->timers[$name])) {
return;
}
$timer = &$this->timers[$name];
/** @var $event Event */
$event = $timer['event'];
$event->free();
unset($this->timers[$name]);
}
/**
* Return whther timer with such name exists in the base
*
* @param string $name Timer name
*
* @return bool
*/
public function timerExists($name)
{
return isset($this->timers[$name]);
}
/**
* Timer callback
*
* @see Event::setTimer
*
* @access protected
* @internal
*
* @param null $fd
* @param int $event EV_TIMEOUT
* @param array $args
*/
public function _onTimer($fd, $event, $args)
{
$name = $args[1];
// Skip deleted timers
if (!isset($this->timers[$name])) {
return;
}
// Invoke callback
$timer = &$this->timers[$name];
$res = call_user_func(
$timer['callback'],
$name,
$timer['arg'],
++$timer['i'],
$this
);
if ($res) {
$this->timerStart(
$name, null, null, false
);
} else {
$timer['i'] = 0;
}
}
}