-
Notifications
You must be signed in to change notification settings - Fork 0
/
deflate.go
48 lines (42 loc) · 1.27 KB
/
deflate.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package gompress
import (
"compress/flate"
"io"
)
// Deflate implements both the Compressor and Decompressor
// interfaces, facilitating the compression and decompression
// of data streams using the Deflate data format specification.
type Deflate struct {
*CompressionLevel
}
// NewDeflate returns a new Deflate instance, ready to compress
// and decompress data streams.
func NewDeflate() *Deflate {
return &Deflate{&CompressionLevel{
level: flate.DefaultCompression,
minLevel: flate.BestSpeed,
maxLevel: flate.BestCompression,
}}
}
// Compress implements the Compressor interface by wrapping
// w with Deflate.NewWriter, which is then used to copy data
// from r, compressing the data as it's copied.
func (b *Deflate) Compress(r io.Reader, w io.Writer) error {
out, err := flate.NewWriter(w, b.level)
if err != nil {
return err
}
defer out.Close()
_, err = io.Copy(out, r)
return err
}
// Decompress implements the Decompressor interface by wrapping
// r with Deflate.NewReader, which is then used to copy data to w,
// decompressing the data as it's copied.
func (b *Deflate) Decompress(r io.Reader, w io.Writer) error {
// Deflate.NewReader never returns error, so no need to check
in := flate.NewReader(r)
defer in.Close()
_, err := io.Copy(w, in)
return err
}