mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 17:03:17 +01:00
19 lines
726 B
Go
19 lines
726 B
Go
package pkg
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/anchore/syft/syft/artifact"
|
|
"github.com/anchore/syft/syft/file"
|
|
)
|
|
|
|
// Cataloger describes behavior for an object to participate in parsing container image or file system
|
|
// contents for the purpose of discovering Packages. Each concrete implementation should focus on discovering Packages
|
|
// for a specific Package Type or ecosystem.
|
|
type Cataloger interface {
|
|
// Name returns a string that uniquely describes a cataloger
|
|
Name() string
|
|
// Catalog is given an object to resolve file references and content, this function returns any discovered Packages after analyzing the catalog source.
|
|
Catalog(context.Context, file.Resolver) ([]Package, []artifact.Relationship, error)
|
|
}
|