All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.sonar.plugins.jacoco.JaCoCoOverallSensor Maven / Gradle / Ivy
/*
* SonarQube Java
* 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.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.component.ResourcePerspectives;
import org.sonar.api.measures.CoreMetrics;
import org.sonar.api.measures.Measure;
import org.sonar.api.resources.Project;
import org.sonar.api.resources.Resource;
import org.sonar.api.scan.filesystem.ModuleFileSystem;
import org.sonar.api.scan.filesystem.PathResolver;
import org.sonar.api.utils.SonarException;
import org.sonar.plugins.java.api.JavaResourceLocator;
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 ResourcePerspectives perspectives;
private final ModuleFileSystem fileSystem;
private final PathResolver pathResolver;
private final JavaResourceLocator javaResourceLocator;
public JaCoCoOverallSensor(JacocoConfiguration configuration, ResourcePerspectives perspectives, ModuleFileSystem fileSystem, PathResolver pathResolver,
JavaResourceLocator javaResourceLocator) {
this.configuration = configuration;
this.perspectives = perspectives;
this.fileSystem = fileSystem;
this.pathResolver = pathResolver;
this.javaResourceLocator = javaResourceLocator;
}
public boolean shouldExecuteOnProject(Project project) {
File reportUTs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getReportPath());
File reportITs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getItReportPath());
boolean foundBothReports = reportUTs.exists() && reportITs.exists();
if (!foundBothReports) {
JaCoCoUtils.LOG.info("JaCoCo reports not found.");
}
return configuration.shouldExecuteOnProject(foundBothReports);
}
public void analyse(Project project, SensorContext context) {
File reportUTs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getReportPath());
File reportITs = pathResolver.relativeFile(fileSystem.baseDir(), configuration.getItReportPath());
if ((!reportUTs.exists()) || (!reportITs.exists())) {
return;
}
File reportOverall = new File(fileSystem.workingDir(), JACOCO_OVERALL);
reportOverall.getParentFile().mkdirs();
mergeReports(reportOverall, reportUTs, reportITs);
new OverallAnalyzer(reportOverall, perspectives).analyse(project, context);
}
private 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 void loadSourceFiles(SessionInfoStore infoStore, ExecutionDataStore dataStore, File... reports) {
for (File report : reports) {
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, ResourcePerspectives perspectives) {
super(perspectives, fileSystem, pathResolver, javaResourceLocator);
this.report = report;
}
@Override
protected String getReportPath(Project project) {
return report.getAbsolutePath();
}
@Override
protected String getExcludes(Project project) {
return null;
}
@Override
protected void saveMeasures(SensorContext context, Resource resource, Collection measures) {
for (Measure measure : measures) {
Measure mergedMeasure = convertForOverall(measure);
if (mergedMeasure != null) {
context.saveMeasure(resource, mergedMeasure);
}
}
}
private Measure convertForOverall(Measure measure) {
Measure itMeasure = null;
if (CoreMetrics.LINES_TO_COVER.equals(measure.getMetric())) {
itMeasure = new Measure(CoreMetrics.OVERALL_LINES_TO_COVER, measure.getValue());
} else if (CoreMetrics.UNCOVERED_LINES.equals(measure.getMetric())) {
itMeasure = new Measure(CoreMetrics.OVERALL_UNCOVERED_LINES, measure.getValue());
} else if (CoreMetrics.COVERAGE_LINE_HITS_DATA.equals(measure.getMetric())) {
itMeasure = new Measure(CoreMetrics.OVERALL_COVERAGE_LINE_HITS_DATA, measure.getData());
} else if (CoreMetrics.CONDITIONS_TO_COVER.equals(measure.getMetric())) {
itMeasure = new Measure(CoreMetrics.OVERALL_CONDITIONS_TO_COVER, measure.getValue());
} else if (CoreMetrics.UNCOVERED_CONDITIONS.equals(measure.getMetric())) {
itMeasure = new Measure(CoreMetrics.OVERALL_UNCOVERED_CONDITIONS, measure.getValue());
} else if (CoreMetrics.COVERED_CONDITIONS_BY_LINE.equals(measure.getMetric())) {
itMeasure = new Measure(CoreMetrics.OVERALL_COVERED_CONDITIONS_BY_LINE, measure.getData());
} else if (CoreMetrics.CONDITIONS_BY_LINE.equals(measure.getMetric())) {
itMeasure = new Measure(CoreMetrics.OVERALL_CONDITIONS_BY_LINE, measure.getData());
}
return itMeasure;
}
}
@Override
public String toString() {
return getClass().getSimpleName();
}
}