mockit.internal.util.ParameterNameExtractor 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 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.util;
import javax.annotation.*;
import mockit.external.asm.*;
import mockit.internal.*;
import mockit.internal.state.*;
public final class ParameterNameExtractor extends ClassVisitor
{
@Nonnull private String classDesc;
@Nonnegative private int memberAccess;
@Nonnull private String memberName;
@Nonnull private String memberDesc;
public ParameterNameExtractor()
{
classDesc = memberName = memberDesc = "";
}
@Nonnull
public String extractNames(@Nonnull Class> classOfInterest)
{
String className = classOfInterest.getName();
classDesc = className.replace('.', '/');
if (!ParameterNames.hasNamesForClass(classDesc)) {
// Reads class from file, since JRE 1.6 (but not 1.7) discards parameter names on retransformation.
ClassReader cr = ClassFile.readFromFile(classDesc);
cr.accept(this);
}
return classDesc;
}
@Nullable @Override
public MethodVisitor visitMethod(
int access, @Nonnull String name, @Nonnull String desc, @Nullable String signature, @Nullable String[] exceptions)
{
if ((access & Access.SYNTHETIC) == 0) {
memberAccess = access;
memberName = name;
memberDesc = desc;
return new MethodOrConstructorVisitor();
}
return null;
}
private final class MethodOrConstructorVisitor extends MethodVisitor
{
@Override
public void visitLocalVariable(
@Nonnull String name, @Nonnull String desc, String signature, @Nonnull Label start, @Nonnull Label end,
@Nonnegative int index)
{
ParameterNames.registerName(classDesc, memberAccess, memberName, memberDesc, desc, name, index);
}
}
}