2020-07-15 11:42:35 +00:00
|
|
|
package file
|
|
|
|
|
|
|
|
import (
|
|
|
|
"archive/zip"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"sort"
|
|
|
|
|
2020-07-24 00:54:04 +00:00
|
|
|
"github.com/anchore/syft/internal"
|
2020-07-15 11:42:35 +00:00
|
|
|
|
2020-07-24 00:54:04 +00:00
|
|
|
"github.com/anchore/syft/internal/log"
|
2020-07-15 11:42:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ZipFileManifest map[string]os.FileInfo
|
|
|
|
|
|
|
|
func newZipManifest() ZipFileManifest {
|
|
|
|
return make(ZipFileManifest)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (z ZipFileManifest) Add(entry string, info os.FileInfo) {
|
|
|
|
z[entry] = info
|
|
|
|
}
|
|
|
|
|
|
|
|
func (z ZipFileManifest) GlobMatch(patterns ...string) []string {
|
|
|
|
uniqueMatches := internal.NewStringSet()
|
|
|
|
|
|
|
|
for _, pattern := range patterns {
|
|
|
|
for entry := range z {
|
|
|
|
if GlobMatch(pattern, entry) {
|
|
|
|
uniqueMatches.Add(entry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
results := uniqueMatches.ToSlice()
|
|
|
|
sort.Strings(results)
|
|
|
|
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewZipFileManifest(archivePath string) (ZipFileManifest, error) {
|
|
|
|
zipReader, err := zip.OpenReader(archivePath)
|
|
|
|
manifest := newZipManifest()
|
|
|
|
if err != nil {
|
|
|
|
return manifest, fmt.Errorf("unable to open zip archive (%s): %w", archivePath, err)
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
err = zipReader.Close()
|
|
|
|
if err != nil {
|
2020-09-28 21:22:17 +00:00
|
|
|
log.Errorf("unable to close zip archive (%s): %+v", archivePath, err)
|
2020-07-15 11:42:35 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
for _, file := range zipReader.Reader.File {
|
|
|
|
manifest.Add(file.Name, file.FileInfo())
|
|
|
|
}
|
|
|
|
return manifest, nil
|
|
|
|
}
|