-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.go
338 lines (299 loc) · 8.31 KB
/
client.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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
package drpc
import (
"bufio"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"log"
"net"
"net/http"
"strings"
"sync"
"time"
"github.com/devhg/drpc/codec"
)
type Call struct {
Seq uint64
ServiceMethod string
Args interface{}
Reply interface{}
Error error
Done chan *Call
}
func (c *Call) done() {
c.Done <- c
}
// Client represents an RPC Client.
// There may be multiple outstanding Calls associated
// with a single Client, and a Client may be used by
// multiple goroutines simultaneously(同时的).
// 英语真是个好东西!!!
type Client struct {
cc codec.Codec
header codec.Header
opt *Option
sending sync.Mutex // 防止多个请求报文的混乱,保证一次请求发送是原子的
mu sync.Mutex
seq uint64
pending map[uint64]*Call
closing bool
shutdown bool
}
var ErrShutdown = errors.New("connection is shut down")
func NewClient(conn net.Conn, opt *Option) (*Client, error) {
codecFunc := codec.NewCodecFuncMap[opt.CodecType]
if codecFunc == nil {
err := fmt.Errorf("invalid codec type: %s", opt.CodecType)
log.Println("rpc client: invalid codec type:", opt.CodecType)
return nil, err
}
if err := json.NewEncoder(conn).Encode(opt); err != nil {
log.Println()
_ = conn.Close()
return nil, err
}
return newClientWithCodec(codecFunc(conn), opt), nil
}
func newClientWithCodec(cc codec.Codec, opt *Option) *Client {
client := &Client{
cc: cc,
opt: opt,
seq: 1,
pending: make(map[uint64]*Call),
}
go client.receive()
return client
}
func (c *Client) Close() error {
c.mu.Lock()
defer c.mu.Unlock()
if c.closing {
return ErrShutdown
}
c.closing = true
return c.cc.Close()
}
// IsAvailable determine whether the Client is reachable
func (c *Client) IsAvailable() bool {
c.mu.Lock()
defer c.mu.Unlock()
return !c.shutdown && !c.closing
}
func (c *Client) registerCall(call *Call) (uint64, error) {
c.mu.Lock()
defer c.mu.Unlock()
if c.closing || c.shutdown {
return 0, ErrShutdown
}
call.Seq = c.seq
c.pending[c.seq] = call
c.seq++
return call.Seq, nil
}
func (c *Client) removeCall(seq uint64) (call *Call) {
c.mu.Lock()
defer c.mu.Unlock()
if c.closing || c.shutdown {
return nil
}
call = c.pending[seq]
delete(c.pending, seq)
return
}
// 当服务端或者客户端发生错误的时候,终止队列中的所有Call
func (c *Client) terminateCalls(err error) {
c.sending.Lock()
defer c.sending.Unlock()
c.mu.Lock()
defer c.mu.Unlock()
c.shutdown = true
for _, call := range c.pending {
call.Error = err
call.done()
}
}
func (c *Client) receive() {
var err error
for err == nil {
var h codec.Header
if err := c.cc.ReadHeader(&h); err != nil {
break
}
call := c.removeCall(h.Seq)
switch {
case call == nil:
err = c.cc.ReadBody(nil)
case h.Error != "":
call.Error = errors.New(h.Error)
err = c.cc.ReadBody(nil)
call.done()
default:
err = c.cc.ReadBody(call.Reply)
if err != nil {
call.Error = errors.New("rpc client: reading body: " + err.Error())
}
call.done()
}
}
// errors occurs, so terminateCalls pending calls.
c.terminateCalls(err)
}
// Call 是客户端暴露给用户的RPC服务调用接口,它是对 Go 的封装。
// 阻塞等待call.Done(),等待响应返回,是一个同步接口
// Client.Call 的超时处理机制,使用 context 包实现,控制权交给用户,控制更为灵活。
func (c *Client) Call(ctx context.Context, serviceMethod string, args, reply interface{}) error {
call := c.Go(serviceMethod, args, reply, make(chan *Call, 1))
select {
case <-ctx.Done():
c.removeCall(call.Seq)
return errors.New("rpc client: call failed: " + ctx.Err().Error())
case call := <-call.Done:
return call.Error
}
}
// Go 是客户端暴露给用户的RPC服务调用接口,与 Call 不同的是,
// Go 是一个异步接口,它返回一个Call实例
func (c *Client) Go(serviceMethod string, args, reply interface{}, done chan *Call) *Call {
if done == nil {
done = make(chan *Call, 10)
} else if cap(done) == 0 {
log.Panic("rpc client: done channel is unbuffered")
}
call := &Call{
ServiceMethod: serviceMethod,
Args: args,
Reply: reply,
Done: done,
}
c.send(call)
return call
}
func (c *Client) send(call *Call) {
c.sending.Lock()
defer c.sending.Unlock()
seq, err := c.registerCall(call)
if err != nil {
call.Error = err
call.done()
return
}
// prepare request header
c.header.ServiceMethod = call.ServiceMethod
c.header.Seq = seq
c.header.Error = ""
// encode and send the request
if err := c.cc.Write(&c.header, call.Args); err != nil {
call := c.removeCall(seq)
// call may be is nil, it usually means that Write method
// partially failed, client has received the response and handled
if call != nil {
call.Error = err
call.done()
}
}
}
// Dial connects to an RPC server at the specified network address
func Dial(network, addr string, opts ...*Option) (client *Client, err error) {
return dialTimeout(NewClient, network, addr, opts...)
}
type newClientFunc func(conn net.Conn, opt *Option) (*Client, error)
type clientResult struct {
client *Client
err error
}
// 在这里实现了一个超时处理的外壳 dialTimeout,
// 这个壳将 NewClient 作为入参,在 2 个地方添加了超时处理的机制。
// 1)将 net.Dial 替换为 net.DialTimeout,如果连接创建超时,将返回错误。
// 2)使用子协程执行 NewClient,执行完成后则通过信道 ch 发送结果,
// 如果 time.After() 信道先接收到消息,则说明 NewClient 执行超时,返回错误。
func dialTimeout(f newClientFunc, network, addr string, opts ...*Option) (client *Client, err error) {
option, err := parseOptions(opts...)
if err != nil {
return nil, err
}
conn, err := net.DialTimeout(network, addr, option.ConnectTimeout)
if err != nil {
return nil, err
}
// close the connection if err is not nil
defer func() {
if err != nil {
_ = conn.Close()
}
}()
ch := make(chan clientResult)
go func() {
client, err := f(conn, option)
ch <- clientResult{client, err}
}()
// block if ConnectTimout is equal with zero
if option.ConnectTimeout == 0 {
result := <-ch
return result.client, result.err
}
// no block else
select {
case <-time.After(option.ConnectTimeout):
return nil, fmt.Errorf("rpc client: connect timeout")
case result := <-ch:
return result.client, result.err
}
}
func parseOptions(opts ...*Option) (*Option, error) {
if len(opts) == 0 || opts[0] == nil {
return DefaultOption, nil
}
if len(opts) > 1 {
return nil, errors.New("number of option is more than 1")
}
opt := opts[0]
opt.MagicNumber = DefaultOption.MagicNumber
if opt.CodecType == "" {
opt.CodecType = DefaultOption.CodecType
}
return opt, nil
}
// NewHTTPClient new a Client instance via HTTP as transport protocol
func NewHTTPClient(conn net.Conn, opt *Option) (*Client, error) {
// Send a request to establish a connection
_, _ = io.WriteString(conn, fmt.Sprintf("CONNECT %s HTTP/1.0\n\n", defaultRPCPath))
// Require successful HTTP response
// before switching to RPC protocol
resp, err := http.ReadResponse(bufio.NewReader(conn), &http.Request{Method: "CONNECT"})
if err != nil {
return nil, err
}
defer resp.Body.Close()
if err == nil && resp.Status == connected {
return NewClient(conn, opt)
}
if err == nil {
err = errors.New("rpc client: unexpected HTTP response: " + resp.Status)
}
return nil, err
}
// DialHTTP connects to an HTTP RPC server at the specified network address
// listening on the default HTTP RPC path.
func DialHTTP(network, addr string, opts ...*Option) (*Client, error) {
return dialTimeout(NewHTTPClient, network, addr, opts...)
}
// XDial calls different functions to connect to a RPC server
// according the first parameter rpcAddr.
// rpcAddr is a general format (protocol@addr) to represent a rpc server
// eg, [email protected]:7001, [email protected]:9999, unix@/tmp/drpc.sock
func XDial(rpcAddr string, opts ...*Option) (*Client, error) {
parts := strings.Split(rpcAddr, "@")
if len(parts) != 2 {
return nil, fmt.Errorf("rpc client err: wrong format '%s', expect protocol@addr", rpcAddr)
}
protocol, addr := parts[0], parts[1]
switch protocol {
case "http":
return DialHTTP("tcp", addr, opts...)
default:
// tcp, unix or other transport protocol
return Dial(protocol, addr, opts...)
}
}