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
/
Copy pathEventBasic.php
112 lines (98 loc) · 1.75 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
<?php
namespace Aza\Components\LibEvent;
use Aza\Components\LibEvent\Exceptions\Exception;
use Aza\Components\CliBase\Base;
/**
* 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
*/
public $resource;
/**
* @var EventBase
*/
public $base;
/**
* Creates a new event resource.
*
* @throws Exception if Libevent isn't available
*/
public function __construct()
{
if (!Base::$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.
*/
public function free()
{
if ($this->base) {
unset($this->base->events[$this->id]);
$this->base = null;
}
}
/**
* Associate buffered event with an event base
*
* @param EventBase $event_base
*
* @return static
*/
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 checkResourse()
{
if (!$this->resource) {
throw new Exception(
"Can't use event resource. It's already freed."
);
}
}
}