-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathprotocol_retry.go
126 lines (106 loc) · 2.95 KB
/
protocol_retry.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
/*
Copyright 2021 The CloudEvents Authors
SPDX-License-Identifier: Apache-2.0
*/
package http
import (
"bytes"
"context"
"errors"
"io"
"net/http"
"time"
"go.uber.org/zap"
"github.com/cloudevents/sdk-go/v2/binding"
cecontext "github.com/cloudevents/sdk-go/v2/context"
"github.com/cloudevents/sdk-go/v2/protocol"
)
func (p *Protocol) do(ctx context.Context, req *http.Request) (binding.Message, error) {
params := cecontext.RetriesFrom(ctx)
switch params.Strategy {
case cecontext.BackoffStrategyConstant, cecontext.BackoffStrategyLinear, cecontext.BackoffStrategyExponential:
return p.doWithRetry(ctx, params, req)
case cecontext.BackoffStrategyNone:
fallthrough
default:
return p.doOnce(req)
}
}
func (p *Protocol) doOnce(req *http.Request) (binding.Message, protocol.Result) {
resp, err := p.Client.Do(req)
if err != nil {
return nil, protocol.NewReceipt(false, "%w", err)
}
var result protocol.Result
if resp.StatusCode/100 == 2 {
result = protocol.ResultACK
} else {
result = protocol.ResultNACK
}
return NewMessage(resp.Header, resp.Body), NewResult(resp.StatusCode, "%w", result)
}
func (p *Protocol) doWithRetry(ctx context.Context, params *cecontext.RetryParams, req *http.Request) (binding.Message, error) {
start := time.Now()
retry := 0
results := make([]protocol.Result, 0)
var (
body []byte
err error
)
if req != nil && req.Body != nil {
defer func() {
if err = req.Body.Close(); err != nil {
cecontext.LoggerFrom(ctx).Warnw("could not close request body", zap.Error(err))
}
}()
body, err = io.ReadAll(req.Body)
if err != nil {
panic(err)
}
resetBody(req, body)
}
for {
msg, result := p.doOnce(req)
// Fast track common case.
if protocol.IsACK(result) {
return msg, NewRetriesResult(result, retry, start, results)
}
var httpResult *Result
if errors.As(result, &httpResult) {
sc := httpResult.StatusCode
if !p.isRetriableFunc(sc) {
cecontext.LoggerFrom(ctx).Debugw("status code not retryable, will not try again",
zap.Error(httpResult),
zap.Int("statusCode", sc))
return msg, NewRetriesResult(result, retry, start, results)
}
}
// total tries = retry + 1
if err = params.Backoff(ctx, retry+1); err != nil {
// do not try again.
cecontext.LoggerFrom(ctx).Debugw("backoff error, will not try again", zap.Error(err))
return msg, NewRetriesResult(result, retry, start, results)
}
retry++
resetBody(req, body)
results = append(results, result)
if msg != nil {
// avoid leak, forget message, ignore error
_ = msg.Finish(nil)
}
}
}
// reset body to allow it to be read multiple times, e.g. when retrying http
// requests
func resetBody(req *http.Request, body []byte) {
if req == nil || req.Body == nil {
return
}
req.Body = io.NopCloser(bytes.NewReader(body))
// do not modify existing GetBody function
if req.GetBody == nil {
req.GetBody = func() (io.ReadCloser, error) {
return io.NopCloser(bytes.NewReader(body)), nil
}
}
}