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 sun.net.www.http.KeepAliveStreamCleaner queue;
    descriptor: Lsun/net/www/http/KeepAliveStreamCleaner;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

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

  private static boolean startCleanupThread;
    descriptor: Z
    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 53
            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 54
            aconst_null
            putstatic sun.net.www.http.KeepAliveStream.cleanerThread:Ljava/lang/Thread;
         2: .line 55
            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 61
            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 51
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
         2: .line 62
            aload 0 /* this */
            aload 5 /* hc */
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
         3: .line 63
            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=4, locals=6, args_size=1
        start local 0 // sun.net.www.http.KeepAliveStream this
         0: .line 70
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.closed:Z
            ifeq 2
         1: .line 71
            return
         2: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifeq 4
         3: .line 76
            return
         4: .line 87
      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 17
         5: .line 88
            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 89
            lload 1 /* nskip */
            aload 0 /* this */
            invokevirtual sun.net.www.http.KeepAliveStream.available:()I
            i2l
            lcmp
            ifgt 13
         7: .line 90
            lconst_0
            lstore 3 /* n */
        start local 3 // long n
         8: .line 91
            goto 11
         9: .line 92
      StackMap locals: long long
      StackMap stack:
            lload 1 /* nskip */
            lload 3 /* n */
            lsub
            lstore 1 /* nskip */
        10: .line 93
            aload 0 /* this */
            lload 1 /* nskip */
            invokevirtual sun.net.www.http.KeepAliveStream.skip:(J)J
            lstore 3 /* n */
        11: .line 91
      StackMap locals:
      StackMap stack:
            lload 3 /* n */
            lload 1 /* nskip */
            lcmp
            iflt 9
        end local 3 // long n
        12: .line 95
            goto 17
      StackMap locals:
      StackMap stack:
        13: aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.expected:J
            getstatic sun.net.www.http.KeepAliveStreamCleaner.MAX_DATA_REMAINING:I
            i2l
            lcmp
            ifgt 16
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hurried:Z
            ifne 16
        14: .line 98
            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
        15: .line 99
            goto 17
        16: .line 100
      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
        17: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.closed:Z
            ifne 28
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hurried:Z
            ifne 28
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifne 28
        18: .line 104
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
            invokevirtual sun.net.www.http.HttpClient.finished:()V
        19: .line 106
            goto 28
      StackMap locals:
      StackMap stack: java.lang.Throwable
        20: astore 5
        21: .line 107
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            ifnull 23
        22: .line 108
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            invokevirtual sun.net.ProgressSource.finishTracking:()V
        23: .line 110
      StackMap locals: sun.net.www.http.KeepAliveStream top top top top java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifne 27
        24: .line 113
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
        25: .line 114
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
        26: .line 115
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.closed:Z
        27: .line 117
      StackMap locals:
      StackMap stack:
            aload 5
            athrow
        28: .line 107
      StackMap locals: sun.net.www.http.KeepAliveStream
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            ifnull 30
        29: .line 108
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.pi:Lsun/net/ProgressSource;
            invokevirtual sun.net.ProgressSource.finishTracking:()V
        30: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.KeepAliveStream.queuedForCleanup:Z
            ifne 34
        31: .line 113
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
        32: .line 114
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
        33: .line 115
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.closed:Z
        34: .line 118
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.http.KeepAliveStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   35     0   this  Lsun/net/www/http/KeepAliveStream;
            6   17     1  nskip  J
            8   12     3      n  J
      Exception table:
        from    to  target  type
           4    20      20  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 123
            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 126
            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 129
            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 135
            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 136
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 137
      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 139
            iconst_0
            ireturn
         4: .line 144
      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 145
            iload 1 /* size */
            newarray 8
            astore 2 /* buf */
        start local 2 // byte[] buf
         6: .line 146
            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 147
            aload 3 /* dis */
            aload 2 /* buf */
            invokevirtual java.io.DataInputStream.readFully:([B)V
         8: .line 148
            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 149
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.hurried:Z
        10: .line 150
            iconst_1
            ireturn
        end local 3 // java.io.DataInputStream dis
        end local 2 // byte[] buf
        end local 1 // int size
        11: .line 152
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
        12: .line 154
            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 synchronized void queueForCleanup(sun.net.www.http.KeepAliveCleanerEntry);
    descriptor: (Lsun/net/www/http/KeepAliveCleanerEntry;)V
    flags: (0x002a) ACC_PRIVATE, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.http.KeepAliveCleanerEntry kace
         0: .line 159
            getstatic sun.net.www.http.KeepAliveStream.queue:Lsun/net/www/http/KeepAliveStreamCleaner;
            ifnull 5
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveCleanerEntry.getQueuedForCleanup:()Z
            ifne 5
         1: .line 160
            getstatic sun.net.www.http.KeepAliveStream.queue:Lsun/net/www/http/KeepAliveStreamCleaner;
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveStreamCleaner.offer:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 161
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveCleanerEntry.getHttpClient:()Lsun/net/www/http/HttpClient;
            invokevirtual sun.net.www.http.HttpClient.closeServer:()V
         3: .line 162
            return
         4: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* kace */
            invokevirtual sun.net.www.http.KeepAliveCleanerEntry.setQueuedForCleanup:()V
         5: .line 168
      StackMap locals:
      StackMap stack:
            getstatic sun.net.www.http.KeepAliveStream.cleanerThread:Ljava/lang/Thread;
            ifnonnull 6
            iconst_1
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: putstatic sun.net.www.http.KeepAliveStream.startCleanupThread:Z
         8: .line 169
            getstatic sun.net.www.http.KeepAliveStream.startCleanupThread:Z
            ifne 11
         9: .line 170
            getstatic sun.net.www.http.KeepAliveStream.cleanerThread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.isAlive:()Z
            ifne 11
        10: .line 171
            iconst_1
            putstatic sun.net.www.http.KeepAliveStream.startCleanupThread:Z
        11: .line 175
      StackMap locals:
      StackMap stack:
            getstatic sun.net.www.http.KeepAliveStream.startCleanupThread:Z
            ifeq 14
        12: .line 177
            new sun.net.www.http.KeepAliveStream$1
            dup
            invokespecial sun.net.www.http.KeepAliveStream$1.<init>:()V
        13: .line 176
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            pop
        14: .line 195
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.http.KeepAliveCleanerEntry kace
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  kace  Lsun/net/www/http/KeepAliveCleanerEntry;
    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 198
            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 202
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.in:Ljava/io/InputStream;
         1: .line 203
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.KeepAliveStream.hc:Lsun/net/www/http/HttpClient;
         2: .line 204
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.KeepAliveStream.closed:Z
         3: .line 205
            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