public class ClassReader extends Object
ClassVisitor
visit a ClassFile structure, as defined in the Java
Virtual Machine Specification (JVMS). This class parses the ClassFile content and calls the
appropriate visit methods of a given ClassVisitor
for each field, method and bytecode
instruction encountered.Modifier and Type | Field and Description |
---|---|
byte[] |
b
A byte array containing the JVMS ClassFile structure to be parsed.
|
static int |
EXPAND_FRAMES
A flag to expand the stack map frames.
|
int |
header
The offset in bytes, in
b , of the ClassFile's access_flags field. |
static int |
SKIP_CODE
A flag to skip the Code attributes.
|
static int |
SKIP_DEBUG
A flag to skip the SourceFile, SourceDebugExtension, LocalVariableTable, LocalVariableTypeTable
and LineNumberTable attributes.
|
static int |
SKIP_FRAMES
A flag to skip the StackMap and StackMapTable attributes.
|
Constructor and Description |
---|
ClassReader(byte[] classFile)
Constructs a new
ClassReader object. |
ClassReader(byte[] classFileBuffer,
int classFileOffset,
int classFileLength)
Constructs a new
ClassReader object. |
ClassReader(InputStream inputStream)
Constructs a new
ClassReader object. |
ClassReader(String className)
Constructs a new
ClassReader object. |
Modifier and Type | Method and Description |
---|---|
void |
accept(ClassVisitor classVisitor,
Attribute[] attributePrototypes,
int parsingOptions)
Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of this
ClassReader . |
void |
accept(ClassVisitor classVisitor,
int parsingOptions)
Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of this
ClassReader . |
int |
getAccess()
Returns the class's access flags (see
Opcodes ). |
String |
getClassName()
Returns the internal name of the class (see
Type.getInternalName() ). |
String[] |
getInterfaces()
Returns the internal names of the implemented interfaces (see
Type.getInternalName() ). |
int |
getItem(int constantPoolEntryIndex)
Returns the start offset in
b of a JVMS 'cp_info' structure (i.e. |
int |
getItemCount()
Returns the number of entries in the class's constant pool table.
|
int |
getMaxStringLength()
Returns a conservative estimate of the maximum length of the strings contained in the class's
constant pool table.
|
String |
getSuperName()
Returns the internal of name of the super class (see
Type.getInternalName() ). |
int |
readByte(int offset)
Reads a byte value in
b . |
String |
readClass(int offset,
char[] charBuffer)
Reads a CONSTANT_Class constant pool entry in
b . |
Object |
readConst(int constantPoolEntryIndex,
char[] charBuffer)
Reads a numeric or string constant pool entry in
b . |
int |
readInt(int offset)
Reads a signed int value in
b . |
protected Label |
readLabel(int bytecodeOffset,
Label[] labels)
Returns the label corresponding to the given bytecode offset.
|
long |
readLong(int offset)
Reads a signed long value in
b . |
String |
readModule(int offset,
char[] charBuffer)
Reads a CONSTANT_Module constant pool entry in
b . |
String |
readPackage(int offset,
char[] charBuffer)
Reads a CONSTANT_Package constant pool entry in
b . |
short |
readShort(int offset)
Reads a signed short value in
b . |
int |
readUnsignedShort(int offset)
Reads an unsigned short value in
b . |
String |
readUTF8(int offset,
char[] charBuffer)
Reads a CONSTANT_Utf8 constant pool entry in
b . |
public static final int SKIP_CODE
public static final int SKIP_DEBUG
ClassVisitor.visitSource(java.lang.String, java.lang.String)
, MethodVisitor.visitLocalVariable(java.lang.String, java.lang.String, java.lang.String, org.springframework.asm.Label, org.springframework.asm.Label, int)
and
MethodVisitor.visitLineNumber(int, org.springframework.asm.Label)
are not called).public static final int SKIP_FRAMES
MethodVisitor.visitFrame(int, int, java.lang.Object[], int, java.lang.Object[])
is not called). This flag
is useful when the ClassWriter.COMPUTE_FRAMES
option is used: it avoids visiting frames
that will be ignored and recomputed from scratch.public static final int EXPAND_FRAMES
public final byte[] b
Attribute
sub classes, and is normally
not needed by class visitors.
NOTE: the ClassFile structure can start at any offset within this array, i.e. it does not
necessarily start at offset 0. Use getItem(int)
and header
to get correct
ClassFile element offsets within this byte array.
public final int header
b
, of the ClassFile's access_flags field.public ClassReader(byte[] classFile)
ClassReader
object.classFile
- the JVMS ClassFile structure to be read.public ClassReader(byte[] classFileBuffer, int classFileOffset, int classFileLength)
ClassReader
object.classFileBuffer
- a byte array containing the JVMS ClassFile structure to be read.classFileOffset
- the offset in byteBuffer of the first byte of the ClassFile to be read.classFileLength
- the length in bytes of the ClassFile to be read.public ClassReader(InputStream inputStream) throws IOException
ClassReader
object.inputStream
- an input stream of the JVMS ClassFile structure to be read. This input
stream must contain nothing more than the ClassFile structure itself. It is read from its
current position to its end.IOException
- if a problem occurs during reading.public ClassReader(String className) throws IOException
ClassReader
object.className
- the fully qualified name of the class to be read. The ClassFile structure is
retrieved with the current class loader's ClassLoader.getSystemResourceAsStream(java.lang.String)
.IOException
- if an exception occurs during reading.public int getAccess()
Opcodes
). This value may not reflect Deprecated
and Synthetic flags when bytecode is before 1.5 and those flags are represented by attributes.ClassVisitor.visit(int, int, String, String, String, String[])
public String getClassName()
Type.getInternalName()
).ClassVisitor.visit(int, int, String, String, String, String[])
public String getSuperName()
Type.getInternalName()
). For
interfaces, the super class is Object
.Object
class.ClassVisitor.visit(int, int, String, String, String, String[])
public String[] getInterfaces()
Type.getInternalName()
).ClassVisitor.visit(int, int, String, String, String, String[])
public void accept(ClassVisitor classVisitor, int parsingOptions)
ClassReader
.classVisitor
- the visitor that must visit this class.parsingOptions
- the options to use to parse this class. One or more of SKIP_CODE
, SKIP_DEBUG
, SKIP_FRAMES
or EXPAND_FRAMES
.public void accept(ClassVisitor classVisitor, Attribute[] attributePrototypes, int parsingOptions)
ClassReader
.classVisitor
- the visitor that must visit this class.attributePrototypes
- prototypes of the attributes that must be parsed during the visit of
the class. Any attribute whose type is not equal to the type of one the prototypes will not
be parsed: its byte array value will be passed unchanged to the ClassWriter. This may
corrupt it if this value contains references to the constant pool, or has syntactic or
semantic links with a class element that has been transformed by a class adapter between
the reader and the writer.parsingOptions
- the options to use to parse this class. One or more of SKIP_CODE
, SKIP_DEBUG
, SKIP_FRAMES
or EXPAND_FRAMES
.protected Label readLabel(int bytecodeOffset, Label[] labels)
bytecodeOffset
- a bytecode offset in a method.labels
- the already created labels, indexed by their offset. If a label already exists
for bytecodeOffset this method must not create a new one. Otherwise it must store the new
label in this array.public int getItemCount()
public int getItem(int constantPoolEntryIndex)
b
of a JVMS 'cp_info' structure (i.e. a constant pool
entry), plus one. This method is intended for Attribute
sub classes, and is normally
not needed by class generators or adapters.constantPoolEntryIndex
- the index a constant pool entry in the class's constant pool
table.b
of the corresponding JVMS 'cp_info' structure, plus one.public int getMaxStringLength()
public int readByte(int offset)
b
. This method is intended for Attribute
sub classes,
and is normally not needed by class generators or adapters.offset
- the start offset of the value to be read in b
.public int readUnsignedShort(int offset)
b
. This method is intended for Attribute
sub classes, and is normally not needed by class generators or adapters.offset
- the start index of the value to be read in b
.public short readShort(int offset)
b
. This method is intended for Attribute
sub
classes, and is normally not needed by class generators or adapters.offset
- the start offset of the value to be read in b
.public int readInt(int offset)
b
. This method is intended for Attribute
sub
classes, and is normally not needed by class generators or adapters.offset
- the start offset of the value to be read in b
.public long readLong(int offset)
b
. This method is intended for Attribute
sub
classes, and is normally not needed by class generators or adapters.offset
- the start offset of the value to be read in b
.public String readUTF8(int offset, char[] charBuffer)
b
. This method is intended for Attribute
sub classes, and is normally not needed by class generators or adapters.offset
- the start offset of an unsigned short value in b
, whose value is the
index of a CONSTANT_Utf8 entry in the class's constant pool table.charBuffer
- the buffer to be used to read the string. This buffer must be sufficiently
large. It is not automatically resized.public String readClass(int offset, char[] charBuffer)
b
. This method is intended for Attribute
sub classes, and is normally not needed by class generators or adapters.offset
- the start offset of an unsigned short value in b
, whose value is the
index of a CONSTANT_Class entry in class's constant pool table.charBuffer
- the buffer to be used to read the item. This buffer must be sufficiently
large. It is not automatically resized.public String readModule(int offset, char[] charBuffer)
b
. This method is intended for
Attribute
sub classes, and is normally not needed by class generators or adapters.offset
- the start offset of an unsigned short value in b
, whose value is the
index of a CONSTANT_Module entry in class's constant pool table.charBuffer
- the buffer to be used to read the item. This buffer must be sufficiently
large. It is not automatically resized.public String readPackage(int offset, char[] charBuffer)
b
. This method is intended for
Attribute
sub classes, and is normally not needed by class generators or adapters.offset
- the start offset of an unsigned short value in b
, whose value is the
index of a CONSTANT_Package entry in class's constant pool table.charBuffer
- the buffer to be used to read the item. This buffer must be sufficiently
large. It is not automatically resized.public Object readConst(int constantPoolEntryIndex, char[] charBuffer)
b
. This method is intended for
Attribute
sub classes, and is normally not needed by class generators or adapters.constantPoolEntryIndex
- the index of a CONSTANT_Integer, CONSTANT_Float, CONSTANT_Long,
CONSTANT_Double, CONSTANT_Class, CONSTANT_String, CONSTANT_MethodType,
CONSTANT_MethodHandle or CONSTANT_Dynamic entry in the class's constant pool.charBuffer
- the buffer to be used to read strings. This buffer must be sufficiently
large. It is not automatically resized.Integer
, Float
, Long
, Double
, String
,
Type
, Handle
or ConstantDynamic
corresponding to the specified
constant pool entry.