-
Notifications
You must be signed in to change notification settings - Fork 162
/
extractor.go
40 lines (33 loc) · 1.04 KB
/
extractor.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
package stemcell
import (
bosherr "github.com/cloudfoundry/bosh-utils/errors"
boshsys "github.com/cloudfoundry/bosh-utils/system"
)
type Extractor interface {
Extract(tarballPath string) (ExtractedStemcell, error)
}
type extractor struct {
reader Reader
fs boshsys.FileSystem
}
func NewExtractor(reader Reader, fs boshsys.FileSystem) Extractor {
return &extractor{
reader: reader,
fs: fs,
}
}
// Extract decompresses a stemcell tarball into a temp directory (stemcell.extractedPath)
// and parses and validates the stemcell manifest.
// Use stemcell.Delete() to clean up the temp directory.
func (e *extractor) Extract(tarballPath string) (ExtractedStemcell, error) {
tmpDir, err := e.fs.TempDir("stemcell-manager")
if err != nil {
return nil, bosherr.WrapError(err, "creating temp dir for stemcell extraction")
}
stemcell, err := e.reader.Read(tarballPath, tmpDir)
if err != nil {
_ = e.fs.RemoveAll(tmpDir)
return nil, bosherr.WrapErrorf(err, "reading extracted stemcell manifest in '%s'", tmpDir)
}
return stemcell, nil
}