mockit.internal.SuperConstructorCollector 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;
import java.util.*;
import javax.annotation.*;
import static java.lang.reflect.Modifier.*;
import mockit.asm.*;
import mockit.asm.ClassMetadataReader.*;
@SuppressWarnings("FieldAccessedSynchronizedAndUnsynchronized")
final class SuperConstructorCollector
{
@Nonnull static final SuperConstructorCollector INSTANCE = new SuperConstructorCollector();
@Nonnull private final Map cache = new HashMap();
private SuperConstructorCollector() {}
@Nonnull
synchronized String findConstructor(@Nonnull String classDesc, @Nonnull String superClassDesc) {
String constructorDesc = cache.get(superClassDesc);
if (constructorDesc != null) {
return constructorDesc;
}
boolean samePackage = areBothClassesAreInSamePackage(classDesc, superClassDesc);
byte[] classfile = ClassFile.getClassFile(superClassDesc);
ClassMetadataReader cmr = new ClassMetadataReader(classfile);
for (MethodInfo methodOrConstructor : cmr.getMethods()) {
int access = methodOrConstructor.accessFlags;
if (access != PRIVATE && (access != 0 || samePackage) && methodOrConstructor.isConstructor()) {
constructorDesc = methodOrConstructor.desc;
break;
}
}
assert constructorDesc != null;
cache.put(superClassDesc, constructorDesc);
return constructorDesc;
}
private static boolean areBothClassesAreInSamePackage(@Nonnull String classDesc, @Nonnull String superClassDesc) {
int p1 = classDesc.lastIndexOf('/');
int p2 = superClassDesc.lastIndexOf('/');
return p1 == p2 && (p1 < 0 || classDesc.substring(0, p1).equals(superClassDesc.substring(0, p2)));
}
}