Package io.ebean.enhance.asm
Class Attribute
java.lang.Object
io.ebean.enhance.asm.Attribute
- Direct Known Subclasses:
ModuleHashesAttribute,ModuleResolutionAttribute,ModuleTargetAttribute
A non standard class, field, method or Code attribute, as defined in the Java Virtual Machine
Specification (JVMS).
- Author:
- Eric Bruneton, Eugene Kuleshov
- See Also:
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns true if this type of attribute is a Code attribute.booleanReturns true if this type of attribute is unknown.static Attributeread(Attribute attribute, ClassReader classReader, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels) Reads an attribute with the sametypeas the given attribute.static LabelreadLabel(ClassReader classReader, int bytecodeOffset, Label[] labels) Returns the label corresponding to the given bytecode offset by callingClassReader.readLabel(int, io.ebean.enhance.asm.Label[]).static byte[]write(Attribute attribute, ClassWriter classWriter, byte[] code, int codeLength, int maxStack, int maxLocals) Returns the byte array form of the content of the given attribute.
-
Field Details
-
type
The type of this attribute, also called its name in the JVMS.
-
-
Method Details
-
isUnknown
Returns true if this type of attribute is unknown. This means that the attribute content can't be parsed to extract constant pool references, labels, etc. Instead, the attribute content is read as an opaque byte array, and written back as is. This can lead to invalid attributes, if the content actually contains constant pool references, labels, or other symbolic references that need to be updated when there are changes to the constant pool, the method bytecode, etc. The default implementation of this method always returns true.- Returns:
- true if this type of attribute is unknown.
-
isCodeAttribute
Returns true if this type of attribute is a Code attribute.- Returns:
- true if this type of attribute is a Code attribute.
-
read
public static Attribute read(Attribute attribute, ClassReader classReader, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels) Reads an attribute with the sametypeas the given attribute. This method returns a newAttributeobject, corresponding to the 'length' bytes starting at 'offset', in the given ClassReader.- Parameters:
attribute- The attribute prototype that is used for reading.classReader- the class that contains the attribute to be read.offset- index of the first byte of the attribute's content inClassReader. The 6 attribute header bytes (attribute_name_index and attribute_length) are not taken into account here.length- the length of the attribute's content (excluding the 6 attribute header bytes).charBuffer- the buffer to be used to call the ClassReader methods requiring a 'charBuffer' parameter.codeAttributeOffset- index of the first byte of content of the enclosing Code attribute inClassReader, or -1 if the attribute to be read is not a Code attribute. The 6 attribute header bytes (attribute_name_index and attribute_length) are not taken into account here.labels- the labels of the method's code, or null if the attribute to be read is not a Code attribute. Labels defined in the attribute are added to this array, if not already present.- Returns:
- a new
Attributeobject corresponding to the specified bytes.
-
readLabel
Returns the label corresponding to the given bytecode offset by callingClassReader.readLabel(int, io.ebean.enhance.asm.Label[]). This creates and adds the label to the given array if it is not already present. Note that this created label may be aLabelsubclass instance, if the given ClassReader overridesClassReader.readLabel(int, io.ebean.enhance.asm.Label[]). Henceread(ClassReader, int, int, char[], int, Label[])must not manually createLabelinstances.- Parameters:
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 does not create a new one. Otherwise it stores the new label in this array.- Returns:
- a label for the given bytecode offset.
-
write
public static byte[] write(Attribute attribute, ClassWriter classWriter, byte[] code, int codeLength, int maxStack, int maxLocals) Returns the byte array form of the content of the given attribute. The 6 header bytes (attribute_name_index and attribute_length) are not added in the returned byte array.- Parameters:
attribute- The attribute that should be written.classWriter- the class to which this attribute must be added. This parameter can be used to add the items that corresponds to this attribute to the constant pool of this class.code- the bytecode of the method corresponding to this Code attribute, or null if this attribute is not a Code attribute. Corresponds to the 'code' field of the Code attribute.codeLength- the length of the bytecode of the method corresponding to this code attribute, or 0 if this attribute is not a Code attribute. Corresponds to the 'code_length' field of the Code attribute.maxStack- the maximum stack size of the method corresponding to this Code attribute, or -1 if this attribute is not a Code attribute.maxLocals- the maximum number of local variables of the method corresponding to this code attribute, or -1 if this attribute is not a Code attribute.- Returns:
- the byte array form of this attribute.
-