1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 11:34:32 -04:00
v2fly/common/retry/retry.go

50 lines
890 B
Go
Raw Normal View History

2015-10-13 06:27:50 -04:00
package retry
import (
"errors"
"time"
)
var (
2016-06-27 02:53:35 -04:00
ErrRetryFailed = errors.New("All retry attempts failed.")
2015-10-13 06:27:50 -04:00
)
2015-12-02 03:58:00 -05:00
// Strategy is a way to retry on a specific function.
type Strategy interface {
2015-12-02 06:47:54 -05:00
// On performs a retry on a specific function, until it doesn't return any error.
2015-10-13 06:27:50 -04:00
On(func() error) error
}
type retryer struct {
NextDelay func(int) int
}
2015-12-02 03:58:00 -05:00
// On implements Strategy.On.
2015-10-13 06:27:50 -04:00
func (r *retryer) On(method func() error) error {
attempt := 0
for {
err := method()
if err == nil {
return nil
}
delay := r.NextDelay(attempt)
if delay < 0 {
2016-06-27 02:53:35 -04:00
return ErrRetryFailed
2015-10-13 06:27:50 -04:00
}
<-time.After(time.Duration(delay) * time.Millisecond)
2015-10-13 18:57:00 -04:00
attempt++
2015-10-13 06:27:50 -04:00
}
}
2015-12-02 03:58:00 -05:00
// Timed returns a retry strategy with fixed interval.
func Timed(attempts int, delay int) Strategy {
2015-10-13 06:27:50 -04:00
return &retryer{
NextDelay: func(attempt int) int {
if attempt >= attempts {
return -1
}
return delay
},
}
}