forked from valyala/fasthttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeconns.go
280 lines (233 loc) · 4.58 KB
/
pipeconns.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
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
271
272
273
274
275
276
277
278
279
280
package fasthttputil
import (
"errors"
"io"
"net"
"sync"
"time"
)
// NewPipeConns returns new bi-directonal connection pipe.
func NewPipeConns() *PipeConns {
ch1 := acquirePipeChan()
ch2 := acquirePipeChan()
pc := &PipeConns{}
pc.c1.r = ch1
pc.c1.w = ch2
pc.c2.r = ch2
pc.c2.w = ch1
pc.c1.pc = pc
pc.c2.pc = pc
return pc
}
// PipeConns provides bi-directional connection pipe,
// which use in-process memory as a transport.
//
// PipeConns must be created by calling NewPipeConns.
//
// PipeConns has the following additional features comparing to connections
// returned from net.Pipe():
//
// * It is faster.
// * It buffers Write calls, so there is no need to have concurrent goroutine
// calling Read in order to unblock each Write call.
type PipeConns struct {
c1 pipeConn
c2 pipeConn
}
// Conn1 returns the first end of bi-directional pipe.
//
// Data written to Conn1 may be read from Conn2.
// Data written to Conn2 may be read from Conn1.
func (pc *PipeConns) Conn1() net.Conn {
return &pc.c1
}
// Conn2 returns the second end of bi-directional pipe.
//
// Data written to Conn2 may be read from Conn1.
// Data written to Conn1 may be read from Conn2.
func (pc *PipeConns) Conn2() net.Conn {
return &pc.c2
}
func (pc *PipeConns) release() {
pc.c1.wlock.Lock()
pc.c2.wlock.Lock()
mustRelease := pc.c1.wclosed && pc.c2.wclosed
pc.c1.wlock.Unlock()
pc.c2.wlock.Unlock()
if mustRelease {
pc.c1.release()
pc.c2.release()
}
}
type pipeConn struct {
r *pipeChan
w *pipeChan
b *byteBuffer
bb []byte
rlock sync.Mutex
rclosed bool
wlock sync.Mutex
wclosed bool
pc *PipeConns
}
func (c *pipeConn) Write(p []byte) (int, error) {
b := acquireByteBuffer()
b.b = append(b.b[:0], p...)
c.wlock.Lock()
if c.wclosed {
c.wlock.Unlock()
releaseByteBuffer(b)
return 0, errConnectionClosed
}
c.w.ch <- b
c.wlock.Unlock()
return len(p), nil
}
func (c *pipeConn) Read(p []byte) (int, error) {
mayBlock := true
nn := 0
for len(p) > 0 {
n, err := c.read(p, mayBlock)
nn += n
if err != nil {
if !mayBlock && err == errWouldBlock {
err = nil
}
return nn, err
}
p = p[n:]
mayBlock = false
}
return nn, nil
}
func (c *pipeConn) read(p []byte, mayBlock bool) (int, error) {
if len(c.bb) == 0 {
c.rlock.Lock()
releaseByteBuffer(c.b)
c.b = nil
if c.rclosed {
c.rlock.Unlock()
return 0, io.EOF
}
if mayBlock {
c.b = <-c.r.ch
} else {
select {
case c.b = <-c.r.ch:
default:
c.rlock.Unlock()
return 0, errWouldBlock
}
}
if c.b == nil {
c.rclosed = true
c.rlock.Unlock()
return 0, io.EOF
}
c.bb = c.b.b
c.rlock.Unlock()
}
n := copy(p, c.bb)
c.bb = c.bb[n:]
return n, nil
}
var (
errWouldBlock = errors.New("would block")
errConnectionClosed = errors.New("connection closed")
errNoDeadlines = errors.New("deadline not supported")
)
func (c *pipeConn) Close() error {
c.wlock.Lock()
if c.wclosed {
c.wlock.Unlock()
return errConnectionClosed
}
c.wclosed = true
c.w.ch <- nil
c.wlock.Unlock()
c.pc.release()
return nil
}
func (c *pipeConn) release() {
c.rlock.Lock()
releaseByteBuffer(c.b)
c.b = nil
if !c.rclosed {
c.rclosed = true
for b := range c.r.ch {
releaseByteBuffer(b)
if b == nil {
break
}
}
}
if c.r != nil {
releasePipeChan(c.r)
c.r = nil
c.w = nil
}
c.rlock.Unlock()
}
func (c *pipeConn) LocalAddr() net.Addr {
return pipeAddr(0)
}
func (c *pipeConn) RemoteAddr() net.Addr {
return pipeAddr(0)
}
func (c *pipeConn) SetDeadline(t time.Time) error {
return errNoDeadlines
}
func (c *pipeConn) SetReadDeadline(t time.Time) error {
return c.SetDeadline(t)
}
func (c *pipeConn) SetWriteDeadline(t time.Time) error {
return c.SetDeadline(t)
}
type pipeAddr int
func (pipeAddr) Network() string {
return "pipe"
}
func (pipeAddr) String() string {
return "pipe"
}
type byteBuffer struct {
b []byte
}
func acquireByteBuffer() *byteBuffer {
return byteBufferPool.Get().(*byteBuffer)
}
func releaseByteBuffer(b *byteBuffer) {
if b != nil {
byteBufferPool.Put(b)
}
}
var byteBufferPool = &sync.Pool{
New: func() interface{} {
return &byteBuffer{
b: make([]byte, 1024),
}
},
}
func acquirePipeChan() *pipeChan {
ch := pipeChanPool.Get().(*pipeChan)
if len(ch.ch) > 0 {
panic("BUG: non-empty pipeChan acquired")
}
return ch
}
func releasePipeChan(ch *pipeChan) {
if len(ch.ch) > 0 {
panic("BUG: non-empty pipeChan released")
}
pipeChanPool.Put(ch)
}
var pipeChanPool = &sync.Pool{
New: func() interface{} {
return &pipeChan{
ch: make(chan *byteBuffer, 4),
}
},
}
type pipeChan struct {
ch chan *byteBuffer
}