net.sourceforge.pmd.cpd.SourceManager 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.cpd;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.lang.ref.SoftReference;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import net.sourceforge.pmd.internal.util.IOUtil;
import net.sourceforge.pmd.lang.document.Chars;
import net.sourceforge.pmd.lang.document.FileId;
import net.sourceforge.pmd.lang.document.FileLocation;
import net.sourceforge.pmd.lang.document.TextDocument;
import net.sourceforge.pmd.lang.document.TextFile;
import net.sourceforge.pmd.lang.document.TextRegion;
import net.sourceforge.pmd.reporting.FileNameRenderer;
/**
* Maps {@link FileId} to {@link TextDocument}, reusing documents with
* {@link SoftReference} if they have not been replaced yet.
*/
class SourceManager implements AutoCloseable {
private final Map> files = new ConcurrentHashMap<>();
private final Map fileByPathId = new HashMap<>();
private final List textFiles;
private FileNameRenderer fileNameRenderer = FileId::getAbsolutePath;
SourceManager(List extends TextFile> files) {
textFiles = new ArrayList<>(files);
files.forEach(f -> fileByPathId.put(f.getFileId(), f));
}
List getTextFiles() {
return textFiles;
}
private TextDocument load(TextFile file) {
try {
return TextDocument.create(file);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
TextDocument get(TextFile file) {
TextDocument textDocument = files.computeIfAbsent(file, f -> new SoftReference<>(load(f))).get();
if (textDocument == null) {
// SoftReference was freed up already, recreate it
TextDocument doc = load(file);
files.put(file, new SoftReference<>(doc));
return doc;
}
return textDocument;
}
public int size() {
return files.size();
}
@Override
public void close() throws Exception {
Exception exception = IOUtil.closeAll(textFiles);
if (exception != null) {
throw exception;
}
}
@SuppressWarnings("PMD.CloseResource")
public Chars getSlice(Mark mark) {
TextFile textFile = fileByPathId.get(mark.getToken().getFileId());
assert textFile != null : "No such file " + mark.getToken().getFileId();
TextDocument doc = get(textFile);
assert doc != null;
FileLocation loc = mark.getLocation();
TextRegion lineRange = doc.createLineRange(loc.getStartLine(), loc.getEndLine());
return doc.sliceOriginalText(lineRange);
}
public String getFileDisplayName(FileId fileId) {
return fileNameRenderer.getDisplayName(fileId);
}
}