53 lines
1.8 KiB
Go
53 lines
1.8 KiB
Go
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
package spdxlib
|
|
|
|
import (
|
|
"github.com/spdx/tools-golang/spdx/common"
|
|
"github.com/spdx/tools-golang/spdx/v2_1"
|
|
"github.com/spdx/tools-golang/spdx/v2_2"
|
|
"github.com/spdx/tools-golang/spdx/v2_3"
|
|
)
|
|
|
|
// FilterRelationships2_1 returns a slice of Element IDs returned by the given filter closure. The closure is passed
|
|
// one relationship at a time, and it can return an ElementID or nil.
|
|
func FilterRelationships2_1(doc *v2_1.Document, filter func(*v2_1.Relationship) *common.ElementID) ([]common.ElementID, error) {
|
|
elementIDs := []common.ElementID{}
|
|
|
|
for _, relationship := range doc.Relationships {
|
|
if id := filter(relationship); id != nil {
|
|
elementIDs = append(elementIDs, *id)
|
|
}
|
|
}
|
|
|
|
return elementIDs, nil
|
|
}
|
|
|
|
// FilterRelationships2_2 returns a slice of Element IDs returned by the given filter closure. The closure is passed
|
|
// one relationship at a time, and it can return an ElementID or nil.
|
|
func FilterRelationships2_2(doc *v2_2.Document, filter func(*v2_2.Relationship) *common.ElementID) ([]common.ElementID, error) {
|
|
elementIDs := []common.ElementID{}
|
|
|
|
for _, relationship := range doc.Relationships {
|
|
if id := filter(relationship); id != nil {
|
|
elementIDs = append(elementIDs, *id)
|
|
}
|
|
}
|
|
|
|
return elementIDs, nil
|
|
}
|
|
|
|
// FilterRelationships2_3 returns a slice of Element IDs returned by the given filter closure. The closure is passed
|
|
// one relationship at a time, and it can return an ElementID or nil.
|
|
func FilterRelationships2_3(doc *v2_3.Document, filter func(*v2_3.Relationship) *common.ElementID) ([]common.ElementID, error) {
|
|
elementIDs := []common.ElementID{}
|
|
|
|
for _, relationship := range doc.Relationships {
|
|
if id := filter(relationship); id != nil {
|
|
elementIDs = append(elementIDs, *id)
|
|
}
|
|
}
|
|
|
|
return elementIDs, nil
|
|
}
|