class org.h2.server.TcpServerThread$CachedInputStream extends java.io.FilterInputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.h2.server.TcpServerThread$CachedInputStream
  super_class: java.io.FilterInputStream
{
  private static final java.io.ByteArrayInputStream DUMMY;
    descriptor: Ljava/io/ByteArrayInputStream;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private long pos;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 611
            new java.io.ByteArrayInputStream
            dup
            iconst_0
            newarray 8
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
         1: .line 610
            putstatic org.h2.server.TcpServerThread$CachedInputStream.DUMMY:Ljava/io/ByteArrayInputStream;
         2: .line 611
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.server.TcpServerThread$CachedInputStream this
        start local 1 // java.io.InputStream in
         0: .line 615
            aload 0 /* this */
            aload 1 /* in */
            ifnonnull 1
            getstatic org.h2.server.TcpServerThread$CachedInputStream.DUMMY:Ljava/io/ByteArrayInputStream;
            goto 2
      StackMap locals:
      StackMap stack: uninitialized-this
         1: aload 1 /* in */
      StackMap locals: uninitialized-this java.io.InputStream
      StackMap stack: uninitialized-this java.io.InputStream
         2: invokespecial java.io.FilterInputStream.<init>:(Ljava/io/InputStream;)V
         3: .line 616
            aload 1 /* in */
            ifnonnull 5
         4: .line 617
            aload 0 /* this */
            ldc -1
            putfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
         5: .line 619
      StackMap locals: org.h2.server.TcpServerThread$CachedInputStream java.io.InputStream
      StackMap stack:
            return
        end local 1 // java.io.InputStream in
        end local 0 // org.h2.server.TcpServerThread$CachedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/server/TcpServerThread$CachedInputStream;
            0    6     1    in  Ljava/io/InputStream;
    MethodParameters:
      Name  Flags
      in    

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.h2.server.TcpServerThread$CachedInputStream this
        start local 1 // byte[] buff
        start local 2 // int off
        start local 3 // int len
         0: .line 623
            aload 0 /* this */
            aload 1 /* buff */
            iload 2 /* off */
            iload 3 /* len */
            invokespecial java.io.FilterInputStream.read:([BII)I
            istore 3 /* len */
         1: .line 624
            iload 3 /* len */
            ifle 3
         2: .line 625
            aload 0 /* this */
            dup
            getfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
            iload 3 /* len */
            i2l
            ladd
            putfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
         3: .line 627
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] buff
        end local 0 // org.h2.server.TcpServerThread$CachedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/server/TcpServerThread$CachedInputStream;
            0    4     1  buff  [B
            0    4     2   off  I
            0    4     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      buff  
      off   
      len   

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.h2.server.TcpServerThread$CachedInputStream this
         0: .line 632
            aload 0 /* this */
            getfield org.h2.server.TcpServerThread$CachedInputStream.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 1 /* x */
        start local 1 // int x
         1: .line 633
            iload 1 /* x */
            iflt 3
         2: .line 634
            aload 0 /* this */
            dup
            getfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
            lconst_1
            ladd
            putfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
         3: .line 636
      StackMap locals: int
      StackMap stack:
            iload 1 /* x */
            ireturn
        end local 1 // int x
        end local 0 // org.h2.server.TcpServerThread$CachedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/server/TcpServerThread$CachedInputStream;
            1    4     1     x  I
    Exceptions:
      throws java.io.IOException

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.h2.server.TcpServerThread$CachedInputStream this
        start local 1 // long n
         0: .line 641
            aload 0 /* this */
            lload 1 /* n */
            invokespecial java.io.FilterInputStream.skip:(J)J
            lstore 1 /* n */
         1: .line 642
            lload 1 /* n */
            lconst_0
            lcmp
            ifle 3
         2: .line 643
            aload 0 /* this */
            dup
            getfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
            lload 1 /* n */
            ladd
            putfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
         3: .line 645
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lreturn
        end local 1 // long n
        end local 0 // org.h2.server.TcpServerThread$CachedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/server/TcpServerThread$CachedInputStream;
            0    4     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public long getPos();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.server.TcpServerThread$CachedInputStream this
         0: .line 649
            aload 0 /* this */
            getfield org.h2.server.TcpServerThread$CachedInputStream.pos:J
            lreturn
        end local 0 // org.h2.server.TcpServerThread$CachedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/server/TcpServerThread$CachedInputStream;
}
SourceFile: "TcpServerThread.java"
NestHost: org.h2.server.TcpServerThread
InnerClasses:
  CachedInputStream = org.h2.server.TcpServerThread$CachedInputStream of org.h2.server.TcpServerThread