mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
05e8ba948d
* add python package relationships Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * nil for empty relationships collections Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * new json schema for optional python requiremenets Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * update format snapshots for python packages Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * decompose python parsers more + add tests around plural fields Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * update JSON schema with python dep refs Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
19 lines
507 B
Go
19 lines
507 B
Go
package relationship
|
|
|
|
import (
|
|
"github.com/anchore/syft/syft/artifact"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
)
|
|
|
|
func ToSource(src artifact.Identifiable, c *pkg.Collection) []artifact.Relationship {
|
|
relationships := make([]artifact.Relationship, 0) // Should we pre-allocate this by giving catalog a Len() method?
|
|
for p := range c.Enumerate() {
|
|
relationships = append(relationships, artifact.Relationship{
|
|
From: src,
|
|
To: p,
|
|
Type: artifact.ContainsRelationship,
|
|
})
|
|
}
|
|
|
|
return relationships
|
|
}
|