jdk/src/share/classes/java/lang/ClassLoader.java
author dfuchs
Mon, 14 Oct 2013 10:42:36 +0200
changeset 20782 2711da7ccd30
parent 18776 c17100862d86
child 20854 242194ae1563
permissions -rw-r--r--
8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources. Reviewed-by: alanb, psandoz, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
     2
 * Copyright (c) 2013, 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: 4352
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: 4352
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: 4352
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4352
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4352
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.lang.reflect.Constructor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.lang.reflect.InvocationTargetException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.MalformedURLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.net.URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.AccessControlContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.CodeSource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.Policy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.security.PrivilegedActionException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.security.PrivilegedExceptionAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.security.ProtectionDomain;
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
    42
import java.security.cert.Certificate;
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
    43
import java.util.Collections;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.util.HashSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.util.Set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.util.Stack;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import java.util.Vector;
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
    51
import java.util.Hashtable;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
    52
import java.util.WeakHashMap;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
    53
import java.util.concurrent.ConcurrentHashMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import sun.misc.CompoundEnumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import sun.misc.Resource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import sun.misc.URLClassPath;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import sun.misc.VM;
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
    58
import sun.reflect.CallerSensitive;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
import sun.reflect.Reflection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
import sun.security.util.SecurityConstants;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * A class loader is an object that is responsible for loading classes. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * class <tt>ClassLoader</tt> is an abstract class.  Given the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * href="#name">binary name</a> of a class, a class loader should attempt to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * locate or generate data that constitutes a definition for the class.  A
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * typical strategy is to transform the name into a file name and then read a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * "class file" of that name from a file system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * <p> Every {@link Class <tt>Class</tt>} object contains a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * Class#getClassLoader() reference} to the <tt>ClassLoader</tt> that defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * <p> <tt>Class</tt> objects for array classes are not created by class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * loaders, but are created automatically as required by the Java runtime.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * The class loader for an array class, as returned by {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * Class#getClassLoader()} is the same as the class loader for its element
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * type; if the element type is a primitive type, then the array class has no
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <p> Applications implement subclasses of <tt>ClassLoader</tt> in order to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * extend the manner in which the Java virtual machine dynamically loads
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <p> Class loaders may typically be used by security managers to indicate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * security domains.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * <p> The <tt>ClassLoader</tt> class uses a delegation model to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * classes and resources.  Each instance of <tt>ClassLoader</tt> has an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * associated parent class loader.  When requested to find a class or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * resource, a <tt>ClassLoader</tt> instance will delegate the search for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * class or resource to its parent class loader before attempting to find the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * class or resource itself.  The virtual machine's built-in class loader,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * called the "bootstrap class loader", does not itself have a parent but may
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * serve as the parent of a <tt>ClassLoader</tt> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
    97
 * <p> Class loaders that support concurrent loading of classes are known as
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
    98
 * <em>parallel capable</em> class loaders and are required to register
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
    99
 * themselves at their class initialization time by invoking the
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   100
 * {@link
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   101
 * #registerAsParallelCapable <tt>ClassLoader.registerAsParallelCapable</tt>}
6890
43cb79a6b123 6887853: javadoc for java.lang.Classloader should be more clear
valeriep
parents: 6519
diff changeset
   102
 * method. Note that the <tt>ClassLoader</tt> class is registered as parallel
43cb79a6b123 6887853: javadoc for java.lang.Classloader should be more clear
valeriep
parents: 6519
diff changeset
   103
 * capable by default. However, its subclasses still need to register themselves
43cb79a6b123 6887853: javadoc for java.lang.Classloader should be more clear
valeriep
parents: 6519
diff changeset
   104
 * if they are parallel capable. <br>
43cb79a6b123 6887853: javadoc for java.lang.Classloader should be more clear
valeriep
parents: 6519
diff changeset
   105
 * In environments in which the delegation model is not strictly
43cb79a6b123 6887853: javadoc for java.lang.Classloader should be more clear
valeriep
parents: 6519
diff changeset
   106
 * hierarchical, class loaders need to be parallel capable, otherwise class
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   107
 * loading can lead to deadlocks because the loader lock is held for the
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   108
 * duration of the class loading process (see {@link #loadClass
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   109
 * <tt>loadClass</tt>} methods).
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   110
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <p> Normally, the Java virtual machine loads classes from the local file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * system in a platform-dependent manner.  For example, on UNIX systems, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * virtual machine loads classes from the directory defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * <tt>CLASSPATH</tt> environment variable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * <p> However, some classes may not originate from a file; they may originate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * from other sources, such as the network, or they could be constructed by an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * application.  The method {@link #defineClass(String, byte[], int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * <tt>defineClass</tt>} converts an array of bytes into an instance of class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * <tt>Class</tt>. Instances of this newly defined class can be created using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * {@link Class#newInstance <tt>Class.newInstance</tt>}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * <p> The methods and constructors of objects created by a class loader may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * reference other classes.  To determine the class(es) referred to, the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * virtual machine invokes the {@link #loadClass <tt>loadClass</tt>} method of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * the class loader that originally created the class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * <p> For example, an application could create a network class loader to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * download class files from a server.  Sample code might look like:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *   ClassLoader loader&nbsp;= new NetworkClassLoader(host,&nbsp;port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 *   Object main&nbsp;= loader.loadClass("Main", true).newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *       &nbsp;.&nbsp;.&nbsp;.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * <p> The network class loader subclass must define the methods {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * #findClass <tt>findClass</tt>} and <tt>loadClassData</tt> to load a class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * from the network.  Once it has downloaded the bytes that make up the class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * it should use the method {@link #defineClass <tt>defineClass</tt>} to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * create a class instance.  A sample implementation is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 *     class NetworkClassLoader extends ClassLoader {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 *         String host;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 *         int port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 *         public Class findClass(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 *             byte[] b = loadClassData(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 *             return defineClass(name, b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 *         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 *         private byte[] loadClassData(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 *             // load the class data from the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 *             &nbsp;.&nbsp;.&nbsp;.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 *         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 *     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 *
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   160
 * <h3> <a name="name">Binary names</a> </h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 * <p> Any class name provided as a {@link String} parameter to methods in
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   163
 * <tt>ClassLoader</tt> must be a binary name as defined by
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   164
 * <cite>The Java&trade; Language Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * <p> Examples of valid class names include:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 *   "java.lang.String"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 *   "javax.swing.JSpinner$DefaultEditor"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 *   "java.security.KeyStore$Builder$FileBuilder$1"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 *   "java.net.URLClassLoader$3$1"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * @see      #resolveClass(Class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * @since 1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
public abstract class ClassLoader {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    private static native void registerNatives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        registerNatives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    // The parent class loader for delegation
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   185
    // Note: VM hardcoded the offset of this field, thus all new fields
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   186
    // must be added *after* it.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   187
    private final ClassLoader parent;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   188
4352
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   189
    /**
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   190
     * Encapsulates the set of parallel capable loader types.
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   191
     */
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   192
    private static class ParallelLoaders {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   193
        private ParallelLoaders() {}
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   194
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   195
        // the set of parallel capable loader types
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   196
        private static final Set<Class<? extends ClassLoader>> loaderTypes =
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   197
            Collections.newSetFromMap(
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   198
                new WeakHashMap<Class<? extends ClassLoader>, Boolean>());
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   199
        static {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   200
            synchronized (loaderTypes) { loaderTypes.add(ClassLoader.class); }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   201
        }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   202
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   203
        /**
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   204
         * Registers the given class loader type as parallel capabale.
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   205
         * Returns {@code true} is successfully registered; {@code false} if
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   206
         * loader's super class is not registered.
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   207
         */
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   208
        static boolean register(Class<? extends ClassLoader> c) {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   209
            synchronized (loaderTypes) {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   210
                if (loaderTypes.contains(c.getSuperclass())) {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   211
                    // register the class loader as parallel capable
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   212
                    // if and only if all of its super classes are.
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   213
                    // Note: given current classloading sequence, if
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   214
                    // the immediate super class is parallel capable,
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   215
                    // all the super classes higher up must be too.
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   216
                    loaderTypes.add(c);
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   217
                    return true;
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   218
                } else {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   219
                    return false;
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   220
                }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   221
            }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   222
        }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   223
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   224
        /**
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   225
         * Returns {@code true} if the given class loader type is
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   226
         * registered as parallel capable.
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   227
         */
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   228
        static boolean isRegistered(Class<? extends ClassLoader> c) {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   229
            synchronized (loaderTypes) {
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   230
                return loaderTypes.contains(c);
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   231
            }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   232
        }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   233
    }
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   234
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   235
    // Maps class name to the corresponding lock object when the current
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   236
    // class loader is parallel capable.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   237
    // Note: VM also uses this field to decide if the current class loader
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   238
    // is parallel capable and the appropriate lock object for class loading.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   239
    private final ConcurrentHashMap<String, Object> parallelLockMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    // Hashtable that maps packages to certs
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   242
    private final Map <String, Certificate[]> package2certs;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    // Shared among all packages with unsigned classes
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   245
    private static final Certificate[] nocerts = new Certificate[0];
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   246
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   247
    // The classes loaded by this class loader. The only purpose of this table
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   248
    // is to keep the classes from being GC'ed until the loader is GC'ed.
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
   249
    private final Vector<Class<?>> classes = new Vector<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   251
    // The "default" domain. Set as the default ProtectionDomain on newly
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   252
    // created classes.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   253
    private final ProtectionDomain defaultDomain =
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   254
        new ProtectionDomain(new CodeSource(null, (Certificate[]) null),
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   255
                             null, this, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    // The initiating protection domains for all classes loaded by this loader
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   258
    private final Set<ProtectionDomain> domains;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    // Invoked by the VM to record every loaded class with this loader.
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   261
    void addClass(Class<?> c) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        classes.addElement(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    // The packages defined in this class loader.  Each package name is mapped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    // to its corresponding Package object.
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   267
    // @GuardedBy("itself")
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
   268
    private final HashMap<String, Package> packages = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
4192
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   270
    private static Void checkCreateClassLoader() {
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   271
        SecurityManager security = System.getSecurityManager();
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   272
        if (security != null) {
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   273
            security.checkCreateClassLoader();
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   274
        }
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   275
        return null;
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   276
    }
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   277
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   278
    private ClassLoader(Void unused, ClassLoader parent) {
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   279
        this.parent = parent;
4352
ddaa5f39a2ac 6902010: (cl) Delay initialization of ClassLoader.parallelLoaders
alanb
parents: 4209
diff changeset
   280
        if (ParallelLoaders.isRegistered(this.getClass())) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
   281
            parallelLockMap = new ConcurrentHashMap<>();
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
   282
            package2certs = new ConcurrentHashMap<>();
4192
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   283
            domains =
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   284
                Collections.synchronizedSet(new HashSet<ProtectionDomain>());
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   285
            assertionLock = new Object();
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   286
        } else {
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   287
            // no finer-grained lock; lock on the classloader instance
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   288
            parallelLockMap = null;
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
   289
            package2certs = new Hashtable<>();
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
   290
            domains = new HashSet<>();
4192
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   291
            assertionLock = this;
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   292
        }
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   293
    }
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   294
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * Creates a new class loader using the specified parent class loader for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * delegation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * <p> If there is a security manager, its {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * SecurityManager#checkCreateClassLoader()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * <tt>checkCreateClassLoader</tt>} method is invoked.  This may result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * a security exception.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @param  parent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *         The parent class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *          <tt>checkCreateClassLoader</tt> method doesn't allow creation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *          of a new class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    protected ClassLoader(ClassLoader parent) {
4192
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   315
        this(checkCreateClassLoader(), parent);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * Creates a new class loader using the <tt>ClassLoader</tt> returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * the method {@link #getSystemClassLoader()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * <tt>getSystemClassLoader()</tt>} as the parent class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * <p> If there is a security manager, its {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * SecurityManager#checkCreateClassLoader()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * <tt>checkCreateClassLoader</tt>} method is invoked.  This may result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * a security exception.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *          <tt>checkCreateClassLoader</tt> method doesn't allow creation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *          of a new class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    protected ClassLoader() {
4192
34d923c996e4 6636650: (cl) Resurrected ClassLoaders can still have children
valeriep
parents: 3111
diff changeset
   334
        this(checkCreateClassLoader(), getSystemClassLoader());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    // -- Class --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * Loads the class with the specified <a href="#name">binary name</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * This method searches for classes in the same manner as the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * #loadClass(String, boolean)} method.  It is invoked by the Java virtual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * machine to resolve class references.  Invoking this method is equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * to invoking {@link #loadClass(String, boolean) <tt>loadClass(name,
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   345
     * false)</tt>}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *         The <a href="#name">binary name</a> of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @return  The resulting <tt>Class</tt> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * @throws  ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *          If the class was not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    public Class<?> loadClass(String name) throws ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        return loadClass(name, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * Loads the class with the specified <a href="#name">binary name</a>.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * default implementation of this method searches for classes in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * following order:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * <p><ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *   <li><p> Invoke {@link #findLoadedClass(String)} to check if the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     *   has already been loaded.  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     *   <li><p> Invoke the {@link #loadClass(String) <tt>loadClass</tt>} method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     *   on the parent class loader.  If the parent is <tt>null</tt> the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     *   loader built-in to the virtual machine is used, instead.  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     *   <li><p> Invoke the {@link #findClass(String)} method to find the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *   class.  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * <p> If the class was found using the above steps, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * <tt>resolve</tt> flag is true, this method will then invoke the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * #resolveClass(Class)} method on the resulting <tt>Class</tt> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * <p> Subclasses of <tt>ClassLoader</tt> are encouraged to override {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * #findClass(String)}, rather than this method.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   385
     * <p> Unless overridden, this method synchronizes on the result of
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   386
     * {@link #getClassLoadingLock <tt>getClassLoadingLock</tt>} method
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   387
     * during the entire class loading process.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   388
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *         The <a href="#name">binary name</a> of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @param  resolve
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     *         If <tt>true</tt> then resolve the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @return  The resulting <tt>Class</tt> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * @throws  ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     *          If the class could not be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   400
    protected Class<?> loadClass(String name, boolean resolve)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        throws ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   403
        synchronized (getClassLoadingLock(name)) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   404
            // First, check if the class has already been loaded
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   405
            Class<?> c = findLoadedClass(name);
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   406
            if (c == null) {
3849
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3833
diff changeset
   407
                long t0 = System.nanoTime();
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   408
                try {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   409
                    if (parent != null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   410
                        c = parent.loadClass(name, false);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   411
                    } else {
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   412
                        c = findBootstrapClassOrNull(name);
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   413
                    }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   414
                } catch (ClassNotFoundException e) {
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   415
                    // ClassNotFoundException thrown if class not found
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   416
                    // from the non-null parent class loader
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   417
                }
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   418
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   419
                if (c == null) {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   420
                    // If still not found, then invoke findClass in order
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   421
                    // to find the class.
3849
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3833
diff changeset
   422
                    long t1 = System.nanoTime();
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   423
                    c = findClass(name);
3849
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3833
diff changeset
   424
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3833
diff changeset
   425
                    // this is the defining class loader; record the stats
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3833
diff changeset
   426
                    sun.misc.PerfCounter.getParentDelegationTime().addTime(t1 - t0);
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3833
diff changeset
   427
                    sun.misc.PerfCounter.getFindClassTime().addElapsedTimeFrom(t1);
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3833
diff changeset
   428
                    sun.misc.PerfCounter.getFindClasses().increment();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
                }
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   430
            }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   431
            if (resolve) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   432
                resolveClass(c);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   433
            }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   434
            return c;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   435
        }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   436
    }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   437
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   438
    /**
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   439
     * Returns the lock object for class loading operations.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   440
     * For backward compatibility, the default implementation of this method
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   441
     * behaves as follows. If this ClassLoader object is registered as
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   442
     * parallel capable, the method returns a dedicated object associated
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   443
     * with the specified class name. Otherwise, the method returns this
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   444
     * ClassLoader object.
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   445
     *
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   446
     * @param  className
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   447
     *         The name of the to-be-loaded class
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   448
     *
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   449
     * @return the lock for class loading operations
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   450
     *
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   451
     * @throws NullPointerException
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   452
     *         If registered as parallel capable and <tt>className</tt> is null
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   453
     *
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   454
     * @see #loadClass(String, boolean)
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   455
     *
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   456
     * @since  1.7
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   457
     */
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   458
    protected Object getClassLoadingLock(String className) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   459
        Object lock = this;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   460
        if (parallelLockMap != null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   461
            Object newLock = new Object();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   462
            lock = parallelLockMap.putIfAbsent(className, newLock);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   463
            if (lock == null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   464
                lock = newLock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        }
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   467
        return lock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
    // This method is invoked by the virtual machine to load a class.
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   471
    private Class<?> loadClassInternal(String name)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        throws ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   474
        // For backward compatibility, explicitly lock on 'this' when
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   475
        // the current class loader is not parallel capable.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   476
        if (parallelLockMap == null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   477
            synchronized (this) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   478
                 return loadClass(name);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   479
            }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   480
        } else {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   481
            return loadClass(name);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   482
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   485
    // Invoked by the VM after loading class with this loader.
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   486
    private void checkPackageAccess(Class<?> cls, ProtectionDomain pd) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        final SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            final String name = cls.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            final int i = name.lastIndexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
            if (i != -1) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   492
                AccessController.doPrivileged(new PrivilegedAction<Void>() {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   493
                    public Void run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                        sm.checkPackageAccess(name.substring(0, i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                }, new AccessControlContext(new ProtectionDomain[] {pd}));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        domains.add(pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * Finds the class with the specified <a href="#name">binary name</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * This method should be overridden by class loader implementations that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * follow the delegation model for loading classes, and will be invoked by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * the {@link #loadClass <tt>loadClass</tt>} method after checking the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * parent class loader for the requested class.  The default implementation
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   509
     * throws a <tt>ClassNotFoundException</tt>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     *         The <a href="#name">binary name</a> of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * @return  The resulting <tt>Class</tt> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * @throws  ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     *          If the class could not be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    protected Class<?> findClass(String name) throws ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        throw new ClassNotFoundException(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * Converts an array of bytes into an instance of class <tt>Class</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * Before the <tt>Class</tt> can be used it must be resolved.  This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * is deprecated in favor of the version that takes a <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * href="#name">binary name</a> as its first argument, and is more secure.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * @param  b
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     *         The bytes that make up the class data.  The bytes in positions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     *         <tt>off</tt> through <tt>off+len-1</tt> should have the format
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   534
     *         of a valid class file as defined by
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   535
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * @param  off
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     *         The start offset in <tt>b</tt> of the class data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * @param  len
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     *         The length of the class data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * @return  The <tt>Class</tt> object that was created from the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     *          class data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * @throws  ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     *          If the data did not contain a valid class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *          If either <tt>off</tt> or <tt>len</tt> is negative, or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     *          <tt>off+len</tt> is greater than <tt>b.length</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     *
7029
1f8f7240a1e2 6541462: outdated specification for CCC 6339875
kamg
parents: 6890
diff changeset
   553
     * @throws  SecurityException
1f8f7240a1e2 6541462: outdated specification for CCC 6339875
kamg
parents: 6890
diff changeset
   554
     *          If an attempt is made to add this class to a package that
1f8f7240a1e2 6541462: outdated specification for CCC 6339875
kamg
parents: 6890
diff changeset
   555
     *          contains classes that were signed by a different set of
1f8f7240a1e2 6541462: outdated specification for CCC 6339875
kamg
parents: 6890
diff changeset
   556
     *          certificates than this class, or if an attempt is made
1f8f7240a1e2 6541462: outdated specification for CCC 6339875
kamg
parents: 6890
diff changeset
   557
     *          to define a class in a package with a fully-qualified name
1f8f7240a1e2 6541462: outdated specification for CCC 6339875
kamg
parents: 6890
diff changeset
   558
     *          that starts with "{@code java.}".
1f8f7240a1e2 6541462: outdated specification for CCC 6339875
kamg
parents: 6890
diff changeset
   559
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * @see  #loadClass(String, boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @see  #resolveClass(Class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * @deprecated  Replaced by {@link #defineClass(String, byte[], int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * defineClass(String, byte[], int, int)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    protected final Class<?> defineClass(byte[] b, int off, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        throws ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        return defineClass(null, b, off, len, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * Converts an array of bytes into an instance of class <tt>Class</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * Before the <tt>Class</tt> can be used it must be resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * <p> This method assigns a default {@link java.security.ProtectionDomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * <tt>ProtectionDomain</tt>} to the newly defined class.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * <tt>ProtectionDomain</tt> is effectively granted the same set of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * permissions returned when {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * java.security.Policy#getPermissions(java.security.CodeSource)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * <tt>Policy.getPolicy().getPermissions(new CodeSource(null, null))</tt>}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * is invoked.  The default domain is created on the first invocation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * {@link #defineClass(String, byte[], int, int) <tt>defineClass</tt>},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * and re-used on subsequent invocations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * <p> To assign a specific <tt>ProtectionDomain</tt> to the class, use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * the {@link #defineClass(String, byte[], int, int,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * java.security.ProtectionDomain) <tt>defineClass</tt>} method that takes a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * <tt>ProtectionDomain</tt> as one of its arguments.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     *         The expected <a href="#name">binary name</a> of the class, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     *         <tt>null</tt> if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * @param  b
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     *         The bytes that make up the class data.  The bytes in positions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     *         <tt>off</tt> through <tt>off+len-1</tt> should have the format
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   599
     *         of a valid class file as defined by
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   600
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * @param  off
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     *         The start offset in <tt>b</tt> of the class data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * @param  len
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     *         The length of the class data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * @return  The <tt>Class</tt> object that was created from the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     *          class data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * @throws  ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     *          If the data did not contain a valid class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     *          If either <tt>off</tt> or <tt>len</tt> is negative, or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     *          <tt>off+len</tt> is greater than <tt>b.length</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *          If an attempt is made to add this class to a package that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     *          contains classes that were signed by a different set of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *          certificates than this class (which is unsigned), or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     *          <tt>name</tt> begins with "<tt>java.</tt>".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * @see  #loadClass(String, boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * @see  #resolveClass(Class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * @see  java.security.CodeSource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * @see  java.security.SecureClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * @since  1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
    protected final Class<?> defineClass(String name, byte[] b, int off, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        throws ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        return defineClass(name, b, off, len, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    /* Determine protection domain, and check that:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
        - not define java.* class,
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   639
        - signer of this class matches signers for the rest of the classes in
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   640
          package.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    private ProtectionDomain preDefineClass(String name,
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   643
                                            ProtectionDomain pd)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        if (!checkName(name))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            throw new NoClassDefFoundError("IllegalName: " + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        if ((name != null) && name.startsWith("java.")) {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   649
            throw new SecurityException
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   650
                ("Prohibited package name: " +
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   651
                 name.substring(0, name.lastIndexOf('.')));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        }
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   653
        if (pd == null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   654
            pd = defaultDomain;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   657
        if (name != null) checkCerts(name, pd.getCodeSource());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   659
        return pd;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   662
    private String defineClassSourceLocation(ProtectionDomain pd)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
    {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   664
        CodeSource cs = pd.getCodeSource();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        String source = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        if (cs != null && cs.getLocation() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
            source = cs.getLocation().toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        return source;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   672
    private void postDefineClass(Class<?> c, ProtectionDomain pd)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   674
        if (pd.getCodeSource() != null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   675
            Certificate certs[] = pd.getCodeSource().getCertificates();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            if (certs != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
                setSigners(c, certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * Converts an array of bytes into an instance of class <tt>Class</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * with an optional <tt>ProtectionDomain</tt>.  If the domain is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * <tt>null</tt>, then a default domain will be assigned to the class as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * specified in the documentation for {@link #defineClass(String, byte[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * int, int)}.  Before the class can be used it must be resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * <p> The first class defined in a package determines the exact set of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * certificates that all subsequent classes defined in that package must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * contain.  The set of certificates for a class is obtained from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * {@link java.security.CodeSource <tt>CodeSource</tt>} within the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * <tt>ProtectionDomain</tt> of the class.  Any classes added to that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * package must contain the same set of certificates or a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * <tt>SecurityException</tt> will be thrown.  Note that if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * <tt>name</tt> is <tt>null</tt>, this check is not performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * You should always pass in the <a href="#name">binary name</a> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * class you are defining as well as the bytes.  This ensures that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * class you are defining is indeed the class you think it is.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * <p> The specified <tt>name</tt> cannot begin with "<tt>java.</tt>", since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * all classes in the "<tt>java.*</tt> packages can only be defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * bootstrap class loader.  If <tt>name</tt> is not <tt>null</tt>, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * must be equal to the <a href="#name">binary name</a> of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * specified by the byte array "<tt>b</tt>", otherwise a {@link
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 16906
diff changeset
   705
     * NoClassDefFoundError <tt>NoClassDefFoundError</tt>} will be thrown. </p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     *         The expected <a href="#name">binary name</a> of the class, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     *         <tt>null</tt> if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * @param  b
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     *         The bytes that make up the class data. The bytes in positions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     *         <tt>off</tt> through <tt>off+len-1</tt> should have the format
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   714
     *         of a valid class file as defined by
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   715
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * @param  off
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     *         The start offset in <tt>b</tt> of the class data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * @param  len
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     *         The length of the class data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * @param  protectionDomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     *         The ProtectionDomain of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * @return  The <tt>Class</tt> object created from the data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     *          and optional <tt>ProtectionDomain</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * @throws  ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     *          If the data did not contain a valid class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * @throws  NoClassDefFoundError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     *          If <tt>name</tt> is not equal to the <a href="#name">binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     *          name</a> of the class specified by <tt>b</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * @throws  IndexOutOfBoundsException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     *          If either <tt>off</tt> or <tt>len</tt> is negative, or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     *          <tt>off+len</tt> is greater than <tt>b.length</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     *          If an attempt is made to add this class to a package that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     *          contains classes that were signed by a different set of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     *          certificates than this class, or if <tt>name</tt> begins with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     *          "<tt>java.</tt>".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
    protected final Class<?> defineClass(String name, byte[] b, int off, int len,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
                                         ProtectionDomain protectionDomain)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        throws ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        protectionDomain = preDefineClass(name, protectionDomain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        String source = defineClassSourceLocation(protectionDomain);
16063
18e7ee7b4301 8009645: ClassFileTransformer hooks in ClassLoader no longer required
alanb
parents: 13589
diff changeset
   752
        Class<?> c = defineClass1(name, b, off, len, protectionDomain, source);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        postDefineClass(c, protectionDomain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * Converts a {@link java.nio.ByteBuffer <tt>ByteBuffer</tt>}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * into an instance of class <tt>Class</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * with an optional <tt>ProtectionDomain</tt>.  If the domain is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     * <tt>null</tt>, then a default domain will be assigned to the class as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     * specified in the documentation for {@link #defineClass(String, byte[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * int, int)}.  Before the class can be used it must be resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     *
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   765
     * <p>The rules about the first class defined in a package determining the
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   766
     * set of certificates for the package, and the restrictions on class names
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   767
     * are identical to those specified in the documentation for {@link
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   768
     * #defineClass(String, byte[], int, int, ProtectionDomain)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * <p> An invocation of this method of the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * <i>cl</i><tt>.defineClass(</tt><i>name</i><tt>,</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * <i>bBuffer</i><tt>,</tt> <i>pd</i><tt>)</tt> yields exactly the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     * result as the statements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     *
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   775
     *<p> <tt>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * ...<br>
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   777
     * byte[] temp = new byte[bBuffer.{@link
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   778
     * java.nio.ByteBuffer#remaining remaining}()];<br>
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   779
     *     bBuffer.{@link java.nio.ByteBuffer#get(byte[])
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * get}(temp);<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     *     return {@link #defineClass(String, byte[], int, int, ProtectionDomain)
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   782
     * cl.defineClass}(name, temp, 0,
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   783
     * temp.length, pd);<br>
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
   784
     * </tt></p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * @param  name
6519
1a7d0030a638 6977548: Broken link in ClassLoader.defineClass javadoc
mchung
parents: 5506
diff changeset
   787
     *         The expected <a href="#name">binary name</a>. of the class, or
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     *         <tt>null</tt> if not known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * @param  b
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     *         The bytes that make up the class data. The bytes from positions
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   792
     *         <tt>b.position()</tt> through <tt>b.position() + b.limit() -1
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   793
     *         </tt> should have the format of a valid class file as defined by
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   794
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * @param  protectionDomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     *         The ProtectionDomain of the class, or <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * @return  The <tt>Class</tt> object created from the data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     *          and optional <tt>ProtectionDomain</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * @throws  ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     *          If the data did not contain a valid class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * @throws  NoClassDefFoundError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     *          If <tt>name</tt> is not equal to the <a href="#name">binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     *          name</a> of the class specified by <tt>b</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     *          If an attempt is made to add this class to a package that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     *          contains classes that were signed by a different set of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     *          certificates than this class, or if <tt>name</tt> begins with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     *          "<tt>java.</tt>".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     * @see      #defineClass(String, byte[], int, int, ProtectionDomain)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
    protected final Class<?> defineClass(String name, java.nio.ByteBuffer b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                                         ProtectionDomain protectionDomain)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        throws ClassFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        int len = b.remaining();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        // Use byte[] if not a direct ByteBufer:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        if (!b.isDirect()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            if (b.hasArray()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
                return defineClass(name, b.array(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                                   b.position() + b.arrayOffset(), len,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                                   protectionDomain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                // no array, or read-only array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                byte[] tb = new byte[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
                b.get(tb);  // get bytes out of byte buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                return defineClass(name, tb, 0, len, protectionDomain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        protectionDomain = preDefineClass(name, protectionDomain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        String source = defineClassSourceLocation(protectionDomain);
16063
18e7ee7b4301 8009645: ClassFileTransformer hooks in ClassLoader no longer required
alanb
parents: 13589
diff changeset
   841
        Class<?> c = defineClass2(name, b, b.position(), len, protectionDomain, source);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
        postDefineClass(c, protectionDomain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   846
    private native Class<?> defineClass0(String name, byte[] b, int off, int len,
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   847
                                         ProtectionDomain pd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   849
    private native Class<?> defineClass1(String name, byte[] b, int off, int len,
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   850
                                         ProtectionDomain pd, String source);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   852
    private native Class<?> defineClass2(String name, java.nio.ByteBuffer b,
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   853
                                         int off, int len, ProtectionDomain pd,
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   854
                                         String source);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    // true if the name is null or has the potential to be a valid binary name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
    private boolean checkName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
        if ((name == null) || (name.length() == 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
        if ((name.indexOf('/') != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
            || (!VM.allowArraySyntax() && (name.charAt(0) == '[')))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   866
    private void checkCerts(String name, CodeSource cs) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        int i = name.lastIndexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        String pname = (i == -1) ? "" : name.substring(0, i);
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   869
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   870
        Certificate[] certs = null;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   871
        if (cs != null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   872
            certs = cs.getCertificates();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   873
        }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   874
        Certificate[] pcerts = null;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   875
        if (parallelLockMap == null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   876
            synchronized (this) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   877
                pcerts = package2certs.get(pname);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   878
                if (pcerts == null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   879
                    package2certs.put(pname, (certs == null? nocerts:certs));
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   880
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        } else {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   883
            pcerts = ((ConcurrentHashMap<String, Certificate[]>)package2certs).
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   884
                putIfAbsent(pname, (certs == null? nocerts:certs));
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   885
        }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   886
        if (pcerts != null && !compareCerts(pcerts, certs)) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   887
            throw new SecurityException("class \""+ name +
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
   888
                 "\"'s signer information does not match signer information of other classes in the same package");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * check to make sure the certs for the new class (certs) are the same as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * the certs for the first class inserted in the package (pcerts)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   896
    private boolean compareCerts(Certificate[] pcerts,
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   897
                                 Certificate[] certs)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        // certs can be null, indicating no certs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        if ((certs == null) || (certs.length == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
            return pcerts.length == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        // the length must be the same at this point
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        if (certs.length != pcerts.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        // go through and make sure all the certs in one array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        // are in the other and vice-versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
        boolean match;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
        for (int i = 0; i < certs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
            match = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
            for (int j = 0; j < pcerts.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                if (certs[i].equals(pcerts[j])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
                    match = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            if (!match) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        // now do the same for pcerts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
        for (int i = 0; i < pcerts.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
            match = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
            for (int j = 0; j < certs.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                if (pcerts[i].equals(certs[j])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
                    match = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            if (!match) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
     * Links the specified class.  This (misleadingly named) method may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     * used by a class loader to link a class.  If the class <tt>c</tt> has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * already been linked, then this method simply returns. Otherwise, the
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   941
     * class is linked as described in the "Execution" chapter of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
   942
     * <cite>The Java&trade; Language Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * @param  c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     *         The class to link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * @throws  NullPointerException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     *          If <tt>c</tt> is <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * @see  #defineClass(String, byte[], int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    protected final void resolveClass(Class<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        resolveClass0(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   956
    private native void resolveClass0(Class<?> c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * Finds a class with the specified <a href="#name">binary name</a>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     * loading it if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     * <p> This method loads the class through the system class loader (see
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     * {@link #getSystemClassLoader()}).  The <tt>Class</tt> object returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     * might have more than one <tt>ClassLoader</tt> associated with it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     * Subclasses of <tt>ClassLoader</tt> need not usually invoke this method,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     * because most class loaders need to override just {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     * #findClass(String)}.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     *         The <a href="#name">binary name</a> of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * @return  The <tt>Class</tt> object for the specified <tt>name</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     * @throws  ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     *          If the class could not be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * @see  #ClassLoader(ClassLoader)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     * @see  #getParent()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
    protected final Class<?> findSystemClass(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        throws ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        ClassLoader system = getSystemClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        if (system == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
            if (!checkName(name))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
                throw new ClassNotFoundException(name);
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
   987
            Class<?> cls = findBootstrapClass(name);
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   988
            if (cls == null) {
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   989
                throw new ClassNotFoundException(name);
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   990
            }
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   991
            return cls;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        return system.loadClass(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   996
    /**
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   997
     * Returns a class loaded by the bootstrap class loader;
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   998
     * or return null if not found.
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
   999
     */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  1000
    private Class<?> findBootstrapClassOrNull(String name)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
    {
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
  1002
        if (!checkName(name)) return null;
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
  1003
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        return findBootstrapClass(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
3833
b666ed188811 4917309: (cl) Reduce internal usage of ClassNotFoundExceptions during class-loading
mchung
parents: 3111
diff changeset
  1007
    // return null if not found
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  1008
    private native Class<?> findBootstrapClass(String name);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     * Returns the class with the given <a href="#name">binary name</a> if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     * loader has been recorded by the Java virtual machine as an initiating
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
     * loader of a class with that <a href="#name">binary name</a>.  Otherwise
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1014
     * <tt>null</tt> is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     *         The <a href="#name">binary name</a> of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     * @return  The <tt>Class</tt> object, or <tt>null</tt> if the class has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     *          not been loaded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
     * @since  1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
    protected final Class<?> findLoadedClass(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        if (!checkName(name))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        return findLoadedClass0(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  1030
    private native final Class<?> findLoadedClass0(String name);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     * Sets the signers of a class.  This should be invoked after defining a
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1034
     * class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
     * @param  c
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
     *         The <tt>Class</tt> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     * @param  signers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
     *         The signers for the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
     * @since  1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    protected final void setSigners(Class<?> c, Object[] signers) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
        c.setSigners(signers);
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
    // -- Resource --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
     * Finds the resource with the given name.  A resource is some data
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
     * (images, audio, text, etc) that can be accessed by class code in a way
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
     * that is independent of the location of the code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     * <p> The name of a resource is a '<tt>/</tt>'-separated path name that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
     * identifies the resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
     * <p> This method will first search the parent class loader for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
     * resource; if the parent is <tt>null</tt> the path of the class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     * built-in to the virtual machine is searched.  That failing, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
     * will invoke {@link #findResource(String)} to find the resource.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
     *
20782
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1064
     * @apiNote When overriding this method it is recommended that an
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1065
     * implementation ensures that any delegation is consistent with the {@link
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1066
     * #getResources(java.lang.String) getResources(String)} method.
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1067
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * @return  A <tt>URL</tt> object for reading the resource, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     *          <tt>null</tt> if the resource could not be found or the invoker
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     *          doesn't have adequate  privileges to get the resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     * @since  1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
    public URL getResource(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
        URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        if (parent != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
            url = parent.getResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
            url = getBootstrapResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        if (url == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
            url = findResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        return url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
     * Finds all the resources with the given name. A resource is some data
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * (images, audio, text, etc) that can be accessed by class code in a way
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     * that is independent of the location of the code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
     * <p>The name of a resource is a <tt>/</tt>-separated path name that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * identifies the resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * <p> The search order is described in the documentation for {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * #getResource(String)}.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     *
20782
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1101
     * @apiNote When overriding this method it is recommended that an
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1102
     * implementation ensures that any delegation is consistent with the {@link
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1103
     * #getResource(java.lang.String) getResource(String)} method. This should
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1104
     * ensure that the first element returned by the Enumeration's
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1105
     * {@code nextElement} method is the same resource that the
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1106
     * {@code getResource(String)} method would return.
2711da7ccd30 8024704: Improve API documentation of ClassLoader and ServiceLoader with respect to enumeration of resources.
dfuchs
parents: 18776
diff changeset
  1107
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     * @return  An enumeration of {@link java.net.URL <tt>URL</tt>} objects for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     *          the resource.  If no resources could  be found, the enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     *          will be empty.  Resources that the class loader doesn't have
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     *          access to will not be in the enumeration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     *          If I/O errors occur
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     * @see  #findResources(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
    public Enumeration<URL> getResources(String name) throws IOException {
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11117
diff changeset
  1124
        @SuppressWarnings("unchecked")
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11117
diff changeset
  1125
        Enumeration<URL>[] tmp = (Enumeration<URL>[]) new Enumeration<?>[2];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
        if (parent != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
            tmp[0] = parent.getResources(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
            tmp[0] = getBootstrapResources(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
        tmp[1] = findResources(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  1133
        return new CompoundEnumeration<>(tmp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     * Finds the resource with the given name. Class loader implementations
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1138
     * should override this method to specify where to find resources.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     * @return  A <tt>URL</tt> object for reading the resource, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     *          <tt>null</tt> if the resource could not be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
    protected URL findResource(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     * Returns an enumeration of {@link java.net.URL <tt>URL</tt>} objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * representing all the resources with the given name. Class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     * implementations should override this method to specify where to load
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1156
     * resources from.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * @return  An enumeration of {@link java.net.URL <tt>URL</tt>} objects for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     *          the resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     *          If I/O errors occur
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
    protected Enumeration<URL> findResources(String name) throws IOException {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1170
        return java.util.Collections.emptyEnumeration();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1173
    /**
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1174
     * Registers the caller as parallel capable.
6890
43cb79a6b123 6887853: javadoc for java.lang.Classloader should be more clear
valeriep
parents: 6519
diff changeset
  1175
     * The registration succeeds if and only if all of the following
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1176
     * conditions are met:
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1177
     * <ol>
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1178
     * <li> no instance of the caller has been created</li>
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1179
     * <li> all of the super classes (except class Object) of the caller are
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1180
     * registered as parallel capable</li>
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1181
     * </ol>
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1182
     * <p>Note that once a class loader is registered as parallel capable, there
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1183
     * is no way to change it back.</p>
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1184
     *
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1185
     * @return  true if the caller is successfully registered as
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1186
     *          parallel capable and false if otherwise.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1187
     *
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1188
     * @since   1.7
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1189
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1190
    @CallerSensitive
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1191
    protected static boolean registerAsParallelCapable() {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1192
        Class<? extends ClassLoader> callerClass =
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1193
            Reflection.getCallerClass().asSubclass(ClassLoader.class);
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1194
        return ParallelLoaders.register(callerClass);
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1195
    }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1196
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
     * Find a resource of the specified name from the search path used to load
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
     * classes.  This method locates the resource through the system class
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1200
     * loader (see {@link #getSystemClassLoader()}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
     * @return  A {@link java.net.URL <tt>URL</tt>} object for reading the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     *          resource, or <tt>null</tt> if the resource could not be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     * @since  1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
    public static URL getSystemResource(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
        ClassLoader system = getSystemClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
        if (system == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
            return getBootstrapResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
        return system.getResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     * Finds all resources of the specified name from the search path used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     * load classes.  The resources thus found are returned as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     * {@link java.util.Enumeration <tt>Enumeration</tt>} of {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * java.net.URL <tt>URL</tt>} objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     * <p> The search order is described in the documentation for {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
     * #getSystemResource(String)}.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     * @return  An enumeration of resource {@link java.net.URL <tt>URL</tt>}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     *          objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
     *          If I/O errors occur
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
    public static Enumeration<URL> getSystemResources(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
        ClassLoader system = getSystemClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
        if (system == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
            return getBootstrapResources(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
        return system.getResources(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     * Find resources from the VM's built-in classloader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
    private static URL getBootstrapResource(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
        URLClassPath ucp = getBootstrapClassPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        Resource res = ucp.getResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
        return res != null ? res.getURL() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
     * Find resources from the VM's built-in classloader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
     */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1260
    private static Enumeration<URL> getBootstrapResources(String name)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
    {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1263
        final Enumeration<Resource> e =
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1264
            getBootstrapClassPath().getResources(name);
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1265
        return new Enumeration<URL> () {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1266
            public URL nextElement() {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1267
                return e.nextElement().getURL();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
            public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
                return e.hasMoreElements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
    // Returns the URLClassPath that is used for finding system resources.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
    static URLClassPath getBootstrapClassPath() {
3111
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2448
diff changeset
  1277
        return sun.misc.Launcher.getBootstrapClassPath();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     * Returns an input stream for reading the specified resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
     * <p> The search order is described in the documentation for {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
     * #getResource(String)}.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * @return  An input stream for reading the resource, or <tt>null</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     *          if the resource could not be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     * @since  1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
    public InputStream getResourceAsStream(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        URL url = getResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
            return url != null ? url.openStream() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     * Open for reading, a resource of the specified name from the search path
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
     * used to load classes.  This method locates the resource through the
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1307
     * system class loader (see {@link #getSystemClassLoader()}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
     *         The resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
     * @return  An input stream for reading the resource, or <tt>null</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
     *          if the resource could not be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
     * @since  1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
    public static InputStream getSystemResourceAsStream(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
        URL url = getSystemResource(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
            return url != null ? url.openStream() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
    // -- Hierarchy --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
     * Returns the parent class loader for delegation. Some implementations may
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
     * use <tt>null</tt> to represent the bootstrap class loader. This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
     * will return <tt>null</tt> in such implementations if this class loader's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
     * parent is the bootstrap class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
     * <p> If a security manager is present, and the invoker's class loader is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
     * not <tt>null</tt> and is not an ancestor of this class loader, then this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
     * method invokes the security manager's {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
     * SecurityManager#checkPermission(java.security.Permission)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     * <tt>checkPermission</tt>} method with a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     * RuntimePermission#RuntimePermission(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     * <tt>RuntimePermission("getClassLoader")</tt>} permission to verify
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     * access to the parent class loader is permitted.  If not, a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
     * <tt>SecurityException</tt> will be thrown.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
     * @return  The parent <tt>ClassLoader</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
     *          If a security manager exists and its <tt>checkPermission</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
     *          method doesn't allow access to this class loader's parent class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
     *          loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1354
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
    public final ClassLoader getParent() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
        if (parent == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
        if (sm != null) {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1360
            checkClassLoaderPermission(this, Reflection.getCallerClass());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
        return parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
     * Returns the system class loader for delegation.  This is the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
     * delegation parent for new <tt>ClassLoader</tt> instances, and is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
     * typically the class loader used to start the application.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
     * <p> This method is first invoked early in the runtime's startup
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
     * sequence, at which point it creates the system class loader and sets it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
     * as the context class loader of the invoking <tt>Thread</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
     * <p> The default system class loader is an implementation-dependent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
     * instance of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
     * <p> If the system property "<tt>java.system.class.loader</tt>" is defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
     * when this method is first invoked then the value of that property is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
     * taken to be the name of a class that will be returned as the system
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
     * class loader.  The class is loaded using the default system class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
     * and must define a public constructor that takes a single parameter of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
     * type <tt>ClassLoader</tt> which is used as the delegation parent.  An
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
     * instance is then created using this constructor with the default system
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
     * class loader as the parameter.  The resulting class loader is defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
     * to be the system class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
     * <p> If a security manager is present, and the invoker's class loader is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
     * not <tt>null</tt> and the invoker's class loader is not the same as or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
     * an ancestor of the system class loader, then this method invokes the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
     * security manager's {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
     * SecurityManager#checkPermission(java.security.Permission)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
     * <tt>checkPermission</tt>} method with a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
     * RuntimePermission#RuntimePermission(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
     * <tt>RuntimePermission("getClassLoader")</tt>} permission to verify
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
     * access to the system class loader.  If not, a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
     * <tt>SecurityException</tt> will be thrown.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
     * @return  The system <tt>ClassLoader</tt> for delegation, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
     *          <tt>null</tt> if none
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
     *          If a security manager exists and its <tt>checkPermission</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
     *          method doesn't allow access to the system class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
     * @throws  IllegalStateException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
     *          If invoked recursively during the construction of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
     *          loader specified by the "<tt>java.system.class.loader</tt>"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
     *          property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
     * @throws  Error
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
     *          If the system property "<tt>java.system.class.loader</tt>"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
     *          is defined but the named class could not be loaded, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
     *          provider class does not define the required constructor, or an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
     *          exception is thrown by that constructor when it is invoked. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
     *          underlying cause of the error can be retrieved via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
     *          {@link Throwable#getCause()} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     * @revised  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1420
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
    public static ClassLoader getSystemClassLoader() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
        initSystemClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
        if (scl == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
        if (sm != null) {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1428
            checkClassLoaderPermission(scl, Reflection.getCallerClass());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        return scl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
    private static synchronized void initSystemClassLoader() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
        if (!sclSet) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
            if (scl != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
                throw new IllegalStateException("recursive invocation");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
            sun.misc.Launcher l = sun.misc.Launcher.getLauncher();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
            if (l != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
                Throwable oops = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
                scl = l.getClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
                try {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1442
                    scl = AccessController.doPrivileged(
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1443
                        new SystemClassLoaderAction(scl));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
                } catch (PrivilegedActionException pae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
                    oops = pae.getCause();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
                    if (oops instanceof InvocationTargetException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
                        oops = oops.getCause();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
                if (oops != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
                    if (oops instanceof Error) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
                        throw (Error) oops;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
                        // wrap the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
                        throw new Error(oops);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
            sclSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
    // Returns true if the specified class loader can be found in this class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
    // loader's delegation chain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
    boolean isAncestor(ClassLoader cl) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
        ClassLoader acl = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
        do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
            acl = acl.parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
            if (cl == acl) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
        } while (acl != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
13589
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1476
    // Tests if class loader access requires "getClassLoader" permission
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1477
    // check.  A class loader 'from' can access class loader 'to' if
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1478
    // class loader 'from' is same as class loader 'to' or an ancestor
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1479
    // of 'to'.  The class loader in a system domain can access
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1480
    // any class loader.
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1481
    private static boolean needsClassLoaderPermissionCheck(ClassLoader from,
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1482
                                                           ClassLoader to)
13589
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1483
    {
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1484
        if (from == to)
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1485
            return false;
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1486
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1487
        if (from == null)
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1488
            return false;
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1489
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1490
        return !to.isAncestor(from);
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1491
    }
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 12298
diff changeset
  1492
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1493
    // Returns the class's class loader, or null if none.
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1494
    static ClassLoader getClassLoader(Class<?> caller) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
        // This can be null if the VM is requesting it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
        if (caller == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
        // Circumvent security check since this is package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
        return caller.getClassLoader0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1503
    static void checkClassLoaderPermission(ClassLoader cl, Class<?> caller) {
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1504
        SecurityManager sm = System.getSecurityManager();
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1505
        if (sm != null) {
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1506
            // caller can be null if the VM is requesting it
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1507
            ClassLoader ccl = getClassLoader(caller);
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1508
            if (needsClassLoaderPermissionCheck(ccl, cl)) {
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1509
                sm.checkPermission(SecurityConstants.GET_CLASSLOADER_PERMISSION);
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1510
            }
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1511
        }
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1512
    }
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
  1513
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
    // The class loader for the system
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1515
    // @GuardedBy("ClassLoader.class")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
    private static ClassLoader scl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
    // Set to true once the system class loader has been set
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1519
    // @GuardedBy("ClassLoader.class")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
    private static boolean sclSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
    // -- Package --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
     * Defines a package by name in this <tt>ClassLoader</tt>.  This allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
     * class loaders to define the packages for their classes. Packages must
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
     * be created before the class is defined, and package names must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
     * unique within a class loader and cannot be redefined or changed once
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1530
     * created.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     *         The package name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
     * @param  specTitle
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
     *         The specification title
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
     * @param  specVersion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
     *         The specification version
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
     * @param  specVendor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
     *         The specification vendor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
     * @param  implTitle
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
     *         The implementation title
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
     * @param  implVersion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
     *         The implementation version
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
     * @param  implVendor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
     *         The implementation vendor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
     * @param  sealBase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
     *         If not <tt>null</tt>, then this package is sealed with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
     *         respect to the given code source {@link java.net.URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
     *         <tt>URL</tt>}  object.  Otherwise, the package is not sealed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
     * @return  The newly defined <tt>Package</tt> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
     *          If package name duplicates an existing package either in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     *          class loader or one of its ancestors
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
    protected Package definePackage(String name, String specTitle,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
                                    String specVersion, String specVendor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
                                    String implTitle, String implVersion,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
                                    String implVendor, URL sealBase)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
        throws IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
        synchronized (packages) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
            Package pkg = getPackage(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
            if (pkg != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
                throw new IllegalArgumentException(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
            pkg = new Package(name, specTitle, specVersion, specVendor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
                              implTitle, implVersion, implVendor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
                              sealBase, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
            packages.put(name, pkg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
            return pkg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
     * Returns a <tt>Package</tt> that has been defined by this class loader
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1587
     * or any of its ancestors.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     * @param  name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     *         The package name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     * @return  The <tt>Package</tt> corresponding to the given name, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
     *          <tt>null</tt> if not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
    protected Package getPackage(String name) {
8789
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1598
        Package pkg;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
        synchronized (packages) {
8789
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1600
            pkg = packages.get(name);
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1601
        }
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1602
        if (pkg == null) {
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1603
            if (parent != null) {
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1604
                pkg = parent.getPackage(name);
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1605
            } else {
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1606
                pkg = Package.getSystemPackage(name);
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1607
            }
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1608
            if (pkg != null) {
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1609
                synchronized (packages) {
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1610
                    Package pkg2 = packages.get(name);
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1611
                    if (pkg2 == null) {
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1612
                        packages.put(name, pkg);
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1613
                    } else {
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1614
                        pkg = pkg2;
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1615
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
        }
8789
23f273e43be9 7001933: Deadlock in java.lang.classloader.getPackage()
valeriep
parents: 8552
diff changeset
  1619
        return pkg;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
     * Returns all of the <tt>Packages</tt> defined by this class loader and
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1624
     * its ancestors.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     * @return  The array of <tt>Package</tt> objects defined by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
     *          <tt>ClassLoader</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
    protected Package[] getPackages() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1632
        Map<String, Package> map;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
        synchronized (packages) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  1634
            map = new HashMap<>(packages);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
        Package[] pkgs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
        if (parent != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
            pkgs = parent.getPackages();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
            pkgs = Package.getSystemPackages();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
        if (pkgs != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
            for (int i = 0; i < pkgs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
                String pkgName = pkgs[i].getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
                if (map.get(pkgName) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
                    map.put(pkgName, pkgs[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
        }
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1650
        return map.values().toArray(new Package[map.size()]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
    // -- Native library access --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
     * Returns the absolute path name of a native library.  The VM invokes this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
     * method to locate the native libraries that belong to classes loaded with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
     * this class loader. If this method returns <tt>null</tt>, the VM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
     * searches the library along the path specified as the
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1661
     * "<tt>java.library.path</tt>" property.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
     * @param  libname
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
     *         The library name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
     * @return  The absolute path of the native library
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     * @see  System#loadLibrary(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     * @see  System#mapLibraryName(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     * @since  1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
    protected String findLibrary(String libname) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
     * The inner class NativeLibrary denotes a loaded native library instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
     * Every classloader contains a vector of loaded native libraries in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
     * private field <tt>nativeLibraries</tt>.  The native libraries loaded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
     * into the system are entered into the <tt>systemNativeLibraries</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
     * vector.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
     * <p> Every native library requires a particular version of JNI. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     * denoted by the private <tt>jniVersion</tt> field.  This field is set by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     * the VM when it loads the library, and used by the VM to pass the correct
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
     * version of JNI to the native methods.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
     * @see      ClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
     * @since    1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
    static class NativeLibrary {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
        // opaque handle to native library, used in native code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
        long handle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
        // the version of JNI environment the native library requires.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
        private int jniVersion;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
        // the class from which the library is loaded, also indicates
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
        // the loader this native library belongs.
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1699
        private final Class<?> fromClass;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
        // the canonicalized name of the native library.
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1701
        // or static library name
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
        String name;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1703
        // Indicates if the native library is linked into the VM
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1704
        boolean isBuiltin;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1705
        // Indicates if the native library is loaded
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1706
        boolean loaded;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1707
        native void load(String name, boolean isBuiltin);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
        native long find(String name);
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1710
        native void unload(String name, boolean isBuiltin);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1711
        static native String findBuiltinLib(String name);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1713
        public NativeLibrary(Class<?> fromClass, String name, boolean isBuiltin) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
            this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
            this.fromClass = fromClass;
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1716
            this.isBuiltin = isBuiltin;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
        protected void finalize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
            synchronized (loadedLibraryNames) {
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1721
                if (fromClass.getClassLoader() != null && loaded) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
                    /* remove the native library name */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
                    int size = loadedLibraryNames.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
                    for (int i = 0; i < size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
                        if (name.equals(loadedLibraryNames.elementAt(i))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
                            loadedLibraryNames.removeElementAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
                    /* unload the library. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
                    ClassLoader.nativeLibraryContext.push(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
                    try {
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1733
                        unload(name, isBuiltin);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
                    } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
                        ClassLoader.nativeLibraryContext.pop();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
        // Invoked in the VM to determine the context class in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
        // JNI_Load/JNI_Unload
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  1742
        static Class<?> getFromClass() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1743
            return ClassLoader.nativeLibraryContext.peek().fromClass;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
    // All native library names we've loaded.
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  1748
    private static Vector<String> loadedLibraryNames = new Vector<>();
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1749
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
    // Native libraries belonging to system classes.
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1751
    private static Vector<NativeLibrary> systemNativeLibraries
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  1752
        = new Vector<>();
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1753
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
    // Native libraries associated with the class loader.
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  1755
    private Vector<NativeLibrary> nativeLibraries = new Vector<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
    // native libraries being loaded/unloaded.
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  1758
    private static Stack<NativeLibrary> nativeLibraryContext = new Stack<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
    // The paths searched for libraries
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1761
    private static String usr_paths[];
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1762
    private static String sys_paths[];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
    private static String[] initializePath(String propname) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
        String ldpath = System.getProperty(propname, "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
        String ps = File.pathSeparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
        int ldlen = ldpath.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
        int i, j, n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
        // Count the separators in the path
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
        i = ldpath.indexOf(ps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
        n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
        while (i >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
            n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
            i = ldpath.indexOf(ps, i + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
        // allocate the array of paths - n :'s = n + 1 path elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
        String[] paths = new String[n + 1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
        // Fill the array with paths from the ldpath
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
        n = i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
        j = ldpath.indexOf(ps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
        while (j >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
            if (j - i > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
                paths[n++] = ldpath.substring(i, j);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
            } else if (j - i == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
                paths[n++] = ".";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
            i = j + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
            j = ldpath.indexOf(ps, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
        paths[n] = ldpath.substring(i, ldlen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
        return paths;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
    // Invoked in the java.lang.Runtime class to implement load and loadLibrary.
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  1797
    static void loadLibrary(Class<?> fromClass, String name,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
                            boolean isAbsolute) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
        ClassLoader loader =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
            (fromClass == null) ? null : fromClass.getClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
        if (sys_paths == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
            usr_paths = initializePath("java.library.path");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
            sys_paths = initializePath("sun.boot.library.path");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
        if (isAbsolute) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
            if (loadLibrary0(fromClass, new File(name))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
            throw new UnsatisfiedLinkError("Can't load library: " + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
        if (loader != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
            String libfilename = loader.findLibrary(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
            if (libfilename != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
                File libfile = new File(libfilename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
                if (!libfile.isAbsolute()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
                    throw new UnsatisfiedLinkError(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
    "ClassLoader.findLibrary failed to return an absolute path: " + libfilename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
                if (loadLibrary0(fromClass, libfile)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
                throw new UnsatisfiedLinkError("Can't load " + libfilename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
        for (int i = 0 ; i < sys_paths.length ; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
            File libfile = new File(sys_paths[i], System.mapLibraryName(name));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
            if (loadLibrary0(fromClass, libfile)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
            }
12298
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1830
            libfile = ClassLoaderHelper.mapAlternativeName(libfile);
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1831
            if (libfile != null && loadLibrary0(fromClass, libfile)) {
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1832
                return;
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1833
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
        if (loader != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
            for (int i = 0 ; i < usr_paths.length ; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
                File libfile = new File(usr_paths[i],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
                                        System.mapLibraryName(name));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
                if (loadLibrary0(fromClass, libfile)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
                }
12298
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1842
                libfile = ClassLoaderHelper.mapAlternativeName(libfile);
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1843
                if (libfile != null && loadLibrary0(fromClass, libfile)) {
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1844
                    return;
6e0b65d86fde 7134701: [macosx] Support legacy native library names
michaelm
parents: 11275
diff changeset
  1845
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
        // Oops, it failed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
        throw new UnsatisfiedLinkError("no " + name + " in java.library.path");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  1852
    private static boolean loadLibrary0(Class<?> fromClass, final File file) {
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1853
        // Check to see if we're attempting to access a static library
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1854
        String name = NativeLibrary.findBuiltinLib(file.getName());
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1855
        boolean isBuiltin = (name != null);
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1856
        if (!isBuiltin) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1857
            boolean exists = AccessController.doPrivileged(
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1858
                new PrivilegedAction<Object>() {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1859
                    public Object run() {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1860
                        return file.exists() ? Boolean.TRUE : null;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1861
                    }})
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1862
                != null;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1863
            if (!exists) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1864
                return false;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1865
            }
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1866
            try {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1867
                name = file.getCanonicalPath();
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1868
            } catch (IOException e) {
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1869
                return false;
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1870
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
        ClassLoader loader =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
            (fromClass == null) ? null : fromClass.getClassLoader();
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1874
        Vector<NativeLibrary> libs =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
            loader != null ? loader.nativeLibraries : systemNativeLibraries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
        synchronized (libs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
            int size = libs.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
            for (int i = 0; i < size; i++) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1879
                NativeLibrary lib = libs.elementAt(i);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
                if (name.equals(lib.name)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
            synchronized (loadedLibraryNames) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
                if (loadedLibraryNames.contains(name)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
                    throw new UnsatisfiedLinkError
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
                        ("Native Library " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
                         name +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
                         " already loaded in another classloader");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
                /* If the library is being loaded (must be by the same thread,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
                 * because Runtime.load and Runtime.loadLibrary are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
                 * synchronous). The reason is can occur is that the JNI_OnLoad
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
                 * function can cause another loadLibrary invocation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
                 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
                 * Thus we can use a static stack to hold the list of libraries
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
                 * we are loading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
                 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
                 * If there is a pending load operation for the library, we
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
                 * immediately return success; otherwise, we raise
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
                 * UnsatisfiedLinkError.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
                int n = nativeLibraryContext.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
                for (int i = 0; i < n; i++) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1906
                    NativeLibrary lib = nativeLibraryContext.elementAt(i);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
                    if (name.equals(lib.name)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
                        if (loader == lib.fromClass.getClassLoader()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
                            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
                            throw new UnsatisfiedLinkError
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
                                ("Native Library " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
                                 name +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
                                 " is being loaded in another classloader");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
                }
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1918
                NativeLibrary lib = new NativeLibrary(fromClass, name, isBuiltin);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
                nativeLibraryContext.push(lib);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
                try {
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1921
                    lib.load(name, isBuiltin);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
                } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
                    nativeLibraryContext.pop();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
                }
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 16063
diff changeset
  1925
                if (lib.loaded) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
                    loadedLibraryNames.addElement(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
                    libs.addElement(lib);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
    // Invoked in the VM class linking code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
    static long findNative(ClassLoader loader, String name) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1937
        Vector<NativeLibrary> libs =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
            loader != null ? loader.nativeLibraries : systemNativeLibraries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
        synchronized (libs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
            int size = libs.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
            for (int i = 0; i < size; i++) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1942
                NativeLibrary lib = libs.elementAt(i);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
                long entry = lib.find(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
                if (entry != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
                    return entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
    // -- Assertion management --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1954
    final Object assertionLock;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1955
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
    // The default toggle for assertion checking.
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1957
    // @GuardedBy("assertionLock")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
    private boolean defaultAssertionStatus = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
    // Maps String packageName to Boolean package default assertion status Note
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
    // that the default package is placed under a null map key.  If this field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
    // is null then we are delegating assertion status queries to the VM, i.e.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
    // none of this ClassLoader's assertion status modification methods have
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
    // been invoked.
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1965
    // @GuardedBy("assertionLock")
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1966
    private Map<String, Boolean> packageAssertionStatus = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
    // Maps String fullyQualifiedClassName to Boolean assertionStatus If this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
    // field is null then we are delegating assertion status queries to the VM,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
    // i.e., none of this ClassLoader's assertion status modification methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
    // have been invoked.
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1972
    // @GuardedBy("assertionLock")
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1973
    Map<String, Boolean> classAssertionStatus = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
     * Sets the default assertion status for this class loader.  This setting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
     * determines whether classes loaded by this class loader and initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
     * in the future will have assertions enabled or disabled by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
     * This setting may be overridden on a per-package or per-class basis by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
     * invoking {@link #setPackageAssertionStatus(String, boolean)} or {@link
18776
c17100862d86 8019862: Fix doclint errors in java.lang.*.
bpb
parents: 18156
diff changeset
  1981
     * #setClassAssertionStatus(String, boolean)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
     * @param  enabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
     *         <tt>true</tt> if classes loaded by this class loader will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
     *         henceforth have assertions enabled by default, <tt>false</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
     *         if they will have assertions disabled by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
     */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1990
    public void setDefaultAssertionStatus(boolean enabled) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1991
        synchronized (assertionLock) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1992
            if (classAssertionStatus == null)
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1993
                initializeJavaAssertionMaps();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1995
            defaultAssertionStatus = enabled;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  1996
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
     * Sets the package default assertion status for the named package.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
     * package default assertion status determines the assertion status for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
     * classes initialized in the future that belong to the named package or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     * any of its "subpackages".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
     * <p> A subpackage of a package named p is any package whose name begins
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
     * with "<tt>p.</tt>".  For example, <tt>javax.swing.text</tt> is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
     * subpackage of <tt>javax.swing</tt>, and both <tt>java.util</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
     * <tt>java.lang.reflect</tt> are subpackages of <tt>java</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
     * <p> In the event that multiple package defaults apply to a given class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
     * the package default pertaining to the most specific package takes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
     * precedence over the others.  For example, if <tt>javax.lang</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
     * <tt>javax.lang.reflect</tt> both have package defaults associated with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
     * them, the latter package default applies to classes in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
     * <tt>javax.lang.reflect</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
     * <p> Package defaults take precedence over the class loader's default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
     * assertion status, and may be overridden on a per-class basis by invoking
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
     * {@link #setClassAssertionStatus(String, boolean)}.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
     * @param  packageName
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
     *         The name of the package whose package default assertion status
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
     *         is to be set. A <tt>null</tt> value indicates the unnamed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
     *         package that is "current"
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
  2025
     *         (see section 7.4.2 of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8789
diff changeset
  2026
     *         <cite>The Java&trade; Language Specification</cite>.)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
     * @param  enabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
     *         <tt>true</tt> if classes loaded by this classloader and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
     *         belonging to the named package or any of its subpackages will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
     *         have assertions enabled by default, <tt>false</tt> if they will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
     *         have assertions disabled by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
     */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2036
    public void setPackageAssertionStatus(String packageName,
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2037
                                          boolean enabled) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2038
        synchronized (assertionLock) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2039
            if (packageAssertionStatus == null)
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2040
                initializeJavaAssertionMaps();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2042
            packageAssertionStatus.put(packageName, enabled);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2043
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
     * Sets the desired assertion status for the named top-level class in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
     * class loader and any nested classes contained therein.  This setting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
     * takes precedence over the class loader's default assertion status, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
     * over any applicable per-package default.  This method has no effect if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
     * the named class has already been initialized.  (Once a class is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
     * initialized, its assertion status cannot change.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
     * <p> If the named class is not a top-level class, this invocation will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
     * have no effect on the actual assertion status of any class. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
     * @param  className
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
     *         The fully qualified class name of the top-level class whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
     *         assertion status is to be set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
     * @param  enabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
     *         <tt>true</tt> if the named class is to have assertions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
     *         enabled when (and if) it is initialized, <tt>false</tt> if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
     *         class is to have assertions disabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
     */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2068
    public void setClassAssertionStatus(String className, boolean enabled) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2069
        synchronized (assertionLock) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2070
            if (classAssertionStatus == null)
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2071
                initializeJavaAssertionMaps();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2073
            classAssertionStatus.put(className, enabled);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2074
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
     * Sets the default assertion status for this class loader to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
     * <tt>false</tt> and discards any package defaults or class assertion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
     * status settings associated with the class loader.  This method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
     * provided so that class loaders can be made to ignore any command line or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
     * persistent assertion status settings and "start with a clean slate."
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
     */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2086
    public void clearAssertionStatus() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
         * Whether or not "Java assertion maps" are initialized, set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
         * them to empty maps, effectively ignoring any present settings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
         */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2091
        synchronized (assertionLock) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  2092
            classAssertionStatus = new HashMap<>();
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  2093
            packageAssertionStatus = new HashMap<>();
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2094
            defaultAssertionStatus = false;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2095
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
     * Returns the assertion status that would be assigned to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
     * class if it were to be initialized at the time this method is invoked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
     * If the named class has had its assertion status set, the most recent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
     * setting will be returned; otherwise, if any package default assertion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
     * status pertains to this class, the most recent setting for the most
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
     * specific pertinent package default assertion status is returned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
     * otherwise, this class loader's default assertion status is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
     * </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
     * @param  className
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
     *         The fully qualified class name of the class whose desired
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
     *         assertion status is being queried.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
     * @return  The desired assertion status of the specified class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
     * @see  #setClassAssertionStatus(String, boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
     * @see  #setPackageAssertionStatus(String, boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
     * @see  #setDefaultAssertionStatus(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
     */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2120
    boolean desiredAssertionStatus(String className) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2121
        synchronized (assertionLock) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2122
            // assert classAssertionStatus   != null;
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2123
            // assert packageAssertionStatus != null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2125
            // Check for a class entry
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2126
            Boolean result = classAssertionStatus.get(className);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
            if (result != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
                return result.booleanValue();
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2129
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2130
            // Check for most specific package entry
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2131
            int dotIndex = className.lastIndexOf(".");
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2132
            if (dotIndex < 0) { // default package
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2133
                result = packageAssertionStatus.get(null);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2134
                if (result != null)
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2135
                    return result.booleanValue();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2136
            }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2137
            while(dotIndex > 0) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2138
                className = className.substring(0, dotIndex);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2139
                result = packageAssertionStatus.get(className);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2140
                if (result != null)
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2141
                    return result.booleanValue();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2142
                dotIndex = className.lastIndexOf(".", dotIndex-1);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2143
            }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2144
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2145
            // Return the classloader default
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2146
            return defaultAssertionStatus;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
    // Set up the assertions with information provided by the VM.
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2151
    // Note: Should only be called inside a synchronized block
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
    private void initializeJavaAssertionMaps() {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 715
diff changeset
  2153
        // assert Thread.holdsLock(assertionLock);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  2155
        classAssertionStatus = new HashMap<>();
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7029
diff changeset
  2156
        packageAssertionStatus = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
        AssertionStatusDirectives directives = retrieveDirectives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
        for(int i = 0; i < directives.classes.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
            classAssertionStatus.put(directives.classes[i],
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2161
                                     directives.classEnabled[i]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
        for(int i = 0; i < directives.packages.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
            packageAssertionStatus.put(directives.packages[i],
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2165
                                       directives.packageEnabled[i]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
        defaultAssertionStatus = directives.deflt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
    // Retrieves the assertion directives from the VM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
    private static native AssertionStatusDirectives retrieveDirectives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2175
class SystemClassLoaderAction
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2176
    implements PrivilegedExceptionAction<ClassLoader> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
    private ClassLoader parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
    SystemClassLoaderAction(ClassLoader parent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
        this.parent = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2183
    public ClassLoader run() throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
        String cls = System.getProperty("java.system.class.loader");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
        if (cls == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
            return parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  2189
        Constructor<?> ctor = Class.forName(cls, true, parent)
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9266
diff changeset
  2190
            .getDeclaredConstructor(new Class<?>[] { ClassLoader.class });
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2191
        ClassLoader sys = (ClassLoader) ctor.newInstance(
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2192
            new Object[] { parent });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
        Thread.currentThread().setContextClassLoader(sys);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
        return sys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
}