2014-07-28 11:01:21 -04:00
|
|
|
package httputils
|
2014-03-25 20:33:17 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
2014-07-24 16:37:44 -04:00
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2014-03-25 20:33:17 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type resumableRequestReader struct {
|
|
|
|
client *http.Client
|
|
|
|
request *http.Request
|
|
|
|
lastRange int64
|
|
|
|
totalSize int64
|
|
|
|
currentResponse *http.Response
|
|
|
|
failures uint32
|
|
|
|
maxFailures uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResumableRequestReader makes it possible to resume reading a request's body transparently
|
|
|
|
// maxfail is the number of times we retry to make requests again (not resumes)
|
|
|
|
// totalsize is the total length of the body; auto detect if not provided
|
|
|
|
func ResumableRequestReader(c *http.Client, r *http.Request, maxfail uint32, totalsize int64) io.ReadCloser {
|
|
|
|
return &resumableRequestReader{client: c, request: r, maxFailures: maxfail, totalSize: totalsize}
|
|
|
|
}
|
|
|
|
|
2015-06-16 05:51:27 -04:00
|
|
|
// ResumableRequestReaderWithInitialResponse makes it possible to resume
|
|
|
|
// reading the body of an already initiated request.
|
2014-06-27 08:04:28 -04:00
|
|
|
func ResumableRequestReaderWithInitialResponse(c *http.Client, r *http.Request, maxfail uint32, totalsize int64, initialResponse *http.Response) io.ReadCloser {
|
|
|
|
return &resumableRequestReader{client: c, request: r, maxFailures: maxfail, totalSize: totalsize, currentResponse: initialResponse}
|
|
|
|
}
|
|
|
|
|
2014-03-25 20:33:17 -04:00
|
|
|
func (r *resumableRequestReader) Read(p []byte) (n int, err error) {
|
|
|
|
if r.client == nil || r.request == nil {
|
|
|
|
return 0, fmt.Errorf("client and request can't be nil\n")
|
|
|
|
}
|
|
|
|
isFreshRequest := false
|
|
|
|
if r.lastRange != 0 && r.currentResponse == nil {
|
|
|
|
readRange := fmt.Sprintf("bytes=%d-%d", r.lastRange, r.totalSize)
|
|
|
|
r.request.Header.Set("Range", readRange)
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
}
|
|
|
|
if r.currentResponse == nil {
|
|
|
|
r.currentResponse, err = r.client.Do(r.request)
|
|
|
|
isFreshRequest = true
|
|
|
|
}
|
|
|
|
if err != nil && r.failures+1 != r.maxFailures {
|
|
|
|
r.cleanUpResponse()
|
2014-08-30 13:43:48 -04:00
|
|
|
r.failures++
|
2014-03-25 20:33:17 -04:00
|
|
|
time.Sleep(5 * time.Duration(r.failures) * time.Second)
|
|
|
|
return 0, nil
|
|
|
|
} else if err != nil {
|
|
|
|
r.cleanUpResponse()
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
if r.currentResponse.StatusCode == 416 && r.lastRange == r.totalSize && r.currentResponse.ContentLength == 0 {
|
|
|
|
r.cleanUpResponse()
|
|
|
|
return 0, io.EOF
|
|
|
|
} else if r.currentResponse.StatusCode != 206 && r.lastRange != 0 && isFreshRequest {
|
|
|
|
r.cleanUpResponse()
|
|
|
|
return 0, fmt.Errorf("the server doesn't support byte ranges")
|
|
|
|
}
|
|
|
|
if r.totalSize == 0 {
|
|
|
|
r.totalSize = r.currentResponse.ContentLength
|
|
|
|
} else if r.totalSize <= 0 {
|
|
|
|
r.cleanUpResponse()
|
|
|
|
return 0, fmt.Errorf("failed to auto detect content length")
|
|
|
|
}
|
|
|
|
n, err = r.currentResponse.Body.Read(p)
|
|
|
|
r.lastRange += int64(n)
|
|
|
|
if err != nil {
|
|
|
|
r.cleanUpResponse()
|
|
|
|
}
|
|
|
|
if err != nil && err != io.EOF {
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Infof("encountered error during pull and clearing it before resume: %s", err)
|
2014-03-25 20:33:17 -04:00
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *resumableRequestReader) Close() error {
|
|
|
|
r.cleanUpResponse()
|
|
|
|
r.client = nil
|
|
|
|
r.request = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *resumableRequestReader) cleanUpResponse() {
|
|
|
|
if r.currentResponse != nil {
|
|
|
|
r.currentResponse.Body.Close()
|
|
|
|
r.currentResponse = nil
|
|
|
|
}
|
|
|
|
}
|