forked from smallnest/epoller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
epoll_bsd.go
executable file
·160 lines (132 loc) · 3.12 KB
/
epoll_bsd.go
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
//go:build darwin || netbsd || freebsd || openbsd || dragonfly
// +build darwin netbsd freebsd openbsd dragonfly
package epoller
import (
"errors"
"net"
"sync"
"syscall"
)
var _ Poller = (*Epoll)(nil)
// Epoll is a epoll based poller.
type Epoll struct {
fd int
ts syscall.Timespec
connBufferSize int
mu *sync.RWMutex
changes []syscall.Kevent_t
conns map[int]net.Conn
connbuf []net.Conn
}
// NewPoller creates a new poller instance.
func NewPoller(connBufferSize int) (*Epoll, error) {
return newPollerWithBuffer(connBufferSize)
}
// newPollerWithBuffer creates a new poller instance with buffer size.
func newPollerWithBuffer(count int) (*Epoll, error) {
p, err := syscall.Kqueue()
if err != nil {
panic(err)
}
_, err = syscall.Kevent(p, []syscall.Kevent_t{{
Ident: 0,
Filter: syscall.EVFILT_USER,
Flags: syscall.EV_ADD | syscall.EV_CLEAR,
}}, nil, nil)
if err != nil {
panic(err)
}
return &Epoll{
fd: p,
ts: syscall.NsecToTimespec(1e9),
connBufferSize: count,
mu: &sync.RWMutex{},
conns: make(map[int]net.Conn),
connbuf: make([]net.Conn, count, count),
}, nil
}
// Close closes the poller.
func (e *Epoll) Close(closeConns bool) error {
e.mu.Lock()
defer e.mu.Unlock()
if closeConns {
for _, conn := range e.conns {
conn.Close()
}
}
e.conns = nil
e.changes = nil
e.connbuf = e.connbuf[:0]
return syscall.Close(e.fd)
}
// Add adds a network connection to the poller.
func (e *Epoll) Add(conn net.Conn) error {
conn = newConnImpl(conn)
fd := socketFD(conn)
if e := syscall.SetNonblock(int(fd), true); e != nil {
return errors.New("udev: unix.SetNonblock failed")
}
e.mu.Lock()
defer e.mu.Unlock()
e.changes = append(e.changes,
syscall.Kevent_t{
Ident: uint64(fd), Flags: syscall.EV_ADD | syscall.EV_EOF, Filter: syscall.EVFILT_READ,
},
)
e.conns[fd] = conn
return nil
}
// Remove removes a connection from the poller.
// If close is true, the connection will be closed.
func (e *Epoll) Remove(conn net.Conn) error {
fd := socketFD(conn)
e.mu.Lock()
defer e.mu.Unlock()
if len(e.changes) <= 1 {
e.changes = nil
} else {
changes := make([]syscall.Kevent_t, 0, len(e.changes)-1)
ident := uint64(fd)
for _, ke := range e.changes {
if ke.Ident != ident {
changes = append(changes, ke)
}
}
e.changes = changes
}
delete(e.conns, fd)
return nil
}
// Wait waits for events and returns the connections.
func (e *Epoll) Wait(count int) ([]net.Conn, error) {
events := make([]syscall.Kevent_t, count)
e.mu.RLock()
changes := e.changes
e.mu.RUnlock()
retry:
n, err := syscall.Kevent(e.fd, changes, events, &e.ts)
if err != nil {
if err == syscall.EINTR {
goto retry
}
return nil, err
}
var conns []net.Conn
if e.connBufferSize == 0 {
conns = make([]net.Conn, 0, n)
} else {
conns = e.connbuf[:0]
}
e.mu.RLock()
for i := 0; i < n; i++ {
conn := e.conns[int(events[i].Ident)]
if conn != nil {
if (events[i].Flags & syscall.EV_EOF) == syscall.EV_EOF {
conn.Close()
}
conns = append(conns, conn)
}
}
e.mu.RUnlock()
return conns, nil
}