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