net.sourceforge.pmd.lang.JvmLanguagePropertyBundle 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.lang;
import java.io.IOException;
import org.apache.commons.lang3.StringUtils;
import org.checkerframework.checker.nullness.qual.NonNull;
import net.sourceforge.pmd.PMDConfiguration;
import net.sourceforge.pmd.internal.util.ClasspathClassLoader;
import net.sourceforge.pmd.properties.PropertyDescriptor;
import net.sourceforge.pmd.properties.PropertyFactory;
/**
* Base properties class for JVM languages that use a classpath to resolve
* references. This contributes the "auxClasspath" property.
*
* @author Clément Fournier
*/
public class JvmLanguagePropertyBundle extends LanguagePropertyBundle {
public static final PropertyDescriptor AUX_CLASSPATH
= PropertyFactory.stringProperty("auxClasspath")
.desc("A classpath to use to resolve references to external types in the analysed sources. "
+ "Individual paths are separated by ; on Windows and : on other platforms. "
+ "All classes of the analysed project should be found on this classpath, including "
+ "the compiled classes corresponding to the analyzed sources themselves, and the JDK classes.")
.defaultValue("")
.build();
private ClassLoader classLoader;
public JvmLanguagePropertyBundle(Language language) {
super(language);
definePropertyDescriptor(AUX_CLASSPATH);
}
@Override
public void setProperty(PropertyDescriptor propertyDescriptor, T value) {
super.setProperty(propertyDescriptor, value);
if (propertyDescriptor == AUX_CLASSPATH) {
classLoader = null; // reset it.
}
}
/**
* Set the classloader to use for analysis. This overrides the
* setting of a classpath as a string via {@link #setProperty(PropertyDescriptor, Object)}.
* If the parameter is null, the classloader returned by {@link #getAnalysisClassLoader()}
* is constructed from the value of the {@link #AUX_CLASSPATH auxClasspath} property.
*/
public void setClassLoader(ClassLoader classLoader) {
this.classLoader = classLoader;
}
/**
* Returns the classloader to use to resolve classes for this language.
*/
public @NonNull ClassLoader getAnalysisClassLoader() {
if (classLoader != null) {
return classLoader;
}
// load classloader using the property.
classLoader = PMDConfiguration.class.getClassLoader();
String classpath = getProperty(AUX_CLASSPATH);
if (StringUtils.isNotBlank(classpath)) {
try {
classLoader = new ClasspathClassLoader(classpath, classLoader);
} catch (IOException e) {
throw new IllegalArgumentException(e);
}
}
return classLoader;
}
}