-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.go
262 lines (235 loc) · 6.19 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
package krpcgo
import (
"context"
"io"
"net"
"sync"
"github.com/atburke/krpc-go/types"
"github.com/golang/protobuf/proto"
"github.com/ztrue/tracerr"
)
// KRPCClient is a client for a kRPC server.
type KRPCClient struct {
mu sync.Mutex
KRPCClientConfig
conn net.Conn
*StreamClient
clientIdentifier [16]byte
}
// KRPCClientConfig is the config for a kRPC client.
type KRPCClientConfig struct {
// Host is the kRPC server host. Defaults to "localhost".
Host string
// RPCPort is the kRPC server port. Defaults to "50000".
RPCPort string
// StreamPort is the stream server port. Defaults to "50001".
StreamPort string
// ClientName is the client name sent to the kRPC server. Defaults to "krpc-go".
ClientName string
// RPCOnly will only set up the RPC client (and not the stream client) when enabled.
// Disabled by default.
RPCOnly bool
}
// SetDefaults sets the config defaults.
func (cfg *KRPCClientConfig) SetDefaults() {
if cfg.Host == "" {
cfg.Host = "localhost"
}
if cfg.RPCPort == "" {
cfg.RPCPort = "50000"
}
if cfg.StreamPort == "" {
cfg.StreamPort = "50001"
}
if cfg.ClientName == "" {
cfg.ClientName = "krpc-go"
}
}
// NewKRPCClient creates a new client.
func NewKRPCClient(cfg KRPCClientConfig) *KRPCClient {
cfg.SetDefaults()
return &KRPCClient{
KRPCClientConfig: cfg,
}
}
// DefaultKRPCClient creates a new kRPC client with all default parameters.
// Equivalent to `NewKRPCClient(KRPCClientConfig{})`.
func DefaultKRPCClient() *KRPCClient {
return NewKRPCClient(KRPCClientConfig{})
}
// Connect connects to a kRPC server.
func (c *KRPCClient) Connect(ctx context.Context) error {
if err := c.connectRPC(); err != nil {
return tracerr.Wrap(err)
}
if !c.RPCOnly {
if err := c.connectStream(ctx); err != nil {
return tracerr.Wrap(err)
}
}
return nil
}
// connectRPC performs the kRPC connection handshake with the RPC server.
func (c *KRPCClient) connectRPC() error {
conn, err := net.Dial("tcp", net.JoinHostPort(c.Host, c.RPCPort))
if err != nil {
return tracerr.Wrap(err)
}
c.conn = conn
request := types.ConnectionRequest{
Type: types.ConnectionRequest_RPC,
ClientName: c.ClientName,
}
out, err := proto.Marshal(&request)
if err != nil {
return tracerr.Wrap(err)
}
if err := c.Send(out); err != nil {
return tracerr.Wrap(err)
}
in, err := c.Receive()
if err != nil {
return tracerr.Wrap(err)
}
var resp types.ConnectionResponse
if err := proto.Unmarshal(in, &resp); err != nil {
return tracerr.Wrap(err)
}
if resp.Status != types.ConnectionResponse_OK {
return tracerr.Errorf(resp.Message)
}
copy(c.clientIdentifier[:], resp.ClientIdentifier)
return nil
}
// connectStream creates a new stream from a kRPC client.
func (c *KRPCClient) connectStream(ctx context.Context) error {
conn, err := net.Dial("tcp", net.JoinHostPort(c.Host, c.StreamPort))
if err != nil {
tracerr.Wrap(err)
}
request := types.ConnectionRequest{
Type: types.ConnectionRequest_STREAM,
ClientIdentifier: c.clientIdentifier[:],
}
out, err := proto.Marshal(&request)
if err != nil {
tracerr.Wrap(err)
}
if err := send(conn, out); err != nil {
tracerr.Wrap(err)
}
in, err := receive(conn)
if err != nil {
tracerr.Wrap(err)
}
var resp types.ConnectionResponse
if err := proto.Unmarshal(in, &resp); err != nil {
tracerr.Wrap(err)
}
if resp.Status != types.ConnectionResponse_OK {
tracerr.Errorf(resp.Message)
}
c.StreamClient = NewStreamClient(conn)
go c.StreamClient.Run(ctx)
return nil
}
// Close closes the client.
func (c *KRPCClient) Close() error {
var errors []error
if c.StreamClient != nil {
errors = append(errors, c.StreamClient.Close())
}
errors = append(errors, c.conn.Close())
if len(errors) > 0 {
return tracerr.Errorf("Failed to close connection(s): %v", errors)
}
return nil
}
// send writes length-encoded data to a writer.
func send(w io.Writer, data []byte) error {
rawLength := proto.EncodeVarint((uint64)(len(data)))
_, err := w.Write(rawLength)
if err != nil {
return tracerr.Wrap(err)
}
_, err = w.Write(data)
return tracerr.Wrap(err)
}
// receive reads length-encoded data from a reader.
func receive(r io.Reader) ([]byte, error) {
messageLength, err := readMessageLength(r)
if err != nil {
return nil, tracerr.Wrap(err)
}
data := make([]byte, messageLength)
_, err = io.ReadFull(r, data)
return data, tracerr.Wrap(err)
}
// Send sends protobuf-encoded data to a kRPC server.
func (c *KRPCClient) Send(data []byte) error {
return tracerr.Wrap(send(c.conn, data))
}
// Receive receives protobuf-encoded data from a kRPC server.
func (c *KRPCClient) Receive() ([]byte, error) {
data, err := receive(c.conn)
return data, tracerr.Wrap(err)
}
// readMessageLength attempts to read the varint-encoded length of
// a message
func readMessageLength(r io.Reader) (uint64, error) {
var rawLength []byte
for len(rawLength) < 16 {
b := make([]byte, 1)
_, err := r.Read(b)
if err != nil {
return 0, tracerr.Wrap(err)
}
rawLength = append(rawLength, b...)
length, size := proto.DecodeVarint(rawLength)
if size > 0 {
return length, nil
}
}
return 0, tracerr.Errorf("Message does not appear to start with length: %v", rawLength)
}
// CallMultiple performs a batch of procedure calls to the rpc server.
func (c *KRPCClient) CallMultiple(calls []*types.ProcedureCall) ([]*types.ProcedureResult, error) {
req := &types.Request{
Calls: calls,
}
out, err := proto.Marshal(req)
if err != nil {
return nil, tracerr.Wrap(err)
}
// Lock here to prevent RPC requests from intermingling.
c.mu.Lock()
if err := c.Send(out); err != nil {
c.mu.Unlock()
return nil, tracerr.Wrap(err)
}
in, err := c.Receive()
c.mu.Unlock()
if err != nil {
return nil, tracerr.Wrap(err)
}
var resp types.Response
if err := proto.Unmarshal(in, &resp); err != nil {
return nil, tracerr.Wrap(err)
}
if resp.Error != nil {
return nil, tracerr.Wrap(resp.Error)
}
return resp.Results, nil
}
// Call performs a remote procedure call.
func (c *KRPCClient) Call(call *types.ProcedureCall) (*types.ProcedureResult, error) {
resp, err := c.CallMultiple([]*types.ProcedureCall{call})
if err != nil {
return nil, tracerr.Wrap(err)
}
r := resp[0]
if r.Error != nil {
return nil, tracerr.Wrap(r.Error)
}
return r, nil
}