jdk/src/share/classes/sun/misc/URLClassPath.java
author dholmes
Mon, 04 Feb 2013 18:08:50 -0500
changeset 15688 625addfb4d4c
parent 15682 793a36de151d
parent 15305 45a0eb6ab4f7
child 16023 58ecc1b8327b
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 7980
diff changeset
     2
 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3436
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3436
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3436
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3436
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3436
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.misc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    28
import java.util.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.jar.JarFile;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import sun.misc.JarIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import sun.misc.InvalidJarIndexException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.net.www.ParseUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.zip.ZipEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.jar.JarEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.jar.Manifest;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.jar.Attributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.jar.Attributes.Name;
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
    38
import java.util.jar.UnsupportedProfileException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.net.JarURLConnection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.net.MalformedURLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.net.URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.net.URLConnection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.net.HttpURLConnection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.net.URLStreamHandler;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.net.URLStreamHandlerFactory;
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    46
import java.io.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.security.AccessControlException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.security.CodeSigner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import java.security.Permission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import java.security.PrivilegedExceptionAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import java.security.cert.Certificate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import sun.misc.FileURLMapper;
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
    55
import sun.net.util.URLUtil;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * This class is used to maintain a search path of URLs for loading classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * and resources from both JAR files and directories.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * @author  David Connelly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
public class URLClassPath {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    final static String USER_AGENT_JAVA_VERSION = "UA-Java-Version";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    final static String JAVA_VERSION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private static final boolean DEBUG;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
    68
    /**
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
    69
     * Used by launcher to indicate that checking of the JAR file "Profile"
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
    70
     * attribute has been suppressed.
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
    71
     */
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
    72
    private static boolean profileCheckSuppressedByLauncher;
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
    73
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        JAVA_VERSION = java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            new sun.security.action.GetPropertyAction("java.version"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        DEBUG        = (java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            new sun.security.action.GetPropertyAction("sun.misc.URLClassPath.debug")) != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    /* The original search path of URLs. */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
    82
    private ArrayList<URL> path = new ArrayList<URL>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /* The stack of unopened URLs */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
    85
    Stack<URL> urls = new Stack<URL>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /* The resulting search path of Loaders */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
    88
    ArrayList<Loader> loaders = new ArrayList<Loader>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /* Map of each URL opened to its corresponding Loader */
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
    91
    HashMap<String, Loader> lmap = new HashMap<String, Loader>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /* The jar protocol handler to use when creating new URLs */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private URLStreamHandler jarHandler;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    96
    /* Whether this URLClassLoader has been closed yet */
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    97
    private boolean closed = false;
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    98
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * Creates a new URLClassPath for the given URLs. The URLs will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * searched in the order specified for classes and resources. A URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * ending with a '/' is assumed to refer to a directory. Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * the URL is assumed to refer to a JAR file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @param urls the directory and JAR file URLs to search for classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *        and resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * @param factory the URLStreamHandlerFactory to use when creating new URLs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    public URLClassPath(URL[] urls, URLStreamHandlerFactory factory) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        for (int i = 0; i < urls.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            path.add(urls[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        push(urls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        if (factory != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            jarHandler = factory.createURLStreamHandler("jar");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    public URLClassPath(URL[] urls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        this(urls, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   123
    public synchronized List<IOException> closeLoaders() {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   124
        if (closed) {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   125
            return Collections.emptyList();
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   126
        }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   127
        List<IOException> result = new LinkedList<IOException>();
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   128
        for (Loader loader : loaders) {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   129
            try {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   130
                loader.close();
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   131
            } catch (IOException e) {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   132
                result.add (e);
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   133
            }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   134
        }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   135
        closed = true;
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   136
        return result;
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   137
    }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   138
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * Appends the specified URL to the search path of directory and JAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * file URLs from which to load classes and resources.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * If the URL specified is null or is already in the list of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * URLs, then invoking this method has no effect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
3073
5e93bd389012 6827999: 6827999: URLClassLoader.addURL(URL) adds URLs to closed class loader
michaelm
parents: 1940
diff changeset
   146
    public synchronized void addURL(URL url) {
5e93bd389012 6827999: 6827999: URLClassLoader.addURL(URL) adds URLs to closed class loader
michaelm
parents: 1940
diff changeset
   147
        if (closed)
5e93bd389012 6827999: 6827999: URLClassLoader.addURL(URL) adds URLs to closed class loader
michaelm
parents: 1940
diff changeset
   148
            return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        synchronized (urls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            if (url == null || path.contains(url))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            urls.add(0, url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            path.add(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * Returns the original search path of URLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    public URL[] getURLs() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        synchronized (urls) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   163
            return path.toArray(new URL[path.size()]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * Finds the resource with the specified name on the URL search path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * or null if not found or security check fails.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @param name      the name of the resource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @param check     whether to perform a security check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @return a <code>URL</code> for the resource, or <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * if the resource could not be found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    public URL findResource(String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        Loader loader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        for (int i = 0; (loader = getLoader(i)) != null; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            URL url = loader.findResource(name, check);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            if (url != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                return url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * Finds the first Resource on the URL search path which has the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * name. Returns null if no Resource could be found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @param name the name of the Resource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * @param check     whether to perform a security check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @return the Resource, or null if not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    public Resource getResource(String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            System.err.println("URLClassPath.getResource(\"" + name + "\")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        Loader loader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        for (int i = 0; (loader = getLoader(i)) != null; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            Resource res = loader.getResource(name, check);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            if (res != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * Finds all resources on the URL search path with the given name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * Returns an enumeration of the URL objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @param name the resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * @return an Enumeration of all the urls having the specified name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   217
    public Enumeration<URL> findResources(final String name,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                                     final boolean check) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   219
        return new Enumeration<URL>() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            private int index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            private URL url = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            private boolean next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                if (url != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                    Loader loader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                    while ((loader = getLoader(index++)) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                        url = loader.findResource(name, check);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                        if (url != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                return next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   242
            public URL nextElement() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                if (!next()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                    throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                URL u = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                url = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                return u;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    public Resource getResource(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        return getResource(name, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * Finds all resources on the URL search path with the given name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * Returns an enumeration of the Resource objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * @param name the resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * @return an Enumeration of all the resources having the specified name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   264
    public Enumeration<Resource> getResources(final String name,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                                    final boolean check) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   266
        return new Enumeration<Resource>() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            private int index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            private Resource res = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            private boolean next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                if (res != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                    Loader loader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                    while ((loader = getLoader(index++)) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                        res = loader.getResource(name, check);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                        if (res != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
            public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                return next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   289
            public Resource nextElement() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                if (!next()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                    throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                Resource r = res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                res = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                return r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   300
    public Enumeration<Resource> getResources(final String name) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        return getResources(name, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * Returns the Loader at the specified position in the URL search
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * path. The URLs are opened and expanded as needed. Returns null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * if the specified index is out of range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     private synchronized Loader getLoader(int index) {
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   310
        if (closed) {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   311
            return null;
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   312
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
         // Expand URL search path until the request can be satisfied
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
         // or the URL stack is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        while (loaders.size() < index + 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            // Pop the next URL from the URL stack
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            synchronized (urls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                if (urls.empty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                } else {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   322
                    url = urls.pop();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            // Skip this URL if it already has a Loader. (Loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            // may be null in the case where URL has not been opened
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            // but is referenced by a JAR index.)
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   328
            String urlNoFragString = URLUtil.urlNoFragString(url);
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   329
            if (lmap.containsKey(urlNoFragString)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
            // Otherwise, create a new Loader for the URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
            Loader loader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                loader = getLoader(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                // If the loader defines a local class path then add the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                // URLs to the list of URLs to be opened.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                URL[] urls = loader.getClassPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                if (urls != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                    push(urls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                // Silently ignore for now...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            // Finally, add the Loader to the search path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            loaders.add(loader);
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   348
            lmap.put(urlNoFragString, loader);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        }
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   350
        return loaders.get(index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * Returns the Loader for the specified base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    private Loader getLoader(final URL url) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        try {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   358
            return java.security.AccessController.doPrivileged(
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   359
                new java.security.PrivilegedExceptionAction<Loader>() {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   360
                public Loader run() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                    String file = url.getFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                    if (file != null && file.endsWith("/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                        if ("file".equals(url.getProtocol())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                            return new FileLoader(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                            return new Loader(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                        return new JarLoader(url, jarHandler, lmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        } catch (java.security.PrivilegedActionException pae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            throw (IOException)pae.getException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * Pushes the specified URLs onto the list of unopened URLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    private void push(URL[] us) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        synchronized (urls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            for (int i = us.length - 1; i >= 0; --i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                urls.push(us[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * Convert class path specification into an array of file URLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * The path of the file is encoded before conversion into URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * form so that reserved characters can safely appear in the path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    public static URL[] pathToURLs(String path) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        StringTokenizer st = new StringTokenizer(path, File.pathSeparator);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        URL[] urls = new URL[st.countTokens()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        int count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        while (st.hasMoreTokens()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            File f = new File(st.nextToken());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                f = new File(f.getCanonicalPath());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                // use the non-canonicalized filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                urls[count++] = ParseUtil.fileToEncodedURL(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            } catch (IOException x) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        if (urls.length != count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            URL[] tmp = new URL[count];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            System.arraycopy(urls, 0, tmp, 0, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            urls = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        return urls;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Check whether the resource URL should be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * Return null on security check failure.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * Called by java.net.URLClassLoader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    public URL checkURL(URL url) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
            check(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        return url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Check whether the resource URL should be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * Throw exception on failure.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * Called internally within this file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    static void check(URL url) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            URLConnection urlConnection = url.openConnection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
            Permission perm = urlConnection.getPermission();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            if (perm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                    security.checkPermission(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
                } catch (SecurityException se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
                    // fallback to checkRead/checkConnect for pre 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
                    // security managers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
                    if ((perm instanceof java.io.FilePermission) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
                        perm.getActions().indexOf("read") != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                        security.checkRead(perm.getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                    } else if ((perm instanceof
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
                        java.net.SocketPermission) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                        perm.getActions().indexOf("connect") != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                        URL locUrl = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                        if (urlConnection instanceof JarURLConnection) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                            locUrl = ((JarURLConnection)urlConnection).getJarFileURL();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                        security.checkConnect(locUrl.getHost(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                                              locUrl.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                        throw se;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * Inner class used to represent a loader of resources and classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * from a base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     */
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   474
    private static class Loader implements Closeable {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        private final URL base;
7980
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   476
        private JarFile jarfile; // if this points to a jar file
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
         * Creates a new Loader for the specified URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        Loader(URL url) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            base = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
         * Returns the base URL for this Loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        URL getBaseURL() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            return base;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        URL findResource(final String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                url = new URL(base, ParseUtil.encodePath(name, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            } catch (MalformedURLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                throw new IllegalArgumentException("name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                if (check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                    URLClassPath.check(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
                 * For a HTTP connection we use the HEAD method to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                 * check if the resource exists.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                URLConnection uc = url.openConnection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                if (uc instanceof HttpURLConnection) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                    HttpURLConnection hconn = (HttpURLConnection)uc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                    hconn.setRequestMethod("HEAD");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                    if (hconn.getResponseCode() >= HttpURLConnection.HTTP_BAD_REQUEST) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                    // our best guess for the other cases
15305
45a0eb6ab4f7 7183373: URLClassloader.close() does not close JAR files whose resources have been loaded via getResource()
dingxmin
parents: 11131
diff changeset
   518
                    uc.setUseCaches(false);
45a0eb6ab4f7 7183373: URLClassloader.close() does not close JAR files whose resources have been loaded via getResource()
dingxmin
parents: 11131
diff changeset
   519
                    InputStream is = uc.getInputStream();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                    is.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                return url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        Resource getResource(final String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            final URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                url = new URL(base, ParseUtil.encodePath(name, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            } catch (MalformedURLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                throw new IllegalArgumentException("name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            final URLConnection uc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                if (check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                    URLClassPath.check(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                uc = url.openConnection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                InputStream in = uc.getInputStream();
7980
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   542
                if (uc instanceof JarURLConnection) {
9823
2bc6b0d4490e 7050028: ISE "zip file closed" from JarURLConnection.getInputStream on JDK 7 when !useCaches
michaelm
parents: 9035
diff changeset
   543
                    /* Need to remember the jar file so it can be closed
7980
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   544
                     * in a hurry.
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   545
                     */
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   546
                    JarURLConnection juc = (JarURLConnection)uc;
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   547
                    jarfile = juc.getJarFile();
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   548
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            return new Resource() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                public String getName() { return name; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                public URL getURL() { return url; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                public URL getCodeSourceURL() { return base; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                public InputStream getInputStream() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                    return uc.getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                public int getContentLength() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                    return uc.getContentLength();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
         * Returns the Resource for the specified name, or null if not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
         * found or the caller does not have the permission to get the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
         * resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        Resource getResource(final String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
            return getResource(name, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        /*
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   575
         * close this loader and release all resources
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   576
         * method overridden in sub-classes
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   577
         */
7980
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   578
        public void close () throws IOException {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   579
            if (jarfile != null) {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   580
                jarfile.close();
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   581
            }
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents: 5506
diff changeset
   582
        }
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   583
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   584
        /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
         * Returns the local class path for this loader, or null if none.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        URL[] getClassPath() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   592
    /**
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   593
     * Used by the launcher to suppress further checking of the JAR file Profile
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   594
     * attribute (necessary when the launcher is aborting as the abort involves
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   595
     * a resource lookup that may involve opening additional JAR files)
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   596
     */
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   597
    public static void suppressProfileCheckForLauncher() {
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   598
        profileCheckSuppressedByLauncher = true;
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   599
    }
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   600
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * Inner class used to represent a Loader of resources from a JAR URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    static class JarLoader extends Loader {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        private JarFile jar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        private URL csu;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        private JarIndex index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        private MetaIndex metaIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        private URLStreamHandler handler;
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   610
        private HashMap<String, Loader> lmap;
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   611
        private boolean closed = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
         * Creates a new JarLoader for the specified URL referring to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
         * a JAR file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
         */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   617
        JarLoader(URL url, URLStreamHandler jarHandler,
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   618
                  HashMap<String, Loader> loaderMap)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
            super(new URL("jar", "", -1, url + "!/", jarHandler));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            csu = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            handler = jarHandler;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            lmap = loaderMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            if (!isOptimizable(url)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                 String fileName = url.getFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                    fileName = ParseUtil.decode(fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                    File f = new File(fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                    metaIndex = MetaIndex.forJar(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                    // If the meta index is found but the file is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                    // installed, set metaIndex to null. A typical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                    // senario is charsets.jar which won't be installed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                    // when the user is running in certain locale environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                    // The side effect of null metaIndex will cause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                    // ensureOpen get called so that IOException is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                    if (metaIndex != null && !f.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                        metaIndex = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                // metaIndex is null when either there is no such jar file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                // entry recorded in meta-index file or such jar file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                // missing in JRE. See bug 6340399.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                if (metaIndex == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                    ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   654
        @Override
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   655
        public void close () throws IOException {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   656
            // closing is synchronized at higher level
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   657
            if (!closed) {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   658
                closed = true;
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   659
                // in case not already open.
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   660
                ensureOpen();
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   661
                jar.close();
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   662
            }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   663
        }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   664
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        JarFile getJarFile () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            return jar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        private boolean isOptimizable(URL url) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            return "file".equals(url.getProtocol());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        private void ensureOpen() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
            if (jar == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
                    java.security.AccessController.doPrivileged(
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   677
                        new java.security.PrivilegedExceptionAction<Void>() {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   678
                            public Void run() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
                                if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
                                    System.err.println("Opening " + csu);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
                                    Thread.dumpStack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
                                jar = getJarFile(csu);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
                                index = JarIndex.getJarIndex(jar, metaIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
                                if (index != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
                                    String[] jarfiles = index.getJarFiles();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
                                // Add all the dependent URLs to the lmap so that loaders
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
                                // will not be created for them by URLClassPath.getLoader(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
                                // if the same URL occurs later on the main class path.  We set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
                                // Loader to null here to avoid creating a Loader for each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
                                // URL until we actually need to try to load something from them.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
                                    for(int i = 0; i < jarfiles.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
                                            URL jarURL = new URL(csu, jarfiles[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
                                            // If a non-null loader already exists, leave it alone.
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   697
                                            String urlNoFragString = URLUtil.urlNoFragString(jarURL);
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   698
                                            if (!lmap.containsKey(urlNoFragString)) {
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   699
                                                lmap.put(urlNoFragString, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
                                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
                                        } catch (MalformedURLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
                                            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
                                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
                                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                    );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
                } catch (java.security.PrivilegedActionException pae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                    throw (IOException)pae.getException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        private JarFile getJarFile(URL url) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            // Optimize case where url refers to a local jar file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
            if (isOptimizable(url)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                FileURLMapper p = new FileURLMapper (url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                if (!p.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                    throw new FileNotFoundException(p.getPath());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                return new JarFile (p.getPath());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            URLConnection uc = getBaseURL().openConnection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            uc.setRequestProperty(USER_AGENT_JAVA_VERSION, JAVA_VERSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
            return ((JarURLConnection)uc).getJarFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
         * Returns the index of this JarLoader if it exists.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        JarIndex getIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            } catch (IOException e) {
10355
a976ff46116b 7080020: Add conventional constructors to InternalError and VirtualMachineError
darcy
parents: 9823
diff changeset
   737
                throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
         * Creates the resource and if the check flag is set to true, checks if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
         * is its okay to return the resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        Resource checkResource(final String name, boolean check,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            final JarEntry entry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            final URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                url = new URL(getBaseURL(), ParseUtil.encodePath(name, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                if (check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
                    URLClassPath.check(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
            } catch (MalformedURLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                // throw new IllegalArgumentException("name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
            } catch (AccessControlException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
            return new Resource() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                public String getName() { return name; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                public URL getURL() { return url; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                public URL getCodeSourceURL() { return csu; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                public InputStream getInputStream() throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                    { return jar.getInputStream(entry); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
                public int getContentLength()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                    { return (int)entry.getSize(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                public Manifest getManifest() throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                    { return jar.getManifest(); };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                public Certificate[] getCertificates()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                    { return entry.getCertificates(); };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
                public CodeSigner[] getCodeSigners()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                    { return entry.getCodeSigners(); };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
         * Returns true iff atleast one resource in the jar file has the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
         * package name as that of the specified resource name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        boolean validIndex(final String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
            String packageName = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
            int pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
            if((pos = name.lastIndexOf("/")) != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
                packageName = name.substring(0, pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            String entryName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            ZipEntry entry;
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   795
            Enumeration<JarEntry> enum_ = jar.entries();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
            while (enum_.hasMoreElements()) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   797
                entry = enum_.nextElement();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                entryName = entry.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                if((pos = entryName.lastIndexOf("/")) != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                    entryName = entryName.substring(0, pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
                if (entryName.equals(packageName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   808
        /**
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   809
         * If the Profile attribute is present then this method checks that the runtime
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   810
         * supports that profile.
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   811
         *
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   812
         * ## Add a fast path like Class-Path to avoid reading the manifest when the attribute
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   813
         *    is not present.
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   814
         */
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   815
        void checkProfileAttribute() throws IOException {
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   816
            Manifest man = jar.getManifest();
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   817
            if (man != null) {
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   818
                Attributes attr = man.getMainAttributes();
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   819
                if (attr != null) {
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   820
                    String value = attr.getValue(Name.PROFILE);
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   821
                    if (value != null && !Version.supportsProfile(value)) {
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   822
                        String prefix = Version.profileName().length() > 0 ?
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   823
                            "This runtime implements " + Version.profileName() + ", " : "";
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   824
                        throw new UnsupportedProfileException(prefix + csu + " requires " + value);
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   825
                    }
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   826
                }
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   827
            }
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   828
        }
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   829
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
         * Returns the URL for a resource with the specified name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        URL findResource(final String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            Resource rsc = getResource(name, check);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            if (rsc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                return rsc.getURL();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
         * Returns the JAR Resource for the specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
        Resource getResource(final String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
            if (metaIndex != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
                if (!metaIndex.mayContain(name)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
            } catch (IOException e) {
10355
a976ff46116b 7080020: Add conventional constructors to InternalError and VirtualMachineError
darcy
parents: 9823
diff changeset
   854
                throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
            final JarEntry entry = jar.getJarEntry(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
            if (entry != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                return checkResource(name, check, entry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
            if (index == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   863
            HashSet<String> visited = new HashSet<String>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
            return getResource(name, check, visited);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
         * Version of getResource() that tracks the jar files that have been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
         * visited by linking through the index files. This helper method uses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
         * a HashSet to store the URLs of jar files that have been searched and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
         * uses it to avoid going into an infinite loop, looking for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
         * non-existent resource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        Resource getResource(final String name, boolean check,
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   875
                             Set<String> visited) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
            Resource res;
11131
27747ee5a62a 7116857: Warnings in javax.security and some sun.misc
weijun
parents: 10355
diff changeset
   878
            String[] jarFiles;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
            int count = 0;
11131
27747ee5a62a 7116857: Warnings in javax.security and some sun.misc
weijun
parents: 10355
diff changeset
   880
            LinkedList<String> jarFilesList = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
            /* If there no jar files in the index that can potential contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
             * this resource then return immediately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
            if((jarFilesList = index.get(name)) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
            do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
                int size = jarFilesList.size();
11131
27747ee5a62a 7116857: Warnings in javax.security and some sun.misc
weijun
parents: 10355
diff changeset
   890
                jarFiles = jarFilesList.toArray(new String[size]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                /* loop through the mapped jar file list */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
                while(count < size) {
11131
27747ee5a62a 7116857: Warnings in javax.security and some sun.misc
weijun
parents: 10355
diff changeset
   893
                    String jarName = jarFiles[count++];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
                    JarLoader newLoader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
                    final URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
                    try{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
                        url = new URL(csu, jarName);
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   899
                        String urlNoFragString = URLUtil.urlNoFragString(url);
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   900
                        if ((newLoader = (JarLoader)lmap.get(urlNoFragString)) == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
                            /* no loader has been set up for this jar file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
                             * before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
                             */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   904
                            newLoader = AccessController.doPrivileged(
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   905
                                new PrivilegedExceptionAction<JarLoader>() {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   906
                                    public JarLoader run() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                                        return new JarLoader(url, handler,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
                                            lmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
                                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
                            /* this newly opened jar file has its own index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
                             * merge it into the parent's index, taking into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                             * account the relative path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
                             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                            JarIndex newIndex = newLoader.getIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                            if(newIndex != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
                                int pos = jarName.lastIndexOf("/");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
                                newIndex.merge(this.index, (pos == -1 ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
                                    null : jarName.substring(0, pos + 1)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
                            /* put it in the global hashtable */
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   924
                            lmap.put(urlNoFragString, newLoader);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                    } catch (java.security.PrivilegedActionException pae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                    } catch (MalformedURLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
                    /* Note that the addition of the url to the list of visited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
                     * jars incorporates a check for presence in the hashmap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
                     */
3436
c7d276696c5b 6826780: URLClassPath should use HashMap<String, XXX> instead of HashMap<URL, XXX>
chegar
parents: 3073
diff changeset
   936
                    boolean visitedURL = !visited.add(URLUtil.urlNoFragString(url));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
                    if (!visitedURL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
                            newLoader.ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
                        } catch (IOException e) {
10355
a976ff46116b 7080020: Add conventional constructors to InternalError and VirtualMachineError
darcy
parents: 9823
diff changeset
   941
                            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
                        final JarEntry entry = newLoader.jar.getJarEntry(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
                        if (entry != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
                            return newLoader.checkResource(name, check, entry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
                        /* Verify that at least one other resource with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
                         * same package name as the lookedup resource is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
                         * present in the new jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
                        if (!newLoader.validIndex(name)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                            /* the mapping is wrong */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
                            throw new InvalidJarIndexException("Invalid index");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                    /* If newLoader is the current loader or if it is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
                     * loader that has already been searched or if the new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
                     * loader does not have an index then skip it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
                     * and move on to the next loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
                     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
                    if (visitedURL || newLoader == this ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
                            newLoader.getIndex() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                    /* Process the index of the new loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
                     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
                    if((res = newLoader.getResource(name, check, visited))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
                            != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
                        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
                // Get the list of jar files again as the list could have grown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                // due to merging of index files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                jarFilesList = index.get(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
            // If the count is unchanged, we are done.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
            } while(count < jarFilesList.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
         * Returns the JAR file local class path, or null if none.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
        URL[] getClassPath() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
            if (index != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
            if (metaIndex != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
            ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
            parseExtensionsDependencies();
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
   999
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
  1000
            // check Profile attribute if present
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
  1001
            if (!profileCheckSuppressedByLauncher) {
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
  1002
                checkProfileAttribute();
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
  1003
            }
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 11131
diff changeset
  1004
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
            if (SharedSecrets.javaUtilJarAccess().jarFileHasClassPathAttribute(jar)) { // Only get manifest when necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
                Manifest man = jar.getManifest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
                if (man != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
                    Attributes attr = man.getMainAttributes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
                    if (attr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
                        String value = attr.getValue(Name.CLASS_PATH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
                        if (value != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
                            return parseClassPath(csu, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
         * parse the standard extension dependencies
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        private void  parseExtensionsDependencies() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
            ExtensionDependency.checkExtensionsDependencies(jar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
         * Parses value of the Class-Path manifest attribute and returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
         * an array of URLs relative to the specified base URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        private URL[] parseClassPath(URL base, String value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
            throws MalformedURLException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            StringTokenizer st = new StringTokenizer(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
            URL[] urls = new URL[st.countTokens()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
            int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
            while (st.hasMoreTokens()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
                String path = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
                urls[i] = new URL(base, path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
                i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
            return urls;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     * Inner class used to represent a loader of classes and resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
     * from a file URL that refers to a directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
    private static class FileLoader extends Loader {
495
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1051
        /* Canonicalized File */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
        private File dir;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        FileLoader(URL url) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            super(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
            if (!"file".equals(url.getProtocol())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
                throw new IllegalArgumentException("url");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
            String path = url.getFile().replace('/', File.separatorChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            path = ParseUtil.decode(path);
495
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1061
            dir = (new File(path)).getCanonicalFile();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
         * Returns the URL for a resource with the specified name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
        URL findResource(final String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
            Resource rsc = getResource(name, check);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
            if (rsc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
                return rsc.getURL();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
        Resource getResource(final String name, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
            final URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
                URL normalizedBase = new URL(getBaseURL(), ".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
                url = new URL(getBaseURL(), ParseUtil.encodePath(name, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
                if (url.getFile().startsWith(normalizedBase.getFile()) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                    // requested resource had ../..'s in path
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
                if (check)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
                    URLClassPath.check(url);
495
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1088
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1089
                final File file;
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1090
                if (name.indexOf("..") != -1) {
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1091
                    file = (new File(dir, name.replace('/', File.separatorChar)))
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1092
                          .getCanonicalFile();
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1093
                    if ( !((file.getPath()).startsWith(dir.getPath())) ) {
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1094
                        /* outside of base dir */
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1095
                        return null;
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1096
                    }
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1097
                } else {
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1098
                    file = new File(dir, name.replace('/', File.separatorChar));
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1099
                }
d612e90c3ebc 6687919: REGRESSION : Classloader can handle any resource which is not included in classpath
chegar
parents: 51
diff changeset
  1100
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
                if (file.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
                    return new Resource() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
                        public String getName() { return name; };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
                        public URL getURL() { return url; };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
                        public URL getCodeSourceURL() { return getBaseURL(); };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
                        public InputStream getInputStream() throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
                            { return new FileInputStream(file); };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
                        public int getContentLength() throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
                            { return (int)file.length(); };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
                    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
}