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
/
Event.php
270 lines (255 loc) · 5.22 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
<?php
namespace Aza\Components\LibEvent;
use Aza\Components\LibEvent\Exceptions\Exception;
use Aza\Components\CliBase\Base;
/**
* LibEvent event 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 Event extends EventBasic
{
/**
* Event resource
*
* @var resource
*/
public $resource;
/**
* @var EventBase
*/
public $base;
/**
* Creates a new event resource.
*
* @see event_new
*
* @throws Exception
*/
public function __construct()
{
parent::__construct();
if (!$this->resource = event_new()) {
throw new Exception(
"Can't create new event resourse (event_new)"
);
}
}
/**
* 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 self
*/
public function add($timeout = -1)
{
$this->checkResourse();
if (!event_add($this->resource, $timeout)) {
throw new Exception(
"Can't add event (event_add)"
);
}
return $this;
}
/**
* Remove an event from the set of monitored events.
*
* @see event_del
*
* @throws Exception if can't delete event
*
* @return self
*/
public function del()
{
$this->checkResourse();
if (!event_del($this->resource)) {
throw new Exception(
"Can't delete event (event_del)"
);
}
return $this;
}
/**
* Associate event with an event base.
*
* @see event_base_set
*
* @throws Exception
*
* @param EventBase $event_base
*
* @return self
*/
public function setBase($event_base)
{
$this->checkResourse();
$event_base->checkResourse();
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);
}
/**
* Destroys the event and frees all the resources associated.
*
* @see event_free
*
* @return self
*/
public function free()
{
parent::free();
if ($res = $this->resource) {
event_del($res);
event_free($res);
$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 self
*/
public function set($fd, $events, $callback, $arg = null)
{
$this->checkResourse();
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(null $fd, 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 self
*/
public function setSignal($signo, $callback,
$persist = true, $arg = null)
{
$this->checkResourse();
$events = EV_SIGNAL;
if ($persist) {
$events |= EV_PERSIST;
}
if (!event_set(
$this->resource,
$signo,
$events,
$callback,
array($this, $arg, $signo)
)) {
$name = Base::signalName($signo);
throw new Exception(
"Can't prepare event (event_set) for $name ($signo) signal"
);
}
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 self
*/
public function setTimer($callback, $arg = null)
{
$this->checkResourse();
if (!event_timer_set(
$this->resource,
$callback,
array($this, $arg)
)) {
throw new Exception(
"Can't prepare event (event_timer_set) for timer"
);
}
return $this;
}
}