blob: 0f2fea9327b456b83d54546c33c390613fa609b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core.util;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.Signature;
import org.eclipse.jdt.core.compiler.CharOperation;
import org.eclipse.jdt.core.util.ClassFileBytesDisassembler;
import org.eclipse.jdt.core.util.ClassFormatException;
import org.eclipse.jdt.core.util.IAttributeNamesConstants;
import org.eclipse.jdt.core.util.IClassFileAttribute;
import org.eclipse.jdt.core.util.IClassFileReader;
import org.eclipse.jdt.core.util.ICodeAttribute;
import org.eclipse.jdt.core.util.IConstantPoolConstant;
import org.eclipse.jdt.core.util.IConstantPoolEntry;
import org.eclipse.jdt.core.util.IConstantValueAttribute;
import org.eclipse.jdt.core.util.IExceptionAttribute;
import org.eclipse.jdt.core.util.IExceptionTableEntry;
import org.eclipse.jdt.core.util.IFieldInfo;
import org.eclipse.jdt.core.util.IInnerClassesAttribute;
import org.eclipse.jdt.core.util.IInnerClassesAttributeEntry;
import org.eclipse.jdt.core.util.ILineNumberAttribute;
import org.eclipse.jdt.core.util.ILocalVariableAttribute;
import org.eclipse.jdt.core.util.ILocalVariableTableEntry;
import org.eclipse.jdt.core.util.IMethodInfo;
import org.eclipse.jdt.core.util.IModifierConstants;
import org.eclipse.jdt.core.util.ISourceAttribute;
/**
* Disassembler of .class files. It generates an output in the Writer that looks close to
* the javap output.
*/
public class Disassembler extends ClassFileBytesDisassembler {
private static final char[] ANY_EXCEPTION = Util.bind("classfileformat.anyexceptionhandler").toCharArray(); //$NON-NLS-1$
private static final String EMPTY_OUTPUT = ""; //$NON-NLS-1$
private static final String VERSION_UNKNOWN = "unknown";//$NON-NLS-1$
private void decodeModifiersForField(StringBuffer buffer, int accessFlags) {
boolean firstModifier = true;
if ((accessFlags & IModifierConstants.ACC_FINAL) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("final"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PRIVATE) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("private"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PROTECTED) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("protected"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PUBLIC) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("public"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_STATIC) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("static"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_TRANSIENT) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("transient"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_VOLATILE) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("volatile"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_ENUM) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("enum"); //$NON-NLS-1$
}
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
}
private final void decodeModifiersForInnerClasses(StringBuffer buffer, int accessFlags) {
boolean firstModifier = true;
if ((accessFlags & IModifierConstants.ACC_PUBLIC) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("public"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PRIVATE) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("private"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PROTECTED) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("protected"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_STATIC) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("static"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_FINAL) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("final"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_ABSTRACT) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("abstract"); //$NON-NLS-1$
}
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
}
private final void decodeModifiersForMethod(StringBuffer buffer, int accessFlags) {
boolean firstModifier = true;
if ((accessFlags & IModifierConstants.ACC_ABSTRACT) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("abstract"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_FINAL) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("final"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_NATIVE) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("native"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PRIVATE) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("private"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PROTECTED) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("protected"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PUBLIC) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("public"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_STATIC) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("static"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_STRICT) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("strictfp"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_SYNCHRONIZED) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("synchronized"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_BRIDGE) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("bridge"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_VARARGS) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("varargs"); //$NON-NLS-1$
}
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
}
private final void decodeModifiersForType(StringBuffer buffer, int accessFlags) {
boolean firstModifier = true;
if ((accessFlags & IModifierConstants.ACC_ABSTRACT) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("abstract"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_FINAL) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("final"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_PUBLIC) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("public"); //$NON-NLS-1$
}
if ((accessFlags & IModifierConstants.ACC_ANNOTATION) != 0) {
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
if (firstModifier) {
firstModifier = false;
}
buffer.append("@"); //$NON-NLS-1$
}
if (!firstModifier) {
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
}
private String decodeStringValue(String s) {
StringBuffer buffer = new StringBuffer();
char[] chars = s.toCharArray();
for (int i = 0, max = chars.length; i < max; i++) {
char c = chars[i];
switch(c) {
case '\b' :
buffer.append("\\b"); //$NON-NLS-1$
break;
case '\t' :
buffer.append("\\t"); //$NON-NLS-1$
break;
case '\n' :
buffer.append("\\n"); //$NON-NLS-1$
break;
case '\f' :
buffer.append("\\f"); //$NON-NLS-1$
break;
case '\r' :
buffer.append("\\r"); //$NON-NLS-1$
break;
case '\"':
buffer.append("\\\""); //$NON-NLS-1$
break;
case '\'':
buffer.append("\\\'"); //$NON-NLS-1$
break;
case '\\':
buffer.append("\\\\"); //$NON-NLS-1$
break;
case '\0' :
buffer.append("\\0"); //$NON-NLS-1$
break;
case '\1' :
buffer.append("\\1"); //$NON-NLS-1$
break;
case '\2' :
buffer.append("\\2"); //$NON-NLS-1$
break;
case '\3' :
buffer.append("\\3"); //$NON-NLS-1$
break;
case '\4' :
buffer.append("\\4"); //$NON-NLS-1$
break;
case '\5' :
buffer.append("\\5"); //$NON-NLS-1$
break;
case '\6' :
buffer.append("\\6"); //$NON-NLS-1$
break;
case '\7' :
buffer.append("\\7"); //$NON-NLS-1$
break;
default:
buffer.append(c);
}
}
return buffer.toString();
}
/**
* @see org.eclipse.jdt.core.util.ClassFileBytesDisassembler#disassemble(byte[], java.lang.String)
*/
public String disassemble(byte[] classFileBytes, String lineSeparator) throws ClassFormatException {
return disassemble(new ClassFileReader(classFileBytes, IClassFileReader.ALL), lineSeparator, ClassFileBytesDisassembler.DEFAULT);
}
/**
* @see org.eclipse.jdt.core.util.ClassFileBytesDisassembler#disassemble(byte[], java.lang.String, int)
*/
public String disassemble(byte[] classFileBytes, String lineSeparator, int mode) throws ClassFormatException {
return disassemble(new ClassFileReader(classFileBytes, IClassFileReader.ALL), lineSeparator, mode);
}
/**
* @see #disassemble(org.eclipse.jdt.core.util.IClassFileReader, java.lang.String, int)
*/
public String disassemble(IClassFileReader classFileReader, String lineSeparator) {
return disassemble(classFileReader, lineSeparator, ClassFileBytesDisassembler.DEFAULT);
}
/**
* Answers back the disassembled string of the IClassFileReader according to the
* mode.
* This is an output quite similar to the javap tool.
*
* @param classFileReader The classFileReader to be disassembled
* @param lineSeparator the line separator to use.
* @param mode the mode used to disassemble the IClassFileReader
*
* @return the disassembled string of the IClassFileReader according to the mode
*/
public String disassemble(IClassFileReader classFileReader, String lineSeparator, int mode) {
if (classFileReader == null) return EMPTY_OUTPUT;
StringBuffer buffer = new StringBuffer();
ISourceAttribute sourceAttribute = classFileReader.getSourceFileAttribute();
final int accesssFlags = classFileReader.getAccessFlags();
if (mode == ClassFileBytesDisassembler.DETAILED) {
int minorVersion = classFileReader.getMinorVersion();
int majorVersion = classFileReader.getMajorVersion();
buffer.append(Util.bind("disassembler.begincommentline")); //$NON-NLS-1$
if (sourceAttribute != null) {
buffer.append(Util.bind("disassembler.sourceattributeheader")); //$NON-NLS-1$
buffer.append(sourceAttribute.getSourceFileName());
}
String versionNumber = VERSION_UNKNOWN;//$NON-NLS-1$
if (minorVersion == 3 && majorVersion == 45) {
versionNumber = JavaCore.VERSION_1_1;
} else if (minorVersion == 0 && majorVersion == 46) {
versionNumber = JavaCore.VERSION_1_2;
} else if (minorVersion == 0 && majorVersion == 47) {
versionNumber = JavaCore.VERSION_1_3;
} else if (minorVersion == 0 && majorVersion == 48) {
versionNumber = JavaCore.VERSION_1_4;
} else if (minorVersion == 0 && majorVersion == 49) {
versionNumber = JavaCore.VERSION_1_5;
}
buffer.append(
Util.bind("classfileformat.versiondetails",//$NON-NLS-1$
new String[] {
versionNumber,
Integer.toString(majorVersion),
Integer.toString(minorVersion),
((accesssFlags & IModifierConstants.ACC_SUPER) != 0
? Util.bind("classfileformat.superflagisset")//$NON-NLS-1$
: Util.bind("classfileformat.superflagisnotset"))//$NON-NLS-1$
+ (isDeprecated(classFileReader) ? ", deprecated" : EMPTY_OUTPUT)//$NON-NLS-1$
}));
writeNewLine(buffer, lineSeparator, 0);
}
char[] className = classFileReader.getClassName();
if (className == null) {
// incomplete initialization. We cannot go further.
return buffer.toString();
}
IInnerClassesAttribute innerClassesAttribute = classFileReader.getInnerClassesAttribute();
if (innerClassesAttribute != null) {
// search the right entry
IInnerClassesAttributeEntry[] entries = innerClassesAttribute.getInnerClassAttributesEntries();
for (int i = 0, max = entries.length; i < max ; i++) {
IInnerClassesAttributeEntry entry = entries[i];
char[] innerClassName = entry.getInnerClassName();
if (innerClassName != null) {
if (CharOperation.equals(classFileReader.getClassName(), innerClassName)) {
decodeModifiersForInnerClasses(buffer, entry.getAccessFlags());
}
}
}
} else {
decodeModifiersForType(buffer, accesssFlags);
if (isSynthetic(classFileReader)) {
buffer.append("synthetic"); //$NON-NLS-1$
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
}
if ((accesssFlags & IModifierConstants.ACC_ENUM) != 0) {
buffer.append("enum "); //$NON-NLS-1$
} else if (classFileReader.isClass()) {
buffer.append("class "); //$NON-NLS-1$
} else {
buffer.append("interface "); //$NON-NLS-1$
}
CharOperation.replace(className, '/', '.');
buffer.append(className);
char[] superclassName = classFileReader.getSuperclassName();
if (superclassName != null) {
buffer.append(" extends "); //$NON-NLS-1$
CharOperation.replace(superclassName, '/', '.');
buffer.append(superclassName);
}
char[][] superclassInterfaces = classFileReader.getInterfaceNames();
int length = superclassInterfaces.length;
if (length != 0) {
buffer.append(" implements "); //$NON-NLS-1$
for (int i = 0; i < length - 1; i++) {
char[] superinterface = superclassInterfaces[i];
CharOperation.replace(superinterface, '/', '.');
buffer
.append(superinterface)
.append(Util.bind("disassembler.comma"))//$NON-NLS-1$
.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
char[] superinterface = superclassInterfaces[length - 1];
CharOperation.replace(superinterface, '/', '.');
buffer.append(superinterface);
}
buffer.append(Util.bind("disassembler.opentypedeclaration")); //$NON-NLS-1$
disassembleTypeMembers(classFileReader, buffer, lineSeparator, 1, mode);
if (mode == ClassFileBytesDisassembler.DETAILED) {
IClassFileAttribute[] attributes = classFileReader.getAttributes();
length = attributes.length;
int remainingAttributesLength = length;
if (innerClassesAttribute != null) {
remainingAttributesLength--;
}
if (sourceAttribute != null) {
remainingAttributesLength--;
}
if (innerClassesAttribute != null || remainingAttributesLength != 0) {
writeNewLine(buffer, lineSeparator, 0);
}
if (innerClassesAttribute != null) {
disassemble(innerClassesAttribute, buffer, lineSeparator, 1);
}
if (length != 0) {
for (int i = 0; i < length; i++) {
IClassFileAttribute attribute = attributes[i];
if (attribute != innerClassesAttribute
&& attribute != sourceAttribute
&& !CharOperation.equals(attribute.getAttributeName(), IAttributeNamesConstants.DEPRECATED)
&& !CharOperation.equals(attribute.getAttributeName(), IAttributeNamesConstants.SYNTHETIC)) {
disassemble(attribute, buffer, lineSeparator, 0);
}
}
}
}
writeNewLine(buffer, lineSeparator, 0);
buffer.append(Util.bind("disassembler.closetypedeclaration")); //$NON-NLS-1$
return buffer.toString();
}
private void disassemble(IInnerClassesAttribute innerClassesAttribute, StringBuffer buffer, String lineSeparator, int tabNumber) {
writeNewLine(buffer, lineSeparator, tabNumber);
buffer.append(Util.bind("disassembler.innerattributesheader")); //$NON-NLS-1$
writeNewLine(buffer, lineSeparator, tabNumber + 1);
IInnerClassesAttributeEntry[] innerClassesAttributeEntries = innerClassesAttribute.getInnerClassAttributesEntries();
int length = innerClassesAttributeEntries.length;
int innerClassNameIndex, outerClassNameIndex, innerNameIndex, accessFlags;
IInnerClassesAttributeEntry innerClassesAttributeEntry;
for (int i = 0; i < length - 1; i++) {
innerClassesAttributeEntry = innerClassesAttributeEntries[i];
innerClassNameIndex = innerClassesAttributeEntry.getInnerClassNameIndex();
outerClassNameIndex = innerClassesAttributeEntry.getOuterClassNameIndex();
innerNameIndex = innerClassesAttributeEntry.getInnerNameIndex();
accessFlags = innerClassesAttributeEntry.getAccessFlags();
buffer
.append(Util.bind("disassembler.openinnerclassentry")) //$NON-NLS-1$
.append(Util.bind("disassembler.inner_class_info_name")) //$NON-NLS-1$
.append(Util.bind("disassembler.constantpoolindex")) //$NON-NLS-1$
.append(innerClassNameIndex);
if (innerClassNameIndex != 0) {
buffer
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(innerClassesAttributeEntry.getInnerClassName());
}
buffer
.append(Util.bind("disassembler.comma")) //$NON-NLS-1$
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(Util.bind("disassembler.outer_class_info_name")) //$NON-NLS-1$
.append(Util.bind("disassembler.constantpoolindex")) //$NON-NLS-1$
.append(outerClassNameIndex);
if (outerClassNameIndex != 0) {
buffer
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(innerClassesAttributeEntry.getOuterClassName());
}
writeNewLine(buffer, lineSeparator, tabNumber);
dumpTab(tabNumber, buffer);
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
buffer
.append(Util.bind("disassembler.inner_name")) //$NON-NLS-1$
.append(Util.bind("disassembler.constantpoolindex")) //$NON-NLS-1$
.append(innerNameIndex);
if (innerNameIndex != 0) {
buffer
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(innerClassesAttributeEntry.getInnerName());
}
buffer
.append(Util.bind("disassembler.comma")) //$NON-NLS-1$
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(Util.bind("disassembler.inner_accessflags")) //$NON-NLS-1$
.append(accessFlags)
.append(Util.bind("disassembler.space")); //$NON-NLS-1$
decodeModifiersForInnerClasses(buffer, accessFlags);
buffer
.append(Util.bind("disassembler.closeinnerclassentry")) //$NON-NLS-1$
.append(Util.bind("disassembler.comma")); //$NON-NLS-1$
writeNewLine(buffer, lineSeparator, tabNumber + 1);
}
// last entry
innerClassesAttributeEntry = innerClassesAttributeEntries[length - 1];
innerClassNameIndex = innerClassesAttributeEntry.getInnerClassNameIndex();
outerClassNameIndex = innerClassesAttributeEntry.getOuterClassNameIndex();
innerNameIndex = innerClassesAttributeEntry.getInnerNameIndex();
accessFlags = innerClassesAttributeEntry.getAccessFlags();
buffer
.append(Util.bind("disassembler.openinnerclassentry")) //$NON-NLS-1$
.append(Util.bind("disassembler.inner_class_info_name")) //$NON-NLS-1$
.append(Util.bind("disassembler.constantpoolindex")) //$NON-NLS-1$
.append(innerClassNameIndex);
if (innerClassNameIndex != 0) {
buffer
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(innerClassesAttributeEntry.getInnerClassName());
}
buffer
.append(Util.bind("disassembler.comma")) //$NON-NLS-1$
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(Util.bind("disassembler.outer_class_info_name")) //$NON-NLS-1$
.append(Util.bind("disassembler.constantpoolindex")) //$NON-NLS-1$
.append(outerClassNameIndex);
if (outerClassNameIndex != 0) {
buffer
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(innerClassesAttributeEntry.getOuterClassName());
}
writeNewLine(buffer, lineSeparator, tabNumber);
dumpTab(tabNumber, buffer);
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
buffer
.append(Util.bind("disassembler.inner_name")) //$NON-NLS-1$
.append(Util.bind("disassembler.constantpoolindex")) //$NON-NLS-1$
.append(innerNameIndex);
if (innerNameIndex != 0) {
buffer
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(innerClassesAttributeEntry.getInnerName());
}
buffer
.append(Util.bind("disassembler.comma")) //$NON-NLS-1$
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(Util.bind("disassembler.inner_accessflags")) //$NON-NLS-1$
.append(accessFlags)
.append(Util.bind("disassembler.space")); //$NON-NLS-1$
decodeModifiersForInnerClasses(buffer, accessFlags);
buffer.append(Util.bind("disassembler.closeinnerclassentry")); //$NON-NLS-1$
}
/**
* Disassemble a field info
*/
private void disassemble(IFieldInfo fieldInfo, StringBuffer buffer, String lineSeparator, int tabNumber, int mode) {
writeNewLine(buffer, lineSeparator, tabNumber);
char[] fieldDescriptor = fieldInfo.getDescriptor();
if (mode == DETAILED) {
buffer
.append(Util.bind("disassembler.begincommentline")) //$NON-NLS-1$
.append(Util.bind("classfileformat.fieldddescriptor")) //$NON-NLS-1$
.append(Util.bind("classfileformat.fielddescriptorindex")) //$NON-NLS-1$
.append(fieldInfo.getDescriptorIndex())
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(fieldDescriptor);
if (fieldInfo.isDeprecated()) {
buffer.append(Util.bind("disassembler.deprecated"));//$NON-NLS-1$
}
writeNewLine(buffer, lineSeparator, tabNumber);
}
decodeModifiersForField(buffer, fieldInfo.getAccessFlags());
if (fieldInfo.isSynthetic()) {
buffer.append("synthetic"); //$NON-NLS-1$
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
buffer.append(getSignatureForField(fieldDescriptor));
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
buffer.append(new String(fieldInfo.getName()));
IConstantValueAttribute constantValueAttribute = fieldInfo.getConstantValueAttribute();
if (constantValueAttribute != null) {
buffer.append(Util.bind("disassembler.fieldhasconstant")); //$NON-NLS-1$
IConstantPoolEntry constantPoolEntry = constantValueAttribute.getConstantValue();
switch(constantPoolEntry.getKind()) {
case IConstantPoolConstant.CONSTANT_Long :
buffer.append(constantPoolEntry.getLongValue() + "L"); //$NON-NLS-1$
break;
case IConstantPoolConstant.CONSTANT_Float :
buffer.append(constantPoolEntry.getFloatValue() + "f"); //$NON-NLS-1$
break;
case IConstantPoolConstant.CONSTANT_Double :
buffer.append(constantPoolEntry.getDoubleValue());
break;
case IConstantPoolConstant.CONSTANT_Integer:
switch(fieldDescriptor[0]) {
case 'C' :
buffer.append("'" + (char) constantPoolEntry.getIntegerValue() + "'"); //$NON-NLS-1$//$NON-NLS-2$
break;
case 'Z' :
buffer.append(constantPoolEntry.getIntegerValue() == 1 ? "true" : "false");//$NON-NLS-1$//$NON-NLS-2$
break;
case 'B' :
buffer.append(constantPoolEntry.getIntegerValue());
break;
case 'S' :
buffer.append(constantPoolEntry.getIntegerValue());
break;
case 'I' :
buffer.append(constantPoolEntry.getIntegerValue());
}
break;
case IConstantPoolConstant.CONSTANT_String:
buffer.append("\"" + decodeStringValue(constantPoolEntry.getStringValue()) + "\"" );//$NON-NLS-1$//$NON-NLS-2$
}
}
buffer.append(Util.bind("disassembler.endoffieldheader")); //$NON-NLS-1$
if (mode == DETAILED) {
IClassFileAttribute[] attributes = fieldInfo.getAttributes();
int length = attributes.length;
if (length != 0) {
for (int i = 0; i < length; i++) {
IClassFileAttribute attribute = attributes[i];
if (attribute != constantValueAttribute
&& !CharOperation.equals(attribute.getAttributeName(), IAttributeNamesConstants.DEPRECATED)
&& !CharOperation.equals(attribute.getAttributeName(), IAttributeNamesConstants.SYNTHETIC)) {
disassemble(attribute, buffer, lineSeparator, tabNumber);
}
}
}
}
}
/**
* Disassemble a method info header
*/
private void disassemble(IClassFileReader classFileReader, IMethodInfo methodInfo, StringBuffer buffer, String lineSeparator, int tabNumber, int mode) {
writeNewLine(buffer, lineSeparator, tabNumber);
ICodeAttribute codeAttribute = methodInfo.getCodeAttribute();
char[] methodDescriptor = methodInfo.getDescriptor();
if (mode == DETAILED) {
buffer
.append(Util.bind("disassembler.begincommentline")) //$NON-NLS-1$
.append(Util.bind("classfileformat.methoddescriptor")) //$NON-NLS-1$
.append(Util.bind("disassembler.constantpoolindex")) //$NON-NLS-1$
.append(methodInfo.getDescriptorIndex())
.append(Util.bind("disassembler.space")) //$NON-NLS-1$
.append(methodDescriptor);
if (methodInfo.isDeprecated()) {
buffer.append(Util.bind("disassembler.deprecated"));//$NON-NLS-1$
}
writeNewLine(buffer, lineSeparator, tabNumber);
if (codeAttribute != null) {
buffer
.append(Util.bind("disassembler.begincommentline")) //$NON-NLS-1$
.append(Util.bind("classfileformat.maxStack")) //$NON-NLS-1$
.append(codeAttribute.getMaxStack())
.append(Util.bind("disassembler.comma"))//$NON-NLS-1$
.append(Util.bind("disassembler.space"))//$NON-NLS-1$
.append(Util.bind("classfileformat.maxLocals")) //$NON-NLS-1$
.append(codeAttribute.getMaxLocals());
writeNewLine(buffer, lineSeparator, tabNumber);
}
}
int accessFlags = methodInfo.getAccessFlags();
decodeModifiersForMethod(buffer, accessFlags);
if (methodInfo.isSynthetic()) {
buffer.append("synthetic"); //$NON-NLS-1$
buffer.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
CharOperation.replace(methodDescriptor, '/', '.');
char[] methodName = null;
if (methodInfo.isConstructor()) {
methodName = classFileReader.getClassName();
buffer.append(Signature.toCharArray(methodDescriptor, methodName, getParameterNames(methodDescriptor, codeAttribute, accessFlags) , true, false));
} else if (methodInfo.isClinit()) {
methodName = Util.bind("classfileformat.clinitname").toCharArray(); //$NON-NLS-1$
buffer.append(methodName);
} else {
methodName = methodInfo.getName();
buffer.append(Signature.toCharArray(methodDescriptor, methodName, getParameterNames(methodDescriptor, codeAttribute, accessFlags) , false, true));
}
IExceptionAttribute exceptionAttribute = methodInfo.getExceptionAttribute();
if (exceptionAttribute != null) {
buffer.append(" throws "); //$NON-NLS-1$
char[][] exceptionNames = exceptionAttribute.getExceptionNames();
int length = exceptionNames.length;
for (int i = 0; i < length - 1; i++) {
char[] exceptionName = exceptionNames[i];
CharOperation.replace(exceptionName, '/', '.');
buffer
.append(exceptionName)
.append(Util.bind("disassembler.comma"))//$NON-NLS-1$
.append(Util.bind("disassembler.space")); //$NON-NLS-1$
}
char[] exceptionName = exceptionNames[length - 1];
CharOperation.replace(exceptionName, '/', '.');
buffer.append(exceptionName);
}
buffer.append(Util.bind("disassembler.endofmethodheader")); //$NON-NLS-1$
if (mode == DETAILED) {
IClassFileAttribute[] attributes = methodInfo.getAttributes();
int length = attributes.length;
if (length != 0) {
for (int i = 0; i < length; i++) {
IClassFileAttribute attribute = attributes[i];
if (attribute != codeAttribute
&& attribute != exceptionAttribute
&& !CharOperation.equals(attribute.getAttributeName(), IAttributeNamesConstants.DEPRECATED)
&& !CharOperation.equals(attribute.getAttributeName(), IAttributeNamesConstants.SYNTHETIC)) {
disassemble(attribute, buffer, lineSeparator, tabNumber);
writeNewLine(buffer, lineSeparator, tabNumber);
}
}
}
if (codeAttribute != null) {
disassemble(codeAttribute, buffer, lineSeparator, tabNumber);
}
}
}
private void disassemble(IClassFileAttribute classFileAttribute, StringBuffer buffer, String lineSeparator, int tabNumber) {
writeNewLine(buffer, lineSeparator, tabNumber + 1);
buffer.append(Util.bind("disassembler.genericattributeheader")); //$NON-NLS-1$
buffer
.append(Util.bind("disassembler.genericattributename")) //$NON-NLS-1$
.append(classFileAttribute.getAttributeName())
.append(Util.bind("disassembler.genericattributelength")) //$NON-NLS-1$
.append(classFileAttribute.getAttributeLength());
}
private void disassemble(ICodeAttribute codeAttribute, StringBuffer buffer, String lineSeparator, int tabNumber) {
writeNewLine(buffer, lineSeparator, tabNumber - 1);
DefaultBytecodeVisitor visitor = new DefaultBytecodeVisitor(codeAttribute.getCodeLength(), buffer, lineSeparator, tabNumber);
try {
codeAttribute.traverse(visitor);
} catch(ClassFormatException e) {
dumpTab(tabNumber + 2, buffer);
buffer.append("Class format Exception");//$NON-NLS-1$
writeNewLine(buffer, lineSeparator, tabNumber + 1);
}
int exceptionTableLength = codeAttribute.getExceptionTableLength();
if (exceptionTableLength != 0) {
final int tabNumberForExceptionAttribute = tabNumber + 2;
dumpTab(tabNumberForExceptionAttribute, buffer);
IExceptionTableEntry[] exceptionTableEntries = codeAttribute.getExceptionTable();
buffer.append(Util.bind("disassembler.exceptiontableheader")); //$NON-NLS-1$
writeNewLine(buffer, lineSeparator, tabNumberForExceptionAttribute + 1);
for (int i = 0; i < exceptionTableLength - 1; i++) {
IExceptionTableEntry exceptionTableEntry = exceptionTableEntries[i];
buffer
.append(Util.bind("classfileformat.exceptiontablefrom")) //$NON-NLS-1$
.append(exceptionTableEntry.getStartPC())
.append(Util.bind("classfileformat.exceptiontableto")) //$NON-NLS-1$
.append(exceptionTableEntry.getEndPC())
.append(Util.bind("classfileformat.exceptiontablegoto")) //$NON-NLS-1$
.append(exceptionTableEntry.getHandlerPC())
.append(Util.bind("classfileformat.exceptiontablewhen")); //$NON-NLS-1$
if (exceptionTableEntry.getCatchTypeIndex() == 0) {
buffer.append(ANY_EXCEPTION);
} else {
char[] catchType = exceptionTableEntry.getCatchType();
CharOperation.replace(catchType, '/', '.');
buffer.append(catchType);
}
writeNewLine(buffer, lineSeparator, tabNumberForExceptionAttribute + 1);
}
IExceptionTableEntry exceptionTableEntry = exceptionTableEntries[exceptionTableLength - 1];
buffer
.append(Util.bind("classfileformat.exceptiontablefrom")) //$NON-NLS-1$
.append(exceptionTableEntry.getStartPC())
.append(Util.bind("classfileformat.exceptiontableto")) //$NON-NLS-1$
.append(exceptionTableEntry.getEndPC())
.append(Util.bind("classfileformat.exceptiontablegoto")) //$NON-NLS-1$
.append(exceptionTableEntry.getHandlerPC())
.append(Util.bind("classfileformat.exceptiontablewhen")); //$NON-NLS-1$
if (exceptionTableEntry.getCatchTypeIndex() == 0) {
buffer.append(ANY_EXCEPTION);
} else {
char[] catchType = exceptionTableEntry.getCatchType();
CharOperation.replace(catchType, '/', '.');
buffer.append(catchType);
}
writeNewLine(buffer, lineSeparator, 0);
}
ILineNumberAttribute lineNumberAttribute = codeAttribute.getLineNumberAttribute();
int lineAttributeLength = lineNumberAttribute == null ? 0 : lineNumberAttribute.getLineNumberTableLength();
if (lineAttributeLength != 0) {
int tabNumberForLineAttribute = tabNumber + 2;
dumpTab(tabNumberForLineAttribute, buffer);
buffer.append(Util.bind("disassembler.linenumberattributeheader")); //$NON-NLS-1$
writeNewLine(buffer, lineSeparator, tabNumberForLineAttribute + 1);
int[][] lineattributesEntries = lineNumberAttribute.getLineNumberTable();
for (int i = 0; i < lineAttributeLength - 1; i++) {
buffer
.append(Util.bind("classfileformat.linenumbertablefrom")) //$NON-NLS-1$
.append(lineattributesEntries[i][0])
.append(Util.bind("classfileformat.linenumbertableto")) //$NON-NLS-1$
.append(lineattributesEntries[i][1])
.append(Util.bind("classfileformat.linenumbertableclose")); //$NON-NLS-1$
writeNewLine(buffer, lineSeparator, tabNumberForLineAttribute + 1);
}
buffer
.append(Util.bind("classfileformat.linenumbertablefrom")) //$NON-NLS-1$
.append(lineattributesEntries[lineAttributeLength - 1][0])
.append(Util.bind("classfileformat.linenumbertableto")) //$NON-NLS-1$
.append(lineattributesEntries[lineAttributeLength - 1][1])
.append(Util.bind("classfileformat.linenumbertableclose")); //$NON-NLS-1$
}
ILocalVariableAttribute localVariableAttribute = codeAttribute.getLocalVariableAttribute();
int localVariableAttributeLength = localVariableAttribute == null ? 0 : localVariableAttribute.getLocalVariableTableLength();
if (localVariableAttributeLength != 0) {
int tabNumberForLocalVariableAttribute = tabNumber + 2;
writeNewLine(buffer, lineSeparator, tabNumberForLocalVariableAttribute);
buffer.append(Util.bind("disassembler.localvariabletableattributeheader")); //$NON-NLS-1$
writeNewLine(buffer, lineSeparator, tabNumberForLocalVariableAttribute + 1);
ILocalVariableTableEntry[] localVariableTableEntries = localVariableAttribute.getLocalVariableTable();
for (int i = 0; i < localVariableAttributeLength - 1; i++) {
ILocalVariableTableEntry localVariableTableEntry = localVariableTableEntries[i];
int index= localVariableTableEntry.getIndex();
int startPC = localVariableTableEntry.getStartPC();
int length = localVariableTableEntry.getLength();
buffer
.append(Util.bind("classfileformat.localvariabletablefrom")) //$NON-NLS-1$
.append(startPC)
.append(Util.bind("classfileformat.localvariabletableto")) //$NON-NLS-1$
.append(startPC + length)
.append(Util.bind("classfileformat.localvariabletablelocalname")) //$NON-NLS-1$
.append(localVariableTableEntry.getName())
.append(Util.bind("classfileformat.localvariabletablelocalindex")) //$NON-NLS-1$
.append(index)
.append(Util.bind("classfileformat.localvariabletablelocaltype")); //$NON-NLS-1$
buffer.append(localVariableTableEntry.getDescriptor());
writeNewLine(buffer, lineSeparator, tabNumberForLocalVariableAttribute + 1);
}
ILocalVariableTableEntry localVariableTableEntry = localVariableTableEntries[localVariableAttributeLength - 1];
int index= localVariableTableEntry.getIndex();
int startPC = localVariableTableEntry.getStartPC();
int length = localVariableTableEntry.getLength();
buffer
.append(Util.bind("classfileformat.localvariabletablefrom")) //$NON-NLS-1$
.append(startPC)
.append(Util.bind("classfileformat.localvariabletableto")) //$NON-NLS-1$
.append(startPC + length)
.append(Util.bind("classfileformat.localvariabletablelocalname")) //$NON-NLS-1$
.append(localVariableTableEntry.getName())
.append(Util.bind("classfileformat.localvariabletablelocalindex")) //$NON-NLS-1$
.append(index)
.append(Util.bind("classfileformat.localvariabletablelocaltype")); //$NON-NLS-1$
buffer.append(localVariableTableEntry.getDescriptor());
}
}
private void disassembleTypeMembers(IClassFileReader classFileReader, StringBuffer buffer, String lineSeparator, int tabNumber, int mode) {
IFieldInfo[] fields = classFileReader.getFieldInfos();
for (int i = 0, max = fields.length; i < max; i++) {
writeNewLine(buffer, lineSeparator, tabNumber);
disassemble(fields[i], buffer, lineSeparator, tabNumber, mode);
}
IMethodInfo[] methods = classFileReader.getMethodInfos();
for (int i = 0, max = methods.length; i < max; i++) {
writeNewLine(buffer, lineSeparator, tabNumber);
disassemble(classFileReader, methods[i], buffer, lineSeparator, tabNumber, mode);
}
}
private final void dumpTab(int tabNumber, StringBuffer buffer) {
for (int i = 0; i < tabNumber; i++) {
buffer.append(Util.bind("disassembler.identation")); //$NON-NLS-1$
}
}
/**
* @see org.eclipse.jdt.core.util.ClassFileBytesDisassembler#getDescription()
*/
public String getDescription() {
return Util.bind("disassembler.description"); //$NON-NLS-1$
}
/**
* Method getEntryFor.
* @param localIndex
* @param entries
* @return ILocalVariableTableEntry
*/
private ILocalVariableTableEntry getEntryFor(
int localIndex,
ILocalVariableTableEntry[] entries) {
for (int i = 0, max = entries.length; i < max; i++) {
ILocalVariableTableEntry entry = entries[i];
if (localIndex == entry.getIndex()) {
return entry;
}
}
return null;
}
private char[] getSignatureForField(char[] fieldDescriptor) {
final int length = fieldDescriptor.length;
char[] newFieldDescriptor = new char[length];
System.arraycopy(fieldDescriptor, 0, newFieldDescriptor, 0, length);
CharOperation.replace(newFieldDescriptor, '/', '.');
CharOperation.replace(newFieldDescriptor, '$', '~');
char[] fieldDescriptorSignature = Signature.toCharArray(newFieldDescriptor);
CharOperation.replace(fieldDescriptorSignature, '~', '$');
return fieldDescriptorSignature;
}
private boolean isDeprecated(IClassFileReader classFileReader) {
IClassFileAttribute[] attributes = classFileReader.getAttributes();
for (int i = 0, max = attributes.length; i < max; i++) {
if (CharOperation.equals(attributes[i].getAttributeName(), IAttributeNamesConstants.DEPRECATED)) {
return true;
}
}
return false;
}
private boolean isSynthetic(IClassFileReader classFileReader) {
int flags = classFileReader.getAccessFlags();
if ((flags & IModifierConstants.ACC_SYNTHETIC) != 0) {
return true;
}
IClassFileAttribute[] attributes = classFileReader.getAttributes();
for (int i = 0, max = attributes.length; i < max; i++) {
if (CharOperation.equals(attributes[i].getAttributeName(), IAttributeNamesConstants.SYNTHETIC)) {
return true;
}
}
return false;
}
private char[][] getParameterNames(char[] methodDescriptor, ICodeAttribute codeAttribute, int accessFlags) {
int paramCount = Signature.getParameterCount(methodDescriptor);
char[][] parameterNames = new char[paramCount][];
// check if the code attribute has debug info for this method
if (codeAttribute != null) {
ILocalVariableAttribute localVariableAttribute = codeAttribute.getLocalVariableAttribute();
if (localVariableAttribute != null) {
ILocalVariableTableEntry[] entries = localVariableAttribute.getLocalVariableTable();
int startingIndex = (accessFlags & IModifierConstants.ACC_STATIC) != 0 ? 0 : 1;
for (int i = 0; i < paramCount; i++) {
ILocalVariableTableEntry searchedEntry = getEntryFor(startingIndex + i, entries);
if (searchedEntry != null) {
parameterNames[i] = searchedEntry.getName();
} else {
parameterNames[i] = Util.bind("disassembler.parametername").toCharArray(); //$NON-NLS-1$
}
}
} else {
for (int i = 0; i < paramCount; i++) {
parameterNames[i] = Util.bind("disassembler.parametername").toCharArray(); //$NON-NLS-1$
}
}
} else {
for (int i = 0; i < paramCount; i++) {
parameterNames[i] = Util.bind("disassembler.parametername").toCharArray(); //$NON-NLS-1$
}
}
return parameterNames;
}
private void writeNewLine(StringBuffer buffer, String lineSeparator, int tabNumber) {
buffer.append(lineSeparator);
dumpTab(tabNumber, buffer);
}
}