public class io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder extends io.netty.handler.codec.ReplayingDecoder<java.lang.Void>
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder
super_class: io.netty.handler.codec.ReplayingDecoder
{
protected final io.netty.handler.codec.marshalling.UnmarshallerProvider provider;
descriptor: Lio/netty/handler/codec/marshalling/UnmarshallerProvider;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
protected final int maxObjectSize;
descriptor: I
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
private boolean discardingTooLongFrame;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
public void <init>(io.netty.handler.codec.marshalling.UnmarshallerProvider, int);
descriptor: (Lio/netty/handler/codec/marshalling/UnmarshallerProvider;I)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial io.netty.handler.codec.ReplayingDecoder.<init>:()V
1: aload 0
aload 1
putfield io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.provider:Lio/netty/handler/codec/marshalling/UnmarshallerProvider;
2: aload 0
iload 2
putfield io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.maxObjectSize:I
3: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/netty/handler/codec/marshalling/CompatibleMarshallingDecoder;
0 4 1 provider Lio/netty/handler/codec/marshalling/UnmarshallerProvider;
0 4 2 maxObjectSize I
MethodParameters:
Name Flags
provider
maxObjectSize
protected void decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List<java.lang.Object>);
descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=5, locals=8, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
getfield io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.discardingTooLongFrame:Z
ifeq 4
1: aload 2
aload 0
invokevirtual io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.actualReadableBytes:()I
invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
pop
2: aload 0
invokevirtual io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.checkpoint:()V
3: return
4: StackMap locals:
StackMap stack:
aload 0
getfield io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.provider:Lio/netty/handler/codec/marshalling/UnmarshallerProvider;
aload 1
invokeinterface io.netty.handler.codec.marshalling.UnmarshallerProvider.getUnmarshaller:(Lio/netty/channel/ChannelHandlerContext;)Lorg/jboss/marshalling/Unmarshaller;
astore 4
start local 4 5: new io.netty.handler.codec.marshalling.ChannelBufferByteInput
dup
aload 2
invokespecial io.netty.handler.codec.marshalling.ChannelBufferByteInput.<init>:(Lio/netty/buffer/ByteBuf;)V
astore 5
start local 5 6: aload 0
getfield io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.maxObjectSize:I
ldc 2147483647
if_icmpeq 8
7: new io.netty.handler.codec.marshalling.LimitingByteInput
dup
aload 5
aload 0
getfield io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.maxObjectSize:I
i2l
invokespecial io.netty.handler.codec.marshalling.LimitingByteInput.<init>:(Lorg/jboss/marshalling/ByteInput;J)V
astore 5
8: StackMap locals: org.jboss.marshalling.Unmarshaller org.jboss.marshalling.ByteInput
StackMap stack:
aload 4
aload 5
invokeinterface org.jboss.marshalling.Unmarshaller.start:(Lorg/jboss/marshalling/ByteInput;)V
9: aload 4
invokeinterface org.jboss.marshalling.Unmarshaller.readObject:()Ljava/lang/Object;
astore 6
start local 6 10: aload 4
invokeinterface org.jboss.marshalling.Unmarshaller.finish:()V
11: aload 3
aload 6
invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
pop
end local 6 12: goto 19
StackMap locals:
StackMap stack: io.netty.handler.codec.marshalling.LimitingByteInput$TooBigObjectException
13: pop
14: aload 0
iconst_1
putfield io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.discardingTooLongFrame:Z
15: new io.netty.handler.codec.TooLongFrameException
dup
invokespecial io.netty.handler.codec.TooLongFrameException.<init>:()V
athrow
16: StackMap locals:
StackMap stack: java.lang.Throwable
astore 7
17: aload 4
invokeinterface org.jboss.marshalling.Unmarshaller.close:()V
18: aload 7
athrow
19: StackMap locals:
StackMap stack:
aload 4
invokeinterface org.jboss.marshalling.Unmarshaller.close:()V
20: return
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 21 0 this Lio/netty/handler/codec/marshalling/CompatibleMarshallingDecoder;
0 21 1 ctx Lio/netty/channel/ChannelHandlerContext;
0 21 2 buffer Lio/netty/buffer/ByteBuf;
0 21 3 out Ljava/util/List<Ljava/lang/Object;>;
5 21 4 unmarshaller Lorg/jboss/marshalling/Unmarshaller;
6 21 5 input Lorg/jboss/marshalling/ByteInput;
10 12 6 obj Ljava/lang/Object;
Exception table:
from to target type
8 12 13 Class io.netty.handler.codec.marshalling.LimitingByteInput$TooBigObjectException
8 16 16 any
Exceptions:
throws java.lang.Exception
Signature: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List<Ljava/lang/Object;>;)V
MethodParameters:
Name Flags
ctx
buffer
out
protected void decodeLast(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List<java.lang.Object>);
descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 2
invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
tableswitch { // 0 - 1
0: 1
1: 2
default: 5
}
1: StackMap locals:
StackMap stack:
return
2: StackMap locals:
StackMap stack:
aload 2
aload 2
invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
bipush 121
if_icmpne 5
3: aload 2
iconst_1
invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
pop
4: return
5: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
invokevirtual io.netty.handler.codec.marshalling.CompatibleMarshallingDecoder.decode:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V
6: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lio/netty/handler/codec/marshalling/CompatibleMarshallingDecoder;
0 7 1 ctx Lio/netty/channel/ChannelHandlerContext;
0 7 2 buffer Lio/netty/buffer/ByteBuf;
0 7 3 out Ljava/util/List<Ljava/lang/Object;>;
Exceptions:
throws java.lang.Exception
Signature: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List<Ljava/lang/Object;>;)V
MethodParameters:
Name Flags
ctx
buffer
out
public void exceptionCaught(io.netty.channel.ChannelHandlerContext, java.lang.Throwable);
descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 2
instanceof io.netty.handler.codec.TooLongFrameException
ifeq 3
1: aload 1
invokeinterface io.netty.channel.ChannelHandlerContext.close:()Lio/netty/channel/ChannelFuture;
pop
2: goto 4
3: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
invokespecial io.netty.handler.codec.ReplayingDecoder.exceptionCaught:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
4: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/netty/handler/codec/marshalling/CompatibleMarshallingDecoder;
0 5 1 ctx Lio/netty/channel/ChannelHandlerContext;
0 5 2 cause Ljava/lang/Throwable;
Exceptions:
throws java.lang.Exception
MethodParameters:
Name Flags
ctx
cause
}
Signature: Lio/netty/handler/codec/ReplayingDecoder<Ljava/lang/Void;>;
SourceFile: "CompatibleMarshallingDecoder.java"
InnerClasses:
final TooBigObjectException = io.netty.handler.codec.marshalling.LimitingByteInput$TooBigObjectException of io.netty.handler.codec.marshalling.LimitingByteInput