mockit.internal.startup.ClassLoadingBridgeFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains mocking/faking APIs and a code coverage tool, supporting both JUnit and TestNG.
The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested
in isolation from selected dependencies.
/*
* Copyright (c) 2006 JMockit developers
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.startup;
import java.lang.instrument.*;
import java.security.*;
import javax.annotation.*;
import static java.lang.reflect.Modifier.*;
import mockit.asm.*;
import mockit.internal.*;
import mockit.internal.expectations.mocking.*;
import mockit.internal.faking.*;
final class ClassLoadingBridgeFields
{
private ClassLoadingBridgeFields() {}
static void createSyntheticFieldsInJREClassToHoldClassLoadingBridges(@Nonnull Instrumentation instrumentation) {
if (ClassLoadingBridge.hostJREClassName != null) {
return;
}
FieldAdditionTransformer fieldAdditionTransformer = new FieldAdditionTransformer(instrumentation);
instrumentation.addTransformer(fieldAdditionTransformer);
// Loads some JRE classes expected to not be loaded yet.
NegativeArraySizeException.class.getName();
String hostClassName = fieldAdditionTransformer.hostClassName;
if (hostClassName == null) {
Provider.class.getName();
hostClassName = fieldAdditionTransformer.hostClassName;
}
ClassLoadingBridge.hostJREClassName = hostClassName;
}
private static final class FieldAdditionTransformer implements ClassFileTransformer {
private static final int FIELD_ACCESS = PUBLIC + STATIC + Access.SYNTHETIC;
@Nonnull private final Instrumentation instrumentation;
String hostClassName;
FieldAdditionTransformer(@Nonnull Instrumentation instrumentation) { this.instrumentation = instrumentation; }
@Nullable @Override
public byte[] transform(
@Nullable ClassLoader loader, @Nonnull String className, @Nullable Class> classBeingRedefined,
@Nullable ProtectionDomain protectionDomain, @Nonnull byte[] classfileBuffer
) {
if (loader == null && hostClassName == null) { // adds the fields to the first public JRE class to be loaded
ClassReader cr = new ClassReader(classfileBuffer);
if (isPublic(cr.getAccess())) {
instrumentation.removeTransformer(this);
hostClassName = className;
return getModifiedJREClassWithAddedFields(cr);
}
}
return null;
}
@Nonnull
private static byte[] getModifiedJREClassWithAddedFields(@Nonnull ClassReader classReader) {
ClassWriter cw = new ClassWriter(classReader);
ClassVisitor cv = new WrappingClassVisitor(cw) {
@Override
public void visitEnd() {
addField(MockedBridge.MB);
addField(FakeBridge.MB);
addField(FakeMethodBridge.MB);
}
private void addField(@Nonnull ClassLoadingBridge mb) {
cw.visitField(FIELD_ACCESS, mb.id, "Ljava/lang/reflect/InvocationHandler;", null, null);
}
};
classReader.accept(cv);
return cw.toByteArray();
}
}
}