public class sun.net.www.http.KeepAliveStream extends sun.net.www.MeteredStream implements sun.net.www.http.Hurryable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.net.www.http.KeepAliveStream
  super_class: sun.net.www.MeteredStream
{
  sun.net.www.http.HttpClient hc;
    descriptor: Lsun/net/www/http/HttpClient;
    flags: (0x0000) 

  boolean hurried;
    descriptor: Z
    flags: (0x0000) 

  protected boolean queuedForCleanup;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  private static final sun.net.www.http.KeepAliveStreamCleaner queue;
    descriptor: Lsun/net/www/http/KeepAliveStreamCleaner;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static java.lang.Thread cleanerThread;
    descriptor: Ljava/lang/Thread;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 52
            new sun.net.www.http.KeepAliveStreamCleaner
            dup
            invokespecial sun.net.www.http.KeepAliveStreamCleaner.<init>:()V
            putstatic sun.net.www.http.KeepAliveStream.queue:Lsun/net/www/http/KeepAliveStreamCleaner;
         1: .line 53
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.io.InputStream, sun.net.ProgressSource, long, sun.net.www.http.HttpClient);
    descriptor: (Ljava/io/InputStream;Lsun/net/ProgressSource;JLsun/net/www/http/HttpClient;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // sun.net.www.http.KeepAliveStream this
        start local 1 // java.io.InputStream is
        start local 2 // sun.net.ProgressSource pi
        start local 3 // long expected
        start local 5 // sun.net.www.http.HttpClient hc
         0: .line 59
            aload 0 /* this */
            aload 1 /* is */
            aload 2 /* pi */
            lload 3 /* expected */
            invokespecial sun.net.www.MeteredStream.<init>:(Ljava/io/InputStream;Lsun/net/ProgressSource;J)V
         1: .line 50
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
         2: .line 60
            aload 0 /* this */
            aload 5 /* hc */
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
         3: .line 61
            return
        end local 5 // sun.net.www.http.HttpClient hc
        end local 3 // long expected
        end local 2 // sun.net.ProgressSource pi
        end local 1 // java.io.InputStream is
        end local 0 // sun.net.www.http.KeepAliveStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lsun/net/www/http/KeepAliveStream;
            0    4     1        is  Ljava/io/InputStream;
            0    4     2        pi  Lsun/net/ProgressSource;
            0    4     3  expected  J
            0    4     5        hc  Lsun/net/www/http/HttpClient;
    MethodParameters:
          Name  Flags
      is        
      pi        
      expected  
      hc        

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // sun.net.www.http.KeepAliveStream this
         0: .line 68
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.closed:Z
            ifeq 2
         1: .line 69
            return
         2: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifeq 4
         3: .line 74
            return
         4: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.count:J
            lcmp
            ifle 15
         5: .line 86
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.count:J
            lsub
            lstore 1 /* nskip */
        start local 1 // long nskip
         6: .line 87
            lload 1 /* nskip */
            aload 0 /* this */
            invokevirtual sun.net.www.http.KeepAliveStream.available:()I
            i2l
            lcmp
            ifgt 11
         7: .line 88
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.count:J
            lsub
            dup2
            lstore 1 /* nskip */
            lconst_0
            lcmp
            ifle 15
         8: .line 89
            aload 0 /* this */
            lload 1 /* nskip */
            aload 0 /* this */
            invokevirtual sun.net.www.http.KeepAliveStream.available:()I
            i2l
            invokestatic java.lang.Math.min:(JJ)J
            invokevirtual sun.net.www.http.KeepAliveStream.skip:(J)J
            lconst_0
         9: .line 88
            lcmp
            ifgt 7
        10: .line 90
            goto 15
      StackMap locals:
      StackMap stack:
        11: aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            getstatic sun.net.www.http.KeepAliveStreamCleaner.MAX_DATA_REMAINING:I
            i2l
            lcmp
            ifgt 14
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hurried:Z
            ifne 14
        12: .line 93
            new sun.net.www.http.KeepAliveCleanerEntry
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
            invokespecial sun.net.www.http.KeepAliveCleanerEntry.<init>:(Lsun/net/www/http/KeepAliveStream;Lsun/net/www/http/HttpClient;)V
            invokestatic sun.net.www.http.KeepAliveStream.queueForCleanup:(Lsun/net/www/http/KeepAliveCleanerEntry;)V
        13: .line 94
            goto 15
        14: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
            invokevirtual sun.net.www.http.HttpClient.closeServer:()V
        end local 1 // long nskip
        15: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.closed:Z
            ifne 26
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hurried:Z
            ifne 26
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifne 26
        16: .line 99
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
            invokevirtual sun.net.www.http.HttpClient.finished:()V
        17: .line 101
            goto 26
      StackMap locals:
      StackMap stack: java.lang.Throwable
        18: astore 3
        19: .line 102
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            ifnull 21
        20: .line 103
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            invokevirtual sun.net.ProgressSource.finishTracking:()V
        21: .line 105
      StackMap locals: sun.net.www.http.KeepAliveStream top top java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifne 25
        22: .line 108
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
        23: .line 109
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
        24: .line 110
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.closed:Z
        25: .line 112
      StackMap locals:
      StackMap stack:
            aload 3
            athrow
        26: .line 102
      StackMap locals: sun.net.www.http.KeepAliveStream
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            ifnull 28
        27: .line 103
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            invokevirtual sun.net.ProgressSource.finishTracking:()V
        28: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifne 32
        29: .line 108
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
        30: .line 109
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
        31: .line 110
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.closed:Z
        32: .line 113
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.http.KeepAliveStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   33     0   this  Lsun/net/www/http/KeepAliveStream;
            6   15     1  nskip  J
      Exception table:
        from    to  target  type
           4    18      18  any
    Exceptions:
      throws java.io.IOException

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

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

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

  public synchronized boolean hurry();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // sun.net.www.http.KeepAliveStream this
         0: .line 130
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.closed:Z
            ifne 1
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.count:J
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            lcmp
            iflt 2
         1: .line 131
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.available:()I
            i2l
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.count:J
            lsub
            lcmp
            ifge 4
         3: .line 134
            iconst_0
            ireturn
         4: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.count:J
            lsub
            l2i
            istore 1 /* size */
        start local 1 // int size
         5: .line 140
            iload 1 /* size */
            newarray 8
            astore 2 /* buf */
        start local 2 // byte[] buf
         6: .line 141
            new java.io.DataInputStream
            dup
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
            invokespecial java.io.DataInputStream.<init>:(Ljava/io/InputStream;)V
            astore 3 /* dis */
        start local 3 // java.io.DataInputStream dis
         7: .line 142
            aload 3 /* dis */
            aload 2 /* buf */
            invokevirtual java.io.DataInputStream.readFully:([B)V
         8: .line 143
            aload 0 /* this */
            new java.io.ByteArrayInputStream
            dup
            aload 2 /* buf */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            putfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
         9: .line 144
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.hurried:Z
        10: .line 145
            iconst_1
            ireturn
        end local 3 // java.io.DataInputStream dis
        end local 2 // byte[] buf
        end local 1 // int size
        11: .line 147
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
        12: .line 149
            iconst_0
            ireturn
        end local 0 // sun.net.www.http.KeepAliveStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lsun/net/www/http/KeepAliveStream;
            5   11     1  size  I
            6   11     2   buf  [B
            7   11     3   dis  Ljava/io/DataInputStream;
      Exception table:
        from    to  target  type
           0     1      11  Class java.io.IOException
           2     3      11  Class java.io.IOException
           4    10      11  Class java.io.IOException

  private static void queueForCleanup(sun.net.www.http.KeepAliveCleanerEntry);
    descriptor: (Lsun/net/www/http/KeepAliveCleanerEntry;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.net.www.http.KeepAliveCleanerEntry kace
         0: .line 154
            getstatic sun.net.www.http.KeepAliveStream.queue:Lsun/net/www/http/KeepAliveStreamCleaner;
            dup
            astore 1
            monitorenter
         1: .line 155
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveCleanerEntry.getQueuedForCleanup:()Z
            ifne 8
         2: .line 156
            getstatic sun.net.www.http.KeepAliveStream.queue:Lsun/net/www/http/KeepAliveStreamCleaner;
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveStreamCleaner.offer:(Lsun/net/www/http/KeepAliveCleanerEntry;)Z
            ifne 6
         3: .line 157
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveCleanerEntry.getHttpClient:()Lsun/net/www/http/HttpClient;
            invokevirtual sun.net.www.http.HttpClient.closeServer:()V
         4: .line 158
            aload 1
            monitorexit
         5: return
         6: .line 161
      StackMap locals: sun.net.www.http.KeepAliveStreamCleaner
      StackMap stack:
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveCleanerEntry.setQueuedForCleanup:()V
         7: .line 162
            getstatic sun.net.www.http.KeepAliveStream.queue:Lsun/net/www/http/KeepAliveStreamCleaner;
            invokevirtual java.lang.Object.notifyAll:()V
         8: .line 165
      StackMap locals:
      StackMap stack:
            getstatic sun.net.www.http.KeepAliveStream.cleanerThread:Ljava/lang/Thread;
            ifnonnull 9
            iconst_1
            goto 10
      StackMap locals:
      StackMap stack:
         9: iconst_0
      StackMap locals:
      StackMap stack: int
        10: istore 2 /* startCleanupThread */
        start local 2 // boolean startCleanupThread
        11: .line 166
            iload 2 /* startCleanupThread */
            ifne 14
        12: .line 167
            getstatic sun.net.www.http.KeepAliveStream.cleanerThread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.isAlive:()Z
            ifne 14
        13: .line 168
            iconst_1
            istore 2 /* startCleanupThread */
        14: .line 172
      StackMap locals: int
      StackMap stack:
            iload 2 /* startCleanupThread */
            ifeq 17
        15: .line 174
            new sun.net.www.http.KeepAliveStream$1
            dup
            invokespecial sun.net.www.http.KeepAliveStream$1.<init>:()V
        16: .line 173
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            pop
        end local 2 // boolean startCleanupThread
        17: .line 154
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
        18: goto 21
      StackMap locals:
      StackMap stack: java.lang.Throwable
        19: aload 1
            monitorexit
        20: athrow
        21: .line 185
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.http.KeepAliveCleanerEntry kace
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   22     0                kace  Lsun/net/www/http/KeepAliveCleanerEntry;
           11   17     2  startCleanupThread  Z
      Exception table:
        from    to  target  type
           1     5      19  any
           6    18      19  any
          19    20      19  any
    MethodParameters:
      Name  Flags
      kace  

  protected long remainingToRead();
    descriptor: ()J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.net.www.http.KeepAliveStream this
         0: .line 188
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.count:J
            lsub
            lreturn
        end local 0 // sun.net.www.http.KeepAliveStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/http/KeepAliveStream;

  protected void setClosed();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.http.KeepAliveStream this
         0: .line 192
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
         1: .line 193
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
         2: .line 194
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.closed:Z
         3: .line 195
            return
        end local 0 // sun.net.www.http.KeepAliveStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/net/www/http/KeepAliveStream;
}
SourceFile: "KeepAliveStream.java"
NestMembers:
  sun.net.www.http.KeepAliveStream$1
InnerClasses:
  sun.net.www.http.KeepAliveStream$1