-
Notifications
You must be signed in to change notification settings - Fork 129
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
Refactor out gzipwriter interface #106
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,14 @@ import ( | |
"bufio" | ||
"compress/gzip" | ||
"fmt" | ||
"github.com/NYTimes/gziphandler/writer" | ||
"github.com/NYTimes/gziphandler/writer/stdlib" | ||
"io" | ||
"mime" | ||
"net" | ||
"net/http" | ||
"strconv" | ||
"strings" | ||
"sync" | ||
) | ||
|
||
const ( | ||
|
@@ -36,48 +37,15 @@ const ( | |
DefaultMinSize = 1400 | ||
) | ||
|
||
// gzipWriterPools stores a sync.Pool for each compression level for reuse of | ||
// gzip.Writers. Use poolIndex to covert a compression level to an index into | ||
// gzipWriterPools. | ||
var gzipWriterPools [gzip.BestCompression - gzip.BestSpeed + 2]*sync.Pool | ||
|
||
func init() { | ||
for i := gzip.BestSpeed; i <= gzip.BestCompression; i++ { | ||
addLevelPool(i) | ||
} | ||
addLevelPool(gzip.DefaultCompression) | ||
} | ||
|
||
// poolIndex maps a compression level to its index into gzipWriterPools. It | ||
// assumes that level is a valid gzip compression level. | ||
func poolIndex(level int) int { | ||
// gzip.DefaultCompression == -1, so we need to treat it special. | ||
if level == gzip.DefaultCompression { | ||
return gzip.BestCompression - gzip.BestSpeed + 1 | ||
} | ||
return level - gzip.BestSpeed | ||
} | ||
|
||
func addLevelPool(level int) { | ||
gzipWriterPools[poolIndex(level)] = &sync.Pool{ | ||
New: func() interface{} { | ||
// NewWriterLevel only returns error on a bad level, we are guaranteeing | ||
// that this will be a valid level so it is okay to ignore the returned | ||
// error. | ||
w, _ := gzip.NewWriterLevel(nil, level) | ||
return w | ||
}, | ||
} | ||
} | ||
|
||
// GzipResponseWriter provides an http.ResponseWriter interface, which gzips | ||
// bytes before writing them to the underlying response. This doesn't close the | ||
// writers, so don't forget to do that. | ||
// It can be configured to skip response smaller than minSize. | ||
type GzipResponseWriter struct { | ||
http.ResponseWriter | ||
index int // Index for gzipWriterPools. | ||
gw *gzip.Writer | ||
level int | ||
gwFactory writer.GzipWriterFactory | ||
gw writer.GzipWriter | ||
|
||
code int // Saves the WriteHeader value. | ||
|
||
|
@@ -217,9 +185,7 @@ func (w *GzipResponseWriter) WriteHeader(code int) { | |
func (w *GzipResponseWriter) init() { | ||
// Bytes written during ServeHTTP are redirected to this gzip writer | ||
// before being written to the underlying response. | ||
gzw := gzipWriterPools[w.index].Get().(*gzip.Writer) | ||
gzw.Reset(w.ResponseWriter) | ||
w.gw = gzw | ||
w.gw = w.gwFactory(w.ResponseWriter, w.level) | ||
} | ||
|
||
// Close will close the gzip.Writer and will put it back in the gzipWriterPool. | ||
|
@@ -239,7 +205,6 @@ func (w *GzipResponseWriter) Close() error { | |
} | ||
|
||
err := w.gw.Close() | ||
gzipWriterPools[w.index].Put(w.gw) | ||
w.gw = nil | ||
return err | ||
} | ||
|
@@ -307,6 +272,7 @@ func GzipHandlerWithOpts(opts ...option) (func(http.Handler) http.Handler, error | |
c := &config{ | ||
level: gzip.DefaultCompression, | ||
minSize: DefaultMinSize, | ||
writer: stdlib.NewWriter, | ||
} | ||
|
||
for _, o := range opts { | ||
|
@@ -318,14 +284,13 @@ func GzipHandlerWithOpts(opts ...option) (func(http.Handler) http.Handler, error | |
} | ||
|
||
return func(h http.Handler) http.Handler { | ||
index := poolIndex(c.level) | ||
|
||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
w.Header().Add(vary, acceptEncoding) | ||
if acceptsGzip(r) { | ||
gw := &GzipResponseWriter{ | ||
ResponseWriter: w, | ||
index: index, | ||
gwFactory: c.writer, | ||
level: c.level, | ||
minSize: c.minSize, | ||
contentTypes: c.contentTypes, | ||
} | ||
|
@@ -378,6 +343,7 @@ func (pct parsedContentType) equals(mediaType string, params map[string]string) | |
type config struct { | ||
minSize int | ||
level int | ||
writer writer.GzipWriterFactory | ||
contentTypes []parsedContentType | ||
} | ||
|
||
|
@@ -407,6 +373,12 @@ func CompressionLevel(level int) option { | |
} | ||
} | ||
|
||
func Implementation(writer writer.GzipWriterFactory) option { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add documentation above. |
||
return func(c *config) { | ||
c.writer = writer | ||
} | ||
} | ||
|
||
// ContentTypes specifies a list of content types to compare | ||
// the Content-Type header to before compressing. If none | ||
// match, the response will be returned as-is. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package writer | ||
|
||
import "io" | ||
|
||
type GzipWriter interface { | ||
Close() error | ||
Flush() error | ||
Write(p []byte) (int, error) | ||
} | ||
|
||
type GzipWriterFactory = func(writer io.Writer, level int) GzipWriter |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package stdlib | ||
whs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
import ( | ||
"compress/gzip" | ||
"github.com/NYTimes/gziphandler/writer" | ||
"io" | ||
"sync" | ||
) | ||
|
||
// gzipWriterPools stores a sync.Pool for each compression level for reuse of | ||
// gzip.Writers. Use poolIndex to covert a compression level to an index into | ||
// gzipWriterPools. | ||
var gzipWriterPools [gzip.BestCompression - gzip.BestSpeed + 2]*sync.Pool | ||
|
||
func init() { | ||
for i := gzip.BestSpeed; i <= gzip.BestCompression; i++ { | ||
addLevelPool(i) | ||
} | ||
addLevelPool(gzip.DefaultCompression) | ||
} | ||
|
||
// poolIndex maps a compression level to its index into gzipWriterPools. It | ||
// assumes that level is a valid gzip compression level. | ||
func poolIndex(level int) int { | ||
// gzip.DefaultCompression == -1, so we need to treat it special. | ||
if level == gzip.DefaultCompression { | ||
return gzip.BestCompression - gzip.BestSpeed + 1 | ||
} | ||
return level - gzip.BestSpeed | ||
} | ||
|
||
func addLevelPool(level int) { | ||
gzipWriterPools[poolIndex(level)] = &sync.Pool{ | ||
New: func() interface{} { | ||
// NewWriterLevel only returns error on a bad level, we are guaranteeing | ||
// that this will be a valid level so it is okay to ignore the returned | ||
// error. | ||
w, _ := gzip.NewWriterLevel(nil, level) | ||
return w | ||
}, | ||
} | ||
} | ||
|
||
type PooledWriter struct { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't have to be exported. |
||
*gzip.Writer | ||
index int | ||
} | ||
|
||
func (pw *PooledWriter) Close() error { | ||
err := pw.Writer.Close() | ||
gzipWriterPools[pw.index].Put(pw.Writer) | ||
return err | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing (to match the original gzip.go line 243): pw.Writer = nil This will allow to be future-proof against double-close or use-after-close. |
||
} | ||
|
||
func NewWriter(w io.Writer, level int) writer.GzipWriter { | ||
index := poolIndex(level) | ||
gzw := gzipWriterPools[index].Get().(*gzip.Writer) | ||
gzw.Reset(w) | ||
return &PooledWriter{ | ||
Writer: gzw, | ||
index: index, | ||
} | ||
} | ||
|
||
func ImplementationInfo() string { | ||
return "compress/zlib" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package stdlib | ||
|
||
import ( | ||
"bytes" | ||
"compress/gzip" | ||
"github.com/stretchr/testify/assert" | ||
"testing" | ||
) | ||
|
||
func TestGzipDoubleClose(t *testing.T) { | ||
// reset the pool for the default compression so we can make sure duplicates | ||
// aren't added back by double close | ||
addLevelPool(gzip.DefaultCompression) | ||
|
||
w := bytes.NewBufferString("") | ||
writer := NewWriter(w, gzip.DefaultCompression) | ||
writer.Close() | ||
|
||
// the second close shouldn't have added the same writer | ||
// so we pull out 2 writers from the pool and make sure they're different | ||
w1 := gzipWriterPools[poolIndex(gzip.DefaultCompression)].Get() | ||
w2 := gzipWriterPools[poolIndex(gzip.DefaultCompression)].Get() | ||
// assert.NotEqual looks at the value and not the address, so we use regular == | ||
assert.False(t, w1 == w2) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename to
newWriter
because this isn't a writer but a function that creates a writer.