public class org.glassfish.grizzly.servlet.ServletReaderImpl extends java.io.BufferedReader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.servlet.ServletReaderImpl
  super_class: java.io.BufferedReader
{
  private static final char[] LINE_SEP;
    descriptor: [C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int MAX_LINE_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4096

  protected java.io.Reader ib;
    descriptor: Ljava/io/Reader;
    flags: (0x0004) ACC_PROTECTED

  protected char[] lineBuffer;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 32
            ldc Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.glassfish.grizzly.servlet.ServletReaderImpl.$assertionsDisabled:Z
         3: .line 39
            iconst_2
            newarray 5
            dup
            iconst_0
            bipush 13
            castore
            dup
            iconst_1
            bipush 10
            castore
            putstatic org.glassfish.grizzly.servlet.ServletReaderImpl.LINE_SEP:[C
         4: .line 40
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
        start local 1 // java.io.Reader ib
         0: .line 55
            aload 0 /* this */
            aload 1 /* ib */
            iconst_1
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;I)V
         1: .line 48
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
         2: .line 56
            aload 0 /* this */
            aload 1 /* ib */
            putfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
         3: .line 57
            return
        end local 1 // java.io.Reader ib
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
            0    4     1    ib  Ljava/io/Reader;
    MethodParameters:
      Name  Flags
      ib    

  protected java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
         0: .line 68
            new java.lang.CloneNotSupportedException
            dup
            invokespecial java.lang.CloneNotSupportedException.<init>:()V
            athrow
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
    Exceptions:
      throws java.lang.CloneNotSupportedException

  void clear();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
         0: .line 79
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
         1: .line 80
            return
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
         0: .line 89
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            invokevirtual java.io.Reader.close:()V
         1: .line 90
            return
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
         0: .line 96
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            invokevirtual java.io.Reader.read:()I
            ireturn
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
    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.servlet.ServletReaderImpl this
        start local 1 // char[] cbuf
         0: .line 103
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            aload 1 /* cbuf */
            iconst_0
            aload 1 /* cbuf */
            arraylength
            invokevirtual java.io.Reader.read:([CII)I
            ireturn
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
            0    1     1  cbuf  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 110
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.Reader.read:([CII)I
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
            0    1     1  cbuf  [C
            0    1     2   off  I
            0    1     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
        start local 1 // long n
         0: .line 117
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            lload 1 /* n */
            invokevirtual java.io.Reader.skip:(J)J
            lreturn
        end local 1 // long n
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
            0    1     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
         0: .line 124
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            invokevirtual java.io.Reader.ready:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
    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.servlet.ServletReaderImpl this
         0: .line 130
            iconst_1
            ireturn
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;

  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.servlet.ServletReaderImpl this
        start local 1 // int readAheadLimit
         0: .line 137
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            iload 1 /* readAheadLimit */
            invokevirtual java.io.Reader.mark:(I)V
         1: .line 138
            return
        end local 1 // int readAheadLimit
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
            0    2     1  readAheadLimit  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      readAheadLimit  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
         0: .line 144
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.ib:Ljava/io/Reader;
            invokevirtual java.io.Reader.reset:()V
         1: .line 145
            return
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
    Exceptions:
      throws java.io.IOException

  public java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=1
        start local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
         0: .line 152
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            ifnonnull 2
         1: .line 153
            aload 0 /* this */
            sipush 4096
            newarray 5
            putfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
         2: .line 158
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* pos */
        start local 2 // int pos
         3: .line 159
            iconst_m1
            istore 3 /* end */
        start local 3 // int end
         4: .line 160
            iconst_m1
            istore 4 /* skip */
        start local 4 // int skip
         5: .line 161
            aconst_null
            astore 5 /* aggregator */
        start local 5 // java.lang.StringBuilder aggregator
         6: .line 162
            goto 44
         7: .line 163
      StackMap locals: org.glassfish.grizzly.servlet.ServletReaderImpl top int int int java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            sipush 4096
            invokevirtual org.glassfish.grizzly.servlet.ServletReaderImpl.mark:(I)V
         8: .line 164
            goto 34
         9: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            iload 2 /* pos */
            sipush 4096
            iload 2 /* pos */
            isub
            invokevirtual org.glassfish.grizzly.servlet.ServletReaderImpl.read:([CII)I
            istore 6 /* nRead */
        start local 6 // int nRead
        10: .line 166
            iload 6 /* nRead */
            ifge 15
        11: .line 167
            iload 2 /* pos */
            ifne 13
            aload 5 /* aggregator */
            ifnonnull 13
        12: .line 168
            aconst_null
            areturn
        13: .line 170
      StackMap locals: int
      StackMap stack:
            iload 2 /* pos */
            istore 3 /* end */
        14: .line 171
            iload 2 /* pos */
            istore 4 /* skip */
        15: .line 173
      StackMap locals:
      StackMap stack:
            iload 2 /* pos */
            istore 7 /* i */
        start local 7 // int i
        16: goto 31
        17: .line 174
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            iload 7 /* i */
            caload
            getstatic org.glassfish.grizzly.servlet.ServletReaderImpl.LINE_SEP:[C
            iconst_0
            caload
            if_icmpne 27
        18: .line 175
            iload 7 /* i */
            istore 3 /* end */
        19: .line 176
            iload 7 /* i */
            iconst_1
            iadd
            istore 4 /* skip */
        20: .line 178
            iload 7 /* i */
            iload 2 /* pos */
            iload 6 /* nRead */
            iadd
            iconst_1
            isub
            if_icmpne 23
        21: .line 179
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.servlet.ServletReaderImpl.read:()I
            i2c
            istore 8 /* nextchar */
        start local 8 // char nextchar
        22: .line 180
            goto 24
        end local 8 // char nextchar
        23: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            iload 7 /* i */
            iconst_1
            iadd
            caload
            istore 8 /* nextchar */
        start local 8 // char nextchar
        24: .line 183
      StackMap locals: int
      StackMap stack:
            iload 8 /* nextchar */
            getstatic org.glassfish.grizzly.servlet.ServletReaderImpl.LINE_SEP:[C
            iconst_1
            caload
            if_icmpne 30
        25: .line 184
            iinc 4 /* skip */ 1
        end local 8 // char nextchar
        26: .line 186
            goto 30
      StackMap locals:
      StackMap stack:
        27: aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            iload 7 /* i */
            caload
            getstatic org.glassfish.grizzly.servlet.ServletReaderImpl.LINE_SEP:[C
            iconst_1
            caload
            if_icmpne 30
        28: .line 187
            iload 7 /* i */
            istore 3 /* end */
        29: .line 188
            iload 7 /* i */
            iconst_1
            iadd
            istore 4 /* skip */
        30: .line 173
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        31: iload 7 /* i */
            iload 2 /* pos */
            iload 6 /* nRead */
            iadd
            if_icmpge 32
            iload 3 /* end */
            iflt 17
        end local 7 // int i
        32: .line 191
      StackMap locals:
      StackMap stack:
            iload 6 /* nRead */
            ifle 34
        33: .line 192
            iload 2 /* pos */
            iload 6 /* nRead */
            iadd
            istore 2 /* pos */
        end local 6 // int nRead
        34: .line 164
      StackMap locals:
      StackMap stack:
            iload 2 /* pos */
            sipush 4096
            if_icmpge 35
            iload 3 /* end */
            iflt 9
        35: .line 195
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            ifge 41
        36: .line 196
            aload 5 /* aggregator */
            ifnonnull 38
        37: .line 197
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 5 /* aggregator */
        38: .line 199
      StackMap locals:
      StackMap stack:
            aload 5 /* aggregator */
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            invokevirtual java.lang.StringBuilder.append:([C)Ljava/lang/StringBuilder;
            pop
        39: .line 200
            iconst_0
            istore 2 /* pos */
        40: .line 201
            goto 44
        41: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.servlet.ServletReaderImpl.reset:()V
        42: .line 203
            aload 0 /* this */
            iload 4 /* skip */
            i2l
            invokevirtual org.glassfish.grizzly.servlet.ServletReaderImpl.skip:(J)J
            lstore 6 /* skipped */
        start local 6 // long skipped
        43: .line 204
            getstatic org.glassfish.grizzly.servlet.ServletReaderImpl.$assertionsDisabled:Z
            ifne 44
            iload 4 /* skip */
            i2l
            lload 6 /* skipped */
            lcmp
            ifeq 44
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 6 // long skipped
        44: .line 162
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iflt 7
        45: .line 208
            aload 5 /* aggregator */
            ifnonnull 48
        46: .line 209
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            iconst_0
            iload 3 /* end */
            invokespecial java.lang.String.<init>:([CII)V
            astore 1 /* result */
        start local 1 // java.lang.String result
        47: .line 210
            goto 50
        end local 1 // java.lang.String result
        48: .line 211
      StackMap locals:
      StackMap stack:
            aload 5 /* aggregator */
            aload 0 /* this */
            getfield org.glassfish.grizzly.servlet.ServletReaderImpl.lineBuffer:[C
            iconst_0
            iload 3 /* end */
            invokevirtual java.lang.StringBuilder.append:([CII)Ljava/lang/StringBuilder;
            pop
        49: .line 212
            aload 5 /* aggregator */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 1 /* result */
        start local 1 // java.lang.String result
        50: .line 215
      StackMap locals: org.glassfish.grizzly.servlet.ServletReaderImpl java.lang.String int int int java.lang.StringBuilder
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 5 // java.lang.StringBuilder aggregator
        end local 4 // int skip
        end local 3 // int end
        end local 2 // int pos
        end local 1 // java.lang.String result
        end local 0 // org.glassfish.grizzly.servlet.ServletReaderImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   51     0        this  Lorg/glassfish/grizzly/servlet/ServletReaderImpl;
           47   48     1      result  Ljava/lang/String;
           50   51     1      result  Ljava/lang/String;
            3   51     2         pos  I
            4   51     3         end  I
            5   51     4        skip  I
            6   51     5  aggregator  Ljava/lang/StringBuilder;
           10   34     6       nRead  I
           16   32     7           i  I
           22   23     8    nextchar  C
           24   26     8    nextchar  C
           43   44     6     skipped  J
    Exceptions:
      throws java.io.IOException
}
SourceFile: "ServletReaderImpl.java"