
edu.hm.hafner.analysis.parser.MetrowerksCwCompilerParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analysis-model Show documentation
Show all versions of analysis-model Show documentation
This library provides a Java object model to read, aggregate, filter, and query static analysis reports.
It is used by Jenkins' warnings next generation plug-in to visualize the warnings of individual builds.
Additionally, this library is used by a GitHub action to autograde student software projects based on a given set of
metrics (unit tests, code and mutation coverage, static analysis warnings).
package edu.hm.hafner.analysis.parser;
import java.util.Optional;
import java.util.regex.Matcher;
import edu.hm.hafner.analysis.Issue;
import edu.hm.hafner.analysis.IssueBuilder;
import edu.hm.hafner.analysis.LookaheadParser;
import edu.hm.hafner.analysis.Severity;
import edu.hm.hafner.util.LookaheadStream;
/**
* A parser for Metrowerks Codewarrior 4.x compiler warnings.
*
* @author Sven Lübke
*/
public class MetrowerksCwCompilerParser extends LookaheadParser {
private static final long serialVersionUID = 4317595592384426180L;
/** Pattern of MW CodeWarrior compiler warnings. */
private static final String CW_COMPILER_WARNING_PATTERN = "^(.+?)\\((\\d+)\\): (INFORMATION|WARNING|ERROR) (.+?):"
+ " (.*)$";
/**
* Creates a new instance of {@link MetrowerksCwCompilerParser}.
*/
public MetrowerksCwCompilerParser() {
super(CW_COMPILER_WARNING_PATTERN);
}
@Override
protected Optional createIssue(final Matcher matcher, final LookaheadStream lookahead,
final IssueBuilder builder) {
Severity priority;
String category;
if (equalsIgnoreCase(matcher.group(3), "error")) {
priority = Severity.WARNING_HIGH;
category = "ERROR";
}
else if (equalsIgnoreCase(matcher.group(3), "information")) {
priority = Severity.WARNING_LOW;
category = "Info";
}
else {
priority = Severity.WARNING_NORMAL;
category = "Warning";
}
return builder.setFileName(matcher.group(1))
.setLineStart(matcher.group(2))
.setCategory(category)
.setMessage(matcher.group(5))
.setSeverity(priority)
.buildOptional();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy