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