blob: b79023957f52155b261ed8359d3a196b6a6bb3aa (
plain)
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
|
package lombok;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class CompilerMessageMatcher {
/** Line Number (starting at 1) */
private final long line;
/** Position is either column number, OR position in file starting from the first byte. */
private final long position;
private final Collection<String> messageParts;
public CompilerMessageMatcher(long line, long position, String message) {
this.line = line;
this.position = position;
this.messageParts = Arrays.asList(message.split("\\s+"));
}
@Override public String toString() {
StringBuilder parts = new StringBuilder();
for (String part : messageParts) parts.append(part).append(" ");
if (parts.length() > 0) parts.setLength(parts.length() - 1);
return String.format("%d:%d %s", line, position, parts);
}
public boolean matches(CompilerMessage message) {
if (message.line != this.line) return false;
if (message.position != this.position) return false;
for (String token : messageParts) {
if (!message.message.contains(token)) return false;
}
return true;
}
public static List<CompilerMessageMatcher> readAll(InputStream rawIn) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(rawIn, "UTF-8"));
List<CompilerMessageMatcher> out = new ArrayList<CompilerMessageMatcher>();
for (String line = in.readLine(); line != null; line = in.readLine()) {
CompilerMessageMatcher cmm = read(line);
if (cmm != null) out.add(cmm);
}
return out;
}
private static final Pattern PATTERN = Pattern.compile("^(\\d+):(\\d+) (.*)$");
private static CompilerMessageMatcher read(String line) {
line = line.trim();
if (line.isEmpty()) return null;
Matcher m = PATTERN.matcher(line);
if (!m.matches()) throw new IllegalArgumentException("Typo in test file: " + line);
return new CompilerMessageMatcher(Integer.parseInt(m.group(1)), Integer.parseInt(m.group(2)), m.group(3));
}
}
|