-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhalf_open.go
59 lines (49 loc) · 985 Bytes
/
half_open.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
package breaker
type halfOpenState struct {
counts *Counts
cb *CircuitBreaker
}
func NewHalfOpenState(cb *CircuitBreaker) *halfOpenState {
return &halfOpenState{
cb: cb,
counts: &Counts{},
}
}
func (s *halfOpenState) getType() StateType {
return HalfOpen
}
func (s *halfOpenState) execute(req func() (interface{}, error)) (interface{}, error) {
defer func() {
e := recover()
if e != nil {
s.counts.onFailure()
panic(e)
}
}()
before := s.cb.generation
s.counts.onRequest()
res, err := req()
if s.cb.generation != before {
return res, err
}
if err != nil {
s.counts.onFailure()
s.cb.changeState(open)
return nil, err
}
s.counts.onSuccess()
cb := s.cb
if s.counts.ConsecutiveSuccesses >= cb.maxRequests {
cb.changeState(closed)
}
return res, nil
}
func (s *halfOpenState) getCounts() Counts {
return *s.counts
}
func (s *halfOpenState) onEnter() {
// nothing to do
}
func (s *halfOpenState) onLeave() {
s.counts.clear()
}