org.gradle.internal.jacoco.JacocoAgentJar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.internal.jacoco;
import com.google.common.base.Predicate;
import com.google.common.collect.Iterables;
import org.gradle.api.Project;
import org.gradle.api.file.FileCollection;
import org.gradle.api.internal.IConventionAware;
import org.gradle.api.specs.Spec;
import org.gradle.util.VersionNumber;
import java.io.File;
/**
* Helper to resolve the {@code jacocoagent.jar} from inside of the {@code org.jacoco.agent.jar}.
*/
public class JacocoAgentJar {
private static final VersionNumber V_0_6_2_0 = VersionNumber.parse("0.6.2.0");
private static final VersionNumber V_0_7_6_0 = VersionNumber.parse("0.7.6.0");
private final Project project;
private FileCollection agentConf;
private File agentJar;
/**
* Constructs a new agent JAR wrapper.
*
* @param project a project that can be used to resolve files
*/
public JacocoAgentJar(Project project) {
this.project = project;
}
/**
* @return the configuration that the agent JAR is located in
*/
public FileCollection getAgentConf() {
return agentConf;
}
public void setAgentConf(FileCollection agentConf) {
this.agentConf = agentConf;
}
/**
* Unzips the resolved {@code org.jacoco.agent.jar} to retrieve the {@code jacocoagent.jar}.
*
* @return a file pointing to the {@code jacocoagent.jar}
*/
public File getJar() {
if (agentJar == null) {
agentJar = project.zipTree(getAgentConfConventionValue().getSingleFile()).filter(new Spec() {
@Override
public boolean isSatisfiedBy(File file) {
return file.getName().equals("jacocoagent.jar");
}
}).getSingleFile();
}
return agentJar;
}
public boolean supportsJmx() {
boolean pre062 = Iterables.any(getAgentConfConventionValue(), new Predicate() {
@Override
public boolean apply(File file) {
return V_0_6_2_0.compareTo(extractVersion(file.getName())) > 0;
}
});
return !pre062;
}
public boolean supportsInclNoLocationClasses() {
boolean pre076 = Iterables.any(getAgentConfConventionValue(), new Predicate() {
@Override
public boolean apply(File file) {
return V_0_7_6_0.compareTo(extractVersion(file.getName())) > 0;
}
});
return !pre076;
}
private FileCollection getAgentConfConventionValue() {
if (this instanceof IConventionAware) {
return ((IConventionAware) this).getConventionMapping().getConventionValue(agentConf, "agentConf", false);
}
// For unit tests
return agentConf;
}
public static VersionNumber extractVersion(String jarName) {
// jarName format: org.jacoco.agent-.jar
int versionStart = "org.jacoco.agent-".length();
int versionEnd = jarName.length() - ".jar".length();
return VersionNumber.parse(jarName.substring(versionStart, versionEnd));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy