-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCodeElement.cs
More file actions
218 lines (175 loc) · 5.56 KB
/
CodeElement.cs
File metadata and controls
218 lines (175 loc) · 5.56 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
using System.Diagnostics;
namespace CodeGraph.Graph;
[DebuggerDisplay("{ElementType}: {Name} {(IsExternal ? \"(External)\" : \"\")}")]
public class CodeElement(string id, CodeElementType elementType, string name, string fullName, CodeElement? parent)
{
public List<SourceLocation> SourceLocations { get; set; } = [];
/// <summary>
/// Unlike in the graph where external relationships are omitted
/// I want to keep all attributes here.
/// </summary>
public HashSet<string> Attributes { get; set; } = [];
public HashSet<CodeElement> Children { get; } = [];
public HashSet<Relationship> Relationships { get; } = [];
public CodeElementType ElementType { get; } = elementType;
public string Id { get; } = id;
public string Name { get; } = name;
public string FullName { get; private set; } = fullName;
public CodeElement? Parent { get; set; } = parent;
/// <summary>
/// Indicates whether this code element is defined outside the solution.
/// External elements are from framework types, NuGet packages, or other referenced assemblies.
/// External elements are treated as leaf nodes - their internal dependencies are not analyzed.
/// </summary>
public bool IsExternal { get; init; }
public override bool Equals(object? obj)
{
if (obj != null && obj.GetType() == GetType())
{
var other = (CodeElement)obj;
return Id == other.Id;
}
return false;
}
public override int GetHashCode()
{
return Id.GetHashCode();
}
public string GetFullPath(bool omitGlobalNamespace = false)
{
var names = new List<string> { Name };
var current = Parent;
while (current != null)
{
if (!omitGlobalNamespace || !IsGlobalNamespace(current))
{
names.Insert(0, current.Name);
}
current = current.Parent;
}
return string.Join(".", names);
bool IsGlobalNamespace(CodeElement codeElement)
{
return codeElement.Parent?.ElementType == CodeElementType.Assembly
&& codeElement is { ElementType: CodeElementType.Namespace, Name: "global" };
}
}
/// <summary>
/// Index 0 is the root.
/// </summary>
public List<CodeElement> GetPathToRoot(bool includeSelf)
{
var path = new List<CodeElement>();
var current = includeSelf ? this : Parent;
while (current != null)
{
path.Add(current);
current = current.Parent;
}
path.Reverse();
return path;
}
/// <summary>
/// No parent, no children, no dependencies.
/// </summary>
public CodeElement CloneSimple()
{
var element = new CodeElement(Id, ElementType, Name,
FullName, null)
{
IsExternal = IsExternal
};
element.SourceLocations.AddRange(SourceLocations);
return element;
}
public bool IsChildOf(CodeElement parent)
{
if (Id == parent.Id)
{
return false;
}
var current = this;
while (current != null)
{
if (current.Id == parent.Id)
{
return true;
}
current = current.Parent;
}
return false;
}
public bool IsParentOf(CodeElement child)
{
return child.IsChildOf(this);
}
public HashSet<string> GetChildrenIncludingSelf()
{
var childrenIncludingSelf = new HashSet<string>();
var stack = new Stack<CodeElement>();
stack.Push(this);
while (stack.Count > 0)
{
var current = stack.Pop();
if (childrenIncludingSelf.Add(current.Id))
{
foreach (var child in current.Children)
{
stack.Push(child);
}
}
}
return childrenIncludingSelf;
}
public HashSet<string> GetChildren()
{
var children = GetChildrenIncludingSelf();
children.Remove(Id);
return children;
}
/// <summary>
/// Moves the CodeElement to the new parent.
/// </summary>
public void MoveTo(CodeElement newParent)
{
ArgumentNullException.ThrowIfNull(newParent, nameof(newParent));
// Remove child from old parent
var oldParent = Parent;
oldParent?.Children.RemoveWhere(c => c.Id == Id);
// Set new parent
Parent = newParent;
newParent.Children.Add(this);
// Update full name
Traversal.Dfs(newParent, n => n.FullName = n.GetFullPath());
}
private static class Traversal
{
public static void Dfs(CodeElement element, Action<CodeElement> handler)
{
HashSet<string> visited =
[
element.Id
];
foreach (var child in element.Children)
{
if (!visited.Contains(child.Id))
{
Dfs(child, visited, handler);
}
}
handler(element);
}
private static void Dfs(CodeElement element, HashSet<string> visited, Action<CodeElement> handler)
{
visited.Add(element.Id);
foreach (var child in element.Children)
{
if (!visited.Contains(child.Id))
{
Dfs(child, visited, handler);
}
}
handler(element);
}
}
}