mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
Signed-off-by: Keith Zantow <kzantow@gmail.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
56 lines
1.4 KiB
Go
56 lines
1.4 KiB
Go
package haskell
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"github.com/anchore/syft/internal/log"
|
|
"github.com/anchore/syft/internal/unknown"
|
|
"github.com/anchore/syft/syft/artifact"
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
"github.com/anchore/syft/syft/pkg/cataloger/generic"
|
|
)
|
|
|
|
var _ generic.Parser = parseStackYaml
|
|
|
|
type stackYaml struct {
|
|
ExtraDeps []string `yaml:"extra-deps"`
|
|
}
|
|
|
|
// parseStackYaml is a parser function for stack.yaml contents, returning all packages discovered.
|
|
func parseStackYaml(_ context.Context, _ file.Resolver, _ *generic.Environment, reader file.LocationReadCloser) ([]pkg.Package, []artifact.Relationship, error) {
|
|
bytes, err := io.ReadAll(reader)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to load stack.yaml file: %w", err)
|
|
}
|
|
|
|
var stackFile stackYaml
|
|
|
|
if err := yaml.Unmarshal(bytes, &stackFile); err != nil {
|
|
log.WithFields("error", err).Tracef("failed to parse stack.yaml file %q", reader.RealPath)
|
|
return nil, nil, fmt.Errorf("failed to parse stack.yaml file")
|
|
}
|
|
|
|
var pkgs []pkg.Package
|
|
for _, dep := range stackFile.ExtraDeps {
|
|
pkgName, pkgVersion, pkgHash := parseStackPackageEncoding(dep)
|
|
pkgs = append(
|
|
pkgs,
|
|
newPackage(
|
|
pkgName,
|
|
pkgVersion,
|
|
pkg.HackageStackYamlEntry{
|
|
PkgHash: pkgHash,
|
|
},
|
|
reader.Location,
|
|
),
|
|
)
|
|
}
|
|
|
|
return pkgs, nil, unknown.IfEmptyf(pkgs, "unable to determine packages")
|
|
}
|