Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 'Client.Endpoint' to not 'cancel' when bufferedStream #776

Merged
merged 4 commits into from
Oct 22, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions transport/http/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"context"
"encoding/json"
"encoding/xml"
"io"
"io/ioutil"
"net/http"
"net/url"
Expand Down Expand Up @@ -84,6 +85,7 @@ func ClientFinalizer(f ...ClientFinalizerFunc) ClientOption {

// BufferedStream sets whether the Response.Body is left open, allowing it
// to be read from later. Useful for transporting a file as a buffered stream.
// That body has to be Closed to propery end the request
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a period :)

func BufferedStream(buffered bool) ClientOption {
return func(c *Client) { c.bufferedStream = buffered }
}
Expand All @@ -92,7 +94,6 @@ func BufferedStream(buffered bool) ClientOption {
func (c Client) Endpoint() endpoint.Endpoint {
return func(ctx context.Context, request interface{}) (interface{}, error) {
ctx, cancel := context.WithCancel(ctx)
defer cancel()

var (
resp *http.Response
Expand All @@ -112,10 +113,12 @@ func (c Client) Endpoint() endpoint.Endpoint {

req, err := http.NewRequest(c.method, c.tgt.String(), nil)
if err != nil {
cancel()
return nil, err
}

if err = c.enc(ctx, req, request); err != nil {
cancel()
return nil, err
}

Expand All @@ -126,11 +129,17 @@ func (c Client) Endpoint() endpoint.Endpoint {
resp, err = c.client.Do(req.WithContext(ctx))

if err != nil {
cancel()
return nil, err
}

if !c.bufferedStream {
// If we expect a buffered stream, we don't cancel the context when the endpoint returns.
// Instead, we should call the cancel func when closing the response body.
if c.bufferedStream {
resp.Body = bodyWithCancel{ReadCloser: resp.Body, cancel: cancel}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A comment here to motivate this wrapper would also be welcome. Something like this, feel free to rephrase if I got something wrong:

// If we expect a buffered stream, we don't cancel the context when the endpoint returns.
// Instead, we should call the cancel func when closing the response body.

} else {
defer resp.Body.Close()
defer cancel()
}

for _, f := range c.after {
Expand All @@ -146,6 +155,20 @@ func (c Client) Endpoint() endpoint.Endpoint {
}
}

// bodyWithCancel is a wrapper for an io.ReadCloser with also a
// cancel function which is called when the Close is used
type bodyWithCancel struct {
io.ReadCloser

cancel context.CancelFunc
}

func (bwc bodyWithCancel) Close() error {
bwc.ReadCloser.Close()
bwc.cancel()
return nil
}

// ClientFinalizerFunc can be used to perform work at the end of a client HTTP
// request, after the response is returned. The principal
// intended use is for error logging. Additional response parameters are
Expand Down
9 changes: 8 additions & 1 deletion transport/http/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,12 @@ func TestHTTPClient(t *testing.T) {
}

func TestHTTPClientBufferedStream(t *testing.T) {
// bodysize has a size big enought to make the resopnse.Body not an instant read
// so if the response is cancelled it wount be all readed and the test would fail
// The 6000 has not a particular meaning, it big enough to fulfill the usecase.
const bodysize = 6000
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess my question was more like: why is 6000 big enough, and 9000 too big? Is there a constant or default buffer size or something defined in the stdlib net/http package? If so, can you refer to that?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would also want to know that ... but I've tried to search for it, where the body is setted on a response and how is the io.ReadCoser is implemented on it, but It was impossible to find it for me, I would really like to have that answer because then I could provide a more accurate answer on what it's happening.

Also the 9000 it's not "too big" but it simply makes the io.Read works differently then. From the io.Read

[...] An instance of this general case is that a Reader returning a non-zero number of bytes at the end of the input stream may return either err == EOF or err == nil. The next Read should return 0, EOF. [...]

So the next read to the body would return the io.EOF instead of the first one (I did try it while testing, but It's not something realted to go-kit but to the stdlib so IMO no test needed for this).

I think is on the way the body is read, I think that it's read by "chunks" from the "sender" instead of buffering all the body.

var (
testbody = "testbody"
testbody = string(make([]byte, bodysize))
encode = func(context.Context, *http.Request, interface{}) error { return nil }
decode = func(_ context.Context, r *http.Response) (interface{}, error) {
return TestResponse{r.Body, ""}, nil
Expand Down Expand Up @@ -129,6 +133,9 @@ func TestHTTPClientBufferedStream(t *testing.T) {
if !ok {
t.Fatal("response should be TestResponse")
}
defer response.Body.Close()
// Faking work
time.Sleep(time.Second * 1)

// Check that response body was NOT closed
b := make([]byte, len(testbody))
Expand Down