org.sonar.plugins.groovy.jacoco.JaCoCoOverallSensor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-groovy-plugin Show documentation
Show all versions of sonar-groovy-plugin Show documentation
Enables analysis of Groovy projects.
The newest version!
/*
* Sonar Groovy Plugin
* Copyright (C) 2010 SonarSource
* [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.plugins.groovy.jacoco;
import com.google.common.io.Closeables;
import org.jacoco.core.data.ExecutionDataReader;
import org.jacoco.core.data.ExecutionDataStore;
import org.jacoco.core.data.ExecutionDataWriter;
import org.jacoco.core.data.SessionInfoStore;
import org.sonar.api.batch.Sensor;
import org.sonar.api.batch.SensorContext;
import org.sonar.api.batch.fs.FileSystem;
import org.sonar.api.batch.fs.InputFile;
import org.sonar.api.measures.CoreMetrics;
import org.sonar.api.measures.Measure;
import org.sonar.api.resources.Project;
import org.sonar.api.scan.filesystem.ModuleFileSystem;
import org.sonar.api.scan.filesystem.PathResolver;
import org.sonar.api.utils.SonarException;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Collection;
public class JaCoCoOverallSensor implements Sensor {
public static final String JACOCO_OVERALL = "jacoco-overall.exec";
private final JaCoCoConfiguration configuration;
private final ModuleFileSystem moduleFileSystem;
private final FileSystem fileSystem;
private final PathResolver pathResolver;
public JaCoCoOverallSensor(JaCoCoConfiguration configuration, ModuleFileSystem moduleFileSystem, FileSystem fileSystem, PathResolver pathResolver) {
this.configuration = configuration;
this.moduleFileSystem = moduleFileSystem;
this.pathResolver = pathResolver;
this.fileSystem = fileSystem;
}
@Override
public boolean shouldExecuteOnProject(Project project) {
File baseDir = fileSystem.baseDir();
File reportUTs = pathResolver.relativeFile(baseDir, configuration.getReportPath());
File reportITs = pathResolver.relativeFile(baseDir, configuration.getItReportPath());
boolean foundOneReport = reportUTs.exists() || reportITs.exists();
boolean shouldExecute = configuration.shouldExecuteOnProject(foundOneReport);
if (!foundOneReport && shouldExecute) {
JaCoCoExtensions.logger().info("JaCoCoOverallSensor: JaCoCo reports not found.");
}
return shouldExecute;
}
@Override
public void analyse(Project project, SensorContext context) {
File baseDir = fileSystem.baseDir();
File reportUTs = pathResolver.relativeFile(baseDir, configuration.getReportPath());
File reportITs = pathResolver.relativeFile(baseDir, configuration.getItReportPath());
File reportOverall = new File(fileSystem.workDir(), JACOCO_OVERALL);
reportOverall.getParentFile().mkdirs();
mergeReports(reportOverall, reportUTs, reportITs);
new OverallAnalyzer(reportOverall).analyse(project, context);
}
private static void mergeReports(File reportOverall, File... reports) {
SessionInfoStore infoStore = new SessionInfoStore();
ExecutionDataStore dataStore = new ExecutionDataStore();
loadSourceFiles(infoStore, dataStore, reports);
BufferedOutputStream outputStream = null;
try {
outputStream = new BufferedOutputStream(new FileOutputStream(reportOverall));
ExecutionDataWriter dataWriter = new ExecutionDataWriter(outputStream);
infoStore.accept(dataWriter);
dataStore.accept(dataWriter);
} catch (IOException e) {
throw new SonarException(String.format("Unable to write overall coverage report %s", reportOverall.getAbsolutePath()), e);
} finally {
Closeables.closeQuietly(outputStream);
}
}
private static void loadSourceFiles(SessionInfoStore infoStore, ExecutionDataStore dataStore, File... reports) {
for (File report : reports) {
if (report.isFile()) {
InputStream resourceStream = null;
try {
resourceStream = new BufferedInputStream(new FileInputStream(report));
ExecutionDataReader reader = new ExecutionDataReader(resourceStream);
reader.setSessionInfoVisitor(infoStore);
reader.setExecutionDataVisitor(dataStore);
reader.read();
} catch (IOException e) {
throw new SonarException(String.format("Unable to read %s", report.getAbsolutePath()), e);
} finally {
Closeables.closeQuietly(resourceStream);
}
}
}
}
class OverallAnalyzer extends AbstractAnalyzer {
private final File report;
OverallAnalyzer(File report) {
super(moduleFileSystem, fileSystem, pathResolver);
this.report = report;
}
@Override
protected String getReportPath(Project project) {
return report.getAbsolutePath();
}
@Override
protected void saveMeasures(SensorContext context, InputFile inputFile, Collection measures) {
for (Measure measure : measures) {
Measure mergedMeasure = convertForOverall(measure);
if (mergedMeasure != null) {
context.saveMeasure(inputFile, mergedMeasure);
}
}
}
private Measure convertForOverall(Measure measure) {
Measure itMeasure = null;
if (CoreMetrics.LINES_TO_COVER.equals(measure.getMetric())) {
itMeasure = JaCoCoSensor.getMeasureBasedOnValue(CoreMetrics.OVERALL_LINES_TO_COVER, measure);
} else if (CoreMetrics.UNCOVERED_LINES.equals(measure.getMetric())) {
itMeasure = JaCoCoSensor.getMeasureBasedOnValue(CoreMetrics.OVERALL_UNCOVERED_LINES, measure);
} else if (CoreMetrics.COVERAGE_LINE_HITS_DATA.equals(measure.getMetric())) {
itMeasure = JaCoCoSensor.getMeasureBasedOnData(CoreMetrics.OVERALL_COVERAGE_LINE_HITS_DATA, measure);
} else if (CoreMetrics.CONDITIONS_TO_COVER.equals(measure.getMetric())) {
itMeasure = JaCoCoSensor.getMeasureBasedOnValue(CoreMetrics.OVERALL_CONDITIONS_TO_COVER, measure);
} else if (CoreMetrics.UNCOVERED_CONDITIONS.equals(measure.getMetric())) {
itMeasure = JaCoCoSensor.getMeasureBasedOnValue(CoreMetrics.OVERALL_UNCOVERED_CONDITIONS, measure);
} else if (CoreMetrics.COVERED_CONDITIONS_BY_LINE.equals(measure.getMetric())) {
itMeasure = JaCoCoSensor.getMeasureBasedOnData(CoreMetrics.OVERALL_COVERED_CONDITIONS_BY_LINE, measure);
} else if (CoreMetrics.CONDITIONS_BY_LINE.equals(measure.getMetric())) {
itMeasure = JaCoCoSensor.getMeasureBasedOnData(CoreMetrics.OVERALL_CONDITIONS_BY_LINE, measure);
}
return itMeasure;
}
}
@Override
public String toString() {
return getClass().getSimpleName();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy