-
Notifications
You must be signed in to change notification settings - Fork 3
/
call.go
315 lines (294 loc) · 9.08 KB
/
call.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
/*
* Copyright 2014, Google Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package grpc
import (
"bytes"
"io"
"net/http"
"strconv"
"strings"
"time"
"context"
"grpc.go4.org/codes"
"grpc.go4.org/metadata"
"grpc.go4.org/stats"
"golang.org/x/net/trace"
)
// Invoke sends a non-streaming RPC request on the wire and returns
// after a response is received.
//
// Invoke is generally only called by generated code.
func Invoke(ctx context.Context, method string, args, reply interface{}, cc *ClientConn, opts ...CallOption) error {
return cc.invoke(ctx, method, args, reply, opts...)
}
func (cc *ClientConn) invoke(ctx context.Context, method string, args, reply interface{}, opts ...CallOption) (reterr error) {
c := defaultCallInfo
if mc, ok := cc.getMethodConfig(method); ok {
c.failFast = !mc.WaitForReady
if mc.Timeout > 0 {
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, mc.Timeout)
defer cancel()
}
}
for _, o := range opts {
if err := o.before(&c); err != nil {
return toRPCErr(err)
}
}
defer func() {
for _, o := range opts {
o.after(&c)
}
}()
if EnableTracing {
c.traceInfo.tr = trace.New("grpc.Sent."+methodFamily(method), method)
defer c.traceInfo.tr.Finish()
c.traceInfo.firstLine.client = true
if deadline, ok := ctx.Deadline(); ok {
c.traceInfo.firstLine.deadline = deadline.Sub(time.Now())
}
c.traceInfo.tr.LazyLog(&c.traceInfo.firstLine, false)
// TODO(dsymonds): Arrange for c.traceInfo.firstLine.remoteAddr to be set.
defer func() {
if reterr != nil {
c.traceInfo.tr.LazyLog(&fmtStringer{"%v", []interface{}{reterr}}, true)
c.traceInfo.tr.SetError()
}
}()
}
sh := cc.opts.statsHandler
if sh != nil {
ctx = sh.TagRPC(ctx, &stats.RPCTagInfo{FullMethodName: method})
begin := &stats.Begin{
Client: true,
BeginTime: time.Now(),
FailFast: c.failFast,
}
sh.HandleRPC(ctx, begin)
}
if sh != nil {
defer func() {
end := &stats.End{
Client: true,
EndTime: time.Now(),
Error: reterr,
}
sh.HandleRPC(ctx, end)
}()
}
// TODO(bradfitz): non-failfast retries & proper error mapping.
// Previously:
// Retry a non-failfast RPC when
// i) there is a connection error; or
// ii) the server started to drain before this RPC was initiated.
//if _, ok := err.(transport.ConnectionError); ok || err == transport.ErrStreamDrain {
//if c.failFast {
//return toRPCErr(err)
//}
// ...
//return toRPCErr(err)
//..
//if err == errConnClosing || err == errConnUnavailable {
// if c.failFast {
// return Errorf(codes.Unavailable, "%v", err)
// }
// continue
//}
// All the other errors are treated as Internal errors.
// return Errorf(codes.Internal, "%v", err)
var (
cbuf *bytes.Buffer
statsOut *stats.OutPayload
compressAlg string
)
if cc.opts.cp != nil {
compressAlg = cc.opts.cp.Type()
cbuf = new(bytes.Buffer)
}
if c.traceInfo.tr != nil {
c.traceInfo.tr.LazyLog(&payload{sent: true, msg: args}, true)
}
if cc.opts.statsHandler != nil {
statsOut = &stats.OutPayload{
Client: true,
}
}
outBuf, err := encode(cc.opts.codec, args, cc.opts.cp, cbuf, statsOut)
if err != nil {
return Errorf(codes.Internal, "grpc: %v", err)
}
urlStr := cc.target + method
req, err := http.NewRequest("POST", urlStr, bytes.NewReader(outBuf))
if err != nil {
return Errorf(codes.Internal, "grpc: %v", err)
}
hdr := req.Header
hdr.Set("Te", "trailers")
hdr.Set("Content-Type", "application/grpc") // WITHOUT +proto, or Google GFE 404s
if compressAlg != "" {
hdr.Set("Grpc-Encoding", compressAlg)
}
if cc.opts.userAgent != "" {
// TODO(bradfitz): append our version? what'd it do before?
hdr.Set("User-Agent", cc.opts.userAgent)
}
if md, ok := metadata.FromContext(ctx); ok {
for k, vv := range md {
k = http.CanonicalHeaderKey(k)
for _, v := range vv {
hdr.Add(k, v)
}
}
}
for _, rpcCred := range cc.opts.perRPCCreds {
metadata, err := rpcCred.GetRequestMetadata(ctx, urlStr)
if err != nil {
return err
}
for k, v := range metadata {
hdr.Add(k, v)
}
}
if dl, ok := ctx.Deadline(); ok {
timeout := dl.Sub(time.Now())
hdr.Set("Grpc-Timeout", encodeTimeout(timeout))
}
res, err := cc.hc.Do(req)
if err != nil {
// TODO(bradfitz): error mapping; see TODOs above
// For now:
return Errorf(codes.Internal, "grpc: %v", err)
}
defer res.Body.Close()
if !res.ProtoAtLeast(2, 0) {
return Errorf(codes.Internal, "grpc: HTTP/2 required; response was %v", res.Proto)
}
if res.StatusCode != 200 {
return Errorf(codes.Internal, "grpc: unexpected status code %v", res.Status)
}
if ct := res.Header.Get("Content-Type"); !strings.HasPrefix(ct, "application/grpc") {
return Errorf(codes.Internal, "grpc: unexpected content-type %q", ct)
}
maxMsgSize := 10 << 20 // TODO(bradfitz): set this
var inPayload *stats.InPayload
if cc.opts.statsHandler != nil {
inPayload = &stats.InPayload{
Client: true,
}
}
p := &parser{r: res.Body}
err = recvNew(p,
cc.opts.codec,
compressAlg,
cc.opts.dc,
reply,
maxMsgSize,
inPayload)
immediateEOF := err == io.EOF
if !immediateEOF {
if err != nil {
// TODO: error mapping; see TODOs above.
return Errorf(codes.Internal, "grpc: %v", err)
}
// Check for only 1 message. We should hit an EOF immediately.
// TODO(bradfitz): I believe. Looks like streaming RPCs go via another path.
if _, err := res.Body.Read(p.header[:1]); err != io.EOF {
return Errorf(codes.Internal, "grpc: malformed response with extra data after first message")
}
}
// Now that we've seen res.Body return EOF,
// the Trailers are valid.
// Capture that and return it if that copt is set.
statusStrs := res.Trailer["Grpc-Status"]
if len(statusStrs) == 0 {
return Errorf(codes.Internal, "grpc: malformed response from server; lacks grpc-status")
}
if len(statusStrs) > 1 {
return Errorf(codes.Internal, "grpc: malformed response from server; multiple grpc-status values")
}
statusStr := statusStrs[0]
statusCode, err := strconv.ParseUint(statusStr, 10, 32)
if err != nil {
return Errorf(codes.Internal, "grpc: malformed grpc-status from server")
}
if statusCode != 0 {
msg := res.Trailer.Get("Grpc-Message")
if msg == "" {
msg = "no grpc-message from server"
}
return Errorf(codes.Code(statusCode), "grpc: %v", msg)
}
if immediateEOF {
return Errorf(codes.Internal, "gprc: unexpected empty response from server with grpc-status 0")
}
if statsOut != nil {
statsOut.SentTime = time.Now() // TODO(bradfitz): set this earlier probably
cc.opts.statsHandler.HandleRPC(ctx, statsOut)
}
if c.traceInfo.tr != nil {
c.traceInfo.tr.LazyLog(&payload{sent: false, msg: reply}, true)
}
return nil
}
const maxTimeoutValue int64 = 100000000 - 1
// div does integer division and round-up the result. Note that this is
// equivalent to (d+r-1)/r but has less chance to overflow.
func div(d, r time.Duration) int64 {
if m := d % r; m > 0 {
return int64(d/r + 1)
}
return int64(d / r)
}
// TODO(zhaoq): It is the simplistic and not bandwidth efficient. Improve it.
func encodeTimeout(t time.Duration) string {
if t <= 0 {
return "0n"
}
if d := div(t, time.Nanosecond); d <= maxTimeoutValue {
return strconv.FormatInt(d, 10) + "n"
}
if d := div(t, time.Microsecond); d <= maxTimeoutValue {
return strconv.FormatInt(d, 10) + "u"
}
if d := div(t, time.Millisecond); d <= maxTimeoutValue {
return strconv.FormatInt(d, 10) + "m"
}
if d := div(t, time.Second); d <= maxTimeoutValue {
return strconv.FormatInt(d, 10) + "S"
}
if d := div(t, time.Minute); d <= maxTimeoutValue {
return strconv.FormatInt(d, 10) + "M"
}
// Note that maxTimeoutValue * time.Hour > MaxInt64.
return strconv.FormatInt(div(t, time.Hour), 10) + "H"
}