forked from amal/AzaLibEvent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventBasic.php
123 lines (109 loc) · 1.95 KB
/
EventBasic.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
<?php
namespace Aza\Components\LibEvent;
use Aza\Components\LibEvent\Exceptions\Exception;
/**
* LibEvent "basic" event functionality
*
* @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
*/
abstract class EventBasic
{
/**
* Unique event IDs counter
*
* @var int
*/
private static $counter = 0;
/**
* Unique (for current process) event ID
*
* @var int
*/
public $id;
/**
* Event resource
*
* @var resource
*/
protected $resource;
/**
* Event loop
*
* @var EventBase
*/
protected $base;
/**
* Creates a new event resource.
*
* @throws Exception <p>
* If Libevent isn't available or can't create
* new event resource.
* </p>
*/
public function __construct()
{
if (!EventBase::$hasLibevent) {
throw new Exception(
'You need to install PECL extension "Libevent" to use this class'
);
}
$this->id = ++self::$counter;
}
/**
* Desctructor
*/
public function __destruct()
{
$this->resource && $this->free();
}
/**
* Destroys the event and frees all the resources associated.
*
* @param bool $afterForkCleanup [optional] <p>
* Special handling of cleanup after fork
* </p>
*
* @return $this
*/
public function free($afterForkCleanup = false)
{
if ($this->base) {
unset($this->base->events[$this->id]);
$this->base = null;
}
return $this;
}
/**
* Associate event with an event base
*
* @param EventBase $event_base
*
* @return $this
*/
public function setBase($event_base)
{
$this->base = $event_base;
$event_base->events[$this->id] = $this;
return $this;
}
/**
* Checks event resource.
*
* @throws Exception if resource is already freed
*/
protected function checkResource()
{
if (!$this->resource) {
throw new Exception(
"Can't use event resource. It's already freed."
);
}
}
}