-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathminlz.go
53 lines (41 loc) · 1.08 KB
/
minlz.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
49
50
51
52
53
package archives
import (
"bytes"
"context"
"io"
"path/filepath"
"strings"
"github.com/minio/minlz"
)
func init() {
RegisterFormat(MinLZ{})
}
// MinLZ facilitates MinLZ compression. See
// https://github.com/minio/minlz/blob/main/SPEC.md
// and
// https://blog.min.io/minlz-compression-algorithm/.
type MinLZ struct{}
func (MinLZ) Extension() string { return ".mz" }
func (MinLZ) MediaType() string { return "application/x-minlz-compressed" }
func (mz MinLZ) Match(_ context.Context, filename string, stream io.Reader) (MatchResult, error) {
var mr MatchResult
// match filename
if filepath.Ext(strings.ToLower(filename)) == ".mz" {
mr.ByName = true
}
// match file header
buf, err := readAtMost(stream, len(mzHeader))
if err != nil {
return mr, err
}
mr.ByStream = bytes.Equal(buf, mzHeader)
return mr, nil
}
func (MinLZ) OpenWriter(w io.Writer) (io.WriteCloser, error) {
return minlz.NewWriter(w), nil
}
func (MinLZ) OpenReader(r io.Reader) (io.ReadCloser, error) {
mr := minlz.NewReader(r)
return io.NopCloser(mr), nil
}
var mzHeader = []byte("\xff\x06\x00\x00MinLz")