org.gradle.internal.agents.AgentControl Maven / Gradle / Ivy
Show all versions of gradle-test-kit Show documentation
/*
* Copyright 2022 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.agents;
import org.gradle.internal.UncheckedException;
import org.slf4j.LoggerFactory;
import javax.annotation.Nullable;
import java.lang.instrument.ClassFileTransformer;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
/**
* Provides methods to interact with the Java agent shipped with Gradle. Because of the different class loaders, it is hard to query the Agent class directly.
*
* The agent class must follow a special protocol to be recognized properly: the class should have a method:
*
* public static boolean isApplied()
*
* that returns if the agent is applied, i.e. if one of its {@code premain} or {@code agentmain} entry methods was called.
*
* It is possible to have an agent in the classpath without actually applying it, so checking for the availability of the class is not enough.
*/
class AgentControl {
private static final String INSTRUMENTATION_AGENT_CLASS_NAME = "org.gradle.instrumentation.agent.Agent";
private AgentControl() {}
/**
* Checks if the instrumentation agent class is applied to the current JVM.
*
* @return {@code true} if the agent was applied
*/
public static boolean isInstrumentationAgentApplied() {
Method isAppliedMethod = findAgentMethod(INSTRUMENTATION_AGENT_CLASS_NAME, "isApplied");
if (isAppliedMethod == null) {
return false;
}
return callStaticAgentMethod(isAppliedMethod);
}
public static boolean installTransformer(ClassFileTransformer transformer) {
Method installTransformer = findAgentMethod(INSTRUMENTATION_AGENT_CLASS_NAME, "installTransformer", ClassFileTransformer.class);
if (installTransformer == null) {
return false;
}
return callStaticAgentMethod(installTransformer, transformer);
}
@Nullable
private static Class> tryLoadAgentClass(String agentClassName) {
try {
return ClassLoader.getSystemClassLoader().loadClass(agentClassName);
} catch (ClassNotFoundException e) {
// This typically means that the agent is not loaded at all.
// For now, this happens when running in a no-daemon mode, or when the Gradle distribution is not available.
LoggerFactory.getLogger(AgentControl.class).debug("Agent {} is not loaded", agentClassName);
}
return null;
}
@Nullable
private static Method findAgentMethod(String agentClassName, String methodName, Class>... args) {
Class> agentClass = tryLoadAgentClass(agentClassName);
if (agentClass == null) {
return null;
}
try {
Method method = agentClass.getMethod(methodName, args);
method.setAccessible(true);
return method;
} catch (NoSuchMethodException e) {
throw new IllegalArgumentException(e);
}
}
@SuppressWarnings("unchecked")
private static T callStaticAgentMethod(Method method, Object... args) {
try {
return (T) method.invoke(null, args);
} catch (IllegalAccessException e) {
throw new IllegalArgumentException(e);
} catch (InvocationTargetException e) {
throw UncheckedException.unwrapAndRethrow(e);
}
}
}