return ntinfo.typeDescriptor;
}
+ /**
+ * Reads the <code>class_index</code> field of the
+ * <code>CONSTANT_Fieldref_info</code>,
+ * <code>CONSTANT_Methodref_info</code>,
+ * or <code>CONSTANT_Interfaceref_info</code>,
+ * structure at the given index.
+ *
+ * @since 3.6
+ */
+ public int getMemberClass(int index) {
+ MemberrefInfo minfo = (MemberrefInfo)getItem(index);
+ return minfo.classIndex;
+ }
+
+ /**
+ * Reads the <code>name_and_type_index</code> field of the
+ * <code>CONSTANT_Fieldref_info</code>,
+ * <code>CONSTANT_Methodref_info</code>,
+ * or <code>CONSTANT_Interfaceref_info</code>,
+ * structure at the given index.
+ *
+ * @since 3.6
+ */
+ public int getMemberNameAndType(int index) {
+ MemberrefInfo minfo = (MemberrefInfo)getItem(index);
+ return minfo.nameAndTypeIndex;
+ }
+
/**
* Reads the <code>class_index</code> field of the
* <code>CONSTANT_Fieldref_info</code> structure
if (f == null)
return null;
else {
- NameAndTypeInfo n = (NameAndTypeInfo) getItem(f.nameAndTypeIndex);
+ NameAndTypeInfo n = (NameAndTypeInfo)getItem(f.nameAndTypeIndex);
if(n == null)
return null;
else
return 0; // false
}
+ /**
+ * Determines whether <code>CONSTANT_Methodref_info</code>,
+ * <code>CONSTANT_Fieldref_info</code>, or
+ * <code>CONSTANT_InterfaceMethodref_info</code> structure
+ * at the given index has the name and the descriptor
+ * given as the arguments.
+ *
+ * @param membername the member name
+ * @param desc the descriptor of the member.
+ * @param index the index into the constant pool table
+ *
+ * @return the name of the target class specified by
+ * the <code>..._info</code> structure
+ * at <code>index</code>.
+ * Otherwise, null if that structure does not
+ * match the given member name and descriptor.
+ */
+ public String eqMember(String membername, String desc, int index) {
+ MemberrefInfo minfo = (MemberrefInfo)getItem(index);
+ NameAndTypeInfo ntinfo
+ = (NameAndTypeInfo)getItem(minfo.nameAndTypeIndex);
+ if (getUtf8Info(ntinfo.memberName).equals(membername)
+ && getUtf8Info(ntinfo.typeDescriptor).equals(desc))
+ return getClassInfo(minfo.classIndex);
+ else
+ return null; // false
+ }
+
private int addItem(ConstInfo info) {
items.addElement(info);
return numOfItems++;
import javassist.CtClass;
import javassist.CtMethod;
+import javassist.ClassPool;
import javassist.Modifier;
+import javassist.NotFoundException;
import javassist.bytecode.*;
public class TransformCall extends Transformer {
/**
* Modify INVOKEINTERFACE, INVOKESPECIAL, INVOKESTATIC and INVOKEVIRTUAL
- * so that a different method is invoked.
+ * so that a different method is invoked. The class name in the operand
+ * of these instructions might be a subclass of the target class specified
+ * by <code>classname</code>. This method transforms the instruction
+ * in that case unless the subclass overrides the target method.
*/
public int transform(CtClass clazz, int pos, CodeIterator iterator,
ConstPool cp) throws BadBytecode
if (c == INVOKEINTERFACE || c == INVOKESPECIAL
|| c == INVOKESTATIC || c == INVOKEVIRTUAL) {
int index = iterator.u16bitAt(pos + 1);
- int typedesc = cp.isMember(classname, methodname, index);
- if (typedesc != 0)
- if (cp.getUtf8Info(typedesc).equals(methodDescriptor))
- pos = match(c, pos, iterator, typedesc, cp);
+ String cname = cp.eqMember(methodname, methodDescriptor, index);
+ if (cname != null && matchClass(cname, clazz.getClassPool())) {
+ int ntinfo = cp.getMemberNameAndType(index);
+ pos = match(c, pos, iterator,
+ cp.getNameAndTypeDescriptor(ntinfo), cp);
+ }
}
return pos;
}
+ private boolean matchClass(String name, ClassPool pool) {
+ if (classname.equals(name))
+ return true;
+
+ try {
+ CtClass clazz = pool.get(name);
+ CtClass declClazz = pool.get(classname);
+ if (clazz.subtypeOf(declClazz))
+ try {
+ CtMethod m = clazz.getMethod(methodname, methodDescriptor);
+ return m.getDeclaringClass().getName().equals(classname);
+ }
+ catch (NotFoundException e) {
+ // maybe the original method has been removed.
+ return true;
+ }
+ }
+ catch (NotFoundException e) {
+ return false;
+ }
+
+ return false;
+ }
+
protected int match(int c, int pos, CodeIterator iterator,
int typedesc, ConstPool cp) throws BadBytecode
{