mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* fix: properly parse conan ref and include user and channel Signed-off-by: Stefan Profanter <stefan.profanter@agile-robots.com> * unexport the conanRef type Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Stefan Profanter <stefan.profanter@agile-robots.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
62 lines
1.3 KiB
Go
62 lines
1.3 KiB
Go
package cpp
|
|
|
|
import (
|
|
"bufio"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"strings"
|
|
|
|
"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 = parseConanfile
|
|
|
|
type Conanfile struct {
|
|
Requires []string `toml:"requires"`
|
|
}
|
|
|
|
// parseConanfile is a parser function for conanfile.txt contents, returning all packages discovered.
|
|
func parseConanfile(_ file.Resolver, _ *generic.Environment, reader file.LocationReadCloser) ([]pkg.Package, []artifact.Relationship, error) {
|
|
r := bufio.NewReader(reader)
|
|
inRequirements := false
|
|
var pkgs []pkg.Package
|
|
for {
|
|
line, err := r.ReadString('\n')
|
|
switch {
|
|
case errors.Is(io.EOF, err):
|
|
return pkgs, nil, nil
|
|
case err != nil:
|
|
return nil, nil, fmt.Errorf("failed to parse conanfile.txt file: %w", err)
|
|
}
|
|
|
|
switch {
|
|
case strings.Contains(line, "[requires]"):
|
|
inRequirements = true
|
|
case strings.ContainsAny(line, "[]") || strings.HasPrefix(strings.TrimSpace(line), "#"):
|
|
inRequirements = false
|
|
}
|
|
|
|
m := pkg.ConanMetadata{
|
|
Ref: strings.Trim(line, "\n"),
|
|
}
|
|
|
|
if !inRequirements {
|
|
continue
|
|
}
|
|
|
|
p := newConanfilePackage(
|
|
m,
|
|
reader.Location.WithAnnotation(pkg.EvidenceAnnotationKey, pkg.PrimaryEvidenceAnnotation),
|
|
)
|
|
if p == nil {
|
|
continue
|
|
}
|
|
|
|
pkgs = append(pkgs, *p)
|
|
}
|
|
}
|