mockit.coverage.reporting.SourceFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit-coverage Show documentation
Show all versions of jmockit-coverage Show documentation
JMockit Coverage is a code coverage tool with several metrics (line, path, data) capable of generating HTML
reports. It is designed with ease of use in mind, avoiding the need for complex configuration.
Instead, smart (but overridable) defaults are employed, such as the selection of which classes to consider for
coverage, and where to find sources files for report generation.
/*
* Copyright (c) 2006-2013 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.coverage.reporting;
import java.io.*;
import java.util.*;
import org.jetbrains.annotations.*;
final class SourceFiles
{
@NotNull private final List srcDirs = new ArrayList();
@NotNull List buildListOfSourceDirectories(@NotNull String[] sourceDirs)
{
if (sourceDirs.length > 0) {
buildListWithSpecifiedDirectories(sourceDirs);
}
else {
buildListWithAllSrcSubDirectories();
}
return srcDirs;
}
private void buildListWithSpecifiedDirectories(@NotNull String[] dirs)
{
for (String dir : dirs) {
File srcDir = new File(dir);
if (srcDir.isDirectory()) {
srcDirs.add(srcDir);
}
}
if (srcDirs.isEmpty()) {
throw new IllegalStateException("None of the specified source directories exist");
}
}
private void buildListWithAllSrcSubDirectories()
{
String curDirName = new File(System.getProperty("user.dir")).getName();
addSrcSubDirs(new File("../" + curDirName));
}
private void addSrcSubDirs(@NotNull File dir)
{
File[] files = dir.listFiles();
if (files == null) return;
for (File subDir : files) {
if (subDir.isDirectory()) {
String subDirName = subDir.getName();
if (!"test generated-sources".contains(subDirName)) {
if ("src".equals(subDirName)) {
srcDirs.add(subDir);
}
else {
addSrcSubDirs(subDir);
}
}
}
}
}
}