final class org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader extends org.glassfish.grizzly.http.io.NIOReader
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader
  super_class: org.glassfish.grizzly.http.io.NIOReader
{
  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 requestNIOInputStream;
    descriptor: Lorg/glassfish/grizzly/http/io/NIOInputStream;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String encoding;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.charset.CharsetDecoder decoder;
    descriptor: Ljava/nio/charset/CharsetDecoder;
    flags: (0x0002) ACC_PRIVATE

  private float averageCharsPerByte;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private final java.nio.CharBuffer singleCharBuf;
    descriptor: Ljava/nio/CharBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  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.MultipartEntryNIOReader this
        start local 1 // org.glassfish.grizzly.http.multipart.MultipartEntry multipartEntry
         0: .line 63
            aload 0 /* this */
            invokespecial org.glassfish.grizzly.http.io.NIOReader.<init>:()V
         1: .line 50
            aload 0 /* this */
            iconst_1
            invokestatic java.nio.CharBuffer.allocate:(I)Ljava/nio/CharBuffer;
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.singleCharBuf:Ljava/nio/CharBuffer;
         2: .line 64
            aload 0 /* this */
            aload 1 /* multipartEntry */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
         3: .line 65
            return
        end local 1 // org.glassfish.grizzly.http.multipart.MultipartEntry multipartEntry
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0    4     1  multipartEntry  Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
    MethodParameters:
                Name  Flags
      multipartEntry  final

  protected void initialize(org.glassfish.grizzly.http.io.NIOInputStream, java.lang.String);
    descriptor: (Lorg/glassfish/grizzly/http/io/NIOInputStream;Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
        start local 1 // org.glassfish.grizzly.http.io.NIOInputStream requestInputStream
        start local 2 // java.lang.String encoding
         0: .line 74
            aload 0 /* this */
            aload 1 /* requestInputStream */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
         1: .line 75
            aload 0 /* this */
            aload 2 /* encoding */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.encoding:Ljava/lang/String;
         2: .line 76
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.getDecoder:()Ljava/nio/charset/CharsetDecoder;
            invokevirtual java.nio.charset.CharsetDecoder.averageCharsPerByte:()F
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.averageCharsPerByte:F
         3: .line 77
            return
        end local 2 // java.lang.String encoding
        end local 1 // org.glassfish.grizzly.http.io.NIOInputStream requestInputStream
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0    4     1  requestInputStream  Lorg/glassfish/grizzly/http/io/NIOInputStream;
            0    4     2            encoding  Ljava/lang/String;
    MethodParameters:
                    Name  Flags
      requestInputStream  final
      encoding            final

  public int read(java.nio.CharBuffer);
    descriptor: (Ljava/nio/CharBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
        start local 1 // java.nio.CharBuffer target
         0: .line 85
            aload 0 /* this */
            aload 1 /* target */
            invokevirtual java.nio.CharBuffer.capacity:()I
            aload 1 /* target */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.fillChar:(ILjava/nio/CharBuffer;)I
            istore 2 /* count */
        start local 2 // int count
         1: .line 86
            aload 1 /* target */
            invokevirtual java.nio.CharBuffer.flip:()Ljava/nio/Buffer;
            pop
         2: .line 87
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // java.nio.CharBuffer target
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0    3     1  target  Ljava/nio/CharBuffer;
            1    3     2   count  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      target  final

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
         0: .line 94
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isClosed:Z
            ifeq 2
         1: .line 95
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
         2: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.singleCharBuf:Ljava/nio/CharBuffer;
            iconst_0
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/Buffer;
            pop
         3: .line 99
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.singleCharBuf:Ljava/nio/CharBuffer;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.read:(Ljava/nio/CharBuffer;)I
            istore 1 /* read */
        start local 1 // int read
         4: .line 100
            iload 1 /* read */
            iconst_m1
            if_icmpne 6
         5: .line 101
            iconst_m1
            ireturn
         6: .line 103
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.singleCharBuf:Ljava/nio/CharBuffer;
            iconst_0
            invokevirtual java.nio.CharBuffer.get:(I)C
            istore 2 /* c */
        start local 2 // char c
         7: .line 105
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.singleCharBuf:Ljava/nio/CharBuffer;
            iconst_0
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/Buffer;
            pop
         8: .line 106
            iload 2 /* c */
            ireturn
        end local 2 // char c
        end local 1 // int read
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            4    9     1  read  I
            7    9     2     c  C
    Exceptions:
      throws java.io.IOException

  public int read(char[]);
    descriptor: ([C)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
        start local 1 // char[] cbuf
         0: .line 113
            aload 0 /* this */
            aload 1 /* cbuf */
            iconst_0
            aload 1 /* cbuf */
            arraylength
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.read:([CII)I
            ireturn
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0    1     1  cbuf  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  final

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 121
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isClosed:Z
            ifeq 2
         1: .line 122
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
         2: .line 125
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 4
         3: .line 126
            iconst_0
            ireturn
         4: .line 129
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokestatic java.nio.CharBuffer.wrap:([CII)Ljava/nio/CharBuffer;
            astore 4 /* buf */
        start local 4 // java.nio.CharBuffer buf
         5: .line 130
            aload 0 /* this */
            aload 4 /* buf */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.read:(Ljava/nio/CharBuffer;)I
            ireturn
        end local 4 // java.nio.CharBuffer buf
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0    6     1  cbuf  [C
            0    6     2   off  I
            0    6     3   len  I
            5    6     4   buf  Ljava/nio/CharBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  final
      off   final
      len   final

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
        start local 1 // long n
         0: .line 137
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isClosed:Z
            ifeq 2
         1: .line 138
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
         2: .line 142
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
            i2l
            lcmp
            ifle 4
         3: .line 143
            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 146
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 6
         5: .line 147
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         6: .line 149
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifne 8
         7: .line 150
            lconst_0
            lreturn
         8: .line 153
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            l2i
            invokestatic java.nio.CharBuffer.allocate:(I)Ljava/nio/CharBuffer;
            astore 3 /* skipBuffer */
        start local 3 // java.nio.CharBuffer skipBuffer
         9: .line 155
            aload 0 /* this */
            lload 1 /* n */
            l2i
            aload 3 /* skipBuffer */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.fillChar:(ILjava/nio/CharBuffer;)I
            iconst_m1
            if_icmpne 11
        10: .line 156
            lconst_0
            lreturn
        11: .line 158
      StackMap locals: java.nio.CharBuffer
      StackMap stack:
            aload 3 /* skipBuffer */
            invokevirtual java.nio.CharBuffer.position:()I
            i2l
            lload 1 /* n */
            invokestatic java.lang.Math.min:(JJ)J
            lreturn
        end local 3 // java.nio.CharBuffer skipBuffer
        end local 1 // long n
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0   12     1           n  J
            9   12     3  skipBuffer  Ljava/nio/CharBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     final

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
         0: .line 165
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isReady:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
    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.MultipartEntryNIOReader this
         0: .line 174
            iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;

  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.MultipartEntryNIOReader this
        start local 1 // int readAheadLimit
         0: .line 181
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
        end local 1 // int readAheadLimit
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0    1     1  readAheadLimit  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      readAheadLimit  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
         0: .line 188
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
    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.MultipartEntryNIOReader this
         0: .line 195
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isClosed:Z
         1: .line 196
            return
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
    Exceptions:
      throws java.io.IOException

  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.MultipartEntryNIOReader this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
         0: .line 205
            aload 0 /* this */
            aload 1 /* handler */
            iconst_1
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.notifyAvailable:(Lorg/glassfish/grizzly/ReadHandler;I)V
         1: .line 206
            return
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            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.MultipartEntryNIOReader this
        start local 1 // org.glassfish.grizzly.ReadHandler handler
        start local 2 // int size
         0: .line 214
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isClosed:Z
            ifne 1
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isFinished:()Z
            ifeq 15
         1: .line 216
      StackMap locals:
      StackMap stack:
            aload 1 /* handler */
            invokeinterface org.glassfish.grizzly.ReadHandler.onAllDataRead:()V
         2: .line 217
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Exception
         3: astore 3 /* ioe */
        start local 3 // java.lang.Exception ioe
         4: .line 219
            aload 1 /* handler */
            aload 3 /* ioe */
            invokeinterface org.glassfish.grizzly.ReadHandler.onError:(Ljava/lang/Throwable;)V
         5: .line 220
            goto 11
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader org.glassfish.grizzly.ReadHandler int java.lang.Exception
      StackMap stack: java.lang.Throwable
         6: astore 4
         7: .line 222
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
         8: .line 223
            goto 10
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader org.glassfish.grizzly.ReadHandler int java.lang.Exception java.lang.Throwable
      StackMap stack: java.io.IOException
         9: pop
        10: .line 225
      StackMap locals:
      StackMap stack:
            aload 4
            athrow
        11: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        12: .line 223
            goto 14
      StackMap locals:
      StackMap stack: java.io.IOException
        13: pop
        end local 3 // java.lang.Exception ioe
        14: .line 228
      StackMap locals:
      StackMap stack:
            return
        15: .line 231
      StackMap locals:
      StackMap stack:
            iload 2 /* size */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.readyData:()I
            invokestatic org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.shouldNotifyNow:(II)Z
            ifeq 30
        16: .line 233
            aload 1 /* handler */
            invokeinterface org.glassfish.grizzly.ReadHandler.onDataAvailable:()V
        17: .line 234
            goto 29
      StackMap locals:
      StackMap stack: java.lang.Exception
        18: astore 3 /* ioe */
        start local 3 // java.lang.Exception ioe
        19: .line 236
            aload 1 /* handler */
            aload 3 /* ioe */
            invokeinterface org.glassfish.grizzly.ReadHandler.onError:(Ljava/lang/Throwable;)V
        20: .line 237
            goto 26
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader org.glassfish.grizzly.ReadHandler int java.lang.Exception
      StackMap stack: java.lang.Throwable
        21: astore 4
        22: .line 239
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        23: .line 240
            goto 25
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader org.glassfish.grizzly.ReadHandler int java.lang.Exception java.lang.Throwable
      StackMap stack: java.io.IOException
        24: pop
        25: .line 242
      StackMap locals:
      StackMap stack:
            aload 4
            athrow
        26: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.close:()V
        27: .line 240
            goto 29
      StackMap locals:
      StackMap stack: java.io.IOException
        28: pop
        end local 3 // java.lang.Exception ioe
        29: .line 244
      StackMap locals:
      StackMap stack:
            return
        30: .line 247
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestedSize:I
        31: .line 248
            aload 0 /* this */
            aload 1 /* handler */
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.handler:Lorg/glassfish/grizzly/ReadHandler;
        32: .line 249
            return
        end local 2 // int size
        end local 1 // org.glassfish.grizzly.ReadHandler handler
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   33     0     this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            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.MultipartEntryNIOReader this
         0: .line 256
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.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.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;

  public int readyData();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
         0: .line 264
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
            i2f
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.averageCharsPerByte:F
            fmul
            f2i
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;

  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.MultipartEntryNIOReader this
         0: .line 272
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.readyData:()I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;

  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.MultipartEntryNIOReader this
         0: .line 276
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
         1: .line 277
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.decoder:Ljava/nio/charset/CharsetDecoder;
         2: .line 278
            aload 0 /* this */
            fconst_1
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.averageCharsPerByte:F
         3: .line 279
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.encoding:Ljava/lang/String;
         4: .line 280
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.handler:Lorg/glassfish/grizzly/ReadHandler;
         5: .line 281
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isClosed:Z
         6: .line 282
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestedSize:I
         7: .line 283
            return
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;

  void onDataCame();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
         0: .line 289
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.handler:Lorg/glassfish/grizzly/ReadHandler;
            ifnonnull 1
            return
         1: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.isFinished:()Z
            ifeq 4
         2: .line 293
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.handler:Lorg/glassfish/grizzly/ReadHandler;
            invokeinterface org.glassfish.grizzly.ReadHandler.onAllDataRead:()V
         3: .line 294
            goto 18
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestedSize:I
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.readyData:()I
            invokestatic org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.shouldNotifyNow:(II)Z
            ifeq 18
         5: .line 295
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.handler:Lorg/glassfish/grizzly/ReadHandler;
            invokeinterface org.glassfish.grizzly.ReadHandler.onDataAvailable:()V
         6: .line 297
            goto 18
      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.MultipartEntryNIOReader.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.MultipartEntryNIOReader java.lang.Exception
      StackMap stack: java.lang.Throwable
        10: astore 2
        11: .line 302
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream: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.MultipartEntryNIOReader 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.MultipartEntryNIOReader.requestNIOInputStream: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
        end local 1 // java.lang.Exception e
        18: .line 307
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            8   18     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

  private int fillChar(int, java.nio.CharBuffer);
    descriptor: (ILjava/nio/CharBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
        start local 1 // int requestedLen
        start local 2 // java.nio.CharBuffer dst
         0: .line 322
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.position:()I
            istore 3 /* charPos */
        start local 3 // int charPos
         1: .line 323
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.getBuffer:()Lorg/glassfish/grizzly/Buffer;
            invokeinterface org.glassfish.grizzly.Buffer.toByteBuffer:()Ljava/nio/ByteBuffer;
            astore 4 /* bb */
        start local 4 // java.nio.ByteBuffer bb
         2: .line 324
            aload 4 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* bbPos */
        start local 5 // int bbPos
         3: .line 325
            aload 4 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 6 /* bbLim */
        start local 6 // int bbLim
         4: .line 326
            aload 4 /* bb */
            iload 5 /* bbPos */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
         5: .line 327
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.getDecoder:()Ljava/nio/charset/CharsetDecoder;
            aload 4 /* bb */
            aload 2 /* dst */
            iconst_0
            invokevirtual java.nio.charset.CharsetDecoder.decode:(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;Z)Ljava/nio/charset/CoderResult;
            pop
         6: .line 329
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.position:()I
            iload 3 /* charPos */
            isub
            istore 7 /* readChars */
        start local 7 // int readChars
         7: .line 330
            aload 4 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 5 /* bbPos */
            isub
            istore 8 /* readBytes */
        start local 8 // int readBytes
         8: .line 331
            aload 4 /* bb */
            iload 5 /* bbPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         9: .line 332
            aload 4 /* bb */
            iload 6 /* bbLim */
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        10: .line 334
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.requestNIOInputStream:Lorg/glassfish/grizzly/http/io/NIOInputStream;
            iload 8 /* readBytes */
            i2l
            invokevirtual org.glassfish.grizzly.http.io.NIOInputStream.skip:(J)J
            pop2
        11: .line 335
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            iload 8 /* readBytes */
            ineg
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.addAvailableBytes:(I)V
        12: .line 337
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.multipartEntry:Lorg/glassfish/grizzly/http/multipart/MultipartEntry;
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntry.availableBytes:()I
            ifle 14
            iload 7 /* readChars */
            iload 1 /* requestedLen */
            if_icmpge 14
        13: .line 338
            iload 7 /* readChars */
            aload 0 /* this */
            iconst_0
            aload 2 /* dst */
            invokevirtual org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.fillChar:(ILjava/nio/CharBuffer;)I
            iadd
            istore 7 /* readChars */
        14: .line 341
      StackMap locals: org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader int java.nio.CharBuffer int java.nio.ByteBuffer int int int int
      StackMap stack:
            iload 7 /* readChars */
            ireturn
        end local 8 // int readBytes
        end local 7 // int readChars
        end local 6 // int bbLim
        end local 5 // int bbPos
        end local 4 // java.nio.ByteBuffer bb
        end local 3 // int charPos
        end local 2 // java.nio.CharBuffer dst
        end local 1 // int requestedLen
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            0   15     1  requestedLen  I
            0   15     2           dst  Ljava/nio/CharBuffer;
            1   15     3       charPos  I
            2   15     4            bb  Ljava/nio/ByteBuffer;
            3   15     5         bbPos  I
            4   15     6         bbLim  I
            7   15     7     readChars  I
            8   15     8     readBytes  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      requestedLen  final
      dst           final

  private java.nio.charset.CharsetDecoder getDecoder();
    descriptor: ()Ljava/nio/charset/CharsetDecoder;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
         0: .line 350
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.decoder:Ljava/nio/charset/CharsetDecoder;
            ifnonnull 5
         1: .line 351
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.encoding:Ljava/lang/String;
            invokestatic org.glassfish.grizzly.utils.Charsets.lookupCharset:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            astore 1 /* cs */
        start local 1 // java.nio.charset.Charset cs
         2: .line 352
            aload 0 /* this */
            aload 1 /* cs */
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
            putfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.decoder:Ljava/nio/charset/CharsetDecoder;
         3: .line 353
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.decoder:Ljava/nio/charset/CharsetDecoder;
            getstatic java.nio.charset.CodingErrorAction.REPLACE:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onMalformedInput:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
            pop
         4: .line 354
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.decoder:Ljava/nio/charset/CharsetDecoder;
            getstatic java.nio.charset.CodingErrorAction.REPLACE:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onUnmappableCharacter:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
            pop
        end local 1 // java.nio.charset.Charset cs
         5: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader.decoder:Ljava/nio/charset/CharsetDecoder;
            areturn
        end local 0 // org.glassfish.grizzly.http.multipart.MultipartEntryNIOReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/http/multipart/MultipartEntryNIOReader;
            2    5     1    cs  Ljava/nio/charset/Charset;

  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 372
            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: "MultipartEntryNIOReader.java"