-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathProgram.cs
More file actions
301 lines (260 loc) · 11.3 KB
/
Program.cs
File metadata and controls
301 lines (260 loc) · 11.3 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
using static System.Console;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.EntityFrameworkCore;
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
using CSharpParser.model;
using System.Xml.Linq;
namespace CSharpParser
{
class Program
{
private static List<string> _rootDir;
private static string _buildDirBase = "";
private static string _connectionString = "";
static int Main(string[] args)
{
_rootDir = new List<string>();
int threadNum = 4;
try
{
_connectionString = args[0].Replace("'", "");
_buildDirBase = args[1].Replace("'", ""); //indexes
threadNum = int.Parse(args[2]);
for (int i = 3; i < args.Length; ++i)
{
_rootDir.Add(args[i].Replace("'", ""));
}
}
catch (Exception e)
{
WriteLine("Error in parsing command!");
return 1;
}
//Converting the connectionstring into entiy framwork style connectionstring
string csharpConnectionString = transformConnectionString();
var options = new DbContextOptionsBuilder<CsharpDbContext>()
.UseNpgsql(csharpConnectionString)
.Options;
CsharpDbContext _context = new CsharpDbContext(options);
_context.Database.Migrate();
List<string> allFiles = new List<string>();
// This dictionary will remember which file belongs to which DLL
Dictionary<string, string> fileToTargetDll = new Dictionary<string, string>();
foreach (var p in _rootDir)
{
// We find all .csproj files
var csprojFiles = Directory.GetFiles(p, "*.csproj", SearchOption.AllDirectories);
foreach (var csproj in csprojFiles)
{
string projectDir = Path.GetDirectoryName(csproj);
// Default DLL name based on project file name
string targetDll = Path.GetFileNameWithoutExtension(csproj) + ".dll";
// we try to read the real AssemblyName from the XML
try {
XDocument doc = XDocument.Load(csproj);
var assemblyNameNode = doc.Descendants("AssemblyName").FirstOrDefault();
if (assemblyNameNode != null && !string.IsNullOrWhiteSpace(assemblyNameNode.Value))
{
targetDll = assemblyNameNode.Value + ".dll";
}
} catch { /* If we cannot read the XML, the default name will remain.*/ }
// search for C# files belonging to the project (filtering out the garbage)
var csFiles = Directory.GetFiles(projectDir, "*.cs", SearchOption.AllDirectories)
.Where(f => !f.Contains("/obj/") && !f.Contains("\\obj\\") &&
!f.Contains("/bin/") && !f.Contains("\\bin\\"));
foreach (var cs in csFiles)
{
// if a file is not already in it (to avoid duplication)
if (!fileToTargetDll.ContainsKey(cs))
{
fileToTargetDll[cs] = targetDll;
allFiles.Add(cs);
}
}
}
}
allFiles = allFiles.Distinct().ToList();
foreach (var f in allFiles)
{
WriteLine(f);
}
IEnumerable<string> assemblies_base = GetSourceFilesFromDir(_buildDirBase, ".dll"); //loading basic dlls
List<string> assemblies = new List<string>();
foreach (var p in _rootDir)
{
// We search for all .dll files in all input directories
assemblies.AddRange(GetSourceFilesFromDir(p, ".dll"));
}
// Let's keep only one of each DLL based on the file name!
assemblies = assemblies.GroupBy(x => System.IO.Path.GetFileName(x))
.Select(g => g.First())
.ToList();
List<SyntaxTree> trees = new List<SyntaxTree>();
foreach (string file in allFiles)
{
string programText = File.ReadAllText(file);
SyntaxTree tree = CSharpSyntaxTree.ParseText(programText, null, file);
trees.Add(tree);
}
Write(trees.Count);
CSharpCompilation compilation = CSharpCompilation.Create("CSharpCompilation")
.AddReferences(MetadataReference.CreateFromFile(typeof(object).Assembly.Location))
.AddSyntaxTrees(trees);
foreach (string file in assemblies_base)
{
compilation = compilation.AddReferences(MetadataReference.CreateFromFile(file));
}
foreach (string file in assemblies)
{
compilation = compilation.AddReferences(MetadataReference.CreateFromFile(file));
}
var runtask = ParalellRun(csharpConnectionString, threadNum, trees, compilation, fileToTargetDll);
int ret = runtask.Result;
return 0;
}
private static async Task<int> ParalellRun(string csharpConnectionString, int threadNum,
List<SyntaxTree> trees, CSharpCompilation compilation, Dictionary<string, string> fileToTargetDll)
{
var options = new DbContextOptionsBuilder<CsharpDbContext>()
.UseNpgsql(csharpConnectionString)
.Options;
CsharpDbContext dbContext = new CsharpDbContext(options);
var contextList = new List<CsharpDbContext>();
contextList.Add(dbContext);
for (int i = 1; i < threadNum; i++)
{
CsharpDbContext dbContextInstance = new CsharpDbContext(options);
contextList.Add(dbContextInstance);
}
var ParsingTasks = new List<Task<int>>();
int maxThread = threadNum < trees.Count() ? threadNum : trees.Count();
WriteLine(threadNum);
for (int i = 0; i < maxThread; i++)
{
ParsingTasks.Add(ParseTree(contextList[i],trees[i],compilation,i,fileToTargetDll));
}
int nextTreeIndex = maxThread;
while (ParsingTasks.Count > 0)
{
var finshedTask = await Task.WhenAny<int>(ParsingTasks);
int nextContextIndex = await finshedTask;
ParsingTasks.Remove(finshedTask);
if (nextTreeIndex < trees.Count)
{
ParsingTasks.Add(ParseTree(contextList[nextContextIndex],
trees[nextTreeIndex],compilation,nextContextIndex, fileToTargetDll));
++nextTreeIndex;
}
}
foreach (var ctx in contextList)
{
ctx.SaveChanges();
}
return 0;
}
private static async Task<int> ParseTree(CsharpDbContext context,
SyntaxTree tree, CSharpCompilation compilation, int index,
Dictionary<string, string> fileToTargetDll)
{
var ParsingTask = Task.Run(() =>
{
WriteLine("ParallelRun " + tree.FilePath);
SemanticModel model = compilation.GetSemanticModel(tree);
var visitor = new AstVisitor(context, model, tree);
visitor.Visit(tree.GetCompilationUnitRoot());
// Find the DLL name and append a | to the filename.
string target = fileToTargetDll.ContainsKey(tree.FilePath) ? fileToTargetDll[tree.FilePath] : "Unknown.dll";
WriteLine((visitor.FullyParsed ? "+" : "-") + tree.FilePath + "|" + target);
return index;
});
return await ParsingTask;
}
public static IEnumerable<string> GetSourceFilesFromDir(string root, string extension)
{
IEnumerable<string> allFiles = new string[]{};
// Data structure to hold names of subfolders.
ArrayList dirs = new ArrayList();
if (!System.IO.Directory.Exists(root))
{
throw new ArgumentException();
}
dirs.Add(root);
while (dirs.Count > 0)
{
string currentDir = dirs[0].ToString();
dirs.RemoveAt(0);
string[] subDirs;
try
{
subDirs = System.IO.Directory.GetDirectories(currentDir);
}
catch (UnauthorizedAccessException e)
{
WriteLine(e.Message);
continue;
}
catch (System.IO.DirectoryNotFoundException e)
{
WriteLine(e.Message);
continue;
}
// Add the subdirectories for traversal.
dirs.AddRange(subDirs);
string[] files = null;
try
{
files = System.IO.Directory.GetFiles(currentDir);
}
catch (UnauthorizedAccessException e)
{
Console.WriteLine(e.Message);
continue;
}
catch (System.IO.DirectoryNotFoundException e)
{
Console.WriteLine(e.Message);
continue;
}
foreach (string file in files)
{
try
{
System.IO.FileInfo fi = new System.IO.FileInfo(file);
if (fi.Extension == extension) {
allFiles = allFiles.Append(file);
}
}
catch (System.IO.FileNotFoundException e)
{
// If file was deleted by a separate application
Console.WriteLine(e.Message);
}
}
}
return allFiles;
}
private static string transformConnectionString()
{
_connectionString = _connectionString.Substring(_connectionString.IndexOf(':')+1);
_connectionString = _connectionString.Replace("user", "username");
string [] properties = _connectionString.Split(';');
string csharpConnectionString = "";
for (int i = 0; i < properties.Length; ++i)
{
csharpConnectionString += properties[i].Substring(0,1).ToUpper()
+ properties[i].Substring(1);
if (i < properties.Length-1)
{
csharpConnectionString += ";";
}
}
return csharpConnectionString;
}
}
}