net.sourceforge.pmd.renderers.SummaryHTMLRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmd-core Show documentation
Show all versions of pmd-core Show documentation
PMD is an extensible multilanguage static code analyzer. It finds common programming flaws like unused variables,
empty catch blocks, unnecessary object creation, and so forth. It's mainly concerned with Java and
Apex, but supports 16 other languages. It comes with 400+ built-in rules. It can be
extended with custom rules. It uses JavaCC and Antlr to parse source files into abstract syntax trees
(AST) and runs rules against them to find violations. Rules can be written in Java or using a XPath query.
Currently, PMD supports Java, JavaScript, Salesforce.com Apex and Visualforce,
Kotlin, Swift, Modelica, PLSQL, Apache Velocity, JSP, WSDL, Maven POM, HTML, XML and XSL.
Scala is supported, but there are currently no Scala rules available.
Additionally, it includes CPD, the copy-paste-detector. CPD finds duplicated code in
Coco, C/C++, C#, Dart, Fortran, Gherkin, Go, Groovy, HTML, Java, JavaScript, JSP, Julia, Kotlin,
Lua, Matlab, Modelica, Objective-C, Perl, PHP, PLSQL, Python, Ruby, Salesforce.com Apex and
Visualforce, Scala, Swift, T-SQL, Typescript, Apache Velocity, WSDL, XML and XSL.
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.renderers;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.commons.lang3.mutable.MutableInt;
import net.sourceforge.pmd.reporting.Report;
import net.sourceforge.pmd.reporting.RuleViolation;
/**
* Renderer to a summarized HTML format.
*/
public class SummaryHTMLRenderer extends AbstractAccumulatingRenderer {
public static final String NAME = "summaryhtml";
public SummaryHTMLRenderer() {
super(NAME, "Summary HTML format.");
// Note: we define the same properties as HTML Renderer
// we have to copy the values later from this renderer to the HTML
// Renderer
definePropertyDescriptor(HTMLRenderer.LINK_PREFIX);
definePropertyDescriptor(HTMLRenderer.LINE_PREFIX);
definePropertyDescriptor(HTMLRenderer.HTML_EXTENSION);
}
@Override
public String defaultFileExtension() {
return "html";
}
@Override
public void outputReport(Report report) throws IOException {
writer.println("PMD ");
renderSummary(report);
writer.write("Detail
");
writer.println("");
HTMLRenderer htmlRenderer = new HTMLRenderer();
htmlRenderer.setProperty(HTMLRenderer.LINK_PREFIX, getProperty(HTMLRenderer.LINK_PREFIX));
htmlRenderer.setProperty(HTMLRenderer.LINE_PREFIX, getProperty(HTMLRenderer.LINE_PREFIX));
htmlRenderer.setProperty(HTMLRenderer.HTML_EXTENSION, getProperty(HTMLRenderer.HTML_EXTENSION));
htmlRenderer.setShowSuppressedViolations(showSuppressedViolations);
htmlRenderer.renderBody(writer, report);
writer.println("
");
}
/**
* Write a Summary HTML table.
*/
private void renderSummary(Report report) throws IOException {
writer.println("Summary
");
writer.println("");
writer.println("Rule name Number of violations ");
Map summary = getSummary(report);
for (Entry entry : summary.entrySet()) {
String ruleName = entry.getKey();
writer.write("");
writer.write(ruleName);
writer.write(" ");
writer.write(String.valueOf(entry.getValue().intValue()));
writer.println(" ");
}
writer.println("
");
}
private static Map getSummary(Report report) {
Map summary = new LinkedHashMap<>();
for (RuleViolation rv : report.getViolations()) {
String name = rv.getRule().getName();
MutableInt count = summary.get(name);
if (count == null) {
count = new MutableInt(0);
summary.put(name, count);
}
count.increment();
}
return summary;
}
}