-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathDetectedComponent.cs
85 lines (69 loc) · 4.13 KB
/
DetectedComponent.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
namespace Microsoft.ComponentDetection.Contracts;
using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.ComponentDetection.Contracts.BcdeModels;
/// <summary>A detected component, found during component detection scans. This is the container for all metadata gathered during detection.</summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class DetectedComponent
{
private readonly object hashLock = new object();
/// <summary>Creates a new DetectedComponent.</summary>
/// <param name="component">The typed component instance to base this detection on.</param>
/// <param name="detector">The detector that detected this component.</param>
/// <param name="containerDetailsId">Id of the containerDetails, this is only necessary if the component was found inside a container.</param>
/// <param name="containerLayerId">Id of the layer the component was found, this is only necessary if the component was found inside a container.</param>
public DetectedComponent(TypedComponent.TypedComponent component, IComponentDetector detector = null, int? containerDetailsId = null, int? containerLayerId = null)
{
this.Component = component;
this.FilePaths = [];
this.DetectedBy = detector;
this.ContainerDetailIds = [];
this.ContainerLayerIds = new Dictionary<int, IEnumerable<int>>();
this.TargetFrameworks = [];
if (containerDetailsId.HasValue)
{
this.ContainerDetailIds.Add(containerDetailsId.Value);
if (containerLayerId.HasValue)
{
this.ContainerLayerIds.Add(containerDetailsId.Value, [containerLayerId.Value]);
}
}
}
/// <summary>
/// Gets or sets the detector that detected this component.
/// </summary>
public IComponentDetector DetectedBy { get; set; }
/// <summary>Gets the component associated with this detection.</summary>
public TypedComponent.TypedComponent Component { get; private set; }
/// <summary> Gets or sets the hashset containing the file paths associated with the component. </summary>
public HashSet<string> FilePaths { get; set; }
/// <summary> Gets or sets the dependency roots for this component. </summary>
public HashSet<TypedComponent.TypedComponent> DependencyRoots { get; set; }
/// <summary> Gets or sets the ancester dependency for this component. </summary>
public HashSet<TypedComponent.TypedComponent> AncestralDependencyRoots { get; set; }
/// <summary>Gets or sets the flag to mark the component as a development dependency or not.
/// This is used at build or development time not a distributed dependency.</summary>
public bool? DevelopmentDependency { get; set; }
/// <summary> Gets or sets the details of the container where this component was found.</summary>
public HashSet<int> ContainerDetailIds { get; set; }
/// <summary> Gets or sets the layer within a container where this component was found.</summary>
public IDictionary<int, IEnumerable<int>> ContainerLayerIds { get; set; }
/// <summary> Gets or sets Dependency Scope of the component.</summary>
public DependencyScope? DependencyScope { get; set; }
/// <summary> Gets Target Frameworks where the component was consumed.</summary>
public ConcurrentHashSet<string> TargetFrameworks { get; set; }
private string DebuggerDisplay => $"{this.Component.DebuggerDisplay}";
/// <summary>Adds a filepath to the FilePaths hashset for this detected component.
/// Note:
/// (1) Dependency Graph automatically captures the location where a component is found, no need to call it at all inside package manager detectors.</summary>
/// (2) Only usecase where Detectors allowed to call this API is, in scenarios where "Detectors(eg:Yarn) further process other config files to get workspace dependencies recursively"
/// and detectors need to add WorkspaceDependency found path too.
/// <param name="filePath">The file path to add to the hashset.</param>
public void AddComponentFilePath(string filePath)
{
lock (this.hashLock)
{
this.FilePaths.Add(filePath);
}
}
}