Skip to content

Commit

Permalink
post CR from @dchapes
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Ammons committed Apr 6, 2017
1 parent ad2265b commit 5a72509
Showing 1 changed file with 33 additions and 25 deletions.
58 changes: 33 additions & 25 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
package pester

// pester provides additional resiliency over the standard http client methods by
// Package pester provides additional resiliency over the standard http client methods by
// allowing you to control concurrency, retries, and a backoff strategy.
package pester

import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"math"
"math/rand"
"net/http"
"net/url"
"sync"
"time"
)

//ErrUnexpectedMethod occurs when an http.Client method is unable to be mapped from a calling method in the pester client
var ErrUnexpectedMethod = errors.New("unexpected client method, must be one of Do, Get, Head, Post, or PostFrom")

// ErrReadingBody happens when we cannot read the body bytes
var ErrReadingBody = errors.New("error reading body")

// ErrReadingRequestBody happens when we cannot read the request body bytes
var ErrReadingRequestBody = errors.New("error reading request body")

// Client wraps the http client and exposes all the functionality of the http.Client.
// Additionally, Client provides pester specific values for handling resiliency.
type Client struct {
Expand Down Expand Up @@ -77,6 +84,12 @@ type params struct {
data url.Values
}

var random *rand.Rand

func init() {
random = rand.New(rand.NewSource(time.Now().UnixNano()))
}

// New constructs a new DefaultClient with sensible default values
func New() *Client {
return &Client{
Expand Down Expand Up @@ -113,13 +126,13 @@ func DefaultBackoff(_ int) time.Duration {

// ExponentialBackoff returns ever increasing backoffs by a power of 2
func ExponentialBackoff(i int) time.Duration {
return time.Duration(math.Pow(2, float64(i))) * time.Second
return time.Duration(1<<uint(i)) * time.Second
}

// ExponentialJitterBackoff returns ever increasing backoffs by a power of 2
// with +/- 0-33% to prevent sychronized reuqests.
func ExponentialJitterBackoff(i int) time.Duration {
return jitter(int(math.Pow(2, float64(i))))
return jitter(int(1 << uint(i)))
}

// LinearBackoff returns increasing durations, each a second longer than the last
Expand All @@ -139,14 +152,8 @@ func jitter(i int) time.Duration {

maxJitter := ms / 3

rand.Seed(time.Now().Unix())
jitter := rand.Intn(maxJitter + 1)

if rand.Intn(2) == 1 {
ms = ms + jitter
} else {
ms = ms - jitter
}
// ms ± rand
ms += random.Intn(2*maxJitter) - maxJitter

// a jitter of 0 messes up the time.Tick chan
if ms <= 0 {
Expand Down Expand Up @@ -211,14 +218,14 @@ func (c *Client) pester(p params) (*http.Response, error) {
if p.req != nil && p.req.Body != nil {
originalRequestBody, err = ioutil.ReadAll(p.req.Body)
if err != nil {
return &http.Response{}, errors.New("error reading request body")
return nil, ErrReadingRequestBody
}
p.req.Body.Close()
}
if p.body != nil {
originalBody, err = ioutil.ReadAll(p.body)
if err != nil {
return &http.Response{}, errors.New("error reading body")
return nil, ErrReadingBody
}
}

Expand All @@ -243,7 +250,6 @@ func (c *Client) pester(p params) (*http.Response, error) {
return
default:
}
resp := &http.Response{}

// rehydrate the body (it is drained each read)
if len(originalRequestBody) > 0 {
Expand All @@ -253,6 +259,7 @@ func (c *Client) pester(p params) (*http.Response, error) {
p.body = bytes.NewBuffer(originalBody)
}

var resp *http.Response
// route the calls
switch p.method {
case "Do":
Expand All @@ -265,6 +272,8 @@ func (c *Client) pester(p params) (*http.Response, error) {
resp, err = httpClient.Post(p.url, p.bodyType, p.body)
case "PostForm":
resp, err = httpClient.PostForm(p.url, p.data)
default:
err = ErrUnexpectedMethod
}

// Early return if we have a valid result
Expand Down Expand Up @@ -325,14 +334,13 @@ func (c *Client) pester(p params) (*http.Response, error) {
}
}()

select {
case res := <-resultCh:
c.Lock()
defer c.Unlock()
c.SuccessReqNum = res.req
c.SuccessRetryNum = res.retry
return res.resp, res.err
}
res := <-resultCh
c.Lock()
defer c.Unlock()
c.SuccessReqNum = res.req
c.SuccessRetryNum = res.retry
return res.resp, res.err

}

// LogString provides a string representation of the errors the client has seen
Expand Down

0 comments on commit 5a72509

Please sign in to comment.