class sun.net.httpserver.FixedLengthInputStream extends sun.net.httpserver.LeftOverInputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.net.httpserver.FixedLengthInputStream
  super_class: sun.net.httpserver.LeftOverInputStream
{
  private long remaining;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  void <init>(sun.net.httpserver.ExchangeImpl, java.io.InputStream, long);
    descriptor: (Lsun/net/httpserver/ExchangeImpl;Ljava/io/InputStream;J)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // sun.net.httpserver.FixedLengthInputStream this
        start local 1 // sun.net.httpserver.ExchangeImpl t
        start local 2 // java.io.InputStream src
        start local 3 // long len
         0: .line 43
            aload 0 /* this */
            aload 1 /* t */
            aload 2 /* src */
            invokespecial sun.net.httpserver.LeftOverInputStream.<init>:(Lsun/net/httpserver/ExchangeImpl;Ljava/io/InputStream;)V
         1: .line 44
            aload 0 /* this */
            lload 3 /* len */
            putfield sun.net.httpserver.FixedLengthInputStream.remaining:J
         2: .line 45
            return
        end local 3 // long len
        end local 2 // java.io.InputStream src
        end local 1 // sun.net.httpserver.ExchangeImpl t
        end local 0 // sun.net.httpserver.FixedLengthInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/net/httpserver/FixedLengthInputStream;
            0    3     1     t  Lsun/net/httpserver/ExchangeImpl;
            0    3     2   src  Ljava/io/InputStream;
            0    3     3   len  J
    MethodParameters:
      Name  Flags
      t     
      src   
      len   

  protected int readImpl(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // sun.net.httpserver.FixedLengthInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 49
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.remaining:J
            lconst_0
            lcmp
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: sun.net.httpserver.FixedLengthInputStream
         1: iconst_0
      StackMap locals: sun.net.httpserver.FixedLengthInputStream byte[] int int
      StackMap stack: sun.net.httpserver.FixedLengthInputStream int
         2: putfield sun.net.httpserver.FixedLengthInputStream.eof:Z
         3: .line 50
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.eof:Z
            ifeq 5
         4: .line 51
            iconst_m1
            ireturn
         5: .line 53
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            i2l
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.remaining:J
            lcmp
            ifle 7
         6: .line 54
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.remaining:J
            l2i
            istore 3 /* len */
         7: .line 56
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.in:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* n */
        start local 4 // int n
         8: .line 57
            iload 4 /* n */
            iconst_m1
            if_icmple 12
         9: .line 58
            aload 0 /* this */
            dup
            getfield sun.net.httpserver.FixedLengthInputStream.remaining:J
            iload 4 /* n */
            i2l
            lsub
            putfield sun.net.httpserver.FixedLengthInputStream.remaining:J
        10: .line 59
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.remaining:J
            lconst_0
            lcmp
            ifne 12
        11: .line 60
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.t:Lsun/net/httpserver/ExchangeImpl;
            invokevirtual sun.net.httpserver.ExchangeImpl.getServerImpl:()Lsun/net/httpserver/ServerImpl;
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.t:Lsun/net/httpserver/ExchangeImpl;
            invokevirtual sun.net.httpserver.ExchangeImpl.getConnection:()Lsun/net/httpserver/HttpConnection;
            invokevirtual sun.net.httpserver.ServerImpl.requestCompleted:(Lsun/net/httpserver/HttpConnection;)V
        12: .line 63
      StackMap locals: int
      StackMap stack:
            iload 4 /* n */
            ifge 14
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.eof:Z
            ifne 14
        13: .line 64
            new java.io.IOException
            dup
            ldc "connection closed before all data received"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 65
      StackMap locals:
      StackMap stack:
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.net.httpserver.FixedLengthInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lsun/net/httpserver/FixedLengthInputStream;
            0   15     1     b  [B
            0   15     2   off  I
            0   15     3   len  I
            8   15     4     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.net.httpserver.FixedLengthInputStream this
         0: .line 69
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.eof:Z
            ifeq 2
         1: .line 70
            iconst_0
            ireturn
         2: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.available:()I
            istore 1 /* n */
        start local 1 // int n
         3: .line 73
            iload 1 /* n */
            i2l
            aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.remaining:J
            lcmp
            ifge 4
            iload 1 /* n */
            goto 5
      StackMap locals: int
      StackMap stack:
         4: aload 0 /* this */
            getfield sun.net.httpserver.FixedLengthInputStream.remaining:J
            l2i
      StackMap locals:
      StackMap stack: int
         5: ireturn
        end local 1 // int n
        end local 0 // sun.net.httpserver.FixedLengthInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/net/httpserver/FixedLengthInputStream;
            3    6     1     n  I
    Exceptions:
      throws java.io.IOException

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.httpserver.FixedLengthInputStream this
         0: .line 76
            iconst_0
            ireturn
        end local 0 // sun.net.httpserver.FixedLengthInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/httpserver/FixedLengthInputStream;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // sun.net.httpserver.FixedLengthInputStream this
        start local 1 // int l
         0: .line 79
            return
        end local 1 // int l
        end local 0 // sun.net.httpserver.FixedLengthInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/httpserver/FixedLengthInputStream;
            0    1     1     l  I
    MethodParameters:
      Name  Flags
      l     

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.net.httpserver.FixedLengthInputStream this
         0: .line 82
            new java.io.IOException
            dup
            ldc "mark/reset not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // sun.net.httpserver.FixedLengthInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/httpserver/FixedLengthInputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "FixedLengthInputStream.java"