-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathProgram.cs
192 lines (173 loc) · 7.14 KB
/
Program.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
/*
* Program.cs
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013-2024 Apple Inc. and the FoundationDB project authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Xml.Linq;
using System.Text.RegularExpressions;
namespace coveragetool
{
class CoverageCase
{
public string File;
public int Line;
public string Comment;
public string Condition;
};
class ParseException : Exception {
}
class Program
{
public static int Main(string[] args)
{
if (args.Length < 2)
{
Console.WriteLine("Usage:");
Console.WriteLine(" coveragetool [coveragefile] [inputpath]*");
return 100;
}
bool quiet = true;
if (Environment.GetEnvironmentVariable("VERBOSE") != null) {
quiet = false;
}
if (!quiet) {
Console.WriteLine("coveragetool {0}", string.Join(" ", args));
}
string output = args[0];
string[] inputPaths = args.Skip(1).Where(p=>!p.Contains(".g.") && !p.Contains(".amalgamation.")).ToArray();
var outputFile = new FileInfo( output );
/*var allFiles = inputPaths.SelectMany( path =>
new DirectoryInfo( Path.GetDirectoryName(path) )
.EnumerateFiles( Path.GetFileName(path), SearchOption.AllDirectories )
).ToArray();*/
var exists = inputPaths.ToLookup(n=>n);
CoverageCase[] cases = new CoverageCase[0];
var outputTime = DateTime.MinValue;
if (outputFile.Exists)
{
string[] oldArgs;
ParseOutput(output, out cases, out oldArgs);
if (oldArgs.Length == inputPaths.Length && !oldArgs.Zip(inputPaths,(a,b)=>a!=b).Any(b=>b))
outputTime = outputFile.LastWriteTimeUtc;
}
var changedFiles = inputPaths
.Where( fi=>new FileInfo(fi).LastWriteTimeUtc > outputTime )
.ToLookup(n=>n);
try {
cases = cases
.Where(c => exists.Contains(c.File) && !changedFiles.Contains(c.File))
.Concat( changedFiles.SelectMany( f => ParseSource( f.Key ) ) )
.ToArray();
} catch (ParseException) {
return 1;
}
if (!quiet) {
Console.WriteLine(" {0}/{1} files scanned", changedFiles.Count, inputPaths.Length);
Console.WriteLine(" {0} coverage cases found", cases.Length);
}
WriteOutput(output, cases, inputPaths);
return 0;
}
private static string ValueOrDefault(XAttribute attr, string def)
{
if (attr == null) return def;
else return attr.Value;
}
public static void ParseOutput(string filename, out CoverageCase[] cases, out string[] args)
{
var doc = XDocument.Load(filename).Element("CoverageTool");
cases =
doc.Element("CoverageCases")
.Elements("Case")
.Select(c =>
new CoverageCase { File = c.Attribute("File").Value, Line = int.Parse(c.Attribute("Line").Value), Comment=c.Attribute("Comment").Value, Condition=ValueOrDefault(c.Attribute("Condition"),"") }
)
.ToArray();
args =
doc.Element("Inputs")
.Elements("Input")
.Select(i => i.Value)
.ToArray();
}
public static void WriteOutput(string filename, CoverageCase[] cases, string[] args)
{
var doc = new XDocument(
new XElement("CoverageTool",
new XElement("CoverageCases",
cases.Select(c =>
new XElement("Case",
new XAttribute("File", c.File),
new XAttribute("Line", c.Line.ToString()),
new XAttribute("Comment", c.Comment),
new XAttribute("Condition", c.Condition)
)
)
),
new XElement("Inputs",
args.Select(a => new XElement("Input", a)))
));
doc.Save(filename);
}
public static CoverageCase[] ParseSource(string filename)
{
var regex = new Regex( @"^([^/]|/[^/])*\s+(TEST|INJECT_FAULT|SHOULD_INJECT_FAULT)[ \t]*\(([^)]*)\)" );
var lines = File.ReadAllLines(filename);
var res = Enumerable.Range(0, lines.Length)
.Where( i=>regex.IsMatch(lines[i]) && !lines[i].StartsWith("#define") )
.Select( i=>new CoverageCase {
File = filename,
Line = i+1,
Comment = FindComment(lines[i]),
Condition = regex.Match(lines[i]).Groups[3].Value
} )
.ToArray();
var comments = new Dictionary<string, CoverageCase>();
bool failed = false;
foreach(var coverageCase in res) {
if (String.IsNullOrEmpty(coverageCase.Comment) || coverageCase.Comment.Trim() == "") {
failed = true;
Console.Error.WriteLine(String.Format("Error at {0}:{1}: Empty or missing comment", coverageCase.File, coverageCase.Line));
}
else if (comments.ContainsKey(coverageCase.Comment)) {
failed = true;
var prev = comments[coverageCase.Comment];
Console.Error.WriteLine(String.Format("Error at {0}:{1}: {2} is not a unique comment", coverageCase.File, coverageCase.Line, coverageCase.Comment));
Console.Error.WriteLine(String.Format("\tPreviously seen in {0} at {1}", prev.File, prev.Line));
} else {
comments.Add(coverageCase.Comment, coverageCase);
}
}
if (failed) {
throw new ParseException();
}
return res;
}
public static string FindComment(string line)
{
int comment = line.IndexOf("//");
if (comment == -1)
return "";
else
return line.Substring(comment + 2).Trim();
}
}
}