public abstract class jdk.internal.loader.Resource
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: jdk.internal.loader.Resource
  super_class: java.lang.Object
{
  private java.io.InputStream cis;
    descriptor: Ljava/io/InputStream;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.loader.Resource this
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // jdk.internal.loader.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/loader/Resource;

  public abstract java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.net.URL getURL();
    descriptor: ()Ljava/net/URL;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.net.URL getCodeSourceURL();
    descriptor: ()Ljava/net/URL;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.io.InputStream getInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract int getContentLength();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  private synchronized java.io.InputStream cachedInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.loader.Resource this
         0: .line 76
            aload 0 /* this */
            getfield jdk.internal.loader.Resource.cis:Ljava/io/InputStream;
            ifnonnull 2
         1: .line 77
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual jdk.internal.loader.Resource.getInputStream:()Ljava/io/InputStream;
            putfield jdk.internal.loader.Resource.cis:Ljava/io/InputStream;
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.loader.Resource.cis:Ljava/io/InputStream;
            areturn
        end local 0 // jdk.internal.loader.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/loader/Resource;
    Exceptions:
      throws java.io.IOException

  public byte[] getBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // jdk.internal.loader.Resource this
         0: .line 89
            aload 0 /* this */
            invokevirtual jdk.internal.loader.Resource.cachedInputStream:()Ljava/io/InputStream;
            astore 2 /* in */
        start local 2 // java.io.InputStream in
         1: .line 96
            invokestatic java.lang.Thread.interrupted:()Z
            istore 3 /* isInterrupted */
        start local 3 // boolean isInterrupted
         2: .line 100
      StackMap locals: jdk.internal.loader.Resource top java.io.InputStream int
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.internal.loader.Resource.getContentLength:()I
            istore 4 /* len */
        start local 4 // int len
         3: .line 101
            goto 8
        end local 4 // int len
         4: .line 102
      StackMap locals:
      StackMap stack: java.io.InterruptedIOException
            pop
         5: .line 103
            invokestatic java.lang.Thread.interrupted:()Z
            pop
         6: .line 104
            iconst_1
            istore 3 /* isInterrupted */
         7: .line 98
            goto 2
        start local 4 // int len
         8: .line 109
      StackMap locals: int
      StackMap stack:
            iconst_0
            newarray 8
            astore 1 /* b */
        start local 1 // byte[] b
         9: .line 110
            iload 4 /* len */
            iconst_m1
            if_icmpne 10
            ldc 2147483647
            istore 4 /* len */
        10: .line 111
      StackMap locals: jdk.internal.loader.Resource byte[] java.io.InputStream int int
      StackMap stack:
            iconst_0
            istore 5 /* pos */
        start local 5 // int pos
        11: .line 112
            goto 32
        12: .line 114
      StackMap locals: int
      StackMap stack:
            iload 5 /* pos */
            aload 1 /* b */
            arraylength
            if_icmplt 18
        13: .line 115
            iload 4 /* len */
            iload 5 /* pos */
            isub
            aload 1 /* b */
            arraylength
            sipush 1024
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* bytesToRead */
        start local 6 // int bytesToRead
        14: .line 116
            iload 6 /* bytesToRead */
            ifge 16
        15: .line 118
            iload 4 /* len */
            iload 5 /* pos */
            isub
            istore 6 /* bytesToRead */
        16: .line 120
      StackMap locals: int
      StackMap stack:
            aload 1 /* b */
            iload 5 /* pos */
            iload 6 /* bytesToRead */
            iadd
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 1 /* b */
        17: .line 121
            goto 19
        end local 6 // int bytesToRead
        18: .line 122
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            arraylength
            iload 5 /* pos */
            isub
            istore 6 /* bytesToRead */
        start local 6 // int bytesToRead
        19: .line 124
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 7 /* cc */
        start local 7 // int cc
        20: .line 126
            aload 2 /* in */
            aload 1 /* b */
            iload 5 /* pos */
            iload 6 /* bytesToRead */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 7 /* cc */
        21: .line 127
            goto 25
      StackMap locals: jdk.internal.loader.Resource byte[] java.io.InputStream int int int int int
      StackMap stack: java.io.InterruptedIOException
        22: pop
        23: .line 128
            invokestatic java.lang.Thread.interrupted:()Z
            pop
        24: .line 129
            iconst_1
            istore 3 /* isInterrupted */
        25: .line 131
      StackMap locals:
      StackMap stack:
            iload 7 /* cc */
            ifge 31
        26: .line 132
            iload 4 /* len */
            ldc 2147483647
            if_icmpeq 28
        27: .line 133
            new java.io.EOFException
            dup
            ldc "Detect premature EOF"
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        28: .line 135
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            arraylength
            iload 5 /* pos */
            if_icmpeq 43
        29: .line 136
            aload 1 /* b */
            iload 5 /* pos */
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 1 /* b */
        30: .line 138
            goto 43
        31: .line 141
      StackMap locals:
      StackMap stack:
            iload 5 /* pos */
            iload 7 /* cc */
            iadd
            istore 5 /* pos */
        end local 7 // int cc
        end local 6 // int bytesToRead
        32: .line 112
      StackMap locals:
      StackMap stack:
            iload 5 /* pos */
            iload 4 /* len */
            if_icmplt 12
        end local 5 // int pos
        33: .line 143
            goto 43
        end local 1 // byte[] b
      StackMap locals: jdk.internal.loader.Resource top java.io.InputStream int int
      StackMap stack: java.lang.Throwable
        34: astore 8
        35: .line 145
            aload 2 /* in */
            invokevirtual java.io.InputStream.close:()V
        36: .line 146
            goto 40
      StackMap locals: jdk.internal.loader.Resource top java.io.InputStream int int top top top java.lang.Throwable
      StackMap stack: java.io.InterruptedIOException
        37: pop
        38: .line 147
            iconst_1
            istore 3 /* isInterrupted */
            goto 40
        39: .line 148
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
        40: .line 150
      StackMap locals:
      StackMap stack:
            iload 3 /* isInterrupted */
            ifeq 42
        41: .line 151
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        42: .line 153
      StackMap locals:
      StackMap stack:
            aload 8
            athrow
        start local 1 // byte[] b
        43: .line 145
      StackMap locals: jdk.internal.loader.Resource byte[] java.io.InputStream int int
      StackMap stack:
            aload 2 /* in */
            invokevirtual java.io.InputStream.close:()V
        44: .line 146
            goto 48
      StackMap locals:
      StackMap stack: java.io.InterruptedIOException
        45: pop
        46: .line 147
            iconst_1
            istore 3 /* isInterrupted */
            goto 48
        47: .line 148
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
        48: .line 150
      StackMap locals:
      StackMap stack:
            iload 3 /* isInterrupted */
            ifeq 50
        49: .line 151
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        50: .line 154
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            areturn
        end local 4 // int len
        end local 3 // boolean isInterrupted
        end local 2 // java.io.InputStream in
        end local 1 // byte[] b
        end local 0 // jdk.internal.loader.Resource this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   51     0           this  Ljdk/internal/loader/Resource;
            9   34     1              b  [B
           43   51     1              b  [B
            1   51     2             in  Ljava/io/InputStream;
            2   51     3  isInterrupted  Z
            3    4     4            len  I
            8   51     4            len  I
           11   33     5            pos  I
           14   18     6    bytesToRead  I
           19   32     6    bytesToRead  I
           20   32     7             cc  I
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.InterruptedIOException
          20    21      22  Class java.io.InterruptedIOException
           8    34      34  any
          35    36      37  Class java.io.InterruptedIOException
          35    36      39  Class java.io.IOException
          43    44      45  Class java.io.InterruptedIOException
          43    44      47  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  public java.nio.ByteBuffer getByteBuffer();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // jdk.internal.loader.Resource this
         0: .line 163
            aload 0 /* this */
            invokevirtual jdk.internal.loader.Resource.cachedInputStream:()Ljava/io/InputStream;
            astore 1 /* in */
        start local 1 // java.io.InputStream in
         1: .line 164
            aload 1 /* in */
            instanceof sun.nio.ByteBuffered
            ifeq 3
         2: .line 165
            aload 1 /* in */
            checkcast sun.nio.ByteBuffered
            invokeinterface sun.nio.ByteBuffered.getByteBuffer:()Ljava/nio/ByteBuffer;
            areturn
         3: .line 167
      StackMap locals: java.io.InputStream
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.io.InputStream in
        end local 0 // jdk.internal.loader.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/loader/Resource;
            1    4     1    in  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException

  public java.util.jar.Manifest getManifest();
    descriptor: ()Ljava/util/jar/Manifest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.loader.Resource this
         0: .line 174
            aconst_null
            areturn
        end local 0 // jdk.internal.loader.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/loader/Resource;
    Exceptions:
      throws java.io.IOException

  public java.security.cert.Certificate[] getCertificates();
    descriptor: ()[Ljava/security/cert/Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.loader.Resource this
         0: .line 181
            aconst_null
            areturn
        end local 0 // jdk.internal.loader.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/loader/Resource;

  public java.security.CodeSigner[] getCodeSigners();
    descriptor: ()[Ljava/security/CodeSigner;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.loader.Resource this
         0: .line 188
            aconst_null
            areturn
        end local 0 // jdk.internal.loader.Resource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/loader/Resource;
}
SourceFile: "Resource.java"