generated from LinuxSuRen/github-go
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtypes.go
51 lines (46 loc) · 1.22 KB
/
types.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
package compress
import (
"archive/tar"
"io"
"os"
"path/filepath"
"strings"
)
// Compress is a common compress interface
type Compress interface {
ExtractFiles(sourceFile, targetName string) error
}
func extraFile(name, targetName, tarFile string, header *tar.Header, tarReader *tar.Reader) (err error) {
if name != targetName && !strings.HasSuffix(name, "/"+targetName) {
return
}
var targetFile *os.File
if targetFile, err = os.OpenFile(filepath.Join(filepath.Dir(tarFile), targetName),
os.O_CREATE|os.O_RDWR, os.FileMode(header.Mode)); err != nil {
return
}
defer func() {
_ = targetFile.Close()
}()
_, err = io.Copy(targetFile, tarReader)
return
}
// GetCompressor gets the compressor base on file extension
func GetCompressor(extension string, additionBinaries []string) Compress {
// Select the right decompressor based on file type
switch extension {
case ".xz":
return NewXz(additionBinaries)
case ".zip":
return NewZip(additionBinaries)
case ".gz", ".tar.gz", ".tgz":
return NewGZip(additionBinaries)
case ".bz2":
return NewBzip2(additionBinaries)
}
return nil
}
// IsSupport checks if the desired file extension
func IsSupport(extension string) bool {
return GetCompressor(extension, nil) != nil
}