Documentation
¶
Index ¶
- Constants
- func AppendPosition(out map[string][]*sdk.SourcePosition, key string, pos *sdk.SourcePosition)
- func AttachPositionCandidates(g *sdk.Graph, positions map[string][]*sdk.SourcePosition, ...)
- func AttachPositions(g *sdk.Graph, positions map[string]*sdk.SourcePosition, ...)
- func InferManifestMetadata(req sdk.DetectionRequest, evidencePatterns []string) sdk.ManifestMetadata
- func ScanLines(path string, fn func(line int, text string)) error
Constants ¶
const ( NameNPM = "npm-detector" NameNPMNative = "npm-native-detector" NamePNPM = "pnpm-detector" NamePNPMNative = "pnpm-native-detector" NameYarn = "yarn-detector" NameYarnNative = "yarn-native-detector" NameGradle = "gradle-detector" NameMaven = "maven-detector" NameGoMod = "go-detector" NameComposer = "composer-detector" NameBundler = "bundler-detector" NameGitHubActions = "github-actions-detector" NamePip = "pip-detector" NamePipenv = "pipenv-detector" NamePoetry = "poetry-detector" NameUV = "uv-detector" NameNuGet = "nuget-detector" NameCargo = "cargo-detector" NamePub = "pub-detector" NamePubNative = "pub-native-detector" NameCocoaPods = "cocoapods-detector" NameSwiftPM = "swiftpm-detector" NameSwiftPMNative = "swiftpm-native-detector" NameMix = "mix-detector" NameConan = "conan-detector" NameSBT = "sbt-detector" NameSBTNative = "sbt-native-detector" NameSBOM = "sbom-detector" NameSyft = "syft-detector" )
Variables ¶
This section is empty.
Functions ¶
func AppendPosition ¶ added in v0.14.17
func AppendPosition(out map[string][]*sdk.SourcePosition, key string, pos *sdk.SourcePosition)
AppendPosition appends pos under key unless the same file/line/column position was already recorded.
func AttachPositionCandidates ¶ added in v0.14.17
func AttachPositionCandidates(g *sdk.Graph, positions map[string][]*sdk.SourcePosition, keys func(*sdk.Dependency) []string)
AttachPositionCandidates populates PackageLocation.Position on graph nodes using one or more lookup keys per dependency. It preserves multiple declaration sites and skips exact duplicate file/line/column entries.
func AttachPositions ¶
func AttachPositions(g *sdk.Graph, positions map[string]*sdk.SourcePosition, nameKey func(*sdk.Dependency) string)
AttachPositions populates PackageLocation.Position on graph nodes whose normalized key (derived by nameKey) appears in the positions map. Nodes already carrying a Location with the same RealPath are left untouched.
nameKey returns the lookup key for a graph node. Detectors typically derive it from dep.Name, dep.Org+":"+dep.Name, or a language-specific normalization. Returning "" skips the node.
func InferManifestMetadata ¶
func InferManifestMetadata(req sdk.DetectionRequest, evidencePatterns []string) sdk.ManifestMetadata
InferManifestMetadata determines the manifest metadata for detectors that naturally resolve one graph.
func ScanLines ¶
ScanLines invokes fn for every line in the file at path. The callback receives the 1-based line number and the raw line text (without the trailing newline). Returns the underlying scanner error if any. Returns nil silently when the file does not exist — detector position wiring is best-effort.
Types ¶
This section is empty.