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