org.gradle.internal.classpath.intercept.CallInterceptorRegistry 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 2023 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.classpath.intercept;
import com.google.common.annotations.VisibleForTesting;
import org.gradle.api.NonNullApi;
import org.gradle.internal.classpath.GroovyCallInterceptorsProvider;
import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
import java.util.Collections;
import java.util.Map;
import java.util.WeakHashMap;
import java.util.concurrent.ConcurrentHashMap;
@NonNullApi
public class CallInterceptorRegistry {
private static final Map LOADED_FROM_CLASSLOADERS = Collections.synchronizedMap(new WeakHashMap<>());
private static volatile Map groovyDecorators = new ConcurrentHashMap<>();
private static volatile Map jvmInterceptorSets = new ConcurrentHashMap<>();
private static volatile CallSiteInterceptorSet currentGroovyCallInterceptorSet = new DefaultCallSiteInterceptorSet(GroovyCallInterceptorsProvider.DEFAULT);
private static volatile JvmBytecodeInterceptorFactorySet currentJvmBytecodeFactorySet = new DefaultJvmBytecodeInterceptorFactorySet(JvmBytecodeInterceptorFactoryProvider.DEFAULT);
public synchronized static void loadCallInterceptors(ClassLoader classLoader) {
if (LOADED_FROM_CLASSLOADERS.put(classLoader, true) != null) {
throw new RuntimeException("Cannot load interceptors twice for class loader: " + classLoader);
}
GroovyCallInterceptorsProvider classLoaderGroovyCallInterceptors = new GroovyCallInterceptorsProvider.ClassLoaderSourceGroovyCallInterceptorsProvider(classLoader);
GroovyCallInterceptorsProvider callInterceptors = GroovyCallInterceptorsProvider.DEFAULT.plus(classLoaderGroovyCallInterceptors);
setCurrentGroovyCallInterceptorSet(new DefaultCallSiteInterceptorSet(callInterceptors));
JvmBytecodeInterceptorFactoryProvider.ClassLoaderSourceJvmBytecodeInterceptorFactoryProvider classLoaderJvmBytecodeInterceptors = new JvmBytecodeInterceptorFactoryProvider.ClassLoaderSourceJvmBytecodeInterceptorFactoryProvider(classLoader);
setCurrentJvmBytecodeFactorySet(new DefaultJvmBytecodeInterceptorFactorySet(JvmBytecodeInterceptorFactoryProvider.DEFAULT.plus(classLoaderJvmBytecodeInterceptors)));
}
public static CallSiteDecorator getGroovyCallDecorator(BytecodeInterceptorFilter interceptorFilter) {
return groovyDecorators.computeIfAbsent(interceptorFilter, key -> new DefaultCallSiteDecorator(currentGroovyCallInterceptorSet.getCallInterceptors(interceptorFilter)));
}
private static void setCurrentGroovyCallInterceptorSet(CallSiteInterceptorSet interceptorSet) {
groovyDecorators = new ConcurrentHashMap<>();
currentGroovyCallInterceptorSet = interceptorSet;
}
public static JvmBytecodeInterceptorSet getJvmBytecodeInterceptors(BytecodeInterceptorFilter interceptorFilter) {
return jvmInterceptorSets.computeIfAbsent(interceptorFilter, key -> currentJvmBytecodeFactorySet.getJvmBytecodeInterceptorSet(interceptorFilter));
}
private static void setCurrentJvmBytecodeFactorySet(JvmBytecodeInterceptorFactorySet interceptorSet) {
jvmInterceptorSets = new ConcurrentHashMap<>();
currentJvmBytecodeFactorySet = interceptorSet;
}
/**
* TODO: We can support getting the interceptors in the instrumented code from different locations, not just `Instrumented.currentCallDecorator`,
* so that replacing the call interceptors for tests would instead work by embedding a different location
* than this one in the instrumented code. Doing that adds much more complexity in the instrumentation.
*/
@NonNullApi
@VisibleForTesting
static class GroovyJvmCallInterceptorInternalTesting {
static CallSiteInterceptorSet getCurrentGroovyCallInterceptorSet() {
return currentGroovyCallInterceptorSet;
}
static void setCurrentGroovyCallInterceptorSet(CallSiteInterceptorSet interceptorsSet) {
CallInterceptorRegistry.setCurrentGroovyCallInterceptorSet(interceptorsSet);
}
static JvmBytecodeInterceptorFactorySet getCurrentJvmBytecodeInterceptorFactorySet() {
return currentJvmBytecodeFactorySet;
}
static void setCurrentJvmBytecodeInterceptorFactorySet(JvmBytecodeInterceptorFactorySet interceptorFactorySet) {
CallInterceptorRegistry.setCurrentJvmBytecodeFactorySet(interceptorFactorySet);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy