final class org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream extends org.glassfish.grizzly.http.io.NIOInputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream
  super_class: org.glassfish.grizzly.http.io.NIOInputStream
{
  private boolean isClosed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final org.glassfish.grizzly.http.multipart.MultipartEntry multipartEntry;
    descriptor: Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.glassfish.grizzly.http.io.NIOInputStream parentNIOInputStream;
    descriptor: Lorg/glassfish/grizzly/http/io/NIOInputStream;
    flags: (0x0002) ACC_PRIVATE

  private int requestedSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private org.glassfish.grizzly.ReadHandler handler;
    descriptor: Lorg/glassfish/grizzly/ReadHandler;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.glassfish.grizzly.http.multipart.MultipartEntry);
    descriptor: (Lorg/glassfish/grizzly/http/multipart/MultipartEntry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // org.glassfish.grizzly.http.multipart.MultipartEntry multipartEntry
         0: .line 49
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.io.NIOInputStream.<init>:()V
         1: .line 54
            aload 0 /* this */
            aload 1 /* multipartEntry */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
         2: .line 56
            return
        end local 1 // org.glassfish.grizzly.http.multipart.MultipartEntry multipartEntry
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0    3     1  multipartEntry  Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
    MethodParameters:
                Name  Flags
      multipartEntry  final

  protected void initialize(org.glassfish.grizzly.http.io.NIOInputStream);
    descriptor: (Lorg/glassfish/grizzly/http/io/NIOInputStream;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // org.glassfish.grizzly.http.io.NIOInputStream parentNIOInputStream
         0: .line 63
            aload 0 /* this */
            aload 1 /* parentNIOInputStream */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
         1: .line 64
            return
        end local 1 // org.glassfish.grizzly.http.io.NIOInputStream parentNIOInputStream
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0    2     1  parentNIOInputStream  Lorg/glassfish/grizzly/http/io/NIOInputStream;
    MethodParameters:
                      Name  Flags
      parentNIOInputStream  final

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 73
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isClosed:Z
            ifeq 2
         1: .line 74
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readyData:()I
            ifne 4
         3: .line 78
            new java.lang.IllegalStateException
            dup
            ldc "Can't be invoked when available() == 0"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            iconst_m1
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.addAvailableBytes:(I)V
         5: .line 84
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.read:()I
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
    Exceptions:
      throws java.io.IOException

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 93
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isClosed:Z
            ifeq 2
         1: .line 94
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
         2: .line 97
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 4
         3: .line 98
            iconst_0
            ireturn
         4: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
            iload 3 /* len */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* nlen */
        start local 4 // int nlen
         5: .line 102
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            iload 4 /* nlen */
            ineg
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.addAvailableBytes:(I)V
         6: .line 105
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* nlen */
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.read:([BII)I
            ireturn
        end local 4 // int nlen
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0    7     1     b  [B
            0    7     2   off  I
            0    7     3   len  I
            5    7     4  nlen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final
      off   final
      len   final

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // long n
         0: .line 113
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isClosed:Z
            ifeq 2
         1: .line 114
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
         2: .line 117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readyData:()I
            i2l
            lload 1 /* n */
            lcmp
            ifge 4
         3: .line 118
            new java.lang.IllegalStateException
            dup
            ldc "Can not skip more bytes than available"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            lload 1 /* n */
            lneg
            l2i
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.addAvailableBytes:(I)V
         5: .line 124
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            lload 1 /* n */
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.skip:(J)J
            lreturn
        end local 1 // long n
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0    6     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     final

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 131
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readyData:()I
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 138
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isClosed:Z
         1: .line 139
            return
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
    Exceptions:
      throws java.io.IOException

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // int readlimit
         0: .line 145
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            iload 1 /* readlimit */
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.mark:(I)V
         1: .line 146
            return
        end local 1 // int readlimit
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0    2     1  readlimit  I
    MethodParameters:
           Name  Flags
      readlimit  final

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 152
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.reset:()V
         1: .line 153
            return
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
    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 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 161
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.markSupported:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;

  public void notifyAvailable(org.glassfish.grizzly.ReadHandler);
    descriptor: (Lorg/glassfish/grizzly/ReadHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
         0: .line 173
            aload 0 /* this */
            aload 1 /* handler */
            iconst_1
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.notifyAvailable:(Lorg/glassfish/grizzly/ReadHandler;I)V
         1: .line 174
            return
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0    2     1  handler  Lorg/glassfish/grizzly/ReadHandler;
    MethodParameters:
         Name  Flags
      handler  final

  public void notifyAvailable(org.glassfish.grizzly.ReadHandler, int);
    descriptor: (Lorg/glassfish/grizzly/ReadHandler;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
        start local 2 // int size
         0: .line 182
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isClosed:Z
            ifne 1
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isFinished:()Z
            ifeq 15
         1: .line 184
      StackMap locals:
      StackMap stack:
            aload 1 /* handler */
            invokeinterface org.glassfish.grizzly.ReadHandler.onAllDataRead:()V
         2: .line 185
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Exception
         3: astore 3 /* ioe */
        start local 3 // java.lang.Exception ioe
         4: .line 187
            aload 1 /* handler */
            aload 3 /* ioe */
            invokeinterface org.glassfish.grizzly.ReadHandler.onError:(Ljava/lang/Throwable;)V
         5: .line 188
            goto 11
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream org.glassfish.grizzly.ReadHandler int java.lang.Exception
      StackMap stack: java.lang.Throwable
         6: astore 4
         7: .line 190
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
         8: .line 191
            goto 10
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream org.glassfish.grizzly.ReadHandler int java.lang.Exception java.lang.Throwable
      StackMap stack: java.io.IOException
         9: pop
        10: .line 193
      StackMap locals:
      StackMap stack:
            aload 4
            athrow
        11: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        12: .line 191
            goto 14
      StackMap locals:
      StackMap stack: java.io.IOException
        13: pop
        end local 3 // java.lang.Exception ioe
        14: .line 196
      StackMap locals:
      StackMap stack:
            return
        15: .line 199
      StackMap locals:
      StackMap stack:
            iload 2 /* size */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
            invokestatic org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.shouldNotifyNow:(II)Z
            ifeq 30
        16: .line 201
            aload 1 /* handler */
            invokeinterface org.glassfish.grizzly.ReadHandler.onDataAvailable:()V
        17: .line 202
            goto 29
      StackMap locals:
      StackMap stack: java.lang.Exception
        18: astore 3 /* ioe */
        start local 3 // java.lang.Exception ioe
        19: .line 204
            aload 1 /* handler */
            aload 3 /* ioe */
            invokeinterface org.glassfish.grizzly.ReadHandler.onError:(Ljava/lang/Throwable;)V
        20: .line 205
            goto 26
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream org.glassfish.grizzly.ReadHandler int java.lang.Exception
      StackMap stack: java.lang.Throwable
        21: astore 4
        22: .line 207
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        23: .line 208
            goto 25
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream org.glassfish.grizzly.ReadHandler int java.lang.Exception java.lang.Throwable
      StackMap stack: java.io.IOException
        24: pop
        25: .line 210
      StackMap locals:
      StackMap stack:
            aload 4
            athrow
        26: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        27: .line 208
            goto 29
      StackMap locals:
      StackMap stack: java.io.IOException
        28: pop
        end local 3 // java.lang.Exception ioe
        29: .line 212
      StackMap locals:
      StackMap stack:
            return
        30: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.requestedSize:I
        31: .line 216
            aload 0 /* this */
            aload 1 /* handler */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.handler:Lorg/glassfish/grizzly/ReadHandler;
        32: .line 217
            return
        end local 2 // int size
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   33     0     this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0   33     1  handler  Lorg/glassfish/grizzly/ReadHandler;
            0   33     2     size  I
            4   14     3      ioe  Ljava/lang/Exception;
           19   29     3      ioe  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception
           4     6       6  any
           7     8       9  Class java.io.IOException
          11    12      13  Class java.io.IOException
          16    17      18  Class java.lang.Exception
          19    21      21  any
          22    23      24  Class java.io.IOException
          26    27      28  Class java.io.IOException
    MethodParameters:
         Name  Flags
      handler  final
      size     final

  public boolean isFinished();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 224
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.isFinished:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;

  public int readyData();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 232
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isClosed:Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;

  public boolean isReady();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 240
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readyData:()I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;

  public org.glassfish.grizzly.Buffer getBuffer();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 251
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readyData:()I
            istore 1 /* remaining */
        start local 1 // int remaining
         1: .line 252
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.getBuffer:()Lorg/glassfish/grizzly/Buffer;
            astore 2 /* underlyingBuffer */
        start local 2 // org.glassfish.grizzly.Buffer underlyingBuffer
         2: .line 253
            aload 2 /* underlyingBuffer */
            aload 2 /* underlyingBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.position:()I
            iload 1 /* remaining */
            iadd
            invokeinterface org.glassfish.grizzly.Buffer.limit:(I)Lorg/glassfish/grizzly/Buffer;
            pop
         3: .line 254
            aload 2 /* underlyingBuffer */
            areturn
        end local 2 // org.glassfish.grizzly.Buffer underlyingBuffer
        end local 1 // int remaining
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            1    4     1         remaining  I
            2    4     2  underlyingBuffer  Lorg/glassfish/grizzly/Buffer;

  public org.glassfish.grizzly.Buffer readBuffer();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 262
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readyData:()I
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readBuffer:(I)Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;

  public org.glassfish.grizzly.Buffer readBuffer(int);
    descriptor: (I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
        start local 1 // int size
         0: .line 270
            iload 1 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.readyData:()I
            if_icmple 2
         1: .line 271
            new java.lang.IllegalStateException
            dup
            ldc "Can not read more bytes than available"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            iload 1 /* size */
            ineg
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.addAvailableBytes:(I)V
         3: .line 274
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            iload 1 /* size */
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.readBuffer:(I)Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 1 // int size
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            0    4     1  size  I
    MethodParameters:
      Name  Flags
      size  final

  protected void recycle();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 279
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
         1: .line 280
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.handler:Lorg/glassfish/grizzly/ReadHandler;
         2: .line 281
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isClosed:Z
         3: .line 282
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.requestedSize:I
         4: .line 283
            return
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;

  void onDataCame();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
         0: .line 289
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.handler:Lorg/glassfish/grizzly/ReadHandler;
            ifnonnull 1
            return
         1: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.isFinished:()Z
            ifeq 4
         2: .line 293
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.handler:Lorg/glassfish/grizzly/ReadHandler;
            invokeinterface org.glassfish.grizzly.ReadHandler.onAllDataRead:()V
         3: .line 294
            goto 19
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.requestedSize:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
            invokestatic org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.shouldNotifyNow:(II)Z
            ifeq 19
         5: .line 295
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.handler:Lorg/glassfish/grizzly/ReadHandler;
            invokeinterface org.glassfish.grizzly.ReadHandler.onDataAvailable:()V
         6: .line 297
            goto 19
      StackMap locals:
      StackMap stack: java.lang.Exception
         7: astore 1 /* e */
        start local 1 // java.lang.Exception e
         8: .line 299
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.handler:Lorg/glassfish/grizzly/ReadHandler;
            aload 1 /* e */
            invokeinterface org.glassfish.grizzly.ReadHandler.onError:(Ljava/lang/Throwable;)V
         9: .line 300
            goto 15
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream java.lang.Exception
      StackMap stack: java.lang.Throwable
        10: astore 2
        11: .line 302
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        12: .line 303
            goto 14
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream java.lang.Exception java.lang.Throwable
      StackMap stack: java.io.IOException
        13: pop
        14: .line 305
      StackMap locals:
      StackMap stack:
            aload 2
            athrow
        15: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream.parentNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        16: .line 303
            goto 18
      StackMap locals:
      StackMap stack: java.io.IOException
        17: pop
        18: .line 306
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            athrow
        end local 1 // java.lang.Exception e
        19: .line 308
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOInputStream;
            8   19     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     6       7  Class java.lang.Exception
           8    10      10  any
          11    12      13  Class java.io.IOException
          15    16      17  Class java.io.IOException
    Exceptions:
      throws java.lang.Exception

  private static boolean shouldNotifyNow(int, int);
    descriptor: (II)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int size
        start local 1 // int available
         0: .line 321
            iload 1 /* available */
            ifeq 1
            iload 1 /* available */
            iload 0 /* size */
            if_icmplt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int available
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       size  I
            0    2     1  available  I
    MethodParameters:
           Name  Flags
      size       final
      available  final
}
SourceFile: "MultipartEntryNIOInputStream.java"