All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.renderers.Renderer Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.5.0-metrics
Show newest version
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.renderers;

import java.io.IOException;
import java.io.Writer;

import net.sourceforge.pmd.benchmark.TimeTracker;
import net.sourceforge.pmd.benchmark.TimedOperation;
import net.sourceforge.pmd.benchmark.TimedOperationCategory;
import net.sourceforge.pmd.lang.document.TextFile;
import net.sourceforge.pmd.properties.PropertyDescriptor;
import net.sourceforge.pmd.properties.PropertySource;
import net.sourceforge.pmd.reporting.FileAnalysisListener;
import net.sourceforge.pmd.reporting.FileNameRenderer;
import net.sourceforge.pmd.reporting.GlobalAnalysisListener;
import net.sourceforge.pmd.reporting.ListenerInitializer;
import net.sourceforge.pmd.reporting.Report;
import net.sourceforge.pmd.reporting.Report.ConfigurationError;
import net.sourceforge.pmd.reporting.Report.GlobalReportBuilderListener;
import net.sourceforge.pmd.reporting.Report.ProcessingError;
import net.sourceforge.pmd.reporting.Report.ReportBuilderListener;
import net.sourceforge.pmd.reporting.Report.SuppressedViolation;
import net.sourceforge.pmd.reporting.RuleViolation;

/**
 * This is an interface for rendering a Report. When a Renderer is being
 * invoked, the sequence of method calls is something like the following:
 * 
    *
  1. Renderer construction/initialization
  2. *
  3. {@link Renderer#setShowSuppressedViolations(boolean)}
  4. *
  5. {@link Renderer#setWriter(Writer)}
  6. *
  7. {@link Renderer#start()}
  8. *
  9. {@link Renderer#startFileAnalysis(TextFile)} for each source file * processed
  10. *
  11. {@link Renderer#renderFileReport(Report)} for each Report instance
  12. *
  13. {@link Renderer#end()}
  14. *
*

* An implementation of the Renderer interface is expected to have a default * constructor. Properties should be defined using the * {@link #definePropertyDescriptor(PropertyDescriptor)} * method. After the instance is created, the property values are set. This * means, you won't have access to property values in your constructor. */ // TODO Are implementations expected to be thread-safe? public interface Renderer extends PropertySource { /** * Get the name of the Renderer. * * @return The name of the Renderer. */ @Override String getName(); /** * Set the name of the Renderer. * * @param name * The name of the Renderer. */ void setName(String name); /** * Get the description of the Renderer. * * @return The description of the Renderer. */ String getDescription(); /** * Return the default filename extension to use. * * @return String */ String defaultFileExtension(); /** * Set the description of the Renderer. * * @param description * The description of the Renderer. */ void setDescription(String description); /** * Get the indicator for whether to show suppressed violations. * * @return true if suppressed violations should show, * false otherwise. */ boolean isShowSuppressedViolations(); /** * Set the indicator for whether to show suppressed violations. * * @param showSuppressedViolations * Whether to show suppressed violations. */ void setShowSuppressedViolations(boolean showSuppressedViolations); /** * Get the Writer for the Renderer. * * @return The Writer. */ Writer getWriter(); /** * Set the {@link FileNameRenderer} used to render file paths to the report. * Note that this renderer does not have to use the parameter to output paths. * Some report formats require a specific format for paths (eg a URI), and are * allowed to circumvent the provided strategy. * * @param fileNameRenderer a non-null file name renderer */ void setFileNameRenderer(FileNameRenderer fileNameRenderer); /** * Set the Writer for the Renderer. * * @param writer The Writer. */ void setWriter(Writer writer); /** * This method is called before any source files are processed. The Renderer * will have been fully initialized by the time this method is called, so * the Writer and other state will be available. * * @throws IOException */ void start() throws IOException; /** * This method is called each time a source file is processed. It is called * after {@link Renderer#start()}, but before * {@link Renderer#renderFileReport(Report)} and {@link Renderer#end()}. * * This method may be invoked by different threads which are processing * files independently. Therefore, any non-trivial implementation of this * method needs to be thread-safe. * * @param dataSource * The source file. */ void startFileAnalysis(TextFile dataSource); /** * Render the given file Report. There may be multiple Report instances * which need to be rendered if produced by different threads. It is called * after {@link Renderer#start()} and * {@link Renderer#startFileAnalysis(TextFile)}, but before * {@link Renderer#end()}. * * @param report * A file Report. * @throws IOException * * @see Report */ void renderFileReport(Report report) throws IOException; /** * This method is at the very end of the Rendering process, after * {@link Renderer#renderFileReport(Report)}. */ void end() throws IOException; void flush() throws IOException; /** * Sets the filename where the report should be written to. If no filename is provided, * the renderer should write to stdout. * *

Implementations must initialize the writer of the renderer. * *

See {@link AbstractRenderer#setReportFile(String)} for the default impl. * * @param reportFilename the filename (optional). */ void setReportFile(String reportFilename); /** * Returns a new analysis listener, that handles violations by rendering * them in an implementation-defined way. */ // TODO the default implementation matches the current behavior, // ie violations are batched by file and forwarded to the renderer // when the file is done. Many renderers could directly handle // violations as they come though. default GlobalAnalysisListener newListener() throws IOException { try (TimedOperation ignored = TimeTracker.startOperation(TimedOperationCategory.REPORTING)) { this.start(); } return new GlobalAnalysisListener() { // guard for the close routine final Object reportMergeLock = new Object(); final GlobalReportBuilderListener configErrorReport = new GlobalReportBuilderListener(); @Override public void onConfigError(ConfigurationError error) { configErrorReport.onConfigError(error); } @Override public ListenerInitializer initializer() { return new ListenerInitializer() { @Override public void setFileNameRenderer(FileNameRenderer fileNameRenderer) { Renderer.this.setFileNameRenderer(fileNameRenderer); } }; } @Override public FileAnalysisListener startFileAnalysis(TextFile file) { Renderer renderer = Renderer.this; renderer.startFileAnalysis(file); // this routine is thread-safe by contract return new FileAnalysisListener() { final ReportBuilderListener reportBuilder = new ReportBuilderListener(); @Override public void onRuleViolation(RuleViolation violation) { reportBuilder.onRuleViolation(violation); } @Override public void onSuppressedRuleViolation(SuppressedViolation violation) { reportBuilder.onSuppressedRuleViolation(violation); } @Override public void onError(ProcessingError error) { reportBuilder.onError(error); } @Override public void close() throws Exception { reportBuilder.close(); synchronized (reportMergeLock) { // TODO renderFileReport should be thread-safe instead try (TimedOperation ignored = TimeTracker.startOperation(TimedOperationCategory.REPORTING)) { renderer.renderFileReport(reportBuilder.getResult()); } } } @Override public String toString() { return "FileRendererListener[" + Renderer.this + "]"; } }; } @Override public void close() throws Exception { configErrorReport.close(); Renderer.this.renderFileReport(configErrorReport.getResult()); try (TimedOperation ignored = TimeTracker.startOperation(TimedOperationCategory.REPORTING)) { end(); flush(); } } }; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy