24 lines
557 B
Go
24 lines
557 B
Go
package image
|
|
|
|
import (
|
|
"github.com/wagoodman/dive/dive/filetree"
|
|
"io"
|
|
)
|
|
|
|
type Analyzer interface {
|
|
Fetch() (io.ReadCloser, error)
|
|
Parse(io.ReadCloser) error
|
|
Analyze() (*AnalysisResult, error)
|
|
}
|
|
|
|
type AnalysisResult struct {
|
|
Layers []Layer
|
|
RefTrees []*filetree.FileTree
|
|
Efficiency float64
|
|
SizeBytes uint64
|
|
UserSizeByes uint64 // this is all bytes except for the base image
|
|
WastedUserPercent float64 // = wasted-bytes/user-size-bytes
|
|
WastedBytes uint64
|
|
Inefficiencies filetree.EfficiencySlice
|
|
}
|