mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 00:13:15 +01:00
--------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com> Co-authored-by: spiffcs <32073428+spiffcs@users.noreply.github.com>
69 lines
1.9 KiB
Go
69 lines
1.9 KiB
Go
package elixir
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"regexp"
|
|
|
|
"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"
|
|
)
|
|
|
|
// integrity check
|
|
var _ generic.Parser = parseMixLock
|
|
|
|
var mixLockDelimiter = regexp.MustCompile(`[%{}\n" ,:]+`)
|
|
|
|
// parseMixLock parses a mix.lock and returns the discovered Elixir packages.
|
|
func parseMixLock(_ context.Context, _ file.Resolver, _ *generic.Environment, reader file.LocationReadCloser) ([]pkg.Package, []artifact.Relationship, error) {
|
|
var errs error
|
|
r := bufio.NewReader(reader)
|
|
|
|
var packages []pkg.Package
|
|
lineNum := 0
|
|
for {
|
|
lineNum++
|
|
line, err := r.ReadString('\n')
|
|
switch {
|
|
case errors.Is(err, io.EOF):
|
|
if errs == nil {
|
|
errs = unknown.IfEmptyf(packages, "unable to determine packages")
|
|
}
|
|
return packages, nil, errs
|
|
case err != nil:
|
|
return nil, nil, fmt.Errorf("failed to parse mix.lock file: %w", err)
|
|
}
|
|
tokens := mixLockDelimiter.Split(line, -1)
|
|
if len(tokens) < 6 {
|
|
errs = unknown.Appendf(errs, reader, "unable to read mix lock line %d: %s", lineNum, line)
|
|
continue
|
|
}
|
|
name, version, hash, hashExt := tokens[1], tokens[4], tokens[5], tokens[len(tokens)-2]
|
|
|
|
if name == "" {
|
|
log.WithFields("path", reader.RealPath).Debug("skipping empty package name from mix.lock file")
|
|
errs = unknown.Appendf(errs, reader, "skipping empty package name from mix.lock file, for line: %d: %s", lineNum, line)
|
|
continue
|
|
}
|
|
|
|
packages = append(packages,
|
|
newPackage(
|
|
pkg.ElixirMixLockEntry{
|
|
Name: name,
|
|
Version: version,
|
|
PkgHash: hash,
|
|
PkgHashExt: hashExt,
|
|
},
|
|
reader.WithAnnotation(pkg.EvidenceAnnotationKey, pkg.PrimaryEvidenceAnnotation),
|
|
),
|
|
)
|
|
}
|
|
}
|