-
Notifications
You must be signed in to change notification settings - Fork 8
/
connection.go
223 lines (186 loc) · 4.12 KB
/
connection.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
package tnt
import (
"bufio"
"fmt"
"io"
"net"
"strconv"
"strings"
"sync"
"sync/atomic"
"time"
)
func Connect(addr string, opts *Options) (connection *Connection, err error) {
connection = &Connection{
addr: addr,
requests: newRequestMap(),
requestChan: make(chan *request, 1024),
exit: make(chan bool),
closed: make(chan bool),
}
if opts == nil {
opts = &Options{}
}
if opts.ConnectTimeout.Nanoseconds() == 0 {
opts.ConnectTimeout = time.Second
}
if opts.QueryTimeout.Nanoseconds() == 0 {
opts.QueryTimeout = time.Second
}
if opts.MemcacheSpace == nil {
opts.MemcacheSpace = uint32(23)
}
var defaultSpace uint32
splittedAddr := strings.Split(addr, "/")
remoteAddr := splittedAddr[0]
if len(splittedAddr) > 1 {
i, err := strconv.Atoi(splittedAddr[1])
if err != nil {
return nil, fmt.Errorf("Wrong space: %s", splittedAddr[1])
}
defaultSpace = uint32(i)
}
if opts.DefaultSpace != nil {
i, err := interfaceToUint32(opts.DefaultSpace)
if err != nil {
return nil, fmt.Errorf("Wrong space: %#v", opts.DefaultSpace)
}
defaultSpace = i
}
connection.memcacheSpace = opts.MemcacheSpace
connection.queryTimeout = opts.QueryTimeout
connection.defaultSpace = defaultSpace
connection.tcpConn, err = net.DialTimeout("tcp", remoteAddr, opts.ConnectTimeout)
if err != nil {
return nil, err
}
go connection.worker(connection.tcpConn)
return
}
func (conn *Connection) nextID() uint32 {
return atomic.AddUint32(&conn.requestID, 1)
}
func (conn *Connection) newRequest(q Query) (reqID uint32, r *request, err error) {
if r, _ = requestsPool.Get().(*request); r == nil {
r = &request{replyChan: make(chan *Response, 1)}
}
reqID = conn.nextID()
r.raw, err = q.Pack(reqID, conn.defaultSpace)
if err != nil {
return 0, nil, &QueryError{error: err}
}
return reqID, r, nil
}
func (conn *Connection) releaseRequest(r *request) {
if len(r.replyChan) == 0 {
requestsPool.Put(r)
}
}
func (conn *Connection) stop() {
conn.closeOnce.Do(func() {
// debug.PrintStack()
close(conn.exit)
conn.tcpConn.Close()
})
}
func (conn *Connection) worker(tcpConn net.Conn) {
var wg sync.WaitGroup
wg.Add(2)
go func() {
writer(tcpConn, conn.requestChan, conn.exit)
conn.stop()
wg.Done()
}()
go func() {
conn.reader(tcpConn)
conn.stop()
wg.Done()
}()
wg.Wait()
// send error reply to all pending requests
conn.requests.CleanUp(func(req *request) {
req.replyChan <- &Response{
Error: ErrConnectionClosed,
}
})
close(conn.closed)
}
func writer(tcpConn net.Conn, writeChan chan *request, stopChan chan bool) {
var err error
var n int
w := bufio.NewWriter(tcpConn)
WRITER_LOOP:
for {
select {
case request, ok := <-writeChan:
if !ok {
break WRITER_LOOP
}
n, err = w.Write(request.raw)
// @TODO: handle error
if err != nil || n != len(request.raw) {
break WRITER_LOOP
}
case <-stopChan:
break WRITER_LOOP
default:
if err = w.Flush(); err != nil {
break WRITER_LOOP
}
// same without flush
select {
case request, ok := <-writeChan:
if !ok {
break WRITER_LOOP
}
n, err = w.Write(request.raw)
if err != nil || n != len(request.raw) {
break WRITER_LOOP
}
case <-stopChan:
break WRITER_LOOP
}
}
}
if err != nil {
// @TODO
// pp.Println(err)
}
}
func (conn *Connection) reader(tcpConn net.Conn) {
// var msgLen uint32
// var err error
header := make([]byte, 12)
headerLen := len(header)
var bodyLen uint32
var requestID uint32
var response *Response
var req *request
var err error
r := bufio.NewReaderSize(tcpConn, 128*1024)
READER_LOOP:
for {
_, err = io.ReadAtLeast(r, header, headerLen)
// @TODO: log error
if err != nil {
break READER_LOOP
}
bodyLen = UnpackInt(header[4:8])
requestID = UnpackInt(header[8:12])
body := make([]byte, bodyLen)
_, err = io.ReadAtLeast(r, body, int(bodyLen))
// @TODO: log error
if err != nil {
break READER_LOOP
}
response, err = UnpackBody(body)
// @TODO: log error
if err != nil {
break READER_LOOP
}
req = conn.requests.Pop(requestID)
if req != nil {
req.replyChan <- response
}
}
}