forked from xtaci/gaio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aio_linux.go
184 lines (159 loc) · 3.67 KB
/
aio_linux.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// +build linux
package gaio
import (
"net"
"sync"
"syscall"
"unsafe"
)
// _EPOLLET value is incorrect in syscall
const (
_EPOLLET = 0x80000000
_EFD_NONBLOCK = 0x800
)
type poller struct {
mu sync.Mutex // mutex to protect fd closing
pfd int // epoll fd
efd int // eventfd
efdbuf []byte
// awaiting for poll
awaiting []int
awaitingMutex sync.Mutex
// closing signal
die chan struct{}
dieOnce sync.Once
}
// dupconn use RawConn to dup() file descriptor
func dupconn(conn net.Conn) (newfd int, err error) {
sc, ok := conn.(interface {
SyscallConn() (syscall.RawConn, error)
})
if !ok {
return -1, ErrUnsupported
}
rc, err := sc.SyscallConn()
if err != nil {
return -1, ErrUnsupported
}
// Control() guarantees the integrity of file descriptor
ec := rc.Control(func(fd uintptr) {
newfd, err = syscall.Dup(int(fd))
})
if ec != nil {
return -1, ec
}
return
}
func openPoll() (*poller, error) {
fd, err := syscall.EpollCreate1(syscall.EPOLL_CLOEXEC)
if err != nil {
return nil, err
}
r0, _, e0 := syscall.Syscall(syscall.SYS_EVENTFD2, 0, _EFD_NONBLOCK, 0)
if e0 != 0 {
syscall.Close(fd)
return nil, err
}
if err := syscall.EpollCtl(fd, syscall.EPOLL_CTL_ADD, int(r0),
&syscall.EpollEvent{Fd: int32(r0),
Events: syscall.EPOLLIN,
},
); err != nil {
syscall.Close(fd)
syscall.Close(int(r0))
return nil, err
}
p := new(poller)
p.pfd = fd
p.efd = int(r0)
p.efdbuf = make([]byte, 8)
p.die = make(chan struct{})
return p, err
}
// Close the poller
func (p *poller) Close() error {
p.dieOnce.Do(func() {
close(p.die)
})
return p.wakeup()
}
func (p *poller) Watch(fd int) error {
p.awaitingMutex.Lock()
p.awaiting = append(p.awaiting, fd)
p.awaitingMutex.Unlock()
return p.wakeup()
}
// wakeup interrupt epoll_wait
func (p *poller) wakeup() error {
p.mu.Lock()
if p.efd != -1 {
var x uint64 = 1
// eventfd has set with EFD_NONBLOCK
_, err := syscall.Write(p.efd, (*(*[8]byte)(unsafe.Pointer(&x)))[:])
p.mu.Unlock()
return err
}
p.mu.Unlock()
return ErrPollerClosed
}
func (p *poller) Wait(chEventNotify chan pollerEvents) {
events := make([]syscall.EpollEvent, maxEvents)
// close poller fd & eventfd in defer
defer func() {
p.mu.Lock()
syscall.Close(p.pfd)
syscall.Close(p.efd)
p.pfd = -1
p.efd = -1
p.mu.Unlock()
}()
// epoll eventloop
for {
select {
case <-p.die:
return
default:
// check for new awaiting
p.awaitingMutex.Lock()
for _, fd := range p.awaiting {
syscall.EpollCtl(p.pfd, syscall.EPOLL_CTL_ADD, int(fd), &syscall.EpollEvent{Fd: int32(fd), Events: syscall.EPOLLRDHUP | syscall.EPOLLIN | syscall.EPOLLOUT | _EPOLLET})
}
p.awaiting = p.awaiting[:0]
p.awaitingMutex.Unlock()
n, err := syscall.EpollWait(p.pfd, events, -1)
if err == syscall.EINTR {
continue
}
if err != nil {
return
}
// event processing
var pe pollerEvents
for i := 0; i < n; i++ {
ev := &events[i]
if int(ev.Fd) == p.efd {
syscall.Read(p.efd, p.efdbuf) // simply consume
} else {
e := event{ident: int(ev.Fd)}
// EPOLLRDHUP (since Linux 2.6.17)
// Stream socket peer closed connection, or shut down writing
// half of connection. (This flag is especially useful for writ-
// ing simple code to detect peer shutdown when using Edge Trig-
// gered monitoring.)
if ev.Events&(syscall.EPOLLIN|syscall.EPOLLERR|syscall.EPOLLHUP|syscall.EPOLLRDHUP) != 0 {
e.r = true
}
if ev.Events&(syscall.EPOLLOUT|syscall.EPOLLERR|syscall.EPOLLHUP) != 0 {
e.w = true
}
pe = append(pe, e)
}
}
select {
case chEventNotify <- pe:
case <-p.die:
return
}
}
}
}