public class com.sun.media.jfxmedia.locator.Locator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.media.jfxmedia.locator.Locator
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_CONTENT_TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "application/octet-stream"

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

  private static final long CONNECTION_RETRY_INTERVAL;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1000

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

  protected java.lang.String contentType;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected long contentLength;
    descriptor: J
    flags: (0x0004) ACC_PROTECTED

  protected java.net.URI uri;
    descriptor: Ljava/net/URI;
    flags: (0x0004) ACC_PROTECTED

  private java.util.Map<java.lang.String, java.lang.Object> connectionProperties;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  private final java.lang.Object propertyLock;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

  private com.sun.media.jfxmedia.locator.LocatorCache$CacheReference cacheEntry;
    descriptor: Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
    flags: (0x0002) ACC_PRIVATE

  private boolean canBlock;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.CountDownLatch readySignal;
    descriptor: Ljava/util/concurrent/CountDownLatch;
    flags: (0x0002) ACC_PRIVATE

  private boolean isIpod;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private com.sun.media.jfxmedia.locator.Locator$LocatorConnection getConnection(java.net.URI, java.lang.String);
    descriptor: (Ljava/net/URI;Ljava/lang/String;)Lcom/sun/media/jfxmedia/locator/Locator$LocatorConnection;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
        start local 1 // java.net.URI uri
        start local 2 // java.lang.String requestMethod
         0: .line 138
            new com.sun.media.jfxmedia.locator.Locator$LocatorConnection
            dup
            invokespecial com.sun.media.jfxmedia.locator.Locator$LocatorConnection.<init>:()V
            astore 3 /* locatorConnection */
        start local 3 // com.sun.media.jfxmedia.locator.Locator$LocatorConnection locatorConnection
         1: .line 139
            aload 1 /* uri */
            invokevirtual java.net.URI.toURL:()Ljava/net/URL;
            invokevirtual java.net.URL.openConnection:()Ljava/net/URLConnection;
            checkcast java.net.HttpURLConnection
            astore 4 /* connection */
        start local 4 // java.net.HttpURLConnection connection
         2: .line 140
            aload 4 /* connection */
            aload 2 /* requestMethod */
            invokevirtual java.net.HttpURLConnection.setRequestMethod:(Ljava/lang/String;)V
         3: .line 142
            aload 4 /* connection */
            ldc 300000
            invokevirtual java.net.HttpURLConnection.setConnectTimeout:(I)V
         4: .line 143
            aload 4 /* connection */
            ldc 300000
            invokevirtual java.net.HttpURLConnection.setReadTimeout:(I)V
         5: .line 146
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.propertyLock:Ljava/lang/Object;
            dup
            astore 5
            monitorenter
         6: .line 147
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            ifnull 13
         7: .line 148
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 7
            goto 12
      StackMap locals: com.sun.media.jfxmedia.locator.Locator java.net.URI java.lang.String com.sun.media.jfxmedia.locator.Locator$LocatorConnection java.net.HttpURLConnection java.lang.Object top java.util.Iterator
      StackMap stack:
         8: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 6 /* key */
        start local 6 // java.lang.String key
         9: .line 149
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            aload 6 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 8 /* value */
        start local 8 // java.lang.Object value
        10: .line 150
            aload 8 /* value */
            instanceof java.lang.String
            ifeq 12
        11: .line 151
            aload 4 /* connection */
            aload 6 /* key */
            aload 8 /* value */
            checkcast java.lang.String
            invokevirtual java.net.HttpURLConnection.setRequestProperty:(Ljava/lang/String;Ljava/lang/String;)V
        end local 8 // java.lang.Object value
        end local 6 // java.lang.String key
        12: .line 148
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        13: .line 146
      StackMap locals: com.sun.media.jfxmedia.locator.Locator java.net.URI java.lang.String com.sun.media.jfxmedia.locator.Locator$LocatorConnection java.net.HttpURLConnection java.lang.Object
      StackMap stack:
            aload 5
            monitorexit
        14: goto 17
      StackMap locals:
      StackMap stack: java.lang.Throwable
        15: aload 5
            monitorexit
        16: athrow
        17: .line 159
      StackMap locals:
      StackMap stack:
            aload 3 /* locatorConnection */
            aload 4 /* connection */
            invokevirtual java.net.HttpURLConnection.getResponseCode:()I
            putfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.responseCode:I
        18: .line 160
            aload 4 /* connection */
            invokevirtual java.net.HttpURLConnection.getResponseCode:()I
            sipush 200
            if_icmpne 21
        19: .line 161
            aload 3 /* locatorConnection */
            aload 4 /* connection */
            putfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
        20: .line 162
            goto 23
        21: .line 163
      StackMap locals:
      StackMap stack:
            aload 4 /* connection */
            invokestatic com.sun.media.jfxmedia.locator.Locator.closeConnection:(Ljava/net/URLConnection;)V
        22: .line 164
            aload 3 /* locatorConnection */
            aconst_null
            putfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
        23: .line 166
      StackMap locals:
      StackMap stack:
            aload 3 /* locatorConnection */
            areturn
        end local 4 // java.net.HttpURLConnection connection
        end local 3 // com.sun.media.jfxmedia.locator.Locator$LocatorConnection locatorConnection
        end local 2 // java.lang.String requestMethod
        end local 1 // java.net.URI uri
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   24     0               this  Lcom/sun/media/jfxmedia/locator/Locator;
            0   24     1                uri  Ljava/net/URI;
            0   24     2      requestMethod  Ljava/lang/String;
            1   24     3  locatorConnection  Lcom/sun/media/jfxmedia/locator/Locator$LocatorConnection;
            2   24     4         connection  Ljava/net/HttpURLConnection;
            9   12     6                key  Ljava/lang/String;
           10   12     8              value  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           6    14      15  any
          15    16      15  any
    Exceptions:
      throws java.net.MalformedURLException, java.io.IOException
    MethodParameters:
               Name  Flags
      uri            
      requestMethod  

  private static long getContentLengthLong(java.net.URLConnection);
    descriptor: (Ljava/net/URLConnection;)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.URLConnection connection
         0: .line 170
            invokedynamic run()Ljava/security/PrivilegedAction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  com/sun/media/jfxmedia/locator/Locator.lambda$0()Ljava/lang/reflect/Method; (6)
                  ()Ljava/lang/reflect/Method;
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.reflect.Method
            astore 1 /* method */
        start local 1 // java.lang.reflect.Method method
         1: .line 179
            aload 1 /* method */
            ifnull 4
         2: .line 180
            aload 1 /* method */
            aload 0 /* connection */
            iconst_0
            anewarray java.lang.Object
            invokevirtual java.lang.reflect.Method.invoke:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Long
            invokevirtual java.lang.Long.longValue:()J
         3: lreturn
         4: .line 182
      StackMap locals: java.lang.reflect.Method
      StackMap stack:
            aload 0 /* connection */
            invokevirtual java.net.URLConnection.getContentLength:()I
            i2l
         5: lreturn
         6: .line 184
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
         7: .line 185
            ldc -1
            lreturn
        end local 1 // java.lang.reflect.Method method
        end local 0 // java.net.URLConnection connection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0  connection  Ljava/net/URLConnection;
            1    8     1      method  Ljava/lang/reflect/Method;
      Exception table:
        from    to  target  type
           1     3       6  Class java.lang.IllegalAccessException
           4     5       6  Class java.lang.IllegalAccessException
           1     3       6  Class java.lang.IllegalArgumentException
           4     5       6  Class java.lang.IllegalArgumentException
           1     3       6  Class java.lang.reflect.InvocationTargetException
           4     5       6  Class java.lang.reflect.InvocationTargetException
    MethodParameters:
            Name  Flags
      connection  

  public void <init>(java.net.URI);
    descriptor: (Ljava/net/URI;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
        start local 1 // java.net.URI uri
         0: .line 208
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 77
            aload 0 /* this */
            ldc "application/octet-stream"
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
         2: .line 81
            aload 0 /* this */
            ldc -1
            putfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
         3: .line 95
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield com.sun.media.jfxmedia.locator.Locator.propertyLock:Ljava/lang/Object;
         4: .line 100
            aload 0 /* this */
            aconst_null
            putfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
         5: .line 101
            aload 0 /* this */
            aconst_null
            putfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
         6: .line 102
            aload 0 /* this */
            aconst_null
            putfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
         7: .line 107
            aload 0 /* this */
            aconst_null
            putfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
         8: .line 113
            aload 0 /* this */
            iconst_0
            putfield com.sun.media.jfxmedia.locator.Locator.canBlock:Z
         9: .line 118
            aload 0 /* this */
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            putfield com.sun.media.jfxmedia.locator.Locator.readySignal:Ljava/util/concurrent/CountDownLatch;
        10: .line 210
            aload 1 /* uri */
            ifnonnull 12
        11: .line 211
            new java.lang.NullPointerException
            dup
            ldc "uri == null!"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 215
      StackMap locals: com.sun.media.jfxmedia.locator.Locator java.net.URI
      StackMap stack:
            aload 0 /* this */
            aload 1 /* uri */
            invokevirtual java.net.URI.toASCIIString:()Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
        13: .line 216
            aload 0 /* this */
            aload 1 /* uri */
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
        14: .line 217
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            ifnonnull 16
        15: .line 218
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "uri.getScheme() == null! uri == '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* uri */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 220
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            invokevirtual java.lang.String.toLowerCase:()Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
        17: .line 223
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            ldc "jar"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 24
        18: .line 224
            new java.net.URI
            dup
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            iconst_4
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokespecial java.net.URI.<init>:(Ljava/lang/String;)V
            astore 2 /* subURI */
        start local 2 // java.net.URI subURI
        19: .line 225
            aload 0 /* this */
            aload 2 /* subURI */
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
        20: .line 226
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ifnonnull 22
        21: .line 227
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "uri.getScheme() == null! subURI == '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* subURI */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 229
      StackMap locals: java.net.URI
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            invokevirtual java.lang.String.toLowerCase:()Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
        end local 2 // java.net.URI subURI
        23: .line 230
            goto 25
        24: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
        25: .line 234
      StackMap locals:
      StackMap stack:
            invokestatic com.sun.media.jfxmediaimpl.HostUtils.isIOS:()Z
            ifeq 27
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ldc "ipod-library"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 27
        26: .line 235
            aload 0 /* this */
            iconst_1
            putfield com.sun.media.jfxmedia.locator.Locator.isIpod:Z
        27: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.isIpod:Z
            ifne 29
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            invokestatic com.sun.media.jfxmedia.MediaManager.canPlayProtocol:(Ljava/lang/String;)Z
            ifne 29
        28: .line 240
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported protocol \""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        29: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ldc "http"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 30
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ldc "https"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 31
        30: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.sun.media.jfxmedia.locator.Locator.canBlock:Z
        31: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* uri */
            putfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
        32: .line 250
            return
        end local 1 // java.net.URI uri
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   33     0    this  Lcom/sun/media/jfxmedia/locator/Locator;
            0   33     1     uri  Ljava/net/URI;
           19   23     2  subURI  Ljava/net/URI;
    Exceptions:
      throws java.net.URISyntaxException
    MethodParameters:
      Name  Flags
      uri   

  private java.io.InputStream getInputStream(java.net.URI);
    descriptor: (Ljava/net/URI;)Ljava/io/InputStream;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
        start local 1 // java.net.URI uri
         0: .line 254
            aload 1 /* uri */
            invokevirtual java.net.URI.toURL:()Ljava/net/URL;
            astore 2 /* url */
        start local 2 // java.net.URL url
         1: .line 255
            aload 2 /* url */
            invokevirtual java.net.URL.openConnection:()Ljava/net/URLConnection;
            astore 3 /* connection */
        start local 3 // java.net.URLConnection connection
         2: .line 258
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.propertyLock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         3: .line 259
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            ifnull 10
         4: .line 260
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 6
            goto 9
      StackMap locals: com.sun.media.jfxmedia.locator.Locator java.net.URI java.net.URL java.net.URLConnection java.lang.Object top java.util.Iterator
      StackMap stack:
         5: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* key */
        start local 5 // java.lang.String key
         6: .line 261
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            aload 5 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 7 /* value */
        start local 7 // java.lang.Object value
         7: .line 262
            aload 7 /* value */
            instanceof java.lang.String
            ifeq 9
         8: .line 263
            aload 3 /* connection */
            aload 5 /* key */
            aload 7 /* value */
            checkcast java.lang.String
            invokevirtual java.net.URLConnection.setRequestProperty:(Ljava/lang/String;Ljava/lang/String;)V
        end local 7 // java.lang.Object value
        end local 5 // java.lang.String key
         9: .line 260
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        10: .line 258
      StackMap locals: com.sun.media.jfxmedia.locator.Locator java.net.URI java.net.URL java.net.URLConnection java.lang.Object
      StackMap stack:
            aload 4
            monitorexit
        11: goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: aload 4
            monitorexit
        13: athrow
        14: .line 269
      StackMap locals:
      StackMap stack:
            aload 2 /* url */
            invokevirtual java.net.URL.openStream:()Ljava/io/InputStream;
            astore 4 /* inputStream */
        start local 4 // java.io.InputStream inputStream
        15: .line 270
            aload 0 /* this */
            aload 3 /* connection */
            invokestatic com.sun.media.jfxmedia.locator.Locator.getContentLengthLong:(Ljava/net/URLConnection;)J
            putfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
        16: .line 271
            aload 4 /* inputStream */
            areturn
        end local 4 // java.io.InputStream inputStream
        end local 3 // java.net.URLConnection connection
        end local 2 // java.net.URL url
        end local 1 // java.net.URI uri
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lcom/sun/media/jfxmedia/locator/Locator;
            0   17     1          uri  Ljava/net/URI;
            1   17     2          url  Ljava/net/URL;
            2   17     3   connection  Ljava/net/URLConnection;
            6    9     5          key  Ljava/lang/String;
            7    9     7        value  Ljava/lang/Object;
           15   17     4  inputStream  Ljava/io/InputStream;
      Exception table:
        from    to  target  type
           3    11      12  any
          12    13      12  any
    Exceptions:
      throws java.net.MalformedURLException, java.io.IOException
    MethodParameters:
      Name  Flags
      uri   

  public void cacheMedia();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 279
            invokestatic com.sun.media.jfxmedia.locator.LocatorCache.locatorCache:()Lcom/sun/media/jfxmedia/locator/LocatorCache;
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual com.sun.media.jfxmedia.locator.LocatorCache.fetchURICache:(Ljava/net/URI;)Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            astore 1 /* ref */
        start local 1 // com.sun.media.jfxmedia.locator.LocatorCache$CacheReference ref
         1: .line 280
            aload 1 /* ref */
            ifnonnull 28
         2: .line 286
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual com.sun.media.jfxmedia.locator.Locator.getInputStream:(Ljava/net/URI;)Ljava/io/InputStream;
            astore 3 /* is */
        start local 3 // java.io.InputStream is
         3: .line 287
            goto 6
        end local 3 // java.io.InputStream is
      StackMap locals: com.sun.media.jfxmedia.locator.Locator com.sun.media.jfxmedia.locator.LocatorCache$CacheReference
      StackMap stack: java.lang.Throwable
         4: pop
         5: .line 288
            return
        start local 3 // java.io.InputStream is
         6: .line 292
      StackMap locals: com.sun.media.jfxmedia.locator.Locator com.sun.media.jfxmedia.locator.LocatorCache$CacheReference top java.io.InputStream
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
            l2i
            invokestatic java.nio.ByteBuffer.allocateDirect:(I)Ljava/nio/ByteBuffer;
            astore 2 /* cacheBuffer */
        start local 2 // java.nio.ByteBuffer cacheBuffer
         7: .line 293
            sipush 8192
            newarray 8
            astore 4 /* readBuf */
        start local 4 // byte[] readBuf
         8: .line 294
            iconst_0
            istore 5 /* total */
        start local 5 // int total
         9: .line 296
            goto 22
        10: .line 298
      StackMap locals: com.sun.media.jfxmedia.locator.Locator com.sun.media.jfxmedia.locator.LocatorCache$CacheReference java.nio.ByteBuffer java.io.InputStream byte[] int
      StackMap stack:
            aload 3 /* is */
            aload 4 /* readBuf */
            invokevirtual java.io.InputStream.read:([B)I
            istore 6 /* count */
        start local 6 // int count
        11: .line 299
            goto 19
        end local 6 // int count
      StackMap locals:
      StackMap stack: java.io.IOException
        12: astore 7 /* ioe */
        start local 7 // java.io.IOException ioe
        13: .line 301
            aload 3 /* is */
            invokevirtual java.io.InputStream.close:()V
        14: .line 302
            goto 16
      StackMap locals: com.sun.media.jfxmedia.locator.Locator com.sun.media.jfxmedia.locator.LocatorCache$CacheReference java.nio.ByteBuffer java.io.InputStream byte[] int top java.io.IOException
      StackMap stack: java.lang.Throwable
        15: pop
        16: .line 304
      StackMap locals:
      StackMap stack:
            iconst_1
            invokestatic com.sun.media.jfxmedia.logging.Logger.canLog:(I)Z
            ifeq 18
        17: .line 305
            iconst_1
            new java.lang.StringBuilder
            dup
            ldc "IOException trying to preload media: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 7 /* ioe */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic com.sun.media.jfxmedia.logging.Logger.logMsg:(ILjava/lang/String;)V
        18: .line 307
      StackMap locals:
      StackMap stack:
            return
        end local 7 // java.io.IOException ioe
        start local 6 // int count
        19: .line 310
      StackMap locals: com.sun.media.jfxmedia.locator.Locator com.sun.media.jfxmedia.locator.LocatorCache$CacheReference java.nio.ByteBuffer java.io.InputStream byte[] int int
      StackMap stack:
            iload 6 /* count */
            iconst_m1
            if_icmpne 21
        20: .line 311
            goto 23
        21: .line 314
      StackMap locals:
      StackMap stack:
            aload 2 /* cacheBuffer */
            aload 4 /* readBuf */
            iconst_0
            iload 6 /* count */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
        end local 6 // int count
        22: .line 296
      StackMap locals:
      StackMap stack:
            iload 5 /* total */
            i2l
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
            lcmp
            iflt 10
        23: .line 318
      StackMap locals:
      StackMap stack:
            aload 3 /* is */
            invokevirtual java.io.InputStream.close:()V
        24: .line 319
            goto 26
      StackMap locals:
      StackMap stack: java.lang.Throwable
        25: pop
        26: .line 322
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic com.sun.media.jfxmedia.locator.LocatorCache.locatorCache:()Lcom/sun/media/jfxmedia/locator/LocatorCache;
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            aload 2 /* cacheBuffer */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            invokevirtual com.sun.media.jfxmedia.locator.LocatorCache.registerURICache:(Ljava/net/URI;Ljava/nio/ByteBuffer;Ljava/lang/String;)Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            putfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
        27: .line 323
            aload 0 /* this */
            iconst_0
            putfield com.sun.media.jfxmedia.locator.Locator.canBlock:Z
        end local 5 // int total
        end local 4 // byte[] readBuf
        end local 3 // java.io.InputStream is
        end local 2 // java.nio.ByteBuffer cacheBuffer
        28: .line 325
      StackMap locals: com.sun.media.jfxmedia.locator.Locator com.sun.media.jfxmedia.locator.LocatorCache$CacheReference
      StackMap stack:
            return
        end local 1 // com.sun.media.jfxmedia.locator.LocatorCache$CacheReference ref
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   29     0         this  Lcom/sun/media/jfxmedia/locator/Locator;
            1   29     1          ref  Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            7   28     2  cacheBuffer  Ljava/nio/ByteBuffer;
            3    4     3           is  Ljava/io/InputStream;
            6   28     3           is  Ljava/io/InputStream;
            8   28     4      readBuf  [B
            9   28     5        total  I
           11   12     6        count  I
           19   22     6        count  I
           13   19     7          ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
          10    11      12  Class java.io.IOException
          13    14      15  Class java.lang.Throwable
          23    24      25  Class java.lang.Throwable

  public boolean canBlock();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 331
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.canBlock:Z
            ireturn
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/media/jfxmedia/locator/Locator;

  public void init();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 347
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            ldc "/"
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            istore 1 /* firstSlash */
        start local 1 // int firstSlash
         1: .line 348
            iload 1 /* firstSlash */
            iconst_m1
            if_icmpeq 7
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            iload 1 /* firstSlash */
            iconst_1
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            bipush 47
            if_icmpeq 7
         2: .line 350
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ldc "file"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 352
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            ldc "/"
            ldc "///"
            invokevirtual java.lang.String.replaceFirst:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
         4: .line 353
            goto 7
      StackMap locals: int
      StackMap stack:
         5: aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ldc "http"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 6
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ldc "https"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            ldc "/"
            ldc "//"
            invokevirtual java.lang.String.replaceFirst:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
         7: .line 360
      StackMap locals:
      StackMap stack:
            ldc "os.name"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.String.toLowerCase:()Ljava/lang/String;
            ldc "win"
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            iconst_m1
            if_icmpne 15
         8: .line 361
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            ldc "file"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
         9: .line 362
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            ldc "/~/"
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            istore 2 /* index */
        start local 2 // int index
        10: .line 363
            iload 2 /* index */
            iconst_m1
            if_icmpeq 15
        11: .line 364
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            iconst_0
            iload 2 /* index */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        12: .line 365
            ldc "user.home"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        13: .line 366
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            iload 2 /* index */
            iconst_2
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        14: .line 364
            putfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
        end local 2 // int index
        15: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.net.URI
            dup
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            invokespecial java.net.URI.<init>:(Ljava/lang/String;)V
            putfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
        16: .line 374
            aload 0 /* this */
            invokestatic com.sun.media.jfxmedia.locator.LocatorCache.locatorCache:()Lcom/sun/media/jfxmedia/locator/LocatorCache;
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual com.sun.media.jfxmedia.locator.LocatorCache.fetchURICache:(Ljava/net/URI;)Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            putfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
        17: .line 375
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            ifnull 28
        18: .line 377
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            invokevirtual com.sun.media.jfxmedia.locator.LocatorCache$CacheReference.getMIMEType:()Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
        19: .line 378
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            invokevirtual com.sun.media.jfxmedia.locator.LocatorCache$CacheReference.getBuffer:()Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.capacity:()I
            i2l
            putfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
        20: .line 379
            iconst_1
            invokestatic com.sun.media.jfxmedia.logging.Logger.canLog:(I)Z
            ifeq 26
        21: .line 380
            iconst_1
            new java.lang.StringBuilder
            dup
            ldc "Locator init cache hit:\n    uri "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        22: .line 381
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
        23: .line 382
            ldc "\n    type "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        24: .line 383
            ldc "\n    length "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        25: .line 380
            invokestatic com.sun.media.jfxmedia.logging.Logger.logMsg:(ILjava/lang/String;)V
        26: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.readySignal:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
        27: .line 385
            return
        28: .line 389
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* isConnected */
        start local 2 // boolean isConnected
        29: .line 390
            iconst_0
            istore 3 /* isMediaUnAvailable */
        start local 3 // boolean isMediaUnAvailable
        30: .line 391
            iconst_1
            istore 4 /* isMediaSupported */
        start local 4 // boolean isMediaSupported
        31: .line 392
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.isIpod:Z
            ifne 76
        32: .line 393
            iconst_0
            istore 5 /* numConnectionAttempts */
        start local 5 // int numConnectionAttempts
        33: goto 74
        34: .line 396
      StackMap locals: com.sun.media.jfxmedia.locator.Locator int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            ldc "http"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 35
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            ldc "https"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 49
        35: .line 398
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            ldc "HEAD"
            invokevirtual com.sun.media.jfxmedia.locator.Locator.getConnection:(Ljava/net/URI;Ljava/lang/String;)Lcom/sun/media/jfxmedia/locator/Locator$LocatorConnection;
            astore 6 /* locatorConnection */
        start local 6 // com.sun.media.jfxmedia.locator.Locator$LocatorConnection locatorConnection
        36: .line 399
            aload 6 /* locatorConnection */
            ifnull 37
            aload 6 /* locatorConnection */
            getfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
            ifnonnull 38
        37: .line 400
      StackMap locals: com.sun.media.jfxmedia.locator.Locator$LocatorConnection
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            ldc "GET"
            invokevirtual com.sun.media.jfxmedia.locator.Locator.getConnection:(Ljava/net/URI;Ljava/lang/String;)Lcom/sun/media/jfxmedia/locator/Locator$LocatorConnection;
            astore 6 /* locatorConnection */
        38: .line 403
      StackMap locals:
      StackMap stack:
            aload 6 /* locatorConnection */
            ifnull 45
            aload 6 /* locatorConnection */
            getfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
            ifnull 45
        39: .line 404
            iconst_1
            istore 2 /* isConnected */
        40: .line 407
            aload 0 /* this */
            aload 6 /* locatorConnection */
            getfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
            invokevirtual java.net.HttpURLConnection.getContentType:()Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
        41: .line 408
            aload 0 /* this */
            aload 6 /* locatorConnection */
            getfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
            invokestatic com.sun.media.jfxmedia.locator.Locator.getContentLengthLong:(Ljava/net/URLConnection;)J
            putfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
        42: .line 411
            aload 6 /* locatorConnection */
            getfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
            invokestatic com.sun.media.jfxmedia.locator.Locator.closeConnection:(Ljava/net/URLConnection;)V
        43: .line 412
            aload 6 /* locatorConnection */
            aconst_null
            putfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.connection:Ljava/net/HttpURLConnection;
        44: .line 413
            goto 54
      StackMap locals:
      StackMap stack:
        45: aload 6 /* locatorConnection */
            ifnull 54
        46: .line 414
            aload 6 /* locatorConnection */
            getfield com.sun.media.jfxmedia.locator.Locator$LocatorConnection.responseCode:I
            sipush 404
            if_icmpne 54
        47: .line 415
            iconst_1
            istore 3 /* isMediaUnAvailable */
        end local 6 // com.sun.media.jfxmedia.locator.Locator$LocatorConnection locatorConnection
        48: .line 420
            goto 54
      StackMap locals:
      StackMap stack:
        49: aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            ldc "file"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 50
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            ldc "jar"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 50
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            ldc "jrt"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 54
        50: .line 421
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual com.sun.media.jfxmedia.locator.Locator.getInputStream:(Ljava/net/URI;)Ljava/io/InputStream;
            astore 6 /* stream */
        start local 6 // java.io.InputStream stream
        51: .line 422
            aload 6 /* stream */
            invokevirtual java.io.InputStream.close:()V
        52: .line 423
            iconst_1
            istore 2 /* isConnected */
        53: .line 424
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            invokestatic com.sun.media.jfxmediaimpl.MediaUtils.filenameToContentType:(Ljava/lang/String;)Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
        end local 6 // java.io.InputStream stream
        54: .line 427
      StackMap locals:
      StackMap stack:
            iload 2 /* isConnected */
            ifeq 70
        55: .line 432
            ldc "audio/x-wav"
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 60
        56: .line 433
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual com.sun.media.jfxmedia.locator.Locator.getContentTypeFromFileSignature:(Ljava/net/URI;)Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
        57: .line 434
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            invokestatic com.sun.media.jfxmedia.MediaManager.canPlayContentType:(Ljava/lang/String;)Z
            ifne 77
        58: .line 435
            iconst_0
            istore 4 /* isMediaSupported */
        59: .line 437
            goto 77
        60: .line 438
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            ifnull 61
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            invokestatic com.sun.media.jfxmedia.MediaManager.canPlayContentType:(Ljava/lang/String;)Z
            ifne 77
        61: .line 440
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            invokestatic com.sun.media.jfxmediaimpl.MediaUtils.filenameToContentType:(Ljava/lang/String;)Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
        62: .line 442
            ldc "application/octet-stream"
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 64
        63: .line 444
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual com.sun.media.jfxmedia.locator.Locator.getContentTypeFromFileSignature:(Ljava/net/URI;)Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
        64: .line 447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            invokestatic com.sun.media.jfxmedia.MediaManager.canPlayContentType:(Ljava/lang/String;)Z
            ifne 77
        65: .line 448
            iconst_0
            istore 4 /* isMediaSupported */
        66: .line 454
            goto 77
        67: .line 456
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 6 /* ioe */
        start local 6 // java.io.IOException ioe
        68: .line 457
            iload 5 /* numConnectionAttempts */
            iconst_1
            iadd
            iconst_5
            if_icmplt 70
        69: .line 458
            aload 6 /* ioe */
            athrow
        end local 6 // java.io.IOException ioe
        70: .line 463
      StackMap locals:
      StackMap stack:
            ldc 1000
            invokestatic java.lang.Thread.sleep:(J)V
        71: .line 464
            goto 73
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
        72: pop
        73: .line 393
      StackMap locals:
      StackMap stack:
            iinc 5 /* numConnectionAttempts */ 1
      StackMap locals:
      StackMap stack:
        74: iload 5 /* numConnectionAttempts */
            iconst_5
            if_icmplt 34
        end local 5 // int numConnectionAttempts
        75: .line 468
            goto 77
        76: .line 471
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uriString:Ljava/lang/String;
            invokestatic com.sun.media.jfxmediaimpl.MediaUtils.filenameToContentType:(Ljava/lang/String;)Ljava/lang/String;
            putfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
        77: .line 474
      StackMap locals:
      StackMap stack:
            iconst_3
            invokestatic com.sun.media.jfxmedia.logging.Logger.canLog:(I)Z
            ifeq 84
        78: .line 475
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            ldc "video/x-flv"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 81
        79: .line 476
            iconst_3
            ldc "Support for FLV container and VP6 video is removed."
            invokestatic com.sun.media.jfxmedia.logging.Logger.logMsg:(ILjava/lang/String;)V
        80: .line 477
            new com.sun.media.jfxmedia.MediaException
            dup
            new java.lang.StringBuilder
            dup
            ldc "media type not supported ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.sun.media.jfxmedia.MediaException.<init>:(Ljava/lang/String;)V
            athrow
        81: .line 478
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            ldc "video/x-javafx"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 84
        82: .line 479
            iconst_3
            ldc "Support for FXM container and VP6 video is removed."
            invokestatic com.sun.media.jfxmedia.logging.Logger.logMsg:(ILjava/lang/String;)V
        83: .line 480
            new com.sun.media.jfxmedia.MediaException
            dup
            new java.lang.StringBuilder
            dup
            ldc "media type not supported ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.sun.media.jfxmedia.MediaException.<init>:(Ljava/lang/String;)V
            athrow
        84: .line 485
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.isIpod:Z
            ifne 88
            iload 2 /* isConnected */
            ifne 88
        85: .line 486
            iload 3 /* isMediaUnAvailable */
            ifeq 87
        86: .line 487
            new java.io.FileNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            ldc "media is unavailable ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        87: .line 489
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "could not connect to media ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        88: .line 491
      StackMap locals:
      StackMap stack:
            iload 4 /* isMediaSupported */
            ifne 99
        89: .line 492
            new com.sun.media.jfxmedia.MediaException
            dup
            new java.lang.StringBuilder
            dup
            ldc "media type not supported ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.sun.media.jfxmedia.MediaException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // boolean isMediaSupported
        end local 3 // boolean isMediaUnAvailable
        end local 2 // boolean isConnected
        end local 1 // int firstSlash
        90: .line 494
      StackMap locals: com.sun.media.jfxmedia.locator.Locator
      StackMap stack: java.io.FileNotFoundException
            astore 1 /* e */
        start local 1 // java.io.FileNotFoundException e
        91: .line 495
            aload 1 /* e */
            athrow
        end local 1 // java.io.FileNotFoundException e
        92: .line 496
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
        93: .line 497
            aload 1 /* e */
            athrow
        end local 1 // java.io.IOException e
        94: .line 498
      StackMap locals:
      StackMap stack: com.sun.media.jfxmedia.MediaException
            astore 1 /* e */
        start local 1 // com.sun.media.jfxmedia.MediaException e
        95: .line 499
            aload 1 /* e */
            athrow
        end local 1 // com.sun.media.jfxmedia.MediaException e
        96: .line 500
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
        97: .line 501
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.readySignal:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
        98: .line 502
            aload 7
            athrow
        99: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.readySignal:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
       100: .line 503
            return
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0  101     0                   this  Lcom/sun/media/jfxmedia/locator/Locator;
            1   90     1             firstSlash  I
           10   15     2                  index  I
           29   90     2            isConnected  Z
           30   90     3     isMediaUnAvailable  Z
           31   90     4       isMediaSupported  Z
           33   75     5  numConnectionAttempts  I
           36   48     6      locatorConnection  Lcom/sun/media/jfxmedia/locator/Locator$LocatorConnection;
           51   54     6                 stream  Ljava/io/InputStream;
           68   70     6                    ioe  Ljava/io/IOException;
           91   92     1                      e  Ljava/io/FileNotFoundException;
           93   94     1                      e  Ljava/io/IOException;
           95   96     1                      e  Lcom/sun/media/jfxmedia/MediaException;
      Exception table:
        from    to  target  type
          34    66      67  Class java.io.IOException
          70    71      72  Class java.lang.InterruptedException
           0    26      90  Class java.io.FileNotFoundException
          28    90      90  Class java.io.FileNotFoundException
           0    26      92  Class java.io.IOException
          28    90      92  Class java.io.IOException
           0    26      94  Class com.sun.media.jfxmedia.MediaException
          28    90      94  Class com.sun.media.jfxmedia.MediaException
           0    26      96  any
          28    96      96  any
    Exceptions:
      throws java.net.URISyntaxException, java.io.IOException, java.io.FileNotFoundException

  public java.lang.String getContentType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 512
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.readySignal:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         1: .line 513
            goto 3
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: pop
         3: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentType:Ljava/lang/String;
            areturn
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/media/jfxmedia/locator/Locator;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception

  public java.lang.String getProtocol();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 522
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.protocol:Ljava/lang/String;
            areturn
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/media/jfxmedia/locator/Locator;

  public long getContentLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 533
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.readySignal:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         1: .line 534
            goto 3
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: pop
         3: .line 536
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.contentLength:J
            lreturn
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/media/jfxmedia/locator/Locator;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception

  public void waitForReadySignal();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 544
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.readySignal:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         1: .line 545
            goto 3
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: pop
         3: .line 547
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/media/jfxmedia/locator/Locator;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception

  public java.net.URI getURI();
    descriptor: ()Ljava/net/URI;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 556
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            areturn
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/media/jfxmedia/locator/Locator;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 569
            invokestatic com.sun.media.jfxmedia.locator.LocatorCache.locatorCache:()Lcom/sun/media/jfxmedia/locator/LocatorCache;
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual com.sun.media.jfxmedia.locator.LocatorCache.isCached:(Ljava/net/URI;)Z
            ifeq 2
         1: .line 570
            new java.lang.StringBuilder
            dup
            ldc "{LocatorURI uri: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " (media cached)}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         2: .line 572
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "{LocatorURI uri: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/media/jfxmedia/locator/Locator;

  public java.lang.String getStringLocation();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 576
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/media/jfxmedia/locator/Locator;

  public void setConnectionProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
        start local 1 // java.lang.String property
        start local 2 // java.lang.Object value
         0: .line 589
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.propertyLock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 590
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            ifnonnull 3
         2: .line 591
            aload 0 /* this */
            new java.util.TreeMap
            dup
            invokespecial java.util.TreeMap.<init>:()V
            putfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
         3: .line 594
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            aload 1 /* property */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 589
            aload 3
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 3
            monitorexit
         7: athrow
         8: .line 596
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String property
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lcom/sun/media/jfxmedia/locator/Locator;
            0    9     1  property  Ljava/lang/String;
            0    9     2     value  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    MethodParameters:
          Name  Flags
      property  
      value     

  public com.sun.media.jfxmedia.locator.ConnectionHolder createConnectionHolder();
    descriptor: ()Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
         0: .line 600
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            ifnull 4
         1: .line 601
            iconst_1
            invokestatic com.sun.media.jfxmedia.logging.Logger.canLog:(I)Z
            ifeq 3
         2: .line 602
            iconst_1
            ldc "Locator.createConnectionHolder: media cached, creating memory connection holder"
            invokestatic com.sun.media.jfxmedia.logging.Logger.logMsg:(ILjava/lang/String;)V
         3: .line 604
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.cacheEntry:Lcom/sun/media/jfxmedia/locator/LocatorCache$CacheReference;
            invokevirtual com.sun.media.jfxmedia.locator.LocatorCache$CacheReference.getBuffer:()Ljava/nio/ByteBuffer;
            invokestatic com.sun.media.jfxmedia.locator.ConnectionHolder.createMemoryConnectionHolder:(Ljava/nio/ByteBuffer;)Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
            areturn
         4: .line 609
      StackMap locals:
      StackMap stack:
            ldc "file"
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.scheme:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 610
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokestatic com.sun.media.jfxmedia.locator.ConnectionHolder.createFileConnectionHolder:(Ljava/net/URI;)Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
            astore 1 /* holder */
        start local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
         6: .line 611
            goto 16
        end local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            ldc ".m3u8"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifne 8
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokevirtual java.net.URI.toString:()Ljava/lang/String;
            ldc ".m3u"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 10
         8: .line 612
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            invokestatic com.sun.media.jfxmedia.locator.ConnectionHolder.createHLSConnectionHolder:(Ljava/net/URI;)Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
            astore 1 /* holder */
        start local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
         9: .line 613
            goto 16
        end local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
        10: .line 614
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.propertyLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
        11: .line 615
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.uri:Ljava/net/URI;
            aload 0 /* this */
            getfield com.sun.media.jfxmedia.locator.Locator.connectionProperties:Ljava/util/Map;
            invokestatic com.sun.media.jfxmedia.locator.ConnectionHolder.createURIConnectionHolder:(Ljava/net/URI;Ljava/util/Map;)Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
            astore 1 /* holder */
        start local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
        12: .line 614
            aload 2
            monitorexit
        13: goto 16
        end local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
      StackMap locals: com.sun.media.jfxmedia.locator.Locator top java.lang.Object
      StackMap stack: java.lang.Throwable
        14: aload 2
            monitorexit
        15: athrow
        start local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
        16: .line 619
      StackMap locals: com.sun.media.jfxmedia.locator.Locator com.sun.media.jfxmedia.locator.ConnectionHolder
      StackMap stack:
            aload 1 /* holder */
            areturn
        end local 1 // com.sun.media.jfxmedia.locator.ConnectionHolder holder
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lcom/sun/media/jfxmedia/locator/Locator;
            6    7     1  holder  Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
            9   10     1  holder  Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
           12   14     1  holder  Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
           16   17     1  holder  Lcom/sun/media/jfxmedia/locator/ConnectionHolder;
      Exception table:
        from    to  target  type
          11    13      14  any
          14    15      14  any
    Exceptions:
      throws java.io.IOException

  private java.lang.String getContentTypeFromFileSignature(java.net.URI);
    descriptor: (Ljava/net/URI;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.sun.media.jfxmedia.locator.Locator this
        start local 1 // java.net.URI uri
         0: .line 623
            aload 0 /* this */
            aload 1 /* uri */
            invokevirtual com.sun.media.jfxmedia.locator.Locator.getInputStream:(Ljava/net/URI;)Ljava/io/InputStream;
            astore 2 /* stream */
        start local 2 // java.io.InputStream stream
         1: .line 624
            bipush 22
            newarray 8
            astore 3 /* signature */
        start local 3 // byte[] signature
         2: .line 625
            aload 2 /* stream */
            aload 3 /* signature */
            invokevirtual java.io.InputStream.read:([B)I
            istore 4 /* size */
        start local 4 // int size
         3: .line 626
            aload 2 /* stream */
            invokevirtual java.io.InputStream.close:()V
         4: .line 628
            aload 3 /* signature */
            iload 4 /* size */
            invokestatic com.sun.media.jfxmediaimpl.MediaUtils.fileSignatureToContentType:([BI)Ljava/lang/String;
            areturn
        end local 4 // int size
        end local 3 // byte[] signature
        end local 2 // java.io.InputStream stream
        end local 1 // java.net.URI uri
        end local 0 // com.sun.media.jfxmedia.locator.Locator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/sun/media/jfxmedia/locator/Locator;
            0    5     1        uri  Ljava/net/URI;
            1    5     2     stream  Ljava/io/InputStream;
            2    5     3  signature  [B
            3    5     4       size  I
    Exceptions:
      throws java.net.MalformedURLException, java.io.IOException
    MethodParameters:
      Name  Flags
      uri   

  static void closeConnection(java.net.URLConnection);
    descriptor: (Ljava/net/URLConnection;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.net.URLConnection connection
         0: .line 632
            aload 0 /* connection */
            instanceof java.net.HttpURLConnection
            ifeq 11
         1: .line 633
            aload 0 /* connection */
            checkcast java.net.HttpURLConnection
            astore 1 /* httpConnection */
        start local 1 // java.net.HttpURLConnection httpConnection
         2: .line 635
            aload 1 /* httpConnection */
            invokevirtual java.net.HttpURLConnection.getResponseCode:()I
            sipush 400
            if_icmpge 11
         3: .line 636
            aload 1 /* httpConnection */
            invokevirtual java.net.HttpURLConnection.getInputStream:()Ljava/io/InputStream;
            ifnull 11
         4: .line 637
            aload 1 /* httpConnection */
            invokevirtual java.net.HttpURLConnection.getInputStream:()Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         5: .line 639
            goto 11
      StackMap locals: java.net.URLConnection java.net.HttpURLConnection
      StackMap stack: java.io.IOException
         6: pop
         7: .line 641
            aload 1 /* httpConnection */
            invokevirtual java.net.HttpURLConnection.getErrorStream:()Ljava/io/InputStream;
            ifnull 11
         8: .line 642
            aload 1 /* httpConnection */
            invokevirtual java.net.HttpURLConnection.getErrorStream:()Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         9: .line 644
            goto 11
      StackMap locals:
      StackMap stack: java.io.IOException
        10: pop
        end local 1 // java.net.HttpURLConnection httpConnection
        11: .line 647
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.net.URLConnection connection
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0      connection  Ljava/net/URLConnection;
            2   11     1  httpConnection  Ljava/net/HttpURLConnection;
      Exception table:
        from    to  target  type
           2     5       6  Class java.io.IOException
           7     9      10  Class java.io.IOException
    MethodParameters:
            Name  Flags
      connection  

  private static java.lang.reflect.Method lambda$0();
    descriptor: ()Ljava/lang/reflect/Method;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 172
            ldc Ljava/net/URLConnection;
            ldc "getContentLengthLong"
            iconst_0
            anewarray java.lang.Class
            invokevirtual java.lang.Class.getMethod:(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
         1: areturn
         2: .line 173
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodException
            pop
         3: .line 174
            aconst_null
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.NoSuchMethodException
}
SourceFile: "Locator.java"
NestMembers:
  com.sun.media.jfxmedia.locator.Locator$LocatorConnection
InnerClasses:
  private LocatorConnection = com.sun.media.jfxmedia.locator.Locator$LocatorConnection of com.sun.media.jfxmedia.locator.Locator
  public CacheReference = com.sun.media.jfxmedia.locator.LocatorCache$CacheReference of com.sun.media.jfxmedia.locator.LocatorCache
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles