mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 17:57:51 +00:00
Travis seems to be having issues pulling deps, so we'll have to check in the vendor directory and prevent the makefile from trying to regenerate it normally.
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package restful
|
|
|
|
// Copyright 2015 Ernest Micklei. All rights reserved.
|
|
// Use of this source code is governed by a license
|
|
// that can be found in the LICENSE file.
|
|
|
|
import (
|
|
"compress/gzip"
|
|
"compress/zlib"
|
|
)
|
|
|
|
// CompressorProvider describes a component that can provider compressors for the std methods.
|
|
type CompressorProvider interface {
|
|
// Returns a *gzip.Writer which needs to be released later.
|
|
// Before using it, call Reset().
|
|
AcquireGzipWriter() *gzip.Writer
|
|
|
|
// Releases an acquired *gzip.Writer.
|
|
ReleaseGzipWriter(w *gzip.Writer)
|
|
|
|
// Returns a *gzip.Reader which needs to be released later.
|
|
AcquireGzipReader() *gzip.Reader
|
|
|
|
// Releases an acquired *gzip.Reader.
|
|
ReleaseGzipReader(w *gzip.Reader)
|
|
|
|
// Returns a *zlib.Writer which needs to be released later.
|
|
// Before using it, call Reset().
|
|
AcquireZlibWriter() *zlib.Writer
|
|
|
|
// Releases an acquired *zlib.Writer.
|
|
ReleaseZlibWriter(w *zlib.Writer)
|
|
}
|
|
|
|
// DefaultCompressorProvider is the actual provider of compressors (zlib or gzip).
|
|
var currentCompressorProvider CompressorProvider
|
|
|
|
func init() {
|
|
currentCompressorProvider = NewSyncPoolCompessors()
|
|
}
|
|
|
|
// CurrentCompressorProvider returns the current CompressorProvider.
|
|
// It is initialized using a SyncPoolCompessors.
|
|
func CurrentCompressorProvider() CompressorProvider {
|
|
return currentCompressorProvider
|
|
}
|
|
|
|
// SetCompressorProvider sets the actual provider of compressors (zlib or gzip).
|
|
func SetCompressorProvider(p CompressorProvider) {
|
|
if p == nil {
|
|
panic("cannot set compressor provider to nil")
|
|
}
|
|
currentCompressorProvider = p
|
|
}
|