-
Notifications
You must be signed in to change notification settings - Fork 0
/
XmlCommenter.cs
225 lines (196 loc) · 9.55 KB
/
XmlCommenter.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
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
219
220
221
222
223
224
225
using CXCommenter.Models;
using EnvDTE;
using EnvDTE80;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Text.RegularExpressions;
using Project = EnvDTE.Project;
namespace CXCommenter
{
public class XmlCommenter
{
public static string appName = Assembly.GetCallingAssembly().GetName().Name;
public static string appVersion = Assembly.GetCallingAssembly().GetName().Version.ToString();
public static void CommentSolution()
{
DTE2 dte = ServiceProvider.GlobalProvider.GetService(typeof(DTE)) as DTE2;
Solution2 solution = dte.Solution as Solution2;
foreach (Project project in solution.Projects)
{
CommentProject(project);
}
}
public static void CommentSingleFile()
{
ProjectItem projectItem = null;
ThreadHelper.ThrowIfNotOnUIThread();
DTE2 dte = (DTE2)Package.GetGlobalService(typeof(DTE));
Document activeDocument = dte.ActiveDocument;
// Ensure the active document is a C# file
if (activeDocument.Language == "CSharp")
{
projectItem = activeDocument.ProjectItem;
RemoveXmlCommentsFromActiveDocument(activeDocument);
CommentCodeElements(projectItem);
}
}
public static void CommentProject(Project project)
{
foreach (ProjectItem item in project.ProjectItems)
{
if (item.SubProject != null)
{
//IterateThroughAllCodeElements(item.SubProject);
}
else if (item.ProjectItems != null && item.ProjectItems.Count > 0)
{
IterateThroughAllCodeElementsInFolder(item);
}
else if (item.Name.EndsWith(".cs"))
{
CommentCodeElements(item);
}
}
}
public static void IterateThroughAllCodeElementsInFolder(ProjectItem folder)
{
foreach (ProjectItem item in folder.ProjectItems)
{
if (item.ProjectItems != null && item.ProjectItems.Count > 0)
{
IterateThroughAllCodeElementsInFolder(item);
}
else if (item.Name.EndsWith(".cs"))
{
CommentCodeElements(item);
}
}
}
public static void CommentCodeElements(ProjectItem item)
{
if (item.FileCodeModel != null)
{
int loopCount = 0;
foreach (CodeElement codeElement in item.FileCodeModel.CodeElements)
{
if (loopCount == 0)
{
CommentFileHeader(codeElement);
}
if (codeElement.Kind == vsCMElement.vsCMElementNamespace)
{
CodeNamespace codeNamespace = (CodeNamespace)codeElement;
CommentCodeElementsInNamespace(codeNamespace);
}
loopCount++;
}
}
}
public static void CommentCodeElementsInNamespace(CodeNamespace codeNamespace)
{
CommentNamespace(codeNamespace);
foreach (CodeElement typeElement in codeNamespace.Members)
{
if (typeElement.Kind == vsCMElement.vsCMElementClass ||
typeElement.Kind == vsCMElement.vsCMElementStruct ||
typeElement.Kind == vsCMElement.vsCMElementInterface)
{
CodeType codeType = (CodeType)typeElement;
CommentCodeElementsInType(codeType);
}
}
}
public static void CommentCodeElementsInType(CodeType codeType)
{
foreach (CodeElement memberElement in codeType.Members)
{
CodeElement2 codeElement2 = (CodeElement2)memberElement;
if (memberElement.Kind == vsCMElement.vsCMElementFunction)
{
CodeFunction codeFunction = (CodeFunction)memberElement;
string functionName = codeFunction.Name;
string returnType = codeFunction.Type.AsString;
List<Parameters> parameters = new List<Parameters>();
foreach (CodeParameter parameter in codeFunction.Parameters)
{
Parameters pr = new Parameters();
pr.VariableName = parameter.Name;
pr.TypeName = parameter.Type.AsString;
parameters.Add(pr);
}
string comment = Environment.NewLine +
"/// <summary>" + Environment.NewLine +
"/// Function Name : " + functionName + "." + Environment.NewLine +
"/// </summary>" + Environment.NewLine;
if (parameters.Count > 0)
{
foreach (Parameters param in parameters)
{
comment += "/// <param name=\"" + param.VariableName + "\">" + "This " + param.VariableName+ "'s Datatype is : " + param.TypeName +"." + "</param>" + Environment.NewLine;
}
}
comment += "/// <returns>" + returnType + "." + "</returns>" + Environment.NewLine;
codeElement2.StartPoint.CreateEditPoint().Insert(comment);
codeElement2.StartPoint.CreateEditPoint().SmartFormat(codeElement2.EndPoint);
codeElement2.ProjectItem.Save();
}
else if (memberElement.Kind == vsCMElement.vsCMElementProperty)
{
string comment = Environment.NewLine + "/// <summary>" + Environment.NewLine +
"/// Property Name - " + codeElement2.Name + "." + Environment.NewLine +
"/// </summary>" + Environment.NewLine;
codeElement2.StartPoint.CreateEditPoint().Insert(comment);
codeElement2.StartPoint.CreateEditPoint().SmartFormat(codeElement2.EndPoint);
codeElement2.ProjectItem.Save();
}
}
}
public static void CommentNamespace(CodeNamespace codeNamespace)
{
EditPoint startPoint = codeNamespace.StartPoint.CreateEditPoint();
EditPoint endPoint = codeNamespace.EndPoint.CreateEditPoint();
string comment = "/// <summary>" + Environment.NewLine +
"/// Namespace Name - " + codeNamespace.Name + "." + Environment.NewLine +
"/// </summary>" + Environment.NewLine;
startPoint.Insert(comment);
startPoint.SmartFormat(endPoint);
}
public static void CommentFileHeader(CodeElement codeElement)
{
if (codeElement.StartPoint != null)
{
string fileName = Path.GetFileName(codeElement.ProjectItem.FileNames[0]);
EditPoint editPoint = (EditPoint)codeElement.StartPoint.CreateEditPoint();
string headerPart1 = "//------------------------------------------------------------------------------" + Environment.NewLine +
"// <auto-generated>" + Environment.NewLine +
"// This xml documentation was generated by " + appName + ": " + appVersion + "." + Environment.NewLine +
"// </auto-generated>" + Environment.NewLine +
"//------------------------------------------------------------------------------" + Environment.NewLine;
string headerPart2 = "// <copyright file=\"" + fileName + "\" company=\"PlaceholderCompany\">" + Environment.NewLine +
"// Copyright (c) PlaceholderCompany. All rights reserved." + Environment.NewLine +
"// </copyright>" + Environment.NewLine;
string fileContent = editPoint.GetText(codeElement.EndPoint);
if (!fileContent.StartsWith(headerPart1 + headerPart2))
{
editPoint.Insert(headerPart1 + headerPart2);
codeElement.ProjectItem.Save();
}
}
}
public static void RemoveXmlCommentsFromActiveDocument(Document activeDocument)
{
TextDocument textDocument = (TextDocument)activeDocument.Object("TextDocument");
EditPoint editPoint = textDocument.StartPoint.CreateEditPoint();
string text = editPoint.GetText(textDocument.EndPoint);
// Define the regex pattern to match XML comments
string xmlCommentPattern = @"///.*\r?\n";
string xmlCommentPatternforHeader = @"//.*\r?\n";
string modifiedContentsfterheader = Regex.Replace(text, xmlCommentPatternforHeader, string.Empty);
// Remove XML comments
string modifiedContents = Regex.Replace(modifiedContentsfterheader, xmlCommentPattern, string.Empty);
// Replace the text in the active document
editPoint.ReplaceText(textDocument.EndPoint, modifiedContents, (int)vsEPReplaceTextOptions.vsEPReplaceTextKeepMarkers);
}
}
}