Documentation ¶
Overview ¶
Package compression abstracts over gzip and zstd.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetCompression ¶
func GetCompression(opener Opener) (compression.Compression, error)
GetCompression detects whether an Opener is compressed and which algorithm is used.
Types ¶
type PeekReader ¶
PeekReader is an io.Reader that also implements Peek a la bufio.Reader.
func PeekCompression ¶
func PeekCompression(r io.Reader) (compression.Compression, PeekReader, error)
PeekCompression detects whether the input stream is compressed and which algorithm is used.
If r implements Peek, we will use that directly, otherwise a small number of bytes are buffered to Peek at the gzip/zstd header, and the returned PeekReader can be used as a replacement for the consumed input io.Reader.
Click to show internal directories.
Click to hide internal directories.